﻿html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
caption,
select,
input,
option,
textarea {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
}

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
}

ul {
    list-style-type: none;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"],
textarea {
    border-radius: 0;
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}

a:hover, a:focus {
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

:focus {
    outline: none;
    box-shadow: none;
}

.btn-check:focus + .btn,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

/* End Clearfix */

/* For IE 6/7 (trigger hasLayout) */

a,
button,
.btn {
    outline: none !important;
    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    text-decoration: none !important;
}

body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #343D48;
    background-color: #fff;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

/*************************** COMMON CSS START *****************************/

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.02em;
    color: #002E5D;
}

.select2-container--default .select2-selection--single {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.02em;
    color: #000;
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    height: 45px;
    box-shadow: none !important;
}

.form-group .form-control, .select2-container--default .select2-selection--single {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.02em;
    color: #000;
    background: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 5px;
    height: 45px;
    box-shadow: none !important;
}


    .form-group .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        color: #8FA8BD;
        font-family: 'Fira Sans', sans-serif;
    }

    .form-group .form-control::-moz-placeholder { /* Firefox 19+ */
        color: #8FA8BD;
        font-family: 'Fira Sans', sans-serif;
    }

    .form-group .form-control:-ms-input-placeholder { /* IE 10+ */
        color: #8FA8BD;
        font-family: 'Fira Sans', sans-serif;
    }

    .form-group .form-control:-moz-placeholder { /* Firefox 18- */
        color: #8FA8BD;
        font-family: 'Fira Sans', sans-serif;
    }


.btn {
    font-weight: 600;
    font-size: 15px;
    line-height: 16px;
    border-radius: 10px;
    padding: 15px 30px;
    border: 1px solid #002E5D;
    letter-spacing: 0.02em;
}

    .btn.btn-primary {
        background-color: #002E5D;
        color: #fff;
    }

        .btn.btn-primary:hover, .btn.btn-primary:focus {
            background-color: transparent;
            border: 1px solid #192952;
            color: #192952;
        }

.input_icon {
    position: relative;
}

    .input_icon .form-control {
        padding: 0.375rem 2.75rem 0.375rem 0.75rem;
    }

    .input_icon .inputicon {
        position: absolute;
        right: 15px;
        top: 23px;
        transform: translateY(-50%);
        font-size: 20px;
    }

.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px;
    padding-left: 0.75rem;
    padding-right: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #273972;
    color: white;
}

.select2-container--default .select2-results__option--selected {
    background-color: transparent;
}

.select2-results__option--selectable {
    color: #273972;
}


.required {
    color: #FF0000 !important;
}


* {
    scrollbar-width: thin;
    scrollbar-color: #0C464E transparent;
}

    *::-webkit-scrollbar {
        width: 7px;
        height: 7px;
    }

    *::-webkit-scrollbar-track {
        background-color: transparent;
    }

    *::-webkit-scrollbar-thumb {
        background-color: #002E5D;
        /*#0C464E*/
    }

    *::-webkit-scrollbar-track,
    *::-webkit-scrollbar-thumb {
        border-radius: 12px;
    }

.iti {
    width: 100%;
}

.iti__flag-container {
    width: 100%;
}

.iti__country-list {
    position: relative;
    overflow-x: hidden;
    z-index: 1010;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent !important;
}

/*************************** COMMON CSS END *****************************/


