.thankyou-left-component {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 85vh;
}

.heading-msg {
    color: var(--primary-color);
}

.qrcode-lbl {
    width: 60%;
    color: var(--primary-color);
    text-align: center;
}

.btn-options {
    width: 100%;
    border-radius: 8px;
    background-color: white;
    font-size: 1.125rem;
    border: 2px solid var(--primary-color);
    transition-duration: 0.4s;
    color: var(--primary-color);
}

.btn-options:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.btn-options:hover .btn-router-link {
    color: white;
    text-decoration-color: var(--primary-color);
}

.btn-router-link {
    color: var(--primary-color);
    text-decoration: none;
}

@media screen and (min-width:768px) {
    .btn-options {
        width: 250px;
        padding: 10px;
    }
}

@media screen and (min-width:812px) and (max-width:812px) {
    .thankyou-left-component {
        margin-top: 6rem !important;
        align-items: center;
    }
}