@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap);

:root {
    --spica-red: #9e7840;
    --spica-white: #ffffff;
    --body-font-base: Roboto,sans-serif;
    --body-font-size: 18px;
    --body-line-height: 1.8
}

html{
	overflow: hidden;
}

body {
    font-family: var(--body-font-base);
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
    direction: ltr;
    text-align: left;
    margin: 0;
    padding: 0
}

@media (max-width:480px) {
    body {
        font-size: 16px
    }
}

*, ::after, ::before {
    box-sizing: border-box
}

a, button, input[type=submit] {
    outline: 0 !important;
    color: inherit;
    cursor: pointer;
    -webkit-transition: all .4s ease-in-out 0s;
    transition: all .4s ease-in-out 0s
}

figure {
    margin: 0
}

.container {
    margin: 0 auto;
    padding: 0 30px
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px;
        padding: 0 30px 60px
    }
}

@media (min-width:1530px) {
    .container {
        max-width: 1464px;
        padding: 0px 30px
    }
}

.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: -15px;
    margin-right: -15px
}

@media (min-width:992px) {
    .row {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
}

.d-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.justify-content-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.align-items-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.align-self-center {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center
}

.d-block {
    display: block
}

.text-center {
    text-align: center
}

.img-fluid {
    max-width: 100%
}

[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.col-xl-6 {
    width: 100%
}

.col-xl-4 {
    width: 100%
}

@media (min-width:992px) {
    .col-xl-6 {
        width: 50%
    }

    .col-xl-4 {
        width: 43%
    }
}

@media (min-width:1200px) {
    .col-xl-6 {
        width: 50%
    }

    .col-xl-4 {
        width: 40%
    }
}

@media (min-width:1530px) {
    .col-xl-6 {
        width: 56%
    }

    .col-xl-4 {
        width: 33.33333%
    }
}

@media (max-width:991px) {
    .hide-sm {
        display: none
    }

    .loader {
        max-width: 52%;
    }
}

.app_loader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    background-color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 99999;
}

.login_header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 65px;
    height: 100px;
	flex-flow: row-reverse;
}

.app_header__logo {
    flex: auto;
}

@media (max-width:991px) {
    .login_header {
        height: 90px;
        padding: 0 30px
    }

        /* .login_header img { */
            /* height: 20px */
        /* } */
		
		.app_header__logo {
			text-align: center;
			margin-top: 10px;
		}
		
		.container{
			margin-top: 20px;
		}
}

.txt_12 {
    font-size: 12px
}

.txt_14 {
    font-size: 14px
}

.txt_24 {
    font-size: 24px
}

.title._xl {
    font-size: 36px;
    line-height: 1;
    margin: 0
}

.ForgetDIV .title._xl{
	font-size: 26px;
}

@media (max-width:575px) {
    .title._xl {
        font-size: 30px
    }
}

