/* ---------------------------------- */
/* ---------  CUSTOM STYLE ---------- */
/* ---------------------------------- */




/* HEADING FONT FAMILY ALT */

.wdt-custom-head-family .wdt-heading-holder .wdt-heading-title-wrapper {
    font-family: var(--wdtFontTypo_Alt);
}




/* ANIMATION BG CIRCLE | BG */

.wdt-custom-bg-circle.elementor-element {
    background: radial-gradient(50% 50% at 50% 50%, rgba(var(--wdtSecondaryColorRgb), 0.81), transparent);
    width: 1056px;
    height: 1056px;
    display: inline-block;
    filter: blur(50px);
    opacity: 0.45;
    border-radius: var(--wdtRadius_Full);
    -webkit-border-radius: var(--wdtRadius_Full);
}

.wdt-custom-bg-circle.elementor-element.animation {
    transform-origin: center;
    -webkit-transform-origin: center;
    animation: bg-scale 6s linear infinite;
    -webkit-animation: bg-scale 6s linear infinite;
}

.wdt-custom-bg-circle.elementor-element.animation:nth-child(2) {
    animation-delay: 2s;
    -webkit-animation-delay: 2s;
}

.wdt-custom-bg-circle.elementor-element.animation:nth-child(3) {
    animation-delay: 4s;
    -webkit-animation-delay: 4s;
}

.wdt-custom-bg-circle.elementor-element.animation:nth-child(4) {
    animation-delay: 6s;
    -webkit-animation-delay: 6s;
}

