@import url('https://fonts.googleapis.com/css2?family=Alef:wght@400;700&family=Amatic+SC:wght@300;400;500;700;900&family=Assistant:wght@200..800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Fredoka:wght@300..700&family=Handjet:wght@100..900&family=Heebo:wght@100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik+Beastly&family=Rubik+Bubbles&family=Rubik+Glitch+Pop&family=Rubik+Puddles&family=Rubik+Scribble&family=Rubik:ital,wght@0,300..900;1,300..900&family=Secular+One&family=Sofadi+One&family=Solitreo&display=swap');
/* CUSTOM DESIGN */

/* options selection */
body > div[data-elementor-type="product"]:has(tr.custom-attributes .custom-data-container.active) {
    position: relative;
    z-index: 101;
}
body:has(tr.custom-attributes .custom-data-container.active) #enable-toolbar-trigger{
    display: none;
}

.custom-data-container {
    --container-width: 640px;
    position: fixed;
    top: 0;
    right: 0;
    width: var(--container-width);
    height: 100vh;
    background-color: #fff;
    z-index: 10;
    display: flex;
    justify-content: center;
    transition: all 0.3s linear;
    padding-top: 50px;
}

.custom-data-container:not(.active) {
    transform: translateX(105%);
}

.custom-data-container:after {
    content: '';
    position: fixed;
    width: calc(100vw - var(--container-width));
    inset: 0 0 0 auto;
    background-color: #00000054;
    transition: all 0.3s linear;
    transform: translateX(calc(-1 * var(--container-width)));
}

.custom-data-container:not(.active):after {
    right: calc(103% + 2 * var(--container-width));
}

html:has(.custom-data-container.active) {
    overflow: hidden;
}

@media (max-width: 768px) {
    .custom-data-container {
        width: 100%;
        align-items: flex-start;
        padding: 35px 0 10px;
    }
}

.custom-data-container .custom-data-toggle-button {
    position: absolute;
    top: 30px;
    right: 10px;
    padding: 0 !important;
    height: 25px;
    width: 25px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .custom-data-container .custom-data-toggle-button {
        top: 20px;
        right:unset;
        left: 10px;
    }
}

.customize-design-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 8px;
}

.customize-design-container .heading-wrapper {
    padding-right: 15px;
}

.customize-design-container .heading-wrapper h2 {
    margin: 0;
}

.customize-design-container .heading-wrapper .description {
    margin-bottom: 5px;
}

.customize-design-container .heading-wrapper .description p {
    margin: 0;
}

.customize-design-container .content-wrapper {
    padding: 0 8px;
    height: 75%;
}

.customize-design-container .content-wrapper:has(.image-canvas.portrait) {
    height: 690px;
}

@media (max-width: 768px) {
    .customize-design-container {
        overflow: hidden;
        height: 92%;
    }

    .customize-design-container .heading-wrapper h2 {
        margin: 0 0 10px;
        font-size: 20px;
    }

    .customize-design-container .content-wrapper {
        /* height: 495px; */
        overflow: auto;
    }
}

.customize-design-container .content-wrapper>*:not(.active) {
    display: none;
}

.customize-design-container .attributes-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .customize-design-container .attributes-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

.customize-design-container .attribute-wrapper {
    width: 100%;
}

.customize-design-container .attribute-wrapper:not(.active) .attr-content {
    display: none;
}

.customize-design-container .attribute-wrapper:has(input.gallery:checked) .image-upload-wrapper,
.customize-design-container .attribute-wrapper:has(input.upload:checked) .gallery-wrapper {
    display: none;
}


.customize-design-container .attr-heading button {
    --text-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    outline: none !important;
    padding: 0 8px;
}

.customize-design-container .attr-heading button:has(input:not(:checked)) input,
.customize-design-container .attr-heading button:has(input:checked) img,
.customize-design-container .attr-heading button:has(input:checked) svg {
    display: none;
}

.customize-design-container .attr-heading button img,
.customize-design-container .attr-heading button svg {
    width: 20px;
    height: 20px;
}

.customize-design-container .attr-heading button input {
    accent-color: #000;
    width: 20px;
}

.customize-design-container .attr-heading button label {
    cursor: pointer;
    padding: 8px 0;
}

