@charset "UTF-8";

/* Verification Layer */
.verification-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 35, 102, 1);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-image: url(../imgs/roche/bg-main-alpha.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
}

.verification-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 20px;
}

.verification-content h2 {
    margin-bottom: 30px;
    color: white;
}

.verification-btn {
    display: inline-block;
    padding: 12px 0;
    width: 106px;
    background: white;
    color: #022366;
    text-decoration: none;
    text-transform: uppercase;
    margin: 10px;
    border: 1px solid white;
    border-radius: 3px;
    transition: 0.3s;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
}

.verification-btn--outline {
    color: white;
    background-color: rgba(255,255,255,0);
}

.verification-btn:hover {
    color: #022366;
    box-shadow: 0 0 0 5px rgba(255,255,255,0.3);
}

.verification-btn--outline:hover {
    color: white;
}

.verification-layer.hidden {
    display: none;
}