﻿#bankid > .panel {
    max-width: 31.25rem;
    margin: 0 auto;
}

#bankid #logo {
    padding-top: 0.625rem;
    width: 5rem;
}

#bankid h4 {
    padding-bottom: 0.625rem;
}

.bid-li {
    width: 100%;
    display: flex;
}

.nav-tabs > li:not(.active):hover {
    border-color: #eee #eee #ddd;
}

.nav > li:not(.active):hover {
    text-decoration: none;
    background-color: #eee;
}

.bid-li > a {
    text-align: center;
    width: 100%;
    margin-bottom: 0.7rem;
    margin-top: 0.4rem;
    color: #5D5FEF;
}

.bid-login-text {
    margin-top: 1.2rem;
    font-size: 1.5rem;
}


.bid-li.active {
    border: none;
    border-bottom: 0.188rem solid #286090;
}

.bid-login-btn {
    margin-top: 1rem;
}

#bankid #nid-help-text {
    color: #667085;
    padding: 0.375rem;
    padding-bottom: 0;
}

#bankid #cancelOrderButton {
    margin: 0.625rem auto;
    margin-bottom: 1.25rem;
}

#bankid.container-mobile #cancelOrderButton {
    margin-top: 1.563rem;
}

#backgroundImage {
    position: absolute;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position:unset;
    margin-left: 15%;
    margin-top: 10%;
}

.signInOptionButton {
    height: 4vh;
    min-width: 1.25rem;
    border: thin solid;
    background-color: rgb(35, 89, 113);
    color: white;
    border-radius: 0.25rem;
    transition-duration: 0.4s;
}

.signInOptionButton:hover {
    border: thin solid;
    border-color: rgb(69, 155, 190);
    background-color: white;
    color: black;
}

#bankIdImg {
    margin: 3vh 0;
}

#entryEventImg {
    margin-bottom: 0px;
}

.leftContainer {
    position: absolute;
    left: 0px;
    height: 80vh;
    min-width: 19%;
    max-width: 19%;
    background-color: #fafafa;
    box-shadow: 0.625rem 0 0.625rem -0.125rem grey;
    text-align: center;
}

.loginArea {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
}

.signInContainer {
    margin-top: 0%;
    padding-top: 0%;
}

.mobileContainerDiv {
    text-align: center;
    height: 80vh;
    width: 100%;
    background-color: #fafafa;
}

.mobileContainerDiv .card {
    width: 100%;
    height: 100%;
}

.signInContainerMobile {
    margin-top: 0%;
    padding-top: 0%;
}

.bankIdSignInOptions {
    margin: auto;
    width: 25%;
    height: 25vh;
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
    border: thin;
    border-style: solid;
    border-color: rgb(35, 89, 113);
    align-items: center;
}

.bankIdSignInOptions > a {
    margin-top: 1vh;
    width: 70%;
    border-style: solid;
    border: inherit;
    color: white;
    background-color: rgb(69, 155, 190);
}

.qrCodeContainer {
    text-align: center;
    margin-bottom: 1vh;
}

.qrContainer .qrCodeImage {
    min-width: 30%;
    max-width: 50%;
    height: auto;
}

.ssnContainer {
    display: none;
}

.statusMessages {
    margin-top: 2%;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
}

#printData {
    margin-top: 0;
    margin-bottom: 2%;
}

.loaderContainer {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 4.3rem auto;
    position: relative;
    width: 8rem;
    height: 8rem;
}

.loaderContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0.8rem solid #e5e7eb;
    border-radius: 50%;
    justify-self: center;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.loader {
    width: 100%;
    height: 100%;
    border: 0.8rem solid transparent;
    border-top-color: #5d5fef;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.bank-id-ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.panel {
    margin-bottom: 1.25rem;
    background-color: #fff;
    border: 0.063rem solid transparent;
    border-radius: 0.25rem;
    -webkit-box-shadow: 0 0.063rem 0.063rem rgb(0 0 0 / 5%);
    box-shadow: 0 0.063rem 0.063rem rgb(0 0 0 / 5%);
}

.panel-default {
    border-color: #ddd;
}


.panel-body {
    padding: 2rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}