.customize-design-container .attr-heading button:hover,
.customize-design-container .attr-heading button:focus,
.customize-design-container .attribute-wrapper.active .attr-heading button {
    background-color: var(--text-color);
    color: #fff;
}

.customize-design-container .attr-content {
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    height: 350px;
}

.customize-design-container .attr-content:has(.step.image-preview.active) .attribute-price {
    display: none;
}

@media (max-width:768px) {
    .customize-design-container .attr-content {
        height: 360px;
        padding-top: 10px;
    }
}

.customize-design-container .attr-content>*:not(.active, .actions-wrapper, .attribute-price) {
    display: none;
}

.customize-design-container .attr-content .source-select-wrapper {
    position: absolute;
    top: 5px;
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.customize-design-container .attr-content .source-select-wrapper label {
    display: flex;
    position: relative;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    text-decoration: underline;
}

.customize-design-container .attr-content .source-select-wrapper .input-wrapper:has(input:checked) {
    display: none;
}

.customize-design-container .attr-content .gallery-wrapper .gallery-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(95px, 1fr));
    max-height: 360px;
    overflow-y: auto;
}

.customize-design-container .gallery-wrapper .input-wrapper label {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 180px;
    width: 100%;
    cursor: pointer;
}

.customize-design-container .attr-content:has(.multiple) .gallery-wrapper .input-wrapper label {
    background-size: contain;
}

.customize-design-container .gallery-wrapper .input-wrapper:has(input:checked) label {
    box-shadow: inset 0px 0px 0px 4px #383334;
}

.customize-design-container .attr-content .input-wrapper:is(.type-radio, .type-checkbox) input {
    display: none;
}

.customize-design-container .attr-content .gallery-wrapper input[type="search"] {
    width: 33%;
    padding: 2px 8px;
    outline: none !important;
}

.customize-design-container .attr-content .gallery-wrapper .input-wrapper:has(input:checked) img {
    border: 2px solid #472d35;
}

@media (max-width: 768px) {
    .totals-summary-heading {
        font-size: 25px;
        margin: 10px 0 0;
    }

    .customize-design-container .attr-heading button {
        gap: 4px;
    }

    #text-box-controls {
        margin-top: 5px;
    }
}

.image-upload-wrapper {
    padding-top: 28px;
    height: 360px;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border: 2px dashed #999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    cursor: pointer;
    margin-bottom: 15px;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-box {
    position: relative;
    text-align: center;
    color: #999;
}

.upload-box p {
    font-size: 16px;
    margin: 0;
}

.file-upload-wrapper.dragging {
    border-color: #007bff;
    background-color: #eaf5ff;
}

.canvas-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

@media (min-width: 768px) {

    .canvas-container:has(.portrait) {
        /* height: 580px; */
    }
}

.canvas-wrapper:has(img.loaded) {
    position: relative;
    /* width: 100%; */
}

.canvas-wrapper.portrait {
    height: 305px;
}

.canvas-wrapper.landscape {
    height: 355px;
}

.controls-wrapper {
    z-index: 1;
}

.canvas-wrapper img.loaded {
    width: 100%;
    height: 100% !important;
    inset: 0;
    object-fit: contain;
    /* position: absolute; */
}


@media (max-width: 768px) {

    .canvas-wrapper.portrait {
        height: 275px;
    }

    .canvas-wrapper.landscape {
        height: 260px;
    }
}

.text-box {
    position: absolute;
    top: 50%;
    left: 0 !important;
    /* left: 50%;
    transform: translate(-50%, -50%); */
    /* background: #fff; */
    /* padding: 18px 8px; */
    cursor: move;
    color: #000;
    font-size: 25px;
    width: 100%;
    height: fit-content;
}

@media (max-width: 768px) {
    .text-box {
        top: 150px;
        font-size: 16px;
    }
}

.text-box textarea {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2px 0;
    line-height: 1;
    font-size: 18px;
}

.text-box:focus {
    /* border: 1px dashed #000; */
    outline: 1px dashed #2563eb;
}

.text-box .remove-textbox-button {
    position: absolute;
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 3px;
    left: 3px;
    margin: 0 !important;
    padding: 0;
    background-color: transparent !important;
    border-radius: 50%;
    border-color: #7f7f7f;
    color: #7f7f7f !important;
    font-size: 18px;
}

.text-box:not(:has(input:focus, p)) .remove-textbox-button {
    display: none;
}

.canvas-controls,
#text-box-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#text-box-controls {
    margin-top: 10px;
}