/*************************************** Radio & CheckBox Style Start ***********************************/
.form-check {
    margin-right: 0px;
    padding-left: 0;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        position: relative;
        cursor: pointer;
        display: inline-block;
        letter-spacing: 0.02em;
        color: #8FA8BD;
        font-size: 14px;
        padding-left: 31px;
        padding-right: 20px;
        line-height: 18px;
    }

        [type="radio"]:checked + label:before,
        [type="radio"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 18px;
            height: 18px;
            border: 1px solid #cbcfd6;
            border-radius: 100%;
            background: #fff;
        }

        [type="radio"]:checked + label:after,
        [type="radio"]:not(:checked) + label:after {
            content: '';
            width: 8px;
            height: 8px;
            background: #fff;
            position: absolute;
            top: 5px;
            left: 5px;
            border-radius: 100%;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        [type="radio"]:not(:checked) + label:after {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
        }

        [type="radio"]:checked + label:after {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }

        [type="radio"]:checked + label:before {
            border-color: #0c2f54;
            background-color: #0c2f54;
        }

[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label {
    position: relative;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 0.02em;
    color: #8FA8BD;
    font-size: 14px;
    padding-left: 31px;
    padding-right: 20px;
    line-height: 19px;
}

    [type="checkbox"]:checked + label:before,
    [type="checkbox"]:not(:checked) + label:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 19px;
        height: 19px;
        border: 1px solid #EAEAEA;
        border-radius: .25em;
        background: #fff;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    [type="checkbox"]:checked + label:after,
    [type="checkbox"]:not(:checked) + label:after {
        content: '';
        width: 12px;
        height: 12px;
        content: "\f00c";
        color: #0c2f54;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        text-rendering: auto;
        position: absolute;
        top: 0px;
        left: 4px;
        font-size: 11px;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    [type="checkbox"]:not(:checked) + label:after {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    [type="checkbox"]:checked + label:after {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        color: #fff;
    }

    [type="checkbox"]:checked + label:before {
        border-color: #002E5D;
        background-color: #002E5D;
    }

[type="checkbox"]:checked, [type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

/*.form-check {
    display: inline-block;
    min-height: auto;
    padding-left: 0;
    margin: 0px;
}

.form-check-input {
    margin: 0 !important;
    width: 20px;
    height: 20px;
    border: 1px solid #EAEAEA;
    background: #fff;
}

    .form-check-input:checked {
        border-color: #002E5D;
        background-color: #002E5D;
    }

    .form-check-input:focus {
        border-color: #002E5D;
        box-shadow: none !important;
    }*/

/*************************************** Radio & CheckBox Style End ***********************************/


.loginpage {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

    .loginpage .lpleftbox {
        display: flex;
    }

        .loginpage .lpleftbox .lpbox {
            width: 100%;
            display: flex;
            align-items: center;
            padding: 30px 50px;
            background-color: #fff;
            height: 100vh;
        }

    .loginpage .logobox {
        width: 100%;
        display: inline-block;
        margin-bottom: 50px;
    }

    .loginpage .lptitlebox {
        width: 100%;
        display: inline-block;
        margin-bottom: 50px;
    }

        .loginpage .lptitlebox h1 {
            font-weight: 700;
            font-size: 32px;
            line-height: 32px;
            letter-spacing: 0.02em;
            color: #002E5D;
            margin-bottom: 15px;
        }

        .loginpage .lptitlebox h6 {
            font-weight: 400;
            font-size: 20px;
            line-height: 28px;
            color: #343D48;
        }

    .loginpage .form-group {
        margin-bottom: 1.5rem;
    }

    .loginpage .lsabox {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }

        .loginpage .lsabox h6 {
            font-weight: 400;
            font-size: 14px;
            line-height: 14px;
            letter-spacing: 0.02em;
            color: #2D3748;
        }

        .loginpage .lsabox a {
            font-weight: 500;
            font-size: 14px;
            line-height: 14px;
            letter-spacing: 0.02em;
            color: #002E5D;
        }

            .loginpage .lsabox a:hover {
                text-decoration: underline !important;
            }

.btnShedow {
    box-shadow: 0px 8px 24px rgba(8, 29, 52, 0.2)!important;
}

.signupmain .logobox {
    padding: 0px 50px;
}

.signupform {
    width: 100%;
    display: inline-block;
}

    .signupform .sufinner {
        width: 100%;
        display: inline-block;
        padding: 0px 50px;
        height: calc(100vh - 270px);
    }

    .signupform .sufboxes {
        width: 100%;
        display: inline-block;
        margin-bottom: 30px;
    }

        .signupform .sufboxes:last-child {
            margin-bottom: 0px;
        }

    .signupform .boxestitle h2 {
        font-weight: 700;
        font-size: 32px;
        line-height: 32px;
        letter-spacing: 0.02em;
        color: #002E5D;
        margin-bottom: 20px;
    }


.loginpage .lprightbox .lpbox {
    height: 100vh;
}

    .loginpage .lprightbox .lpbox img {
        height: 100%;
        object-fit: cover;
    }


/*Responsive Style Start*/
/*// `xxl` applies to x-large devices (large desktops, less than 1920px)*/
@media (max-width: 1920.98px) {
}

/*// `xxl` applies to x-large devices (large desktops, less than 1680px)*/
@media (max-width: 1680.98px) {
}

/*// `xxl` applies to x-large devices (large desktops, less than 1440px)*/
@media (max-width: 1440.98px) {
    /*.form-group .form-label {
        font-size: 14px;
        line-height: 14px;
    }*/

    [type="checkbox"]:checked + label,
    [type="checkbox"]:not(:checked) + label {
        font-size: 14px;
    }

    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        font-size: 14px;
    }

    .loginpage .logobox img {
        width: 150px;
    }

    .loginpage .lptitlebox h1 {
        font-size: 25px;
        line-height: 25px;
    }

    .loginpage .lptitlebox h6 {
        font-size: 14px;
    }

    .signupform .sufboxes {
        margin-bottom: 10px;
    }

    .signupform .boxestitle h2 {
        font-size: 25px;
        line-height: 25px;
        margin-bottom: 15px;
    }

    /*.loginpage .lpleftbox {
        overflow-y: auto;
        overflow-x: hidden;
    }

        .loginpage .lpleftbox .lpbox {
            height: 100%;
        }*/

    /*.signupmain .lpleftbox .lpbox {
        align-items: start;
    }*/

    .loginpage .logobox {
        margin-bottom: 30px;
    }

    /*.signupform .sufinner {
        height: calc(100vh - 30vh);
    }*/

    .signupform .sufinner .simplebar-track.simplebar-horizontal {
        display: none;
    }

    .signupform .btnbox {
        padding-top: 20px;
    }

    .signupform .sufinner {
        height: calc(100vh - 225px);
    }
}

/*// `xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
}

/*// `xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1280.98px) {
    .loginpage .lpleftbox .lpbox {
        padding: 30px 30px;
    }

    .signupmain .logobox {
        padding: 0px 30px;
    }

    .signupform .sufinner {
        padding: 0px 30px;
    }

    /*.signupform .sufinner {
        height: calc(100vh - 33vh);
    }*/
}

/*// `xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
}

/*// `lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .btnboxcol {
        flex: 0 0 auto;
        width: 60%;
    }

    .signupform .sufiboxes {
        flex: 0 0 auto;
        width: 100%;
    }

    .loginpage .lsabox {
        display: inline-block;
        align-items: inherit;
        justify-content: inherit;
    }

        .loginpage .lsabox h6 {
            margin-bottom: 10px;
        }
}

/*// `md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {

    .btnboxcol {
        flex: 0 0 auto;
        width: 80%;
    }

    .loginpage {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    /*.loginpage .lpleftbox .lpbox {
            height: 100%;
        }*/

    .lprightbox {
        display: none;
    }

    /*.signupform .sufinner {
        height: 100%;
    }*/

    .signupmain .lpleftbox .lpbox {
        align-items: start;
        height: 100%;
    }

    .signupform .sufinner {
        height: calc(100vh - 225px);
    }
}

/*// `sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .loginpage .lptitlebox {
        margin-bottom: 30px;
    }

    .signupform .sufinner {
        height: calc(100vh - 280px);
    }

    .signupform .boxestitle h2 {
        font-size: 20px;
        line-height: 20px;
    }

    .loginpage .signup-link-lgn {
        display: inline-block !important;
        width: 100%;
    }

        .loginpage .signup-link-lgn .signupchk {
            margin-bottom: 10px;
        }
}

/*// `xs` returns only a ruleset and no media query*/
@media (max-width: 480.98px) {
}
