/* Main */
/********/
html, body {
    height: auto;
    min-height: 100%;
}


body {
    font-family: "Noto Sans", Arial, serif;
    font-weight: 400;
    background-color: #F7F7F7;

}
.container {
    padding-top: 20px;
    max-width: 1300px;
}

/* Inner Container */
.container.inner-container {
    padding-bottom: 15px;
}

/* Buffer Icon */
.buffer-icon-div {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

/*LOG OUT SECTION, HEADER*/
.header .col-6:nth-child(2) {
    display: flex;
    justify-content: flex-end;
}

.profile-container > * {
    padding: 7px;
}

.header .col-12:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header .sandbox {
    display: flex;
    justify-content: center;
    color: red;
    pointer-events: none;
}

/* Footer */
.footer .row .col-12 {
    display: flex;
    justify-content: center;
}

.ssl-connection {
    color: #006a00;
}

.footer {
    position: fixed;
    display: flex;
    justify-content: center;
    cursor: default;
    bottom: 0;
    width: 100%;
    padding-bottom: 10px;
    padding-top: 10px;
    border-radius: 7px 7px 0 0;
}

.username-text {
    cursor: default;
}

.logout-btn {
    background-color: #333333;
}

[data-lastpass-root] {
    display: none !important;
}

.sotpay-logo {
    max-height: 60px;
    width: auto;
}

/*Mobile Responsive Design*/
/**************************/
@media
only screen and (max-width: 768px),
only screen and (max-device-width: 768px)
{

    /*Main Container*/
    .container {
        margin-top: 0;
        margin-bottom: 0;
    }

    /*Spacing for inner main form*/
    .main-container .card {
        padding: 0 !important;
    }

    .username-text {
        display: none;
    }

}