#text-box-controls .input-wrapper {
    position: relative;
}

.canvas-controls img,
#text-box-controls img,
#text-box-controls svg {
    width: 20px;
    height: 20px;
}

#text-box-controls button {
    display: flex;
}

.customize-design-container button.control-button {
    padding: 3px 7px;
    margin: 0 !important;
    border: 1px solid #343434;
    color: #343434;
    outline: none !important;
}

.customize-design-container button.control-button:hover,
.customize-design-container button.control-button:focus {
    background-color: #343434;
    color: #fff;
}

#text-box-controls .input-wrapper #text-color-button {
    height: 28px;
}

#text-box-controls .input-wrapper input,
#text-box-controls .input-wrapper select {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1;
}

#text-box-controls .input-wrapper select {
    width: max-content;
}


#text-box-controls .input-wrapper:is(.type-number):not(.active) input,
#text-box-controls .input-wrapper:not(.active) .align-options-wrapper,
#text-box-controls .input-wrapper:not(.active) select,
#text-box-controls .input-wrapper.align-wrapper select {
    display: none;
}

#text-box-controls .align-options-wrapper {
    display: flex;
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
}

#text-box-controls .align-wrapper button {
    margin: 0;
    padding: 0 5px;
    height: 28px;
    align-items: center;
    background-color: #fff;
    border-color: #000;
    transition: all 0.3s linear;
}

#text-box-controls .align-wrapper button:hover,
#text-box-controls .align-wrapper button:hover svg path {
    background-color: #000;
    color: #fff;
    stroke: #fff;
}

.customize-design-container .attribute-wrapper:has(.canvas-container:not(.active)) .save-image-button,
.customize-design-container .attribute-wrapper:has(.image-preview:not(.active)) .download-image-link {
    display: none;
}

.image-preview {
    margin-top: 20px;
}

.image-preview .preview-wrapper {
    display: flex;
    justify-content: center;
    align-items: start;
    /* min-height: 375px; */
}

@media (max-width: 768px) {
    .image-preview .preview-wrapper {
        min-height: unset;
        height: 250px;
    }
}

.image-preview.multiple .preview-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.image-preview img {
    max-width: 350px;
    max-height: 305px;
}

.image-preview.multiple img {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
}

.image-preview .actions-wrapper button {
    padding: 0;
    border: none;
    text-decoration: underline;
    background-color: transparent !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .image-preview img {
        max-width: 365px;
        max-height: 365px;
    }

    .canvas-container {
        margin-top: 5px;
    }

    .canvas-controls {
        flex-wrap: wrap;
        gap: 5px;
    }

    .text-box-controls {
        flex-wrap: wrap;
        gap: 5px;
    }
}

/* attribute prince */
.customize-design-container .attribute-wrapper .attribute-price {
    margin-top: 25px;
    font-size: 18px;
}

.customize-design-container .attribute-wrapper .attribute-price .price {
    font-weight: 600;
}

@media (max-width: 768px) {
    .customize-design-container .attribute-wrapper .attribute-price {
        margin-top: 10px;
        font-size: 14px;
    }


}

/*******************/

/* Design Totals */

.totals-summary-content,
.attribute-line-wrapper {
    display: flex;
    gap: 10px;
}

.totals-summary-content {
    border-top: 1px dashed #000;
    border-bottom: 1px dashed #000;
}

.attribute-line-wrapper {
    padding: 10px 5px;
}

.attribute-line-wrapper:not(:first-of-type) {
    border-top: 1px dashed #000;
}

.attribute-line-wrapper:not(:has(img)) {
    display: none;
}

.attribute-line-wrapper .attribute-title p {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
}

.totals-summary-content {
    flex-direction: column;
    max-height: 580px;
    overflow-y: auto;
}

.attribute-line-wrapper:not([data-id="writing"]) .attribute-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: auto;
}

.attribute-line-wrapper .attribute-content img {
    max-width: 175px;
    max-height: 175px;
    object-fit: contain;
}

.attribute-line-wrapper .attribute-content.multiple img {
    max-width: 80px;
    max-height: 80px;
}

