
/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
    font-family: Poppins-Regular;
    src: url('../../fonts/poppins/Poppins-Regular.ttf');
}

@font-face {
    font-family: Poppins-Medium;
    src: url('../../fonts/poppins/Poppins-Medium.ttf');
}

@font-face {
    font-family: Poppins-Bold;
    src: url('../../fonts/poppins/Poppins-Bold.ttf');
}

@font-face {
    font-family: Poppins-SemiBold;
    src: url('../../fonts/poppins/Poppins-SemiBold.ttf');
}

@font-face {
    font-family: Montserrat-Bold;
    src: url('../../fonts/montserrat/Montserrat-Bold.ttf');
}

@font-face {
    font-family: Montserrat-SemiBold;
    src: url('../../fonts/montserrat/Montserrat-SemiBold.ttf');
}

@font-face {
    font-family: Montserrat-Regular;
    src: url('../../fonts/montserrat/Montserrat-Regular.ttf');
}


/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

p {
    font-family: Poppins-Regular;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
    /*font-family: Poppins-Regular;
    font-size: 11px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;*/
}

/*---------------------------------------------*/
input {
    outline: none;
    border: none;
}

label {
    display: block;
    margin: 0;
}

.img1 {
    height: 75px;
    width: auto;
}
/*---------------------------------------------*/
button {
    outline: none !important;
    border: none;
    background: transparent;
}

    button:hover {
        cursor: pointer;
    }

.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #f2f2f2;
}


.wrap-login100 {
    width: 100%;
    background: #fff;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row-reverse;
}

/*==================================================================
[ login more ]*/
.login100-more {
    width: calc(100% - 560px);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

    .login100-more::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.1);
    }



/*==================================================================
[ Form ]*/

.login100-form {
    width: 560px;
    min-height: 100vh;
    display: block;
    background-color: white;
    padding: 39px 55px 34px 55px; /*replace 55 with 34*/
}

.login100-form-title {
    width: 100%;
    display: block;
    font-family: Poppins-Regular;
    font-size: 30px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
    font-weight: bolder;
}

.login100-form-titleDate {
    width: 100%;
    display: block;
    font-family: Poppins-Regular;
    font-size: 23px;
    color: #333333;
    line-height: 1.2;
    text-align: center;
    font-weight: bolder;
}
.login100-form-titleHeading {
    width: 100%;
    display: block;
    font-family: Poppins-Regular; 
    font-size: 39px;
    color: #0d0e0e;
    line-height: 18.2;
    text-align: center;
    font-weight: bold;
}
    /*------------------------------------------------------------------
[ Input ]*/
    .wrap-input100 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    width: 100%;
    height: 80px;
    position: relative;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    margin-bottom: 10px;
}

