body, input, button, select, textarea{
    font-family: "Roboto", sans-serif;
}
.guide {
    width: 100%;
    min-height: 390px;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    justify-content: center;
}
.guide.failed {
    background: #ffe6e5;
    border: none;
    padding: 20px;
}
.guide.success {
    background: #eaffe5;
    border: none;
    padding: 20px;
}
.flex-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.guide-header {
    text-align: center;
    margin:15px;
}
.guide-description {
    text-align: center;
    font-size: 14px;
}
.flex-col-center>.button {
    align-self: auto;
}
.button {
    display: inline-block;
    box-sizing: border-box;
    margin-top: 15px;
    align-self: flex-end;
    padding: 11px 32px;
    font-size: 18px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    text-align: center;
}
.button.secondary {
    background: #0b2028;
    color: #fff;
}
.button.none {
    background: none;
    color: #193e4f;
}
.circle-icon.error {
    background: #fc7e7e;
}
.guide-icon {
    margin: 20px;
}
.circle-icon {
    width: 75px;
    min-width: 75px;
    height: 75px;
    min-height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}
.circle-icon-image {
    width: 60%;
    height: 60%;
}
#qrcode-vab,#qrcode-frisk,#qrcode-sjuk{
    flex-direction: column;
    align-items: center;
}
.loader {
    border: 10px solid #f3f3f3;
    border-top: 10px solid #193e4f;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 40%;
    transform: translate(-50%, -50%);
    /* left: 45%; */
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.frm-lnk{
    color: #5cafdb;
    font-size: 16px;
}
.head-wrap h3{
    font-size: 1.5em;
    text-align: center;
    font-weight: 600;
    margin: 5px 0;
}
.head-wrap p{
    text-align: center;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 5px;
}
.bankid_btn {
    padding: 12px 25px;
    background: #5cafdb;
    border: none;
    border-radius: 30px;
    letter-spacing: 0.5px;
    font-size: 20px;
    color: #fff;
    font-weight: normal;
    width: 100%;
    line-height: 1.8;
    cursor: pointer;
    -webkit-appearance: button;
    vertical-align: middle;
    margin: 0px;
}
.footer-wrap {
    text-align: center;
    width: 60%;
    margin-top: 30px;
}
.guide-inner.loading {
    opacity: 0.2;
    pointer-events: none;
}

.bankid_btn.secondary{
    background: #fff;
    color: #5cafdb;
    border: 1px solid #5cafdb;
}

/* Mobile Specific */
@media (max-width: 768px) {
    .footer-wrap{
        width: 100%;
    }
    .footer-wrap button{
        margin-bottom: 10px;
    }
    .modal-content{
        margin: 15px;
    }
}