.totals-summary-content .attribute-line-wrapper {
    flex-direction: column;
}

/*******************/

/* design footing */
.footing-wrapper {
    /* position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%); */
    z-index: 1;
    background-color: #fff;
}

@media (max-width:768px) {
    .footing-wrapper {
        bottom: 60px;
    }
}

.customize-design-container .footing-wrapper>* {
    display: flex;
    gap: 15px;
}

.customize-design-container .footing-wrapper .step-actions {
    justify-content: center;
}

.customize-design-container .footing-wrapper .summary-actions {
    justify-content: end;
    padding-left: 8px;
}

.customize-design-container .footing-wrapper button {
    margin: 0 !important;
    background-color: #fff;
}

.customize-design-container .footing-wrapper button:not(.active) {
    opacity: 0.2;
    pointer-events: none;
}

.customize-design-container:has(.attributes-wrapper.active) #back-to-edit,
.customize-design-container:has(.attributes-wrapper.active) #add-to-item,
.customize-design-container:has(.totals-summary.active) #finish-design,
.customize-design-container:has(.totals-summary.active) .step-actions {
    display: none;
}

@media (max-width: 768px) {
    .customize-design-container .footing-wrapper {
        z-index: 1;
    }

    .customize-design-container .footing-wrapper .summary-actions {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 10px;
        background-color: #fff;
    }
}

.customize-design-container button#save-edited-image {
    display: none;
}

.customize-design-container:has(.attribute-wrapper.active .step.canvas-container.active) button#save-edited-image {
    display: block;
}

/*******************/

.customize-design-container:has(.totals-summary.active) .heading-wrapper {
    display: none;
}

.image-preview.multiple .preview-wrapper img {
    max-height: 360px;
}

@media (max-width: 768px) {
    .customize-design-container .attr-heading button label {
        font-size: 14px;
    }

    .customize-design-container .attr-content .gallery-wrapper .gallery-content {
        grid-template-columns: repeat(2, minmax(95px, 1fr));
        max-height: 290px;
        margin-top: 5px;
    }

    .customize-design-container button.control-button {
        font-size: 12px;
    }

    .customize-design-container .footing-wrapper button {
        font-size: 14px;
    }

    .image-preview.multiple .preview-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*******************/

.loader::before {
    display: none !important;
}

.loader {
    color: #000;
    font-size: 10px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    animation: mulShdSpin 1.3s infinite linear;
}

@keyframes mulShdSpin {

    0%,
    100% {
        box-shadow: 0 -3em 0 0.2em,
            2em -2em 0 0em, 3em 0 0 -1em,
            2em 2em 0 -1em, 0 3em 0 -1em,
            -2em 2em 0 -1em, -3em 0 0 -1em,
            -2em -2em 0 0;
    }

    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em,
            3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em,
            -2em 2em 0 -1em, -3em 0 0 -1em,
            -2em -2em 0 -1em;
    }

    25% {
        box-shadow: 0 -3em 0 -0.5em,
            2em -2em 0 0, 3em 0 0 0.2em,
            2em 2em 0 0, 0 3em 0 -1em,
            -2em 2em 0 -1em, -3em 0 0 -1em,
            -2em -2em 0 -1em;
    }

    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
            3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em,
            -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }

    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
            3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em,
            -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }

    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
            3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0,
            -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }

    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em,
            3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
            -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }

    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em,
            3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
            -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}

.loader-2 {
    display: block;
    --s: 28px;
    height: var(--s);
    aspect-ratio: 2.5;
    --_g: #F095B1 90%, transparent;
    --_g0: no-repeat radial-gradient(farthest-side, var(--_g));
    --_g1: no-repeat radial-gradient(farthest-side at top, var(--_g));
    --_g2: no-repeat radial-gradient(farthest-side at bottom, var(--_g));
    background: var(--_g0), var(--_g1), var(--_g2), var(--_g0), var(--_g1), var(--_g2);
    background-size: 20% 50%, 20% 25%, 20% 25%;
    animation: l45 1s infinite;
}

