
/* demo css */

.checkout {
    background-color: #f0f7fb;
}
.checkout .qt-container {
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url(../../assets/img/product/box-slant-bg.svg), url(../../assets/img/product/arrows.svg);
    background-size: 110px 100px, auto 16px;
    background-position: 94% 15%, 6% 18%;
    background-repeat: no-repeat;
}

.checkout > .qt-container > .text-section {
    padding: 0px 100px;
}

.checkout > .qt-container > .text-section .title {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.checkout > .qt-container > .text-section img {
    height: 15px;
    margin-bottom: 20px;
}

.checkout > .qt-container > .text-section .amount {
    font-weight: normal;
}

.checkout > .qt-container > .product-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0px 100px;
    margin-top: 30px;
}

.checkout .product-section > div {
    flex: 2;
}

.checkout .product-section > div > img {
    height: 320px;
}

.checkout .product-section > .right {
    flex: 2;
    flex-direction: column;
}

.checkout .product-section .description {
    /* font-size: 0.9rem; */
    color: var(--dark-grey);
    line-height: 25px;
    margin-bottom: 20px;
}

.checkout .product-section .payment-instruction {
    margin: 16px 0px 20px;
    background-color: rgba(255, 191, 0, .1);
    border: none;
    border-radius: 4px;
}

.checkout .product-section .payment-instruction > .instruction-box {
    display: flex;
    color: #987F51;
    padding: 15px;
}

.checkout .product-section .payment-instruction .instruction-icon {
    margin-right: 15px;
}

.checkout .product-section .payment-instruction p {
    line-height: 25px;
}

.checkout .product-section .checkout-form {
    width: 80%;
}

.checkout .product-section .checkout-form > label {
    display: block;
    font-size: 16px;
    margin-bottom: 0.5rem;
}

.checkout .product-section .checkout-form > input {
    display: block;
    width: 100%;
    font-family: 'cera_pro', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: normal;
    height: 50px;
    padding: 0px 15px;
    margin-bottom: 15px;
    border: 1px solid #cdcdcd;
    border-radius: 4px;
}

.checkout .product-section .checkout-form > input::placeholder {
    color: rgba(2, 4, 16, 0.5);
}

.checkout .product-section .checkout-form > input:hover {
    border: 1px solid var(--blue);
    outline: none;
}

.checkout .product-section .checkout-form > input:focus {
    border: 1px solid var(--blue);
    outline: none;
}

.checkout .product-section .checkout-form > .pay-btn{
    width: 100%;
}

.checkout .product-section .right > .doc-link {
    padding-top: 60px;
}

.checkout .product-section .right > .doc-link .description {
    font-size: 0.9rem;
    line-height: 25px;
}

.checkout .product-section .right > .doc-link .description > span a {
    color: var(--blue);
    text-decoration: none;
    cursor: pointer;
}

#checkout-popup{
    width: 100%;
    height: 100vh;
    background-color: rgba(240, 247, 251,0.8);
    position: fixed;
    top: 0%;
    bottom: 0%;
}

#close-iframe{
    z-index: 9999999999;
    position: fixed;
    color: #F05050;
    top: 0;
    right: 0;
    font-size: xx-large;
    margin: 20px;
    border: none;
    background: none;
}

.checkout .product-section > .success {
    padding: 20px 30px 60px;
    background-color: var(--white);
    box-shadow: 0 20px 15px 0 rgba(0, 0, 0, 0.01);
    margin-right: 20px;
    border-radius: 10px;
    text-align: center;
}

.checkout .product-section > .success img {
    height: 80px;
    width: 80px;
    margin: 20px 0px;
}

.checkout .product-section > .success p.description {
    margin: 15px;
    padding: 0px 60px;
}





