:root {
    --font-size-base: 16px;
    --font-family-base: 'Source Sans Pro', sans-serif;
    --font-family-heading: 'Source Sans Pro', sans-serif;
    --font-weight-base: 400;
    --font-weight-heading: 600;
    font-size: var(--font-size-base);
}

html, body {
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #000;
}

body {
    font-family: var(--font-family-base);
    font-size: 1rem;
    font-weight: var(--font-weight-base, 400);
}

a:hover {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-heading, 600);
    color: #000;
}

.iti {
    display: block !important;
}

.iti .iti__selected-flag {
    background-color: transparent !important;
}

.iti .iti__selected-flag .iti__flag {
    display: none !important;
}
.iti .iti__country-list {
    border: .125rem solid #ced4da !important;
    box-shadow: none !important;
}

.form-group {
    margin-bottom: .5rem;
}

label {
    margin-bottom: .25rem;
}

.form-control {
    border-width: .125rem;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}

.form-control:focus {
    box-shadow: none;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    color: var(--danger);
}

.btn {
    border-width: .125rem;
}

#swal2-content {
    font-size: 1rem;
}

body.processing,
body.processing * {
    pointer-events: none !important;
    cursor: wait !important;
}

body.processing {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

body.processing::before {
    content: "";
    position: absolute;
    z-index: 6001;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

body.processing::after {
    position: absolute;
    z-index: 6002;
    top: 50%;
    left: 50%;
    width: 4rem;
    height: 4rem;
    background-color: #fff;
    border-radius: 50%;
    margin: -2rem 0 0 -2rem;
    box-shadow: 0 0 40px rgba(0, 0, 0, .4);
    font-size: 2rem;
    line-height: 4rem;
    text-align: center;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f110";
    -webkit-animation: fa-spin 2s linear infinite;
    animation: fa-spin 2s linear infinite;
}

#header {
    display: flex;
    align-items: center;
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

.logo {
    width: 8em;
    height: auto;
    margin-right: auto;
}

.page-close {
    margin-left: auto;
}

.divider-v {
    flex: 0 0 1px;
    max-width: 1px;
    opacity: .8;
    background-color: #858f96;
}

signup, signin, forgot_password {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -4.5rem;
}

signup .form-signup,
signin .form-signin,
forgot_password .form-forgot_password {
    width: 100%;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-heading {
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1rem;
    font-weight: 400;
}

.form-section {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 2rem 0;
}

.form-fields,
.form-image {
    display: flex;
    flex: 1 1 auto;
    max-width: 50%;
    flex-direction: column;
}

.form-fields {
    padding-left: 3rem;
}

.form-image {
    padding-right: 0;
}

terms-of-use {
    flex: 1 1 auto;
    width: 100%;
    max-width: 360px;
    margin: 1rem auto;
    font-size: .8rem;
    color: #858f96;
    line-height: 1.5;
    text-align: center;

}

signup-thank_you {
    background-color: #f3f6f9;
}

.card-thank_you {
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    border-color: #fff;
    border-radius: 0.42rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .2);
    transition: height .4s .1s, width .4s .1s, box-shadow .3s, -webkit-box-shadow .3s;
    transition-timing-function: cubic-bezier(.67, .17, .32, .95);
}

.card-thank_you .card-body {
    padding: 3rem;
}

.card-thank_you .card-title {
    margin-bottom: 2rem;
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    font-weight: 400;
}

.card-thank_you .card-content {
    font-size: 1.2rem;
    font-weight: 300;
}

.card-thank_you .btn {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    #header {
        padding: 1rem;
        font-size: 1rem;
    }

    signup, signin, forgot_password {
        margin-top: 0;
    }

    .page-title {
        font-size: 2.5rem;
        font-weight: 500;
    }

    .form-section {
        flex-direction: column;
        padding: .5rem 0;
    }

    .form-image {
        display: none;
    }

    .divider-v {
        display: none;
    }

    .form-fields {
        width: 360px;
        max-width: 100%;
        margin: 0 auto;
        padding-left: 0;
    }

    .card-thank_you .card-title {
        font-size: 2.5rem;
    }

    .card-thank_you .card-content {
        font-size: 1rem;
    }

    .card-thank_you .btn {
        font-weight: 600;
        font-size: 1rem;
        line-height: 1.5;
    }
}

.sitemia_plus {
    font-family: 'Montserrat', sans-serif;
}

.sitemia_plus .page-title {
    margin-top: 2rem;
    font-family: 'Playfair Display', serif;
}

.sitemia_plus .page-subtitle {
    font-family: 'Montserrat', sans-serif;
}