@keyframes l45 {
    0% {
        background-position: calc(0*100%/3) 50%, calc(1*100%/3) calc(50% + calc(var(--s)/8)), calc(1*100%/3) calc(50% - calc(var(--s)/8)), calc(3*100%/3) 50%, calc(2*100%/3) calc(50% + calc(var(--s)/8)), calc(2*100%/3) calc(50% - calc(var(--s)/8))
    }

    33% {
        background-position: calc(0*100%/3) 50%, calc(1*100%/3) 100%, calc(1*100%/3) 0, calc(3*100%/3) 50%, calc(2*100%/3) 100%, calc(2*100%/3) 0
    }

    66% {
        background-position: calc(1*100%/3) 50%, calc(0*100%/3) 100%, calc(0*100%/3) 0, calc(2*100%/3) 50%, calc(3*100%/3) 100%, calc(3*100%/3) 0
    }

    90%,
    100% {
        background-position: calc(1*100%/3) 50%, calc(0*100%/3) calc(50% + calc(var(--s)/8)), calc(0*100%/3) calc(50% - calc(var(--s)/8)), calc(2*100%/3) 50%, calc(3*100%/3) calc(50% + calc(var(--s)/8)), calc(3*100%/3) calc(50% - calc(var(--s)/8))
    }
}

/* ***** */

.pretty-product-gallery img {
    width: 100%;
    max-height: 650px;
}

.pretty-product-gallery .slick-track {
    display: flex;
    gap: 5px;
}

.pretty-product-gallery .slick-track>* {
    cursor: pointer;
    max-height: 650px;
}

.pretty-product-gallery .slider-for img {
    object-fit: cover;
}

.pretty-product-gallery .slider-nav {
    margin-top: 5px;
}

.pretty-product-gallery .thumbnail-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    cursor: pointer;
}

.pretty-product-gallery .thumbnail-arrow.thumbnail-prev-arrow {
    right: calc(100% + 5px);
}

.pretty-product-gallery .thumbnail-arrow.thumbnail-next-arrow {
    left: calc(100% + 5px);
}

.pretty-product-gallery .slider-nav .slick-slide {
    margin: auto;
}

.pretty-product-gallery .slider-nav .slick-slide:not(.slick-center) {
    opacity: 0.3;
}

.pretty-product-gallery .slider-nav .slick-slide:not(.slick-center):hover {
    opacity: 1;
}

.slick-lightbox {
    direction: ltr;
}

.slick-lightbox .slick-arrow {
    /* position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    outline: none !important;
    color: transparent !important;
    background-color: unset !important;
    z-index: 1; */
    display: none !important;
}

.slick-lightbox .slick-arrow:before {
    font-family: 'dashicons';
    font-size: 34px;
    color: #fff;
    background-color: #000;
    border-radius: 50%;
}

.slick-lightbox .slick-prev:before {
    content: '\f341';
    padding: 2px 4px 2px 0;
}

.slick-lightbox .slick-next:before {
    content: '\f345';
    padding: 2px 0 2px 4px;
}

.slick-lightbox .slick-lightbox-close {
    display: none;
}

@media(max-width: 768px) {
    .slick-lightbox .slick-arrow {
        display: none !important;
    }
}

/* ****** */
.allergens-container {
    width: 100%;
}

.allergens-container summary {
    cursor: pointer;
    user-select: none;
}

.allergens-container:has(.ajaxerrors) {
    padding-top: 0;
}

.allergens-container .ajaxerrors p {
    background-color: #ee6665;
    width: fit-content;
    padding: 4px 8px;
    font-weight: 500;
    text-decoration: underline;
}

/*********************/

.single_variation_wrap {
    display: flex;
    align-items: flex-end;
    gap: 50px;
}

.single_variation_wrap .woocommerce-variation-price {
    line-height: 1;
}

.single_variation_wrap .woocommerce-variation-price .price {
    color: #000 !important;
    font-family: 'Rubik', sans-serif;
}

/*********************/


/* ALLERGENS */
.allergens-container {
    margin: 25px 0 10px;
    position: relative;
    background-color: #f0f0f0;
    padding: 5px 0 0;
    border: 1px solid #ee6565;
    z-index: 8;
}

.allergens-container .allergens-title {
    font-family: 'Tel Aviv';
    text-align: center;
    position: relative;
}

.allergens-container .allergens-title:before,
.allergens-container .allergens-title:after {
    content: '';
    position: absolute;
    height: 2px;
    background-color: #ee6565;
    left: 50%;
    transform: translateX(-50%);
}