.label-input100 {
    font-family: Montserrat-Regular;
    font-size: 18px;
    color: #040404;
    line-height: 1.2;
    display: block;
    position: absolute;
    pointer-events: none;
    width: 100%;
    padding-left: 24px;
    left: 0;
    top: 20px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.input100 {
    display: block;
    width: 100%;
    background: transparent;
    font-family: Montserrat-Regular;
    font-size: 18px;
    color: #555555;
    line-height: 1.2;
    padding: 0 20px;
    border: none !important;
}

input.input100 {
    height: 100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

/*---------------------------------------------*/

.focus-input100 {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 1px solid #3792CB; /*#6675df by sweety*/
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scaleX(1.1) scaleY(1.3);
    -moz-transform: scaleX(1.1) scaleY(1.3);
    -ms-transform: scaleX(1.1) scaleY(1.3);
    -o-transform: scaleX(1.1) scaleY(1.3);
    transform: scaleX(1.1) scaleY(1.3);
}

.input100:focus + .focus-input100 {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}


.input100:focus {
    height: 48px;
    border: 1px solid #3792CB;
}

    .input100:focus + .focus-input100 + .label-input100 {
        top: 14px;
        font-size: 13px;
    }

.has-val {
    height: 48px !important;
}

    .has-val + .focus-input100 + .label-input100 {
        top: 14px;
        font-size: 13px;
    }

/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.login100-form-btn {
    /*display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 36px;
    border-radius: 10px;
    background: #3792CB;
    font-family: Montserrat-Bold;
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;*/
    background: -moz-linear-gradient(center top, #FFFFFF 0%, #CCCCCC 100%) repeat scroll 0 0 #E5E5E5;
    background: -webkit-gradient(linear, center, top, from(#FFFFFF), to(#CCCCCC));
    background: -webkit-linear-gradient(top, #FFFFFF 0%, #CCCCCC 100%); /* Chrome10+,Safari5.1+ */
    /*background: -ms-linear-gradient(top, #FFFFFF 0%, #CCCCCC 100%); /* IE10+ */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#CCCCCC',GradientType=0 ); /* IE6-9 */
    border: 1px solid #AAAAAA;
    border-radius: 20px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
    color: #555555;
    cursor: pointer;
    display: block;
    float: left;
    font-family: Arial;
    font-size: 11px;
    font-weight: bold;
    margin: 0;
    position: absolute;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 1px #FFFFFF;
    vertical-align: middle;
    z-index: 100;
    outline: none; /*added by sweety for blue border after selecting button showing blue rectengle*/
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 20%;
    height: 36px;
}

    .login100-form-btn:hover {
        /*background: #333333;*/
        color: black;
        cursor: pointer;
        background: #3792CB;
        color: #FFFFFF;
        text-shadow: none;
        border-color: #3792CB;
    }

    .login100-form-btn:focus {
        background: #60aede;
        box-shadow: 10px 10px 5px grey;
    }

.p-b-43 {
    padding-bottom: 30px;
}

.p-b-43Date {
    padding-bottom: 24px;
}

.flex-sb-m {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.w-full {
    width: 100%;
}

.p-b-32 {
    padding-bottom: 32px;
}

.p-t-3 {
    padding-top: 3px;
}

.split2 {
    height: 12%;
    width: 9%;
    position: fixed;
    z-index: 1;
    top: 67%;
    overflow-x: hidden;
    /* background-color: #f5f4e7; */
    margin-left: 9%;
}

.centered img {
    width: 150px;
    border-radius: 50%;
}

.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

#loader {
    position: absolute;
    left: 50%;
    top: 70%;
    z-index: 1;
    margin: -75px 0 0 -75px;
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #870808;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 2133px) and (max-width: 2300px) {
    .split2 {
        height: 12%;
        width: 9%;
        position: fixed;
        z-index: 1;
        top: 58%;
        overflow-x: hidden;
        /* background-color: #f5f4e7; */
        margin-left: 8%;
    }

    .divLoader {
        margin-top: 78%;
        border-top: 1px solid grey !important;
    }
}

.divLoader {
    border-top: 1px solid grey !important;
    margin-top: 45%;
}

.login_errorMsg {
    color: #C10000;
    padding-top: 43px;
    font-size: 15px;
    font-weight: 900;
    font-style: italic;
}

#dvImage img {
    transform-origin: 50% 65%;
    transition: transform 5s, filter 3s ease-in-out;
    filter: brightness(150%);
}

#dvImage:hover img {
    filter: brightness(100%);
    transform: scale(3);
}

[type="checkbox"].fancy-check {
    position: absolute;
    left: -9999px;
}

    [type="checkbox"].fancy-check + label {
        cursor: pointer;
        display: table;
    }

        [type="checkbox"].fancy-check + label:before {
            font-family: 'FontAwesome';
            display: inline-block;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            border: 1px solid transparent;
            font-size: 22px;
            min-width: 28px;
            padding: 2px 0 0 3px;
        }

    [type="checkbox"].fancy-check:checked + label:before {
        content: "\f046";
    }

    [type="checkbox"].fancy-check:not(:checked) + label:before {
        content: "\f096";
    }

    [type="checkbox"].fancy-check:focus + label:before {
        border: 1px dashed #777;
    }

    [type="checkbox"].fancy-check:hover + label:before {
        color: #67afe5;
    }
