@charset "UTF-8";
@import "animate.css";
@import "fonts.css";
@import "navbar.css";
@import "swiper.css";
@import "hrb_alert.css";
@import "mapbox.css";
@import "GalleryPopUp.css";
@import "nouislider.css";
@import "pagination.css";
@import "footer.css";
:Root {
    --bgColor:#014b8f;
    --realColor1:#ff0000;
    --realColor2:#000000;
}
html {
    position: static!important;
    top: 0!important;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*, :after, :before {
    box-sizing: border-box;
}
body, html {
    max-width: 100%;
    direction: ltr;
    font-family: 'Open Sans';
    padding: 0 !important;
    margin: 0 !important;
    font-weight: 300;
    background: #f8f8f8;
}
body, html, a {
    font-size: 14px;
    font-weight: 500;
}
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    border: 0;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    color: #454545;
}
a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}
a:hover {
    color: var(--realColor2)
}
input, button, select, textarea {
    font-family: 'Open Sans';
    outline: none;
    background-color: #fff;
    padding: 5px 10px;
    border: none;
    outline: none;
    min-height: 40px;
    font-weight: 100 !important;
    font-size: 16px;
    font-family: 'Open Sans' !important;
}
.container {
    position: relative;
    width: calc(100% - 40px);
    height: 100%;
    max-width: 1270px;
    margin: auto;
}

/*---------------------- checkbox --------------*/ 
.checkboxs {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    height: 30px;
    cursor: pointer;
    margin: 5px 0;
}
.checkboxs input {
    position: absolute;
    right: 0;
    overflow: hidden;
    width: 0;
    height: 0;
    opacity: 0;
}
.checkboxs label.lblinput {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 0 0 25px;
    font-weight: bold;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #777;
    font-weight: 400;
}
.checkboxs input[type=radio]+label.lblinput:before {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    width: 16px;
    height: 16px;
    content: '';
    background: #fff;
    border-radius: 100%;
    border: 1px solid #d0d0d0;
    box-shadow: 1px 2px 10px -4px #333;
}
.checkboxs input[type=radio]+label.lblinput:after {
    position: absolute;
    top: 0;
    bottom: 0px;
    margin: auto;
    right: 2px;
    width: 12px;
    height: 12px;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
    content: "";
    border-radius: 100%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #dc0000;
    background: radial-gradient(circle, #f44e4e 0%, #dc0000 100%);
    transition: all 0.5s cubic-bezier(0.04, 1.13, 0.02, 1.14);
    transform: scale(0) rotate(-90deg);
}
.checkboxs input[type=checkbox]+label.lblinput:before {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    width: 16px;
    height: 16px;
    content: '';
    background: #fff;
    border-radius: 0px;
    border: 1px solid #c5c5c5;
    box-shadow: 1px 2px 10px -4px #333;
}
.checkboxs input[type=checkbox]+label.lblinput:after {
    position: absolute;
    top: 0;
    bottom: 0px;
    margin: auto;
    left: 2px;
    width: 12px;
    height: 12px;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
    content: "";
    border-radius: 0;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ff0000;
    transition: all 0.2s cubic-bezier(0.04, 1.13, 0.02, 1.14);
    transform: scale(0) rotate(-90deg);
}
.checkboxs label.lblinput small {
    position: relative;
    display: block;
    font-size: 12px;
    color: #b3b3b3;
}
.checkboxs input:checked+label.lblinput {
    color: #d48644;
}
.checkboxs input:checked+label.lblinput:after {
    transform: scale(1) rotate(0deg);
}
.checkboxs input:checked+label.lblinput small {
    color: #eba76f;
}
.checkboxs label.lblinput span {
    display: flex;
    align-items: center;
}
span.color {
    position: relative;
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 3px;
    margin: 0 0 0 5px;
}
/*---------------------- checkbox --------------*/ 
.mainLogin {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #dcf4fe;
    padding: 20px;
}

.mainLogin .contentLogin {
    position: relative;
    width: 100%;
    max-width: 1200px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 20px -15px rgb(0 0 0 / 50%);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.mainLogin .contentLogin .col1 {
    position: relative;
    width: 50%;
    display: block;
}
.mainLogin .contentLogin .col2 {
    position: relative;
    width: 50%;
    background: #fff;
    display: block;
    padding: 20px;
}

.itemSliderLogin {
    position: relative;
    width: 100%;
    background: no-repeat center / cover;
    display: block;
}
.itemSliderLogin:before {
    position: relative;
    width: 100%;
    padding-top: 118%;
    content: '';
    display: block;
}
.mainLogin .SliderOne {
    border-radius: 0 !important;
    width: 100%;
    overflow: hidden;
}
.mainLogin .contentLogin .col2 {
    position: relative;
    width: 50%;
    background: #fff;
    display: flex;
    padding: 40px;
    flex-direction: column;
    grid-gap: 5px;
}

div#vcode {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    direction: ltr !important;
}
.mainLogin input {
    max-width: unset !important;
    min-width: unset !important;
    width: 100%;
    border: 1px solid #e0e4f3;
    background-color: #f1f3fb;
    border-radius: 6px;
    margin: 0;
    font-weight: bold !important;
    height: 50px;
    font-weight: 400 !important;
}
.mainLogin .vcode input {
    max-width: unset !important;
    min-width: unset !important;
    width: calc((100% / 5) - 5px);
    border: 1px solid #e0e4f3;
    background-color: #f1f3fb;
    border-radius: 6px;
    margin: 0;
    text-align: center;
    font-weight: bold !important;
}

.mainLogin .contentLogin .col2 .h3 {
    color: #000;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}
.mainLogin .contentLogin .col2 .h3 strong{
    color: #ff0000;
    font-size: 38px;
    font-weight: 700;
}

.frmLogin {
    position: relative;
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}

.frmLogin .boxInputLogin {
    position: relative;
    display: flex;
    flex-direction: column;
    grid-gap: 6px;
}
.frmLogin .boxInputLogin label {
    font-weight: bold;
    color: #5d7078;
}

.rowCetner {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.rowCetner .submitLogin {
    position: relative;
    width: 110px;
    height: 45px;
    background: #fc4b51;
    border-radius: 6px;
    font-weight: 300 !important;
    cursor: pointer;
    color: #fff;
}
.rowCetner .submitLogin:hover {
    background: #fc4b51;
    color: #fff;
}



.frmLogin .boxInputLogin .checkboxs label.lblinput {
    justify-content: flex-start;
}
.frmLogin .boxInputLogin .checkboxs label.lblinput strong {
    font-weight: 600;
    font-size: 14px;
    color: #6f717c;
}
.frmLogin .checkboxs input[type=checkbox]+label.lblinput:before {
    background: #fff;
    border: 1px solid #c5c5c5;
    box-shadow: 1px 2px 10px -4px #e0e4f3;
    border-radius: 4px;
}
.frmLogin .checkboxs input[type=checkbox]+label.lblinput:after {
    background: #8088a5;
    width: 10px;
    height: 10px;
    left: 3px;
    border-radius: 2px;
}
.stepLogin[data-step="2"] {
    display: none;
}
a.powe#dc0000By {
    position: absolute;
    right: 0;
    bottom: 10px;
    font-family: ''Open Sans'';
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    left: 0;
}

a.poweredBy {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    font-family: ''Open Sans'';
}


.checkboxs.itemCat label.lblinput {
    justify-content: flex-start;
    grid-gap: 20px;
    padding: 0;
    border-bottom: 0 !important;
}
.checkboxs input[type=radio]+label.lblinput:before {
    opacity: 0;
}