.allergens-container .allergens-title:before {
    width: 16%;
    bottom: 0;
}

.allergens-container .allergens-title:after {
    width: 15%;
    bottom: -5px;
}

.allergens-disclaimer {
    font-family: 'open sans';
    font-weight: 500;
    text-align: center;
}

body.single-product form details.allergies-container {
    margin: 10px 0 0;
    text-align: start;
    border: 1px solid #ee6565;
    background-color: #fff;
}


body.single-product form details.allergies-container[open] {
    border: none !important;
    border: 1px solid #000;
}


body.single-product form details.allergies-container[open] summary,
body.single-product form details.allergies-container[open] .options-list-container {
    border: 1px solid #ee6565;
}

body.single-product form details.allergies-container summary {
    background-color: #ee6565;
    color: #fff;
    font-family: 'Tel Aviv';
    font-weight: 600;
    padding: 0 5px;
    text-align: center;
}

body.single-product form details.allergies-container[open] summary {
    border-bottom: none;
}

body.single-product form details.allergies-container[open] .options-list-container {
    border-top: none;
    padding-top: 5px;
}

body.single-product form details.allergies-container input#allergen-search {
    padding: 3px 15px 3px 0;
    width: 60%;
    margin: 5px 0 10px;
    border: 1px solid;
}

body.single-product form details.allergies-container .options-list-container {
    padding: 0 10px 20px;
    background-color: #fff;

}

body.single-product form details.allergies-container .options-list-wrapper {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
    max-height: 130px;
    overflow-y: auto;
}

body.single-product form details.allergies-container .option-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

body.single-product form details.allergies-container label {
    font-weight: 600;
}

body.single-product form details.allergies-container .option-wrapper:has(input:disabled) label {
    color: #cfcfcf;
}

body.single-product form details.allergies-container .allergies-disclamier {
    grid-column: 1/-1;
    margin: 20px 10px;
    position: relative;
}

body.single-product form details.allergies-container .allergies-disclamier:before {
    content: '*';
    position: absolute;
    top: 0;
    right: -10px;
}

body.single-product form details.allergies-container .button-wrapper {
    text-align: center;
}

body.single-product form .unremovable-allergens-container {
    padding: 10px;
}

body.single-product form .unremovable-allergens-container li {
    font-weight: 700;
}

/************/

/* VARIATIONS TABLE */
table.variations tr.boolean .value .input-wrapper {
    display: flex;
    align-items: center;
    gap: 45px;
}

table.variations tr.boolean .value .input-wrapper:not(:has(input:checked)) .option-price {
    display: none;
}

th.label .message {
    font-size: 13px;
    margin: 0;
    font-weight: 400;
    font-style: italic;
}

.value {
    --checked--color: #77c44c;
}

.single_variation_wrap:has(.added_to_cart) {
    justify-content: center;
}

.single_variation_wrap:has(.added_to_cart) .single_variation,
.single_variation_wrap:has(.added_to_cart) .woocommerce-variation-add-to-cart>*:not(.added_to_cart) {
    display: none !important;
}

/* Boolean */
.boolean .value {
    --duration: .4s;
    --toggle-width: 70px;
    --toggle-height: 36px;
    --toggle-padding: 0.15em;
}

.boolean .value .input-wrapper {
    position: relative;
    direction: ltr;
}

.value .hidden-select {
    display: none;
}

.checker {
    display: block;
    font-size: 40px;
    padding: var(--toggle-padding);
    border-radius: 0.25em;
    transition: transform var(--duration) ease;
    cursor: pointer;
}

.checkmark {
    position: relative;
    width: calc(var(--toggle-height) - var(--toggle-padding) * 2);
    height: calc(var(--toggle-height) - var(--toggle-padding) * 2);
    transition: transform var(--duration) ease;
    z-index: 5;
}

.checkmark svg {
    display: block;
    background: #e5e5e5;
    border-radius: 0.15em;
    transition: background-color var(--duration) ease, transform calc(var(--duration) * 1.5) ease;
}

.checkmark svg path {
    stroke-dasharray: 90 90;
    stroke-dashoffset: 90;
    transition: stroke-dashoffset calc(var(--duration) / 3) linear calc(var(--duration) / 3);
}