@keyframes bg-scale {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    30% {
        transform: scale(0);
        -webkit-transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

@-webkit-keyframes bg-scale {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    30% {
        transform: scale(0);
        -webkit-transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}




/* ANIMATION TEXT | HOME - 1 */

.wdt-custom-text-animation-h1 .wdt-animation-item.text-item {
    font-size: clamp(1.5rem, 1.325rem + 0.875vw, 2.375rem);
    /* max-38 min-24px */
    font-family: var(--wdtFontTypo_Alt);
    font-weight: var(--wdtFontWeight_Alt);
    line-height: var(--wdtLineHeight_Alt);
    text-transform: none;
}

.wdt-custom-text-animation-h1 .wdt-animation-item.text-item .wdt-animation-text a {
    color: var(--wdtAccentTxtColor);
    font-size: var(--wdtFontSize_H3);
    transition: var(--wdtBaseTransition);
    -webkit-transition: var(--wdtBaseTransition);
}

.wdt-custom-text-animation-h1 .wdt-animation-item.text-item .wdt-animation-text a:hover {
    color: var(--wdtSecondaryColor);
    /* -webkit-text-stroke: 1px var(--wdtAccentTxtColor); */
}

.wdt-custom-text-animation-h1 .wdt-animation-item.icon-item i {
    font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
    /* max-30 min-20px */
    color: var(--wdtAccentTxtColor);
}



/* BRAND LOGO | HOME - 1 */

.wdt-custom-brand-logo-h1 .swiper-slide {
    background: transparent;
    border-radius: var(--wdtRadius_Zero);
    -webkit-border-radius: var(--wdtRadius_Zero);
    box-shadow: none;
    -webkit-box-shadow: none;
}

.wdt-custom-brand-logo-h1.with-hme3 .swiper-slide:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--wdtAccentTxtColor);
    right: 0;
    top: 0;
    z-index: 1;
    opacity: 0.4;
}

.wdt-custom-brand-logo-h1 .wdt-content-item .wdt-content-icon-wrapper .wdt-content-icon span {
    font-size: clamp(7.5rem, 6.25rem + 6.25vw, 13.75rem);
    /* max-220 min-120px */
    color: var(--wdtPrimaryColor);
}



/* INSTAGRAM | HOME - 1 */

.wdt-custom-insta-h1 .swiper-slide {
    background: none;
    border-radius: var(--wdtRadius_Zero);
    -webkit-border-radius: var(--wdtRadius_Zero);
    box-shadow: none;
    -webkit-box-shadow: none;
}

.wdt-custom-insta-h1 .swiper-slide:not(.swiper-slide-active) a {
    pointer-events: all;
}

.wdt-custom-insta-h1 .wdt-content-item .wdt-content-media-group>div:not(:last-child) {
    margin-bottom: 0;
}

.wdt-custom-insta-h1 .wdt-content-item .wdt-content-media-group {
    display: grid;
    align-items: center;
    justify-content: center;
}

.wdt-custom-insta-h1 .wdt-content-item .wdt-content-media-group>div {
    grid-area: 1/-1;
}

.wdt-custom-insta-h1 .wdt-content-item .wdt-content-icon-wrapper {
    pointer-events: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wdt-custom-insta-h1 .wdt-content-item .wdt-content-icon-wrapper::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(var(--wdtHeadAltColorRgb), 0.55);
    filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.wdt-custom-insta-h1 .wdt-content-item:hover .wdt-content-icon-wrapper::before {
    width: 100%;
    opacity: 1;
    filter: blur(0px);
}

.wdt-custom-insta-h1 .wdt-content-item .wdt-content-icon-wrapper .wdt-content-icon span {
    padding: 0;
    font-size: var(--wdtFontSize_H4);
    color: var(--wdtAccentTxtColor);
    z-index: 1;
    opacity: 0;
    transform: scale(.8);
    -webkit-transform: scale(.8);
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.wdt-custom-insta-h1 .wdt-content-item:hover .wdt-content-icon-wrapper .wdt-content-icon span {
    opacity: 1;
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.wdt-custom-insta-h1 .wdt-content-item .wdt-content-image>span>img,
.wdt-custom-insta-h1 .wdt-content-item .wdt-content-image>a>img {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.wdt-custom-insta-h1 .wdt-content-item:hover .wdt-content-image>span>img,
.wdt-custom-insta-h1 .wdt-content-item:hover .wdt-content-image>a>img {
    animation: blur-insta 0.4s linear;
    -webkit-animation: blur-insta 0.4s linear;
}

@keyframes blur-insta {
    0% {
        filter: blur(0px);
    }

    40% {
        filter: blur(2px);
    }

    100% {
        filter: blur(0px);
    }
}

@-webkit-keyframes blur-insta {
    0% {
        filter: blur(0px);
    }

    40% {
        filter: blur(2px);
    }

    100% {
        filter: blur(0px);
    }
}




/* FAQ ACCORDION | FAQ PAGE */

.wdt-custom-faq-accordion .wdt-accordion-toggle-holder .wdt-accordion-toggle-wrapper {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--wdtBorderColor);
    border-radius: var(--wdtRadius_Zero);
    -webkit-border-radius: var(--wdtRadius_Zero);
}

.wdt-custom-faq-accordion .wdt-accordion-toggle-holder .wdt-accordion-toggle-wrapper:not(:last-child) {
    margin-bottom: 0;
}

.wdt-custom-faq-accordion .wdt-accordion-toggle-holder .wdt-accordion-toggle-title-holder {
    padding: clamp(1.25rem, 1rem + 1.25vw, 2.5rem) clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
    /* max-40 & 30 min-20px */
    border: none;
    background: transparent;
    padding-left: 0;
}

.wdt-custom-faq-accordion .wdt-accordion-toggle-holder .wdt-accordion-toggle-title-holder .wdt-accordion-toggle-title {
    font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
    /* max-24 min-20px */
    font-weight: var(--wdtFontWeight_Alt);
    font-family: var(--wdtFontTypo_Alt);
    line-height: var(--wdtLineHeight_Alt);
    text-transform: none;
    color: var(--wdtHeadAltColor);
}

.wdt-custom-faq-accordion .wdt-accordion-toggle-holder .wdt-accordion-toggle-description {
    padding: 0 clamp(1.25rem, -1.5rem + 13.75vw, 15rem) clamp(1.25rem, 1rem + 1.25vw, 2.5rem) clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
    /* max-240 & 40 & 30 min-20px */
    background: transparent;
    border: none;
    font-size: var(--wdtFontSize_Base);
    font-weight: var(--wdtFontWeight_Base);
    font-family: var(--wdtFontTypo_Base);
    line-height: var(--wdtLineHeight_Base);
    color: var(--wdtBodyTxtColor);
    padding-left: 0;
}

.wdt-custom-faq-accordion .wdt-accordion-toggle-holder .wdt-accordion-toggle-title-holder .wdt-accordion-toggle-icon {
    margin-left: 15px;
}

.wdt-custom-faq-accordion .wdt-accordion-toggle-holder .wdt-accordion-toggle-title-holder .wdt-accordion-toggle-icon>div {
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    /* max-18 min-14px */
    color: var(--wdtHeadAltColor);
    width: 18px;
    height: 18px;
    left: auto;
    right: 0;
    border: none;
}

.wdt-custom-faq-accordion .wdt-accordion-toggle-holder .wdt-accordion-toggle-title-holder.ui-state-hover,
.wdt-custom-faq-accordion .wdt-accordion-toggle-holder .wdt-accordion-toggle-title-holder.ui-state-active {
    color: var(--wdtHeadAltColor);
    background: transparent;
    border: none;
}

.wdt-custom-faq-accordion .wdt-accordion-toggle-holder .wdt-accordion-toggle-title-holder.ui-state-active {
    padding-bottom: clamp(0.9375rem, 0.875rem + 0.3125vw, 1.25rem);
    /* max-20 min-15px */
}




/* FAQ SIDE BAR FORM | FAQ PAGE */

.wdt-custom-faq-form .wpcf7-form-control-wrap {
    margin-bottom: 12px;
}

.wdt-custom-faq-form p {
    margin-bottom: 0;
}

.wdt-custom-faq-form :is(input, textarea):not(input[type="submit"]) {
    padding: 18px 30px;
    background: transparent;
    border-radius: calc(var(--wdtRadius_2X) * 3);
    -webkit-border-radius: calc(var(--wdtRadius_2X) * 3);
    font-size: var(--wdtFontSize_Ext);
    line-height: var(--wdtLineHeight_Alt);
}

.wdt-custom-faq-form textarea {
    height: 55px;
    resize: vertical;
}

.wdt-custom-faq-form :is(input, textarea)::placeholder {
    opacity: 1;
}

/* .wdt-custom-faq-form .wpcf7-form-control-wrap :is( input, textarea):focus {
    border-color: var(--wdtLinkHoverColor);
} */
.wdt-custom-faq-form input[type="submit"] {
    /* padding: 15px 30px; */
    font-size: var(--wdtFontSize_Ext);
    line-height: var(--wdtLineHeight_Alt);
    border-radius: calc(var(--wdtRadius_2X) * 3);
    -webkit-border-radius: calc(var(--wdtRadius_2X) * 3);
}

.wdt-custom-faq-form input[type="submit"]:hover {
    background: var(--wdtLinkHoverColor);
}




/* ICON BOX | CONTACT PAGE */

.wdt-custom-contact-iconbox .wdt-content-item>div:not(:last-child) {
    margin-bottom: 0;
    margin-right: 20px;
}

.wdt-custom-contact-iconbox .wdt-content-item {
    display: flex;
    align-items: start;
}

.wdt-custom-contact-iconbox .wdt-content-item .wdt-content-media-group {
    display: grid;
}

.wdt-custom-contact-iconbox .wdt-content-item .wdt-content-icon-wrapper .wdt-content-icon span {
    font-size: clamp(4.375rem, 4rem + 1.875vw, 6.25rem);
    /* max-100 min-70px */
    width: clamp(4.375rem, 4rem + 1.875vw, 6.25rem);
    /* max-100 min-70px */
    margin-left: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
    /* max-30 min-20px */
    padding: 0;
    color: var(--wdtHeadAltColor);
    position: relative;
}

.wdt-custom-contact-iconbox .wdt-content-item .wdt-content-media-group .wdt-content-icon-wrapper:only-child .wdt-content-icon span {
    height: clamp(4.375rem, 4rem + 1.875vw, 6.25rem);
    /* max-100 min-70px */
}

.wdt-custom-contact-iconbox .wdt-content-item .wdt-content-icon-wrapper .wdt-content-icon span::before {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--wdtTertiaryColor);
    position: absolute;
    top: 0;
    right: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
    /* max-30 min-20px */
    border-radius: var(--wdtRadius_Full);
    -webkit-border-radius: var(--wdtRadius_Full);
    transform: scale(1);
    -webkit-transform: scale(1);
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wdt-custom-contact-iconbox .wdt-content-item:hover .wdt-content-icon-wrapper .wdt-content-icon span::before {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
}

.wdt-custom-contact-iconbox .wdt-content-item .wdt-content-title h5 {
    font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
    /* max-24 min-18px */
    font-family: var(--wdtFontTypo_Alt);
    font-weight: var(--wdtFontWeight_Alt);
    line-height: var(--wdtLineHeight_Alt);
    text-transform: capitalize;
}

.wdt-custom-contact-iconbox .wdt-content-item .wdt-content-detail-group>div:not(:last-child) {
    margin-bottom: 15px;
}

.wdt-custom-contact-iconbox .wdt-content-item .wdt-content-title :is(h5, h5 a) {
    color: var(--wdtLinkColor);
}

.wdt-custom-contact-iconbox .wdt-content-item .wdt-content-title h5 a:hover {
    color: var(--wdtLinkHoverColor);
}




/* CONTACT FORM | CONTACT PAGE */

.wdt-custom-contact-form br {
    display: none;
}

.wdt-custom-contact-form .col-i p {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.wdt-custom-contact-form .col-i p span:first-child {
    padding-right: 10px;
}

.wdt-custom-contact-form .col-i p span:last-child {
    padding-left: 10px;
}

.wdt-custom-contact-form p {
    margin-bottom: 0;
}

.wdt-custom-contact-form .wpcf7-form-control-wrap {
    margin-bottom: 20px;
}

.wdt-custom-contact-form :is(input, textarea):not(input[type="submit"]) {
    background: transparent;
}

.wdt-custom-contact-form textarea {
    height: 220px;
}

.wdt-custom-contact-form .with-spinner {
    width: 100%;
    text-align: center;
}




/* SHOP FILLER CONTENT | HOME -2 */

.wdt-custom-shop-filler-content-h2 .wdt-heading-holder .wdt-heading-deco-wrapper>span .wdt-heading-deco-inner.wdt-right-part {
    display: none;
}

.wdt-custom-shop-filler-content-h2 .wdt-heading-holder .wdt-heading-deco-wrapper>span .wdt-heading-deco-inner {
    position: absolute;
    left: -90px;
}

.wdt-custom-shop-filler-content-h2 .wdt-heading-holder .wdt-heading-deco-wrapper .wdt-content-icon-wrapper .wdt-content-icon span:before {
    content: none;
}

.wdt-custom-shop-filler-content-h2 .wdt-heading-holder .wdt-heading-deco-wrapper .wdt-content-icon-wrapper .wdt-content-icon span {
    font-size: calc(var(--wdtFontSize_H2) + 2px);
    color: var(--wdtPrimaryColor);
    padding: 0;
}




/* SHOP FILLER CAROUSEL | HOME - 2 */

.wdt-custom-shop-filler-carousel-h2 .swiper-slide {
    box-shadow: none;
    border-radius: var(--wdtRadius_Zero);
    -webkit-border-radius: var(--wdtRadius_Zero);
    background: transparent;
    border: none;
}

.wdt-custom-shop-filler-carousel-h2 .wdt-carousel-holder .wdt-carousel-pagination-wrapper .wdt-carousel-arrow-pagination>div {
    width: auto;
    height: auto;
    border: none;
    color: rgba(var(--wdtHeadAltColorRgb), 0.6);
}

.wdt-custom-shop-filler-carousel-h2 .wdt-carousel-holder .wdt-carousel-pagination-wrapper .wdt-carousel-arrow-pagination>div:hover {
    color: var(--wdtPrimaryColor);
}

/* .wdt-custom-shop-filler-carousel-h2 .wdt-carousel-holder .wdt-carousel-pagination-wrapper .wdt-carousel-arrow-pagination>div.wdt-arrow-pagination-prev {
    top: 80px;
}

.wdt-custom-shop-filler-carousel-h2 .wdt-carousel-holder .wdt-carousel-pagination-wrapper .wdt-carousel-arrow-pagination>div.wdt-arrow-pagination-next {
    bottom: 80px;
} */

.wdt-custom-shop-filler-carousel-h2 .wdt-carousel-holder .wdt-carousel-pagination-wrapper .wdt-carousel-arrow-pagination>div:before {
    content: none;
}

.wdt-custom-shop-filler-carousel-h2 .wdt-carousel-holder .wdt-carousel-pagination-wrapper .wdt-carousel-arrow-pagination>div>span {
    display: none;
}

.wdt-custom-shop-filler-carousel-h2 .swiper-slide .wdt-custom-shop-filler-element-1 img {
    transform: translate(0%) skewX(0deg) perspective(100px) rotateZ(5deg);
    -webkit-transform: translate(0%) skewX(0deg) perspective(100px) rotateZ(5deg);
    transform-origin: center bottom;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    opacity: 0;
}

.wdt-custom-shop-filler-carousel-h2 .swiper-slide-active .wdt-custom-shop-filler-element-1 img {
    transform: translate(0%) skewX(0deg) perspective(0px) rotateZ(0deg);
    -webkit-transform: translate(0%) skewX(0deg) perspective(0px) rotateZ(0deg);
    opacity: 1;
    transition-delay: .5s;
    -webkit-transition-delay: .5s;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
}

.wdt-custom-shop-filler-carousel-h2 .swiper-slide .wdt-custom-shop-filler-element-2 img {
    transform: translate(0%) skewX(0deg) rotateZ(-5deg);
    -webkit-transform: translate(0%) skewX(0deg) rotateZ(-5deg);
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    opacity: 0;
}

.wdt-custom-shop-filler-carousel-h2 .swiper-slide-active .wdt-custom-shop-filler-element-2 img {
    transform: translate(0%) skewX(0deg) perspective(0px) rotateZ(0deg);
    -webkit-transform: translate(0%) skewX(0deg) perspective(0px) rotateZ(0deg);
    opacity: 1;
    transition-delay: .5s;
    -webkit-transition-delay: .5s;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
}

.wdt-custom-shop-filler-carousel-h2 .swiper-slide .wdt-item-is-inview .wdt-heading-deco-wrapper .wdt-heading-title .wdt-split-heading-wrapper .wdt-split-heading-title {
    animation: none;
    -webkit-animation: none;
    opacity: 1;
}

.wdt-custom-shop-filler-carousel-h2 .swiper-slide-active .wdt-item-is-inview .wdt-heading-deco-wrapper .wdt-heading-title .wdt-split-heading-wrapper .wdt-split-heading-title {
    animation: waving-text .8s ease-out;
    -webkit-animation: waving-text .8s ease-out;
    opacity: 1;
}

/* Insta */

.wdt-custom-insta-h3.wdt-custom-insta-h1 .wdt-content-item .wdt-content-icon-wrapper {
    overflow: hidden;
    border-radius: var(--wdtRadius_Full);
    -webkit-border-radius: var(--wdtRadius_Full);
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    transition: var(--wdt-Ad-Transition);
    -webkit-transition: var(--wdt-Ad-Transition);
}

.wdt-custom-insta-h3.wdt-custom-insta-h1 .wdt-content-item:hover .wdt-content-icon-wrapper {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    border-radius: 12px;
    -webkit-border-radius: 12px;
}

.wdt-custom-insta-h3 .wdt-content-item>div:not(:last-child) {
    margin-bottom: 10px;
}

.wdt-custom-insta-h3 .wdt-content-item .wdt-content-title h5 {
    font-size: var(--wdtFontSize_Base);
    font-weight: var(--wdtFontWeight_Base);
    font-family: var(--wdtFontTypo_Base);
}

.wdt-custom-insta-h3.wdt-custom-insta-h1 .wdt-content-item .wdt-content-icon-wrapper .wdt-content-icon span {
    opacity: 1;
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
}

.wdt-custom-insta-h3.wdt-custom-insta-h1 .wdt-content-item:hover .wdt-content-icon-wrapper .wdt-content-icon span {
    transform: scale(1);
    -webkit-transform: scale(1);
}

.wdt-custom-insta-h3.wdt-custom-insta-h1 .wdt-content-item .wdt-content-icon-wrapper::before {
    opacity: 1;
}


/* Map | Contact Page */

.wdt-custom-map-contact .wdt-google-map .gm-style .gm-style-iw-c .wdt-google-map-info-title:only-child {
    margin-bottom: 0;
}

.wdt-custom-map-contact .wdt-google-map .gm-style .gm-style-iw-c {
    background: var(--wdtBodyBGColor);
}


/* Footer Heading | Home - 3 */

#footer .wdt-custom-footer-heading-h3.elementor-widget-heading .elementor-heading-title {
    color: var(--wdtAccentTxtColor);
}





/* ------------------------------------------------------ */
/* ------------------  RESPONSIVE START  ---------------- */
/* ------------------------------------------------------ */



/* --------------- MAX-WIDTH - 1540PX --------------- */

@media only screen and (max-width:1540px) {

    /* SHOP FILLER CONTENT | HOME -2 */
    .wdt-custom-shop-filler-content-h2 .wdt-heading-holder .wdt-heading-deco-wrapper>span .wdt-heading-deco-inner {
        left: -70px;
    }
}



/* --------------- MAX-WIDTH - 1280PX --------------- */

@media only screen and (max-width:1280px) {}



/* --------------- MAX-WIDTH - 1024PX --------------- */

@media only screen and (max-width:1024px) {

    /* SHOP FILLER CONTENT | HOME -2 */
    .wdt-custom-shop-filler-content-h2 .wdt-heading-holder .wdt-heading-deco-wrapper>span .wdt-heading-deco-inner {
        left: -55px;
    }

    .wdt-custom-shop-filler-content-h2 .wdt-heading-holder .wdt-heading-deco-wrapper .wdt-content-icon-wrapper .wdt-content-icon span {
        font-size: calc(var(--wdtFontSize_H2) - 8px);
    }

    /* SHOP FILLER CAROUSEL | HOME - 2 */
    .wdt-custom-shop-filler-carousel-h2 .wdt-carousel-holder .wdt-carousel-pagination-wrapper .wdt-carousel-arrow-pagination>div.wdt-arrow-pagination-prev {
        top: 10px;
    }

    .wdt-custom-shop-filler-carousel-h2 .wdt-carousel-holder .wdt-carousel-pagination-wrapper .wdt-carousel-arrow-pagination>div.wdt-arrow-pagination-next {
        bottom: 10px;
    }
}



/* --------------- MAX-WIDTH - 767PX --------------- */

@media only screen and (max-width:767px) {

    /* SHOP FILLER CAROUSEL | HOME - 2 */
    .wdt-custom-shop-filler-carousel-h2 .wdt-carousel-holder .wdt-carousel-pagination-wrapper .wdt-carousel-arrow-pagination>div.wdt-arrow-pagination-prev {
        top: auto;
        bottom: 10px;
        right: 60px;
    }
}



/* --------------- MAX-WIDTH - 479PX --------------- */

@media only screen and (max-width:479px) {

    /* CONTACT FORM | CONTACT PAGE */
    .wdt-custom-contact-form .col-i p {
        grid-template-columns: repeat(1, 1fr);
    }

    .wdt-custom-contact-form .col-i p span:first-child {
        padding-right: 0px;
    }

    .wdt-custom-contact-form .col-i p span:last-child {
        padding-left: 0px;
    }
}