.modal_product_a{
    text-decoration: none !important;
}
.add_to_cart_modal{
    background: #000;
}
.add_to_cart_modal .modal-header{
    border-bottom: 1px solid #dee2e673;
}
.add_to_cart_modal .modal-footer{
    border-top: 1px solid #dee2e673 ;
}
.add_to_cart_modal .modal-title{
    color: #fff;
}
.add_to_cart_modal .close{
    color: #fff;
    opacity: 1;
}
.add_to_cart_modal .close:hover{
    color: #fed700;
    opacity: 1 !important;
}
.modal_product{
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.modal_product img{
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.modal_product p{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
    margin: 0;
    font-weight: 600;
    line-height: 1.1;
}
.modal_product .price{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.modal_product .price span{
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
    font-weight: 600;
}
.modal_product .price span.price_d{
    font-size: 12px;
    color: #c9bdbd;
    text-decoration: line-through;
}
.recommended_pro{
    border-top: 1px solid #ffffffa3;
    padding-top: 10px;
}
.recommended_pro h3{
    color: #fff;
    margin: 0 10px;
    border-bottom: 1px solid #ffffff73;
    font-size: 20px;
    padding-bottom: 10px;
}
.recommended_pro .modal_product p{
    -webkit-line-clamp: auto;
}
.add_similar_pro{
    display: inline-block;
    padding: 5px 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    transition: 0.3s;
}
.add_similar_pro:hover{
    text-decoration: none;
    color: #000;
    background: #fff;
}
.proceed_to_cart{
    background: #fed700;
    color: #000;
}

.modal_product_new{
    border: 1px solid #ffffff73;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.modal_product_lable input{
    position: absolute;
    left: 0;
    opacity: 0;
}

.modal_product_lable input:checked ~ .modal_product_new{
    box-shadow: #fed70075 0px 0px 25px;
    border-color: #fed700;
}