.content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.card {
    border-radius: 25px;
}
.qrcode {
    height: 100%;
    width: 100%;
    flex-shrink: 0;
}

#four-digit-qr-code {
    margin-top: 11px;
    padding: 4px;
    background: white;
    position: absolute;
    color: black;
    text-align: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.head-text {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px
}

.rounded_corners {
    border-radius: 16px;
}

#error {    
    background: #FBE7F0;  
    padding: 16px;  
}

#refresh-qr {
    gap: 16px;
}

#error p {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
}

#hand-img {
    background: #F8F8F8;
}

#error,
#hand-img,
#qr-image {
    height: 260px;
    width: 260px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: auto;    
}

.button-style {
    color: #74284b;
    border-radius: 10px;
    width: 100%;
    font-size: 20px;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
}
.button-style:hover {
    background-color: #b03b6f;
    border-color: #b03b6f;
}
.img-thumbnail {
    border-radius: 25px;
}

.close-btn {
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.close-btn::before, .close-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #B03B6F;
}

.close-btn::before {
    transform: rotate(45deg);
}

.close-btn::after {
    transform: rotate(-45deg);
}

.link {
    color: #b03b6f;
}

.info {
    text-align: center;
}

.qrcode {    
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-block {    
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#error,
#refresh-qr,
#open-app,
#qr-image,
#hand-img {
    display: none;
    align-items: center;
    flex-direction: column;
}

#qr-image {
    width: 200px;
    height: 200px;
}

#hide_documents {
    display: none;
}

.error-flow,
.app-flow,
.desktop-flow {
    display: none;
    justify-content: center;
}

.clickable {
    cursor: pointer;
}

#part1 {
    text-align: center;
}

.info {
    display: flex;
    flex-direction: column;
    flex: 1; 
    width: 100%;
}

@media screen and (max-width: 759px) {
    .content {
        gap: 28px;
    }
}

@media screen and (min-width: 760px) {

    #container {
        padding-left: 48px;
        padding-right: 48px;
    }

    .content {
        gap: 48px;
        text-align: left;
    }

    .text-block {
        align-items: start;
    } 

    .info {      
        text-align: left;        
    }

    .scrollable {
        display: flex;
        flex-direction: column;
        flex: 1;
        height: 100%;
        background: yellow;
    }

    .content {
        height: 100%;
        display: grid;
        grid-template-areas: "part1 part2";
        grid-template-columns: auto 1fr;
        grid-template-rows: 1fr;        
    }

    #part1 {
        display: flex;
        flex-direction: column;        
        grid-area: part1;
        max-height: 100%;
        margin: auto 0px;
    }

    #part2 {
        display: flex;
        flex-direction: column;  
        grid-area: part2;
        overflow-y: scroll;
        max-height: 100%;
        margin: auto 0px;
    }


}