﻿body {
    margin: 0;
}

a {
    text-decoration: none
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F4F4F4;
    overflow: hidden;
}

.article {
    background-color: #F4F4F4;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 120px);
    min-height: 800px;
    width: 100%;
}

.auth-wrapper {
    width: 75%;
    min-width: 1300px;
    min-height: 800px;
    height: 100%;
    /*height: calc(100vh - 100px);*/
    background-color: #FFF;
}

.auth-top-line {
    width: 100%;
    height: 10px;
    background-color: #FFB900;
}

.auth-top-line-full {
    display: none;
    position: absolute;
    width: 100%;
    height: 10px;
    background-color: #FFB900;
}

.image-cont {
    height: 100%;
    width: 50%;
}

.auth-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.language-wrapper {
    width: 100%;
    padding-right: 20px;
    padding-top: 5px;
    height: 50px;
    visibility: hidden;
}

.language-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 65px;
    height: 36px;
    border-radius: 3px;
    background-color: #024e7e;
    margin-left: auto;
    cursor: pointer;
}

.language-cont:hover {
    outline: 1px solid #024e7e;
}

.language-text {
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    font-size: 0.9rem;
    padding-right: 7px;
}

.language-dropdown {
    border: 1px solid #D9D9D9;
    position: absolute;
    top: 45px;
    border-radius: 4px;
    width: 150px;
    height: 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    visibility: hidden;
    right: 20px;
    background-color: #fff;
}

.dropdown-open {
    visibility: visible;
}

.language-choice {
    display: flex;
    flex-direction: row;
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    padding-left: 20px;
    cursor: pointer;
}

.language-choice:hover {
    background-color: #F4F4F4;
}

.language-icon {
    width: 20px;
    margin-right: 10px;
}

.arrow-icon {
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    font-size: 0.8rem;
    padding-bottom: 5px;
}

.auth-cont {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 50%;
}

