/* Default CSS */
.main-checkout {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    height: 100vh;
    padding: 20px;
    background-color: #666666;
    overflow: scroll;
    z-index: 99999999999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}
.payment {
    text-align: center;
}
.main-checkout.active {
    transform: translateY(0);
}
.close-checkout {
    color: #ffffff;
    cursor: pointer;
    text-align: right;
    font-size: 20px;
    font-weight: 800;
}
.pix_container .scan {
    margin: 10px 0;
    text-align: center;
    font-weight: 800;
}
.pix_container .img-fluid {
    max-width: 50%;
    height: auto;
}
.pix-qrcode ul {
    list-style: none;
    padding: 0;
}
.pix-qrcode {
    margin: 15px 0;
    text-align: left;
}
.pix-copy {
    cursor: pointer;
    margin: 10px 0;
    text-align: center;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #cccccc
}
.pix-copy p {
    padding-right: 30px;
    width: 100%;
    word-break: break-all;
}
.pix-copy .bi-copy, .pix-copy .bi-check2 {
    font-size: 2em;
}
.pix-copy .bi-check2 {
    display: none;
    color: #57a168;
}
.pix-copy.success {
    border: 1px solid #57a168;
}
.pix-copy.success .bi-copy {
    display: none;
}
.pix-copy.success .bi-check2 {
    display: inherit;
}
.resume {
    margin-top: 20px;
    text-align: center;
}
.copyClick {
    cursor: pointer;
}
@media (min-width: 48.75em) {
    .card-blur {
        padding: 60px 0;
        min-height: 290px;
    }
    .main-checkout {
        display: flex;
        justify-content: space-between;
    }
    .resume {
        margin-top: 0;
        text-align: right;
    }
}