@import url(theme-root.css);

.new-checkout{
    padding: 20px 0px;
    border-bottom: 0.5px solid var(--secondary-bg);
}

.new-checkout-img{
    width: 20%;
    height: 223px;
    border-radius: 12px;
    background: url(../images/event-tubnil.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

}
.new-checkout-detail{
    width: 55%;
}
.new-checkout-name{
    width: 58%;
}
.code-num{
    position: absolute;
    top: 9px;
    left: 12px;
    background-color: var(--Gray-300);
    font-size: 16px;
    font-weight: 600;
    padding: 15.5px 10px;
    border-radius: 12px 0px 0px 12px;
}

.speical-number{
    padding: 12px 20px 12px 60px !important;

}
.new-checkout-name, .new-checkout-price{
    font-size: 24px;
    font-weight: 500;
    line-height: 33.6px;
}
.new-checkout-price{
    width: 40%;
    text-align: center;
    font-weight: 600;
}
.recipients-title{
    font-size: 18px;
    font-weight: 500;
}
.recipient-field{
    width: 100%;
    margin: 10px 0px;
    padding: 12px 20px;
    border-radius: 12px;
    border: 2px solid var(--Background-Grey);
    background-color: var(--off-bg);
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    color: var(--normal-text);
}
.recipient-select{
    padding: 13.5px 20px;
}
.new-checkout-qty{
    width: 20%;
}
.new-checkout-basket{
    background-color: transparent;
    border: none;
    padding: 0px;
}
.new-checkout-quantity{
    position: absolute;
    bottom: 0%;
    right: 0%;
}
.new-qty {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;

    label {
        flex: 1 0 100%;
    }

    input {
        text-align: center;
        border: none;
        padding: 0px 0px 0px 15px;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        width: 64px;
    }

}
.new-qtyplus, .new-qtyminus{
    background-color: transparent;
    border: none;
}

@media only screen and (max-width: 768px) {
    .new-checkout-img {
        width: 26%;
        height: 256px;
    }
    .new-qty {
        input {
            width: 25px;
            padding: 0px;
    }}
    .new-checkout-qty{
        width: 14%;
    }
    .new-checkout-price{
        text-align: end;
    }
    .new-checkout-quantity {
        bottom: 4%;
    }
}

@media only screen and (max-width: 480px) {
    .new-checkout{
        flex-wrap: wrap;
    }
    .new-checkout-img{
        width: 100%;
    }
    .new-checkout-detail{
        width: 100%;
        margin: 20px 0px;
    }
    .new-checkout-qty{
        width: 100%;
        text-align: start !important;
    }
}