.form-cont {
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.auth-header {
    width: 80%;
    font-size: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
    color: #212529;
    font-weight: bold;
}

.auth-header-padding {
    padding-bottom: 30px;
}

.details-header-cont {
    width: 80%;
    padding-bottom: 10px;
}

.details-header {
    padding-bottom: 10px;
    font-size: 1.1rem;
    font-family: Arial, Helvetica, sans-serif;
    color: #212529;
}

.details-list {
    list-style-type: '\2713' !important;
    list-style-position: inside;
    width: 80%;
    padding-bottom: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    color: #212529;
}

.details-list-item {
    margin-bottom: 12px;
}

li::marker {
    color: green;
}

.details-list-item-text {
    color: black;
    display: inline-grid;
    width: 80%;
    margin-left: 10px;
}

.auth-disclaimer-cont {
    width: 80%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.auth-disclaimer {
    font-weight: bold;
    font-size: 0.85rem;
    font-family: Arial, Helvetica, sans-serif;
    color: #212529;
}

.error-text {
    margin-bottom: 10px;
    width: 80%;
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 10px;
    padding-left: 10px;
    font-size: 0.9rem;
    color: red;
    visibility: hidden;
}

.input-cont {
    width: 80%;
    padding-bottom: 20px;
    position: relative;
}

.input-name-cont {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.input-pass-cont {
    display: flex;
    align-items: center;
}

.input-name {
    border-radius: 5px;
    height: 40px;
    width: 90%;
    padding-left: 20px;
    font-family: Arial, Helvetica, sans-serif;
    outline: none;
}

.input-pass {
    border-radius: 5px;
    height: 40px;
    width: 90%;
    padding-left: 20px;
    font-family: Arial, Helvetica, sans-serif;
    outline: none;
}

.input-unfilled {
    border: 1px solid #c43128;
}

.input-filled {
    border: 1px solid #50C878;
}

.info-icon {
    width: 17px;
    margin-left: 10px;
}

.account-img-cont {
    display: none;
    position: absolute;
    z-index: 10;
    left: 100%;
}

.tax-img-cont {
    display: none;
    position: absolute;
    z-index: 10;
    left: 100%;
}

.account-info:hover + .account-img-cont {
    display: block;
}

.tax-info:hover + .tax-img-cont {
    display: block;
}

.tnc-cont {
    width: 80%;
    height: 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding-left: 10px;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
}

.checkbox {
    margin-left: 10px
}

.button-cont {
    width: 80%;
    height: 40px;
    background-color: #024E7E;
    border-radius: 5px;
    color: #fff;
    font-size: 1.1em;
    font-family: Arial, Helvetica, sans-serif;
    border: none;
}

.button-cont-disabled {
    width: 80%;
    height: 40px;
    background-color: #6ca7cc;
    border-radius: 5px;
    color: #fff;
    font-size: 1.1em;
    font-family: Arial, Helvetica, sans-serif;
    cursor: default;
    border: none;
}

.footer-wrapper {
    width: 75%;
    height: 120px;
    background-color: #002445;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.footer-cont {
    padding: 10px;
}

.footer-cont-bottom {
    width: 100%;
    color: #fff;
    font-size: 0.8em;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-text:hover {
    background-color: #343A40;
}

.footer-text {
    color: #fff;
    font-size: 1.05rem;
    font-family: Arial, Helvetica, sans-serif;
    white-space: nowrap;
    padding: 10px;
}

@media (max-width: 1300px) {

    .main {
        overflow: hidden;
    }

    .image-cont {
        display: none;
    }

    .auth-cont {
        align-items: center;
        justify-content: center;
    }

    .auth-top-line-full {
        display: block;
    }

    .footer-wrapper {
        width: 100%
    }

    .language-cont {
        position: absolute;
        right: 20px;
    }

    .language-dropdown {
        top: 55px;
    }

    .input-wrapper {
        background-image: url("/background-opaque.png");
        background-size: cover;
    }

}

@media (max-width: 840px) {

    .footer-cont {
        padding: 8px;
    }

    .footer-text {
        font-size: 0.9rem;
    }

    .footer-cont-bottom {
        font-size: 0.7em;
    }

}

@media (max-width: 715px) {

    .footer-cont {
        padding: 7px;
    }

    .footer-text {
        font-size: 0.8rem;
    }

    .footer-cont-bottom {
        font-size: 0.6em;
    }

}

@media (max-width: 450px) {
    .auth-wrapper {
        min-width: 1050px;
    }
}

@media (min-width: 1300px) {
    .footer-wrapper {
        min-width: 1300px;
    }

    .language-wrapper {
        position: relative;
    }
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}






#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}








.bank3ds-wrapper {
    width: 75%;
    min-width: 1300px;
    min-height: 800px;
    height: 100%;
    background-color: #FFF;
}

.bank3ds-cont {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.loader-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 50%;
}

.loader-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.loader-img {
    height: 150px;
    width: 150px;
}

.success-img {
    display: none;
    height: 150px;
    width: 150px;
}

.error-img {
    display: none;
    height: 150px;
    width: 150px;
}

.threeDSMessage-text {
    padding-top: 10px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    color: #212529;
}


@media (max-width: 1300px) {
    .bank3ds-cont {
        align-items: center;
        justify-content: center;
    }

    .loader-wrapper {
        background-image: url("/background-opaque.png");
        background-size: cover;
    }
}

@media (max-width: 450px) {
    .bank3ds-wrapper {
        min-width: 1050px;
    }
}



.auth-error-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url(/background-opaque.png);
    width: 75%;
    height: 100%;
    background-size: cover;
    min-width: 1300px;
}

.auth-error-img {
    width: 200px;
    height: 200px;
}

.auth-error-text {
    padding-top: 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: #212529;
    font-weight: bold;
    font-size: 1.2rem;
}

.auth-completed-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url(/background-opaque.png);
    width: 75%;
    height: 100%;
    background-size: cover;
    min-width: 1300px;
}

.auth-completed-img {
    width: 200px;
    height: 200px;
}

.auth-completed-text {
    padding-top: 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: #212529;
    font-weight: bold;
    font-size: 1.2rem;
}

.auth-canceled-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url(/background-opaque.png);
    width: 75%;
    height: 100%;
    background-size: cover;
    min-width: 1300px;
}

.auth-canceled-img {
    width: 200px;
    height: 200px;
}

.auth-canceled-text {
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: #ff0000;
    font-weight: bold;
    font-size: 1.4rem;
    background-color: #ffffff70;
    border-radius: 10px
}

.auth-creditcard-text {
    padding-top: 0px;
    padding-bottom:20px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    color: #212529;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 30px;
}


.threeDSMessage-text {
    outline: none;
}


.button-creditcard {
    border-radius: 10px;
    background-color: #04AA6D; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
}