*,*:before,*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}
html{
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 14px;
    scroll-padding-top: 6.857rem;
}
body{
    margin:0;
    padding:0;
    background: #ffffff;
    min-width: 320px;
    overflow-x: hidden;
    overflow-y: auto;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
img{
    max-width: 100%;
}
/* Flex Container */
.container{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.wrap{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
/* Text */
h1, h2, h3, h4, h5, h6, p, li, td, a, strong, b{
    color:#002339;
    margin: 0;
    font-style: normal;
}
h1, h2, h3, h4, h5, h6, p, table, ul, ol, a, strong, b, small{
    margin-bottom: .7rem;
}
a{
    text-decoration: none;
}
small, small a{
    color:#A6A3A6;
}
small a{
    display: inline-block;
    text-decoration: underline;
}
h1{
    font-size: 2.143rem;
    line-height: 2.571rem;
}
h2{
    font-size: 2rem;
    line-height: 2.429rem;
}
h3{
    font-size: 1.714rem;
    line-height: 2.143rem;
}
h4{
    font-size: 1.286rem;
    line-height: 1.714rem;
}
h5{
    font-size: 1.143rem;
    line-height: 1.571rem;
}
h6{
    font-size: 1rem;
    line-height: 1.429rem;
}
a{
    font-size: 1.071rem;
    line-height: 1.429rem;
}
p, li, table{
    font-size: 1rem;
    line-height: 1.429rem;
}
small, small a, em{
    font-size: 0.857rem;
}
/* em{
    color:#CE2027;
} */
/* List */
ul{
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
    list-style-type: none!important;
}
ol{
    padding: 0 1.5rem 0;
}
ul li{
    vertical-align: middle;
}
ul li:before {
    content: url('../img/list.svg'); 
    width: 1rem;
    height: 1rem;
    vertical-align: middle;
    margin-right: 0.3rem;
  }
/* Table */
.table{
    overflow-x:auto;
}
.table::-webkit-scrollbar {
    height: 0;
}
table {
    width: 100%!important;
    margin: 0!important;
}
table, thead, tbody, td, th, tr {
    border-collapse: collapse!important;
}
thead{
    background-color: #173B67!important;
}
thead th, thead td, thead strong{
    color: #FFFFFF!important;
    font-weight: normal!important;
    font-size: 1.143rem!important;
    line-height: 1.571rem!important;
}
tr:nth-child(even) {
    background-color: transparent!important;
}
tbody tr:nth-child(odd) {
    background-color: transparent!important;
}
th{
    background: #173B67!important;
    border: 1px solid #173B67!important;
}
th, td{
    padding: 0.75rem!important;
    display: table-cell!important;
    text-align: left!important;
    vertical-align: top!important;
}
td{
    border: 1px solid #173B67!important;
    background-color: transparent!important;
}
.table{
    width: 100%!important;
}
/* Form */
/* form{
    margin-bottom: 2rem;
} */
form small{
    margin: 0 0 0.714rem;
    display: block;
}
label{
    display: none;
}
input, textarea {
    padding: 1rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #ffffff;
    display: block;
    margin: 0 0 0.714rem;
    width: 100%;
    font-size: 1rem;
    line-height: 1rem;
    color: #0F4260;
    border: 1px solid #A6A3A6;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    font-style: normal;
}
textarea {
    resize: none; /* or vertical */
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; 
}
::-webkit-input-placeholder {
    color: #0F4260;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
:-moz-placeholder {
    color: #0F4260;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
::-moz-placeholder {
    color: #0F4260;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
:-ms-input-placeholder {
    color: #0F4260;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
::placeholder {
    color: #0F4260;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
:-ms-input-placeholder {
    color: #0F4260;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
::-ms-input-placeholder {
    color: #0F4260;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}
button, .btn{
    font-size: 1.071rem;
    line-height: 1.071rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background: -webkit-linear-gradient(132.79deg, #0F4260 14.65%, rgb(0, 35, 57) 84.36%);
    background: -moz-linear-gradient(132.79deg, #0F4260 14.65%, rgb(0, 35, 57) 84.36%);
    background: -o-linear-gradient(132.79deg, #0F4260 14.65%, rgb(0, 35, 57) 84.36%);
    background: -webkit-linear-gradient(317.21deg, #0F4260 14.65%, rgb(0, 35, 57) 84.36%);
    background: -moz-linear-gradient(317.21deg, #0F4260 14.65%, rgb(0, 35, 57) 84.36%);
    background: -o-linear-gradient(317.21deg, #0F4260 14.65%, rgb(0, 35, 57) 84.36%);
    background: linear-gradient(132.79deg, #0F4260 14.65%, rgb(0, 35, 57) 84.36%);
    padding: 1rem 1.6rem;
    -webkit-border-radius: 0rem;
       -moz-border-radius: 0rem;
            border-radius: 0rem;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    cursor: pointer;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
            font-weight: normal;
    font-style: normal;
    letter-spacing: 1px;
}
/* Captcha */
.grecaptcha-badge {
    visibility: hidden; 
}
.popup{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    z-index: 99999;
    text-align: center;
    padding: 3rem;
}
.popup img {
    max-height: 80vh;
    max-width: 70vw;
    -webkit-box-shadow: 0 0 10px #cecece;
       -moz-box-shadow: 0 0 10px #cecece;
            box-shadow: 0 0 10px #cecece;
    margin: 1rem;
}
.popup.open{
    display: block;
}
.popup .close{
    position: absolute;
    right: 1.2rem;
    top: 1.2rem;
    z-index: 1;
    cursor: pointer;
    width: 1.5rem;
    height: 1.5rem;
}
.popup .close path{
    fill: #0F4260;
}
.popup .container{
    height: 100%;
}