/**
* 2018-2022 ICC Digital
*
*  @author    ICC Digital <contact@icc-digital.fr>
*  @copyright 2018-2022 ICC Digital
*  @license   https://www.icc-digital.fr  Proprietary
*/
#product.product-customizable #blockcart-modal {
    display: none !important;
}
#customProductModal {
    display: flex;
    gap: 16px;
    max-width: 700px;
    border-radius: 6px;
    border: 1px solid black;
}
#customProductModal .popup-title {
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    font-family: 'Roboto';
    text-transform: uppercase;
    color: black;
}
#customProductModal .popup-description {
    margin: 11px 0;
}
#customProductModal .popup-description p {
    margin-bottom: 0;
    color: black;
    font-size: 13px;
    line-height: 18px;
}
#customProductModal .popup-content-product {
    display: flex;
    justify-content: space-between;
}
#customProductModal .popup-content-product .popup-content-product-img {
    width: 45%;
    display: flex;
    align-items: center;
}
#customProductModal .popup-content-product .popup-content-product-img img {
    max-width: 100%;
}
#customProductModal .popup-content-product .popup-content-product-custom-options {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 55%;
}
#customProductModal .popup-content-product .popup-content-product-custom-options .custom-option {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto 1fr;
    grid-column-gap: 0;
    grid-row-gap: 5px;
}
#customProductModal .popup-content-product .popup-content-product-custom-options .custom-option .custom-option-title {
    grid-area: 1 / 1 / 2 / 3;
    font-weight: bold;
    font-size: 16px;
    font-style: italic;
    font-family: 'Roboto';
    letter-spacing: 1px;
}
#customProductModal .popup-content-product .popup-content-product-custom-options .custom-option .custom-option-title span {
    font-size: 13px;
    line-height: 18px;
    font-style: normal;
    font-weight: normal;
    letter-spacing: 1px;
}
#customProductModal .popup-content-product .popup-content-product-custom-options .custom-option .custom-option-price {
    grid-area: 1 / 3 / 2 / 4;
    text-align: end;
    font-weight: bold;
    font-size: 16px;
    font-style: italic;
    font-family: 'Roboto';
    letter-spacing: 1px;
}
#customProductModal .popup-content-product .popup-content-product-custom-options .custom-option .custom-option-input {
    grid-area: 2 / 1 / 3 / 4;
    position: relative;
}
#customProductModal .popup-content-product .popup-content-product-custom-options .custom-option .custom-option-input input,
#customProductModal .popup-content-product .popup-content-product-custom-options .custom-option .custom-option-input select {
    border-radius: 6px;
    border: 1px solid black;
    background-color: white;
    outline: none !important;
    color: black;
}
#customProductModal .popup-content-product .popup-content-product-custom-options .custom-option .custom-option-input input[type=text],
#customProductModal .popup-content-product .popup-content-product-custom-options .custom-option .custom-option-input input[type=number] {
    padding-right: 70px;
}
#customProductModal .popup-content-product .popup-content-product-custom-options .custom-option .custom-option-input .custom-option-input-size {
    position: absolute;
    top: 0;
    right: 15px;
    transform: translateY(50%);
    opacity: .2;
    color: black;
    text-align: end;
    font-size: 13px;
    line-height: 18px;
    font-style: normal;
    font-weight: normal;
    letter-spacing: 1px;
}
#customProductModal .popup-content-product .popup-content-product-custom-options .btn {
    border: 1px solid black;
    border-radius: 6px;
    text-transform: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 11px;
}
#customProductModal .popup-content-product .popup-content-product-custom-options .btn:hover {
    background-color: white !important;
    color: black;
}
#customProductModal.fancybox__content>.carousel__button.is-close {
    top: 16px;
    right: 16px;
    color: black;
}
#product .product-actions .info_size_guide {
    justify-content: space-between;
}
#product #medInterest .btn, #product .product-add-to-cart .product-quantity .add button, #customProductModalBtn {
    width: 195px !important;
}
#customProductModalBtn {
    background: white !important;
    color: #000;
    font-size: 14px;
    border: 5px solid;
    border-image-slice: 1;
    border-width: 3px;
    border-image-source: linear-gradient(to left, #0dc2bc, #7fdb5a);
}
#customProductModalBtn:hover {
    background: black !important;
    color: white;
}
@media (max-width: 600px) {
    #customProductModal .popup-content-product .popup-content-product-img {
        display: none;
    }
    #customProductModal .popup-content-product .popup-content-product-custom-options {
        width: 100%;
    }
}