.flex-wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: space-between;
}

#banner-container {
    background-color: var(--telegram-color) !important;
    cursor: pointer; 
    bottom: 10px; 
    left: 3rem; 
    right: 3rem;
    height: 2.5rem;
}

@media only screen and (min-width: 770px) {
    #banner-container {
        cursor: pointer; 
        bottom: 10px; 
        left: 15rem; 
        right: 15rem;
        height: 2.5rem;
    }
}

@media only screen and (min-width: 1010px) {
    #banner-container {
        cursor: pointer; 
        bottom: 10px; 
        left: 25rem; 
        right: 25rem;
        height: 2.5rem;
    }
}

@media only screen and (min-width: 1480px) {
    #banner-container {
        cursor: pointer; 
        bottom: 10px; 
        left: 40rem; 
        right: 40rem;
        height: 2.5rem;
    }
}

#success-payment-card {
    width: 20rem;
    height: 28.4rem;
}

@media only screen and (min-width: 770px) {
    #success-payment-card {
        width: 25rem;
        height: 28.4rem;
    }
}

#img-container img{
    width: 20rem;
    opacity: 0.6;
}

@media only screen and (min-width: 767px) {
    #img-container img{
        width: auto;
    }
}

#img-logo{
    display: none;
}

@media only screen and (min-width: 350px) {
    #img-logo{
        display: block;
    }
}

#privacy-container a:hover
{
    text-decoration-line: underline !important;
}