/* Treasury Power Platform Branding */
/* govbanner */
.govbanner {
    background-color: #F0F0F0;
    color: #1B1B1B;
    font-family: Source Sans Pro Web, Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    padding: 0.25rem 2rem;
    line-height: 1.1;
}

.govbanner img {
    width: 16px;
    position: relative;
    top: 0.05rem;
    margin-right: 0.3rem;

}

/* header */
.header {
    background-color: #0053A2;
    padding: 1rem 2rem;
    color: #FFFFFF !important;
    width: 100% !important;
}

/* footer */
.footer {
    background-color: #1C2936;
    margin-top: 3rem;
    padding: 0 0 2rem 0;
}

.footer img {
    display: block;
    margin: 0 auto -1rem auto;
    width: 6rem;
    position: relative;
    top: -3rem;
}

.footer a, .footer a:visited, .footer a:hover {
    color: #FFFFFF;
    display: block;
    margin: 0 2rem 1rem 2rem;
    font-size: 0.8rem;
}

.footer a:hover {
    color: #F5EA14;
}

.footer::after {
    content: "";
    display: table;
    clear: both;
}

.footer-column {
    float: left;
    width: 25%;
}

/* button */
    input[type=button], input[type=submit], input[type=reset], button {
        font-size: 1rem;
        line-height: 0.9rem;
        align-items: center;
        border: 0;
        border-radius: 0.25rem;
        cursor: pointer;
        column-gap: 0.5rem;
        display: inline-flex;
        font-weight: 700;
        justify-content: center;
        margin-right: 0.5rem;
        padding: 0.75rem 1.25rem !important;
        text-align: center;
        text-decoration: none;
    }

    input[type=button]:disabled, input[type=submit]:disabled, input[type=reset]:disabled, button:disabled, button[disabled] {
        background-color: #DADADA;
        color: #3D3D3D;
        cursor: not-allowed;
        pointer-events: all !important;
    }

    .btn-primary {
        background-color: #0053A2 !important;
        color: #FFFFFF !important;
    }

    .btn-primary:hover {
        background-color: #083C6F;
    }

    .btn-primary:active {
        background-color: #1C2936;
    }

    .btn-secondary {
        background-color: #FFFFFF;
        box-shadow: inset 0 0 0 2px #0053A2;
        color: #0053A2;
    }

    .btn-secondary:hover {
        background-color: #FFFFFF;
        box-shadow: inset 0 0 0 2px #083C6F;
        color: #083C6F;
    }

    .btn-secondary:active {
        background-color: #FFFFFF;
        box-shadow: inset 0 0 0 2px #1C2936;
        color: #1C2936;
    }

    .btn-panel {
        margin: 2.5rem 0;
    }

/* form */
/* Checkbox Container */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 2.1rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide Default Checkbox */
  .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Custom Checkbox */
  .checkbox-custom {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    border-radius: 0.25rem;
  }
  
  /* Checkbox Checked */
  .checkbox-container input:checked ~ .checkbox-custom {
    background-color: #0053A2;
    border-color: #0053A2;
  }
  
  /* Create Checkmark (Hidden When Not Checked) */
  .checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show Checkmark When Checked */
  .checkbox-container input:checked ~ .checkbox-custom:after {
    display: block;
  }
  
  /* Style Checkmark */
  .checkbox-container .checkbox-custom:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: 1px solid #FFFFFF;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
 }

 /*  Date Picker */

 .date-picker {
    width: 120px;
 }

 .date-picker-icon {
    width: 30px; 
    opacity: 1; 
    fill: #000000;
    position: relative;
    top: -29px;
    left: 145px;
    margin-bottom: -40px;
 }

 .date-picker-format {
    display: block;
    color: #757575;
    font-size: 0.95rem;
    margin: -0.3rem 0 0.3rem 0;
 }

 /*  Text Input */

 input[type=text] {
    border-width: 1px;
    border-color: #000000;
    border-style: solid;
    border-radius: 0.25rem;
    color: #212121;
    display: block;
    padding: 0.5rem;
 }
/* end form */

/* layouts */
.column-layout::after {
    content: "";
    display: table;
    clear: both;
}

.col {
    float: left;
    width: 10%;
}

.col-7 {
    width: 60%;
    margin-top: 20px;
    margin-right: 30px !important;
}

.col-3 {
    width: 30%;
}

/*  Tablets & Phones */
@media only screen and (max-width: 768px) {
    .col-7, .col-3 {
      width: 100%;
    }
}

/* tabs */
.tab {
    border: 1px solid #AFAFAF;
    border-top-width: 5px;
    border-bottom: 0;
    display: inline-block;
    margin: 0;
    float: left;
    padding: 0.5rem 1.5rem;
}

.tab-active {
    border-color: #0053A2;
    border-left: 1px solid #0053A2;
    border-bottom: 1px solid #FFFFFF;
    margin-bottom: -1px;
    font-weight: 800;
}

.tab:hover {
    cursor: pointer;
    background-color: #F5F5F5;
}

.tabs-panel {
    display: block;
    width: 100%;
    border-bottom: 1px solid #AFAFAF;
}

.tabs-panel::after {
    content: "";
    display: table;
    clear: both;
}

.tabs-container {
    border: 1px solid #AFAFAF;
    border-top-color: #FFFFFF;
    padding: 1rem 2rem;
}

/* tdds */
body {
    background-color: #FFFFFF;
    color: #212121;
    margin: 0;
    padding: 0;
    font-family: Public Sans Web, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-size:  16px;  /* root size, all other sizes in REM  */
    line-height: 1.5rem;
}

a, a:visited {
    color: #0053A2 !important;
}

a:hover {
    color: #083C6F;
}

#skipcontent {
    background: #F5F5F5;
    height: 30px;
    left: 50%;
    padding: 8px;
    position: absolute;
    transform: translateY(-100%);
    transition: transform 0.3s;
}

#skipcontent:focus {
    transform: translateY(0%);
}

main {
    padding: 1rem 2rem;
}

h1 {
    margin: 0 !important;
    font-family: Merriweather Web, Georgia, 'Times New Roman', Times, serif !important;
    font-size: 2rem !important;
    font-weight: 300 !important;
    letter-spacing: -1px !important;
    line-height: 2.875rem !important;
}

h2 {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    line-height: 1.5rem !important;
    margin-bottom: 2rem !important;
}

h3 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.625rem;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5rem;
}
   
h5 {
    font-size: 1.0rem;
    font-weight: 600;
    line-height: 1.4375rem;
}

ul, ol {
    /*line-height: 1.375rem;*/
    line-height: 0.75rem;
    padding-inline-start: 1rem;
}

/* Nav */
.nav {
    background-color: #083C6F;
}

.nav a, .nav a:visited {
    color: #FFFFFF !important;
    text-decoration: none;
    padding: 0.7rem 2rem;
    padding-left: 30px !important;
    display: inline-block;
    text-transform: upperCase;
}

.nav a:hover {
    color: #FFFFFF;
    background-color: #1C2936 !important;
}

/*  Tablets  */
@media only screen and (max-width: 768px) {
    .footer-column {
      width: 50%;
    }

    .footer-column:nth-child(even) {
        clear: both;
    }
}

/*  Phones  */
@media only screen and (max-width: 600px) {
    .footer-column {
      width: 100%;
    }
}