.checkbox {
    display: none;
}

.checkbox:checked~.checkmark {
    transform: translateX(calc(var(--toggle-width) - var(--toggle-padding) * 3));
}

.checkbox:checked~.checkmark svg {
    background: var(--checked--color);
    transform: translate(-0.4em);
}

.checkbox:checked~.checkmark svg path {
    stroke-dashoffset: 0;
}

.check-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--toggle-width);
    height: var(--toggle-height);
    border-radius: inherit;
    background: white;
    z-index: 2;
}

.check-bg:before,
.check-bg:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: inherit;
}

.check-bg:after {
    background: white;
}

.check-bg:before {
    transition: transform var(--duration) ease;
    transform: translateY(30%);
    transform-origin: bottom center;
    background: black;
    filter: blur(0.25em);
    opacity: 0.2;
    z-index: -1;
}

.checker.checker:active {
    transform: scale(0.85);
    transition-duration: calc(var(--duration) / 2);
}

.checker.checker:active .check-bg::before {
    transform: translateY(0) scale(0.8);
    opacity: 0.2;
}

/* Multiple */

.value .input-group-wrapper {
    display: flex;
    gap: 15px;
    justify-content: end;
    flex-wrap: wrap;
}

.value .input-group-wrapper .checkbox-wrapper {
    width: max-content;
}

.value .checkbox-wrapper .checkbox-input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.value .checkbox-wrapper .checkbox-input:checked+.checkbox-tile {
    border-color: var(--checked--color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: var(--checked--color);
}

.value .checkbox-wrapper .checkbox-input:checked+.checkbox-tile:before {
    transform: scale(1);
    opacity: 1;
    background-color: var(--checked--color);
    border-color: var(--checked--color);
}

.value .checkbox-wrapper .checkbox-input:checked+.checkbox-tile .checkbox-icon,
.value .checkbox-wrapper .checkbox-input:checked+.checkbox-tile .checkbox-label {
    color: var(--checked--color);
}

.value .checkbox-wrapper .checkbox-input:focus+.checkbox-tile:before {
    transform: scale(1);
    opacity: 1;
}

.value .input-group-wrapper .checkbox-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    min-width: 50px;
    min-height: 48px;
    padding: 5px 8px;
    border-radius: 0.5rem;
    border: 2px solid #b5bfd9;
    transition: all 0.15s ease;
    cursor: pointer;
    position: relative;
}

.value .checkbox-wrapper .checkbox-tile:before {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    border-radius: 50%;
    top: 0.25rem;
    left: 0.25rem;
    opacity: 0;
    transform: scale(0);
    transition: 0.25s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.value .checkbox-wrapper .checkbox-tile:hover {
    border-color: var(--checked--color);
}

.value .checkbox-wrapper .checkbox-tile:hover:before {
    transform: scale(1);
    opacity: 1;
}

.value .checkbox-wrapper .checkbox-icon {
    transition: 0.375s ease;
    color: #494949;
}

.value .checkbox-wrapper .checkbox-icon svg {
    width: 3rem;
    height: 3rem;
}

.value .checkbox-wrapper .checkbox-label {
    color: #707070;
    transition: 0.375s ease;
    text-align: center;
}

.value .checkbox-wrapper {
    position: relative;
    min-width: 63px;
}

.value .checkbox-wrapper .option-price {
    font-size: 12px;
    font-weight: 400;
    align-self: baseline;
    margin: 5px -5px;
}

.value .checkbox-wrapper .description-tooltip {
    position: absolute;
    bottom: 100%;
    background: linear-gradient(180deg, #FFF8E6 27%, #FFE1E1 78%);
    padding: 8px 4px;
    border: 1px solid #a9a9a9;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value .checkbox-wrapper .description-tooltip p {
    margin: 0;
    text-align: center;
    font-size: 12px;
}

.value .checkbox-wrapper:hover .description-tooltip {
    opacity: 1;
}

/**********/

.custom-design-summary-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    /* align-items: flex-end;
    justify-content: space-between; */
}

.custom-design-summary-wrapper button.custom-data-toggle-button:hover {
    color: #fff !important;
}

.custom-design-summary-wrapper .design-price {
    margin: 0;
}