.txt_red {
    color: var(--spica-red)
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-2 {
    margin-bottom: 10px
}

.mb-5 {
    margin-bottom: 50px
}

.form-control {
    display: block;
    width: 100%;
    padding: 15px .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: rgba(0,0,0,.02);
    border: 1px solid transparent;
    border-radius: 0 16px;
    outline: 0;
    margin-bottom: 8px
}

    .form-control:focus {
        background: #fff;
        border-color: var(--spica-red)
    }

.password_control {
    position: relative
}

    .password_control .form-control {
        padding-right: 54px
    }

    .password_control .show_password {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: absolute;
        width: 30px;
        height: 30px;
        right: 15px;
        bottom: 13px;
        opacity: .75
    }

        .password_control .show_password:hover {
            opacity: 1;
            -webkit-transform: scale(1.07);
            -ms-transform: scale(1.07);
            transform: scale(1.07)
        }

.form-check {
    display: block
}

    .form-check label {
        position: relative;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

        .form-check label::before {
            content: "";
            width: 22px;
            height: 22px;
            background-color: transparent;
            border: 1px solid rgba(0,0,0,.1);
            border-radius: 0 6px;
            display: inline-block;
            position: relative;
            vertical-align: middle;
            cursor: pointer;
            margin-right: 5px
        }

    .form-check input {
        padding: 0;
        height: initial;
        width: initial;
        margin-bottom: 0;
        display: none;
        cursor: pointer
    }

        .form-check input:checked + label::before {
            content: "";
            background: var(--spica-red)
        }

        .form-check input:checked + label:after {
            content: "";
            display: block;
            position: absolute;
            top: 3px;
            left: 8px;
            width: 6px;
            height: 13px;
            border: solid #fff;
            border-width: 0 2px 2px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg)
        }

.button {
    display: block;
    width: 100%;
    background: var(--spica-red);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    border: 2px solid var(--spica-red);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    padding: 14px;
    border-radius: 0 16px 0 16px;
    margin: 50px 0 25px
}

    .button:hover {
        background: #fff;
        color: var(--spica-red)
    }

.link.unstyled {
    text-decoration: none
}

.link:hover {
    color: var(--spica-red)
}

.map {
    position: relative;
	margin-top: 30px;
}

    .map .map_card {
        position: absolute;
        width: 200px;
        padding: 15px;
        background: #fff;
        border-radius: 24px 0;
        opacity: 0;
        overflow: hidden;
        box-shadow: 0 1px 60px 0 rgba(0, 0, 0, .08);
        -webkit-animation: cardAnimation 12s infinite;
        animation: cardAnimation 12s infinite;
        z-index: 2
    }

        .map .map_card > figure {
            margin-bottom: 10px
        }

            .map .map_card > figure img {
                border-radius: 15px 0 0 0
            }

        .map .map_card .txt {
            font-size: 14px;
            font-weight: 500;
            line-height: 1.5;
            letter-spacing: -1px;
            margin-bottom: 15px
        }

        .map .map_card .tags {
            font-size: 13px;
            font-weight: 500;
            line-height: 1.2;
            color: var(--spica-red)
        }

        .map .map_card .tag_label {
            display: inline-block;
            background: var(--spica-red);
            color: var(--spica-white);
            font-size: 14px;
            line-height: 1;
            font-weight: 500;
            padding: 2px 8px;
            margin-bottom: 10px;
            border-radius: 8px 0
        }

        .map .map_card::before {
            position: absolute;
            content: "";
            width: 150px;
            height: 1px;
            left: calc(50% - 75px);
            top: 0;
            background: var(--spica-red)
        }

        .map .map_card.card1 {
            top: 45%;
            left: 2%;
            -webkit-animation-delay: 1s;
            animation-delay: 1s
        }

        .map .map_card.card2 {
            top: calc(50% + 40px);
            left: calc(50% - 90px);
            -webkit-animation-delay: 4s;
            animation-delay: 4s
        }

        .map .map_card.card3 {
            top: 30%;
            right: 2%;
            -webkit-animation-delay: 7s;
            animation-delay: 7s
        }

        .map .map_card.card4 {
            left: 23%;
            top: 10%;
            -webkit-animation-delay: 10s;
            animation-delay: 10s
        }

    .map .map_img .location {
        position: absolute;
        opacity: 0;
        -webkit-animation: locationAnimation 12s infinite;
        animation: locationAnimation 12s infinite
    }

        .map .map_img .location.america {
            -webkit-animation-delay: 1s;
            animation-delay: 1s
        }

        .map .map_img .location.africa {
            -webkit-animation-delay: 4s;
            animation-delay: 4s
        }

        .map .map_img .location.europe {
            -webkit-animation-delay: 7s;
            animation-delay: 7s
        }

        .map .map_img .location.location4 {
            -webkit-animation-delay: 10s;
            animation-delay: 10s
        }

@-webkit-keyframes cardAnimation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    13.333% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    23.333% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    32.333% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }
}

@keyframes cardAnimation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    13.333% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    23.333% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    32.333% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }
}

@-webkit-keyframes locationAnimation {
    0% {
        opacity: 0
    }

    13.333% {
        opacity: 1
    }

    23.333% {
        opacity: 1
    }

    32.333% {
        opacity: 0
    }
}

@keyframes locationAnimation {
    0% {
        opacity: 0
    }

    13.333% {
        opacity: 1
    }

    23.333% {
        opacity: 1
    }

    32.333% {
        opacity: 0
    }
}

.validation-summary-errors ul {
    margin: 0;
    padding: 0;
}

.validation-summary-errors li, .errorMsg {
    color: #9e7840;
    list-style: none;
    text-align: center;
    width: 100%;
    float: left;
}

.button50 {
    color: #ffffff !important;
    width: 48%;
    height: 60px;
    line-height: 30px;
    float: left;
}

    .button50:hover {
        color: var(--spica-red) !important;
    }

    .button50:first-child {
        margin-right: 2%;
    }

.ForgetDIVSuccess {
    width: 100%;
    text-align: center;
    color: #4fa14a;
}

    .ForgetDIVSuccess i {
        font-size: 60px;
        display: block;
        clear: both;
        margin-bottom: 20px;
    }

.ForgetDIVError i {
    font-size: 60px;
    display: block;
    clear: both;
    margin-bottom: 20px;
    color: #9e7840;
    text-align: center;
}

.PasswordWrapper {
    position: relative;
}

    .PasswordWrapper span {
        right: 0px;
        left: initial !important;
        top: 87px !important;
    }

#PasswordStrengthBorder {
    top: 82px !important;
    left: 11px !important;
    width: 436px !important;
}

#PasswordStrengthBar {
    top: 83px !important;
    left: 11px !important;
}

#NewPassword {
    margin-bottom: 30px;
}

#passwordPolicy:hover {
    color: #9e7840;
}

#passwordPolicy {
    font-size: 0.8rem;
}