/* Reset CSS */

* {
    box-sizing: border-box;
}


/*

Based Color: 

Orange - #FD9341
Blue - #1A75BD
Gray - #292929
Light Gray - #E7E7E7

*/


/* Preloader*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    height: 100vh;
    width: 100%;
    background-color: #167aca;
    background: linear-gradient( 180deg, rgba(26, 117, 189, 1) 0%, rgba(26, 117, 189, 1) 40%, rgba(90, 180, 225, 1) 100%);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

.preloader>img {
    width: 150px;
}

.preloader>div {
    position: relative;
    color: #333;
    font-size: 2em;
    letter-spacing: 5px;
    border-bottom: 6px solid #333;
    line-height: 1.4;
    text-transform: uppercase;
}

.preloader>div::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    color: white;
    border-bottom: 6px solid white;
    animation: lod 2s linear infinite;
    overflow: hidden;
}

@keyframes lod {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}


/* General */

body {
    padding: 0;
    margin: 0;
    font-family: 'Assistant', sans-serif;
    color: #292929;
}

.mob {
    visibility: hidden;
}

.desk {
    visibility: visible;
}

img {
    height: auto;
}

.wp-video {
    margin-bottom: 20px;
}


/* hebrew */

@font-face {
    font-family: 'Assistant';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/assistant/v7/2sDcZGJYnIjSi6H75xkzamW5O7w.woff2) format('woff2');
    unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}

@font-face {
    font-family: 'Assistant';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/assistant/v7/2sDcZGJYnIjSi6H75xkzamW5O7w.woff2) format('woff2');
    unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}

ul.clean {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.clean>li {
    /* display: inline-block; */
}

a {
    text-decoration: none;
    transition: color .35s ease-in-out;
    color: #FD9341;
}

a:hover {
    color: #FD9341 !important;
}

p {
    font-size: 18px;
    margin-top: 0;
}

h3 {
    margin-top: 0;
}

h2.widget-title {
    font-size: 20px;
}

.site-main,
.main {
    position: relative;
    margin-top: 0;
}


/* Animation */

@keyframes shake {
    0%,
    100% {
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}


/* Search Input */

.header .search-input {
    width: 250px;
    margin-right: 50px;
    height: 40px;
    position: relative;
}



.header .search-input .dgwt-wcas-search-wrapp {
    position: absolute;
    z-index: 999;
    width: 100%;
    max-width: initial;
    transition: width .5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.header .search-input.focus .dgwt-wcas-search-wrapp {
    width: 820px;
}

.header .cart-icon a {
    position: relative;
}

.header .cart-icon a i {
    border-radius: 50%;
    position: absolute;
    font-size: 12px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    line-height: 19px;
    text-align: center;
    overflow: hidden;
    background-color: #fda967;
    color: #ffffff;
    top: -17px;
    left: -8px;
}

.dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
    background-color: #ff9800;
    border-right: 1px solid #FD9341;
}

.dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit:before {
    display: none;
}

.dgwt-wcas-has-submit .dgwt-wcas-search-submit svg path {
    fill: white;
}

.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    border: 0;
    border-radius: 0;
}

.pagination {
    padding-top: 7px 0;
    border-top: 1px solid #E7E7E7;
    position: relative;
    height: 50px;
}

.pagination h2 {
    font-size: 25px;
    margin: 0;
    margin-bottom: 25px;
}

.pagination .pegi {
    position: absolute;
    left: 22px;
    font-size: 18px;
    top: 10px;
}

.owl-carousel {
    position: static;
}

.owl-warp {
    position: relative;
    margin-bottom: 50px;
}

.owl-nav {
    position: absolute;
    top: 20px;
    right: 0;
    font-size: 60px;
    line-height: 25px;
    width: 70px;
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-weight: 300;
    width: 100%;
    top: 50%;
    margin-top: -20px;
    margin-right: -50px;
    color: black;
}


/* .header */

.header {
    position: relative;
    background: rgb(26, 117, 189);
    background: linear-gradient( 180deg, rgba(26, 117, 189, 1) 0%, rgba(26, 117, 189, 1) 40%, rgba(90, 180, 225, 1) 100%);
    padding: 30px 0;
    color: white;
    padding: 25px 0;
}

.header:after {
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    /* background-image: url('/wp-content/uploads/2021/07/Line.svg'); */
    background-image: url('/wp-content/uploads/2021/12/winter.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.15;
}

.header .container {
    position: relative;
    z-index: 9;
}

.header .top-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}

.header .menu-h {
    min-height: 62px;
}

.header .web-menu {
    background: transparent;
}

.header .web-menu.stick {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background: rgb(26, 117, 189);
    background: linear-gradient( 180deg, rgb(26 117 189 / 79%) 0%, rgb(26 117 189 / 75%) 40%, rgba(90, 180, 225, 1) 100%);
    border-bottom: 3px solid orange;
}

.header .web-menu.stick #menu-main {
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    padding: 0 12px;
}

.header .info-content {
    width: 100%;
    max-width: 650px;
    text-align: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header .info-content>li {
    margin-left: 10px;
}

.header .info-content>li.blocks{
    display: flex;
    flex-direction: column;
}

.header .info-content>li:last-child {
    margin-left: 0;
}

.header .info-content>li img {
    height: 20px;
    width: auto;
    vertical-align: middle;
    padding: 0 3px;
}

.header .info-content>li button,
.header .flex-warp-mobile button
{
    border: unset;
    background: unset;
    padding: unset;
}

.header .info-content>li a {
    color: white;
    font-size: 18px;
}

.header .top-info .logo img {
    height: auto;
    width: 100%;
    max-width: 155px;
}

.header .top-info .login a {
    color: white;
    font-weight: 700;
}

.header .top-info .login img {
    vertical-align: middle;
    margin-left: 7px;
}


/* Main Menu */

#menu-main {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: space-around;
    border-top: 3px solid #FD9341;
    border-bottom: 3px solid #FD9341;
    position: relative;
}

#menu-main>li>a {
    font-size: 20px;
    font-weight: 700;
    color: white;
    padding: 15px 0;
    display: inline-block;
}

#menu-main>li.butt>a {
    padding: 7px;
    margin: 8px 0;
    background-color: #fd9341;
    border-radius: 15px;
    transition: all 0.3s ease;
}

#menu-main>li.butt>a:hover {
    transform: translateY(-5px);
    color: white !important;
}

#menu-main li.menu-item-has-children a {
    position: relative;
}

#menu-main>li.menu-item-has-children>a:after {
    content: '';
    display: block;
    width: 16px;
    height: 7px;
    position: absolute;
    right: 100%;
    top: 50%;
    margin-right: 10px;
    margin-top: -3px;
    background-image: url('/wp-content/uploads/2021/07/arrow.svg');
    background-repeat: no-repeat;
    background-position: center center;
    transform: rotate(180deg);
    transition: transform .35s ease-in-out;
}

#menu-main>li.menu-item-has-children:hover>a:after {
    background-image: url('/wp-content/uploads/2021/07/arrow-orange.svg');
    transform: rotate(90deg);
}

#menu-main>li.menu-item-has-children>.sub-menu {
    display: flex;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    right: 0;
    padding: 20px 0;
    margin: 0;
    top: 100%;
    min-height: 20vh;
    list-style: none;
    justify-content: flex-start;
    background: white;
    border-bottom: 3px solid #FD9341;
    border-top: 3px solid #FD9341;
    padding-left: 30%;
    box-sizing: border-box;
    z-index: -1;
    transition: all .35s ease-in-out;
}

#menu-main>li.menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
    z-index: 999;
}

#menu-main>li.menu-item-has-children>.sub-menu li a {
    color: black;
    font-size: 18px;
}

#menu-main>li.menu-item-has-children>.sub-menu>li>a {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 5px;
    display: inline-block;
}

#menu-main>li.menu-item-has-children>.sub-menu>li.hide>a {
    display: none;
}

#menu-main>li.menu-item-has-children>.sub-menu>li.hide-next>a {
    visibility: hidden;
}

#menu-main>li.menu-item-has-children>.sub-menu>li {
    width: 100%;
    max-width: 205px;
    padding-right: 25px;
    margin-bottom: 5px;
    position: relative;
}

#menu-main>li.menu-item-has-children>.sub-menu li .sub-menu,
.product-categories,
.side-inner-cat {
    padding: 0;
    list-style: none;
}

#menu-main>li.menu-item-has-children>.sub-menu li .sub-menu li,
.product-categories li,
.side-inner-cat li {
    padding-right: 15px;
    margin-bottom: 5px;
    position: relative;
}

.product-categories li a,
.side-inner-cat li a {
    color: black;
}

#menu-main>li.menu-item-has-children>.sub-menu li .sub-menu li:after,
.product-categories li:after,
.side-inner-cat li:after {
    position: absolute;
    content: '·';
    top: 11px;
    left: 100%;
    margin-left: -5px;
    color: orange;
    font-size: 30px;
    line-height: 6px;
}


/* Woocommerce Styles */

.woocommerce ul#shipping_method li input {
    margin-top: 5px;
}

.product-status {
    position: absolute;
    background: #FD9341;
    color: white;
    font-weight: 700;
    padding: 4px 10px;
    padding-bottom: 10px;
    max-height: 30px;
    min-height: 30px;
    font-size: 14px;
    top: 0;
    right: 0;
    z-index: 5;
}

.product-status:before {
    content: '';
    width: 71px;
    height: 11px;
    background-image: url('/wp-content/uploads/2021/07/lines-brand.svg');
    background-size: contain;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: -5px;
}

.product-status:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 30px 30px;
    border-color: transparent transparent #FD9341 transparent;
    position: absolute;
    right: 100%;
    top: 0;
}

.woocommerce table.my_account_orders .button {
    white-space: nowrap;
    margin: 5px;
    font-size: 16px;
    padding: 10px 15px;
    font-weight: 500;
}

.dealers-warp {
    display: flex;
    position: absolute;
    left: 0px;
    margin-left: -10px;
    top: 15px;
    width: 100%;
    justify-content: start;
    z-index: 8;
}

.dealers-warp>div {
    text-align: center;
    width: 60px;
    height: 60px;
    background-color: #1A75BD;
    border-radius: 100%;
    color: white;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    padding-top: 14px;
    margin-right: 5px;
}

.dealer-status {
    background-color: #1A75BD;
}

.dealers-warp>div.redish,
.dealers-warp>div.extra-tag {
    background-color: #bd1a40;
}

.dealers-warp>div.shipp {
    background-color: #bd1a40;
}

.dealers-warp.ho>div.extra-tag {
    width: 50px;
    height: 50px;
    font-size: 14px;
    line-height: 14px;
    padding-top: 10px;
}

.dealer-status.label-2 {
    background-color: #1ABDB3;
}

.dealers-warp.ho {
    padding-left: 5px;
    margin-left: 0;
}

.dealers-warp.ho .dealer-status {
    width: 50px;
    height: 50px;
    font-size: 14px;
    line-height: 14px;
    padding-top: 10px;
}

.woocommerce-table--custom-fields {
    display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    box-shadow: 0 0 14px 2px rgb(223 223 223 / 50%);
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 23.6%;
    margin: 0 0 0.992em 1.8%;
    transition: all .35s ease-in-out;
    position: relative;
    border: 2px solid #ddd;
}

.single-articles .woocommerce ul.products li.product {
    width: auto;
}

.single-articles li {
    font-size: 18px;
}

.single-articles .woocommerce ul.products {
    display: flex;
}

.single .pres {
    font-size: 16px;
    font-weight: 700;
    margin: 7px 0;
    color: #000;
}

.single p.price {
    margin-bottom: 7px;
}

.woocommerce div.product div.images img {
    max-height: 450px;
}

.woocommerce ul.products li.product .button {
    position: static;
    width: 100%;
    height: 40px;
    padding: 0;
    font-size: 12px;
    white-space: nowrap;
    background: #1A75BD;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    left: 15px;
    bottom: 15px;
    text-align: center;
}

.woocommerce div.product p.stock {
    font-size: 1.5em;
    font-weight: 700;
}

.woocommerce ul.products li.product .button:before {
    content: '';
    background-image: url('/wp-content/uploads/2021/07/basket.svg');
    width: 18px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: block;
    margin-bottom: 2px;
}

.woocommerce ul.products li.product:hover .button:before {
    -webkit-animation-name: shake;
    animation-name: shake;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
    transform: translate(0, -7px);
}

.woocommerce ul.products li.product a {
    display: inline-block;
}

.woocommerce ul.products li.product a img {
    width: auto;
    max-height: 180px;
    margin: 0 auto;
}

.woocommerce .img-loop {
    min-height: 180px;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
}

.woocommerce ul.products li.product .price {
    color: orange;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
    color: black;
    min-height: 66px;
    max-height: 66px;
    overflow: hidden;
    font-size: 1rem;
    font-weight: 500;
}

.woocommerce ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-3 li.product {
    width: 32.1%;
}

.woocommerce ul.products li.product .price del {
    color: black;
    opacity: 1;
    font-size: 14px;
    font-weight: 500;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
}

.woocommerce ul.products li.product .onsale {
    display: none;
}

.woocommerce ul.products li.last,
.woocommerce-page ul.products li.last {
    margin-left: 0;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
a.cta {
    padding: 13px 50px;
    color: white !important;
    font-weight: 700;
    margin: 5px 0;
    margin-top: 15px;
    font-size: 20px;
    background: rgb(253, 147, 65);
    background: linear-gradient(90deg, rgba(253, 147, 65, 1) 0%, rgba(255, 193, 143, 1) 100%);
    border-radius: 0;
    position: relative;
    transition: all .35s ease-in-out;
    display: inline-block;
}

a.cta {
    padding: 11px 40px;
    font-size: 16px;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    color: white !important;
    background: rgb(253, 147, 65);
    background: linear-gradient(90deg, rgba(253, 147, 65, 1) 0%, rgba(255, 193, 143, 1) 100%);
    box-shadow: 0 0 14px 2px rgb(223 223 223 / 50%);
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce-ResetPassword {
    border: 0;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 14px 2px rgb(223 223 223 / 50%);
    padding: 20px;
    margin-top: 30px;
}

.woocommerce-account .main .woocommerce {
    margin: 45px 0;
}

.woocommerce-account .woocommerce h2 {
    text-align: center;
    font-size: 45px;
    font-weight: 500;
    margin: 0;
}

.woocommerce .includes_tax .amount {
    display: none;
}

.woocommerce-MyAccount-navigation-link--downloads {
    display: none;
}

.woocommerce .woocommerce-Input,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    height: 50px;
    font-size: 18px;
    border: 1px solid #E7E7E7;
    padding: 15px;
    transition: border-color .35s ease-in-out;
    font-family: 'Assistant', sans-serif;
}

.woocommerce .woocommerce-Input:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: #1A75BD;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 15%;
}

.woocommerce-account .woocommerce-MyAccount-content {
    width: 80%;
}

.woocommerce-MyAccount-navigation ul {
    padding: 0;
    margin: 0;
    border-left: 1px solid #E7E7E7;
    list-style: none;
}

.woocommerce-MyAccount-navigation li {
    position: relative;
}

.woocommerce-MyAccount-navigation li:after {
    content: '';
    display: block;
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -10px;
    height: 20px;
    width: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--dashboard:after {
    background-image: url('/wp-content/uploads/2021/07/speedometer2.svg');
}

.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--orders:after {
    background-image: url('/wp-content/uploads/2021/07/basket-1.svg');
}

.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--edit-address:after {
    background-image: url('/wp-content/uploads/2021/07/house-door.svg');
}

.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--edit-account:after {
    background-image: url('/wp-content/uploads/2021/07/person.svg');
}

.woocommerce-MyAccount-navigation li a {
    display: block;
    font-size: 18px;
    padding: 5px 0;
    color: black;
}

.woocommerce-MyAccount-navigation li.is-active a {
    font-weight: 700;
}

.woocommerce .quantity .qty {
    font-size: 20px;
    width: 50px;
    height: 48px;
    padding: 0;
    border-radius: 0;
    outline: 0;
    border: 1px solid #E7E7E7;
}

.woocommerce .quantity {
    position: relative;
    display: inline-block;
    margin-top: 12px;
}

.woocommerce .quantity:after {
    position: absolute;
    content: 'כמות';
    font-size: 14px;
    font-weight: 700;
    top: -10px;
    padding: 0 5px;
    background-color: white;
    left: 7px;
    text-align: center;
}

.woocommerce div.product form.cart .button {
    margin: 0;
    font-weight: 700;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-breadcrumb,
.woo-breadcrumbs {
    position: absolute;
    top: -27px;
    display: inline-block;
    margin: 0;
    color: white;
    font-weight: 700;
    padding: 5px 0;
    font-size: 14px;
}

.woocommerce .woocommerce-breadcrumb a,
.woocommerce-breadcrumb a,
.woo-breadcrumbs a {
    color: white;
    font-weight: 500;
}

.woocommerce-products-header__title.page-title,
.inner-page h1 {
    margin: 0;
    margin-bottom: 7px;
    margin-top: 7px;
    font-size: 32px;
    font-weight: 500;
}

.woocommerce-products-header,
.inner-page .header-warp {
    padding-bottom: 5px;
    border-bottom: 1px solid #E7E7E7;
    margin-bottom: 0;
}

.woocommerce nav.woocommerce-pagination ul {
    border: 0;
    margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    width: 30px;
    height: 30px;
}

.woocommerce .woocommerce-pagination ul.page-numbers li,
.woocommerce-page .woocommerce-pagination ul.page-numbers li {
    border-radius: 100%;
    padding: 0;
    margin-left: 10px;
    box-shadow: 0 0 14px 2px rgb(223 223 223 / 50%);
    border: 0;
}

.woocommerce .woocommerce-pagination ul.page-numbers li a,
.woocommerce-page .woocommerce-pagination ul.page-numbers li a {
    transition: all .35s ease-in-out;
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images,
.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
    float: none;
    width: 100%;
}

.woocommerce .related.products>h2 {
    padding-top: 7px;
    border-top: 1px solid #E7E7E7;
    font-size: 25px;
    margin: 0;
    margin-bottom: 25px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    float: none;
    width: 100%;
}


/* Woo Gallery */

.woocommerce div.product div.images.woocommerce-product-gallery {
    display: flex;
    justify-content: space-around;
    min-height: 430px;
    align-items: center;
    flex-direction: column;
}

.woocommerce div.product div.images.woocommerce-product-gallery .woocommerce-product-gallery__image > a{
    display: flex;
    justify-content: center;
}

.woocommerce div.product div.images.woocommerce-product-gallery .woocommerce-product-gallery__image > a > img{
    width: auto;
}

.woocommerce div.product div.images.woocommerce-product-gallery .product-brand {
    position: absolute;
    max-width: 110px;
    bottom: 0;
    right: 0;
    z-index: 7;
}

.single-product .main{
    margin-top: 25px;
}

.woocommerce div.product div.images.woocommerce-product-gallery .flex-viewport {
    width: 100%;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper img{
    width: 100%;
}

.woocommerce div.product div.images .flex-control-thumbs {
    display: flex;
    max-height: 400px;
    overflow: auto;
    padding-right: 15px;
    align-self: flex-start;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    left: .5em;
    right: auto;
    top: auto;
    bottom: 0;
    box-shadow: 0 0 14px 2px rgb(223 223 223 / 50%);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-size: 24px;
    color: #FD9341;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
    margin-left: 7px;
    text-decoration: none;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    font-weight: 500;
    color: #292929;
    order: 2;
}

.woocommerce span.onsale {
    display: none;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    height: 2px;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    height: 2px;
    background-color: #167CCB;
}

.woocommerce .woocommerce-ordering select {
    height: 40px;
    border: 1px solid #E7E7E7;
    padding: 0 20px;
    font-size: 14px;
    padding-right: 25px;
    font-weight: 500;
    color: black;
    transition: box-shadow .35s ease-in-out;
}

.woocommerce .woocommerce-ordering {
    position: relative;
}

.woocommerce .woocommerce-ordering:before {
    width: 17px;
    height: 10px;
    content: '';
    background-image: url('/wp-content/uploads/2021/07/filter.svg');
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -5px;
}

.woocommerce .woocommerce-ordering select:focus-visible {
    box-shadow: 0 0 14px 2px rgb(223 223 223 / 50%);
    outline: 0;
}

.woocommerce .woocommerce-result-count {
    margin: 0;
    margin-top: 20px;
    font-size: 16px;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background-color: #FDA967;
    border: 2px solid white;
    top: -9px;
}

.woocommerce .widget_price_filter .price_slider_amount {
    display: flex;
    flex-direction: column;
}

.woocommerce .widget_price_filter .price_slider_amount {
    display: flex;
    flex-direction: column;
}

.woocommerce .widget_price_filter .price_slider_amount .button {
    order: 2;
    margin: 0;
}

.rtl.woocommerce .price_label {
    text-align: center;
    font-weight: 700;
    direction: rtl;
}

.woocommerce ul.product_list_widget li {
    border-bottom: 1px solid #E7E7E7;
}

.woocommerce .product_meta .extra-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 7px;
    border-bottom: 1px solid #E7E7E7;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.woocommerce .product_meta .extra-info>img {
    max-width: 150px;
}

.woocommerce .product_meta>span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 7px;
}

.woocommerce .product_meta>span>span,
.woocommerce .product_meta>span>a {
    font-weight: initial;
}

.woocommerce a.remove {
    color: #FD9341!important;
    font-weight: 500;
    transition: transform .35s ease-in-out;
    font-size: 2rem;
}

.woocommerce a.remove:hover {
    color: #FD9341!important;
    background-color: transparent;
    transform: scale(1.3);
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
    width: 100px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    float: none;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
    padding: 13px 50px;
}

#add_payment_method .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .wc-proceed-to-checkout {
    padding: 0;
}

.cart_totals h2 {
    text-align: center;
}

.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
    border-top: 5px solid #FD9341;
    box-shadow: 0 0 15px 7px rgb(223 223 223 / 50%);
}

.woocommerce #content table.cart td.actions .coupon,
.woocommerce table.cart td.actions .coupon,
.woocommerce-page #content table.cart td.actions .coupon,
.woocommerce-page table.cart td.actions .coupon {
    text-align: right;
}

.woocommerce .cart .button,
.woocommerce .cart input.button {
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
    height: 50px;
    font-size: 18px;
    border: 1px solid #1a75bd;
    padding: 15px;
    max-width: 250px;
    width: 100%;
}

.woocommerce .coupon h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.woocommerce .coupon .coupon-input {
    position: relative;
}

.woocommerce .coupon .coupon-input button[type='submit'] {
    position: absolute;
    background: linear-gradient(90deg, rgba(22, 124, 203, 1) 0%, rgba(80, 150, 204, 1) 100%);
    left: 5px;
    top: 1px;
}

.woocommerce table.shop_table {
    border: 0;
    margin: 0;
}

.woocommerce div.product .product_title {
    margin: 7px 0;
    font-size: 24px;
}

#customer_details,
#order_review {
    max-width: 550px;
    box-shadow: 0 0 15px 7px rgb(223 223 223 / 50%);
    padding: 30px;
    border-top: 5px solid #FD9341;
    margin-right: auto;
    transition: all .35s ease-in-out;
    position: relative;
}

#order_review {
    margin-left: auto;
    margin-right: 0;
    position: sticky;
    top: 60px;
}

form[name="checkout"] .step-nav {
    text-align: center;
    font-size: 24px;
    border: 2px solid #FD9341;
    width: 35px;
    height: 35px;
    line-height: 29px;
    font-weight: 700;
    border-radius: 100%;
    margin: 0 auto;
    transition: border .35s ease-in-out;
}

form[name="checkout"] h3 {
    text-align: center;
    font-size: 24px;
}

#customer_details:hover,
#order_review:hover {
    transform: translate(0, -7px);
    border-top: 5px solid #167ccb;
}

#customer_details:hover .step-nav,
#order_review:hover .step-nav {
    border: 2px solid #167ccb;
}

#order_review .product-name .product-quantity {
    float: right;
    margin-left: 10px;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
    border: 0;
    background: transparent;
    display: inline-block;
    margin: 0;
}

.woocommerce-message {
    transition: all .35s ease-in-out;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    top: 18px;
}

.woocommerce .checkout_coupon.woocommerce-form-coupon {
    border: 0;
    display: flex;
    margin: 0;
    padding-top: 0;
    box-shadow: none;
}

.woocommerce #ship-to-different-address {
    font-size: 20px;
}

.woocommerce form .form-row.woocommerce-invalid label {
    font-weight: 700;
}

.woocommerce .checkout_coupon.woocommerce-form-coupon p {
    margin: 0;
    width: auto;
    padding: 0;
}

.woocommerce .checkout_coupon.woocommerce-form-coupon p:first-child {
    display: none;
}

.woocommerce .checkout_coupon.woocommerce-form-coupon input[type="text"] {
    height: 40px;
    font-size: 16px;
    border: 1px solid #1a75bd;
    padding: 7px;
    max-width: 200px;
    width: 100%;
}

.woocommerce .checkout_coupon.woocommerce-form-coupon button[type="submit"] {
    background: linear-gradient( 90deg, rgba(22, 124, 203, 1) 0%, rgba(80, 150, 204, 1) 100%);
    margin: 0;
    padding: 12px 10px;
    font-size: 16px;
}

#billing_country_field {
    display: none;
}

.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    font-size: 24px;
    font-weight: 700;
}

.woocommerce .woocommerce-customer-details :last-child,
.woocommerce .woocommerce-order-details :last-child,
.woocommerce .woocommerce-order-downloads :last-child {
    line-height: 2em;
    border-radius: 0;
    border-width: 1px;
}

.woocommerce .shipping-method-description {
    font-size: 14px;
    font-weight: 500;
}

.woocommerce .woocommerce-table .custom-fields {
    display: none;
}


/* Add to cart */

.xoo-wsc-basket {
    padding: 10px;
    transition: all .35s ease-in-out;
    z-index: 8;
}

.xoo-wsc-footer {
    flex: 1;
}

/* .xoo-wsc-ft-btn-cart, */
.xoo-wsc-ft-btn-continue {
    display: none !important;
}

.xoo-wsc-container,
.xoo-wsc-slider {
    transition: all .35s ease-in-out;
}

.xoo-wsc-icon-basket1 {
    width: 35px;
    height: 35px;
    display: block;
    text-align: center;
    position: relative;
    top: 0;
}

.xoo-wsc-icon-basket1:before {
    content: '';
    width: 27px;
    height: 24px;
    background-image: url(/wp-content/uploads/2021/07/basket.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -14px;
    margin-top: -12px;
}

.xoo-wsc-basket:hover {
    transform: translate(0, -7px);
}

.xoo-wsc-basket:hover .xoo-wsc-icon-basket1:before {
    -webkit-animation-name: shake;
    animation-name: shake;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.xoo-wsc-ft-buttons-cont {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.woocommerce .xoo-wsc-ft-buttons-cont>a,
.xoo-wsc-ft-buttons-cont>a {
    padding: 13px 0px;
    background-color: transparent;
    background: transparent;
    font-size: 18px;
    color: rgb(253, 147, 65) !important;
    box-shadow: none;
    font-weight: 500;
}

.woocommerce .xoo-wsc-ft-buttons-cont>a:hover,
.xoo-wsc-ft-buttons-cont>a:hover {
    padding: 13px 0px;
    background-color: transparent;
    background: transparent;
    font-size: 18px;
    color: rgb(253, 147, 65) !important;
    box-shadow: none;
    height: auto;
    font-weight: 500;
}

a.xoo-wsc-ft-btn-checkout,
.woocommerce a.xoo-wsc-ft-btn-checkout {
    padding: 13px 50px;
    color: white !important;
    font-weight: 700;
    margin: 5px 0;
    margin-top: 15px;
    font-size: 20px;
    background: rgb(253, 147, 65);
    background: linear-gradient( 90deg, rgba(253, 147, 65, 1) 0%, rgba(255, 193, 143, 1) 100%);
    border-radius: 0;
    position: relative;
    transition: all .35s ease-in-out;
    display: inline-block;
}

a.xoo-wsc-ft-btn-checkout:hover,
.woocommerce a.xoo-wsc-ft-btn-checkout:hover {
    padding: 13px 50px;
    color: white !important;
    font-weight: 700;
    margin: 5px 0;
    margin-top: 15px;
    font-size: 20px;
    background: rgb(253, 147, 65);
    background: linear-gradient( 90deg, rgba(253, 147, 65, 1) 0%, rgba(255, 193, 143, 1) 100%);
    border-radius: 0;
    position: relative;
    transition: all .35s ease-in-out;
    display: inline-block;
}

span.xoo-wsc-ft-amt-label {
    padding-right: 0;
    padding-left: 5px;
}

.xoo-wsc-ft-totals {
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
}

span.xoo-wsch-close {
    font-size: 38px;
    color: #333;
}

.xoo-wsc-img-col>a {
    display: inline-block;
    margin-left: 10px;
}

.xoo-wsc-header {
    border-top: 5px solid rgb(253, 147, 65);
}

.xoo-wsc-container,
.xoo-wsc-slider {
    max-width: 350px;
}

.xoo-wsc-cart-active .xoo-wsc-basket {
    right: 350px;
}

.dgwt-wcas-tax-product-details {
    justify-content: right;
}


/* Payment */

select[name="wc-gobitpaymentgateway-number-of-payments-for-token"] {
    height: 50px;
    font-size: 18px;
    border: 1px solid #E7E7E7;
    padding: 15px;
    transition: border-color .35s ease-in-out;
    font-family: 'Assistant', sans-serif;
    width: 250px;
}

select[name="wc-gobitpaymentgateway-number-of-payments-for-token"]:focus-visible {
    outline: 0;
    border: 1 solid transparent;
}

.gb-payment-method-description {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: black;
}

.gb-payment-method-description>img {
    max-width: 140px;
    display: block;
    margin: 0 !important;
    margin-top: 10px !important;
}

#tranzila-choose-number-of-payments {
    margin-top: -20px !important;
}

#tranzila-choose-number-of-payments>p,
label[for="wc-gobitpaymentgateway-new-payment-method"] {
    font-size: 14px;
    font-weight: 500;
    color: black;
    margin-bottom: 5px;
}

#tranzila-j5-warning {
    margin: 0 !important;
}

#gobit-iframe-div {
    margin: 0 auto;
    max-width: 450px;
    box-shadow: 0 0 15px 7px rgb(223 223 223 / 50%);
    padding: 30px;
    border-top: 5px solid #FD9341;
    margin-right: auto;
    transition: all .35s ease-in-out;
    position: relative;
}

#gobit-iframe-div iframe {
    border: 0;
    outline: 0;
}

.woocommerce-order-pay .woocommerce ul.order_details {
    display: none;
}

.woocommerce-order-pay .inner-page .header-warp h1,
.woocommerce-order-pay .inner-page .header-warp p {
    margin: 0 auto;
    max-width: 500px;
    text-align: center;
}

.woocommerce-order-pay .inner-page .header-warp h1 {
    font-size: 32px;
}


/* Footer */

footer {
    position: relative;
    background: rgb(26, 117, 189);
    background: linear-gradient( 180deg, rgba(26, 117, 189, 1) 0%, rgba(26, 117, 189, 1) 40%, rgba(90, 180, 225, 1) 100%);
    padding: 40px 0;
    color: white;
    margin-top: 50px;
}

footer:after {
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('/wp-content/uploads/2021/07/Line.svg');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
}

footer .container {
    position: relative;
    z-index: 8;
}

footer .wrapper-info {
    margin-bottom: 30px;
}

#menu-footer {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: space-around;
}

#menu-footer>li {
    padding-top: 7px;
    border-top: 3px solid #FD9341;
    margin-left: 20px;
}

#menu-footer>li>a {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
    font-size: 18px;
}

#menu-footer>li>.sub-menu {
    padding: 0;
    padding-right: 10px;
    list-style: none;
}

#menu-footer>li>.sub-menu>li {
    position: relative;
    margin-bottom: 7px;
}

#menu-footer>li>.sub-menu>li:after {
    position: absolute;
    content: '·';
    top: 0;
    left: 100%;
    margin-left: 4px;
    color: orange;
    font-size: 30px;
    line-height: 6px;
    margin-top: 9px;
}

#menu-footer>li>.sub-menu>li>a {
    color: white;
}

footer .info p {
    font-size: 18px;
    margin-bottom: 0;
}

footer .info .logo {
    display: inline-block;
    margin-bottom: 15px;
}

footer .info .logo img{
    max-width: 250px;
}

footer .facebook-posts h3 {
    margin-top: 18px;
}

.copyrights {
    padding: 25px 0;
}


.copyrights .copy-warp {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.copyrights .credit-warp>div {
    margin-bottom: 5px;
}

.copyrights .copy-warp .credit {
    font-size: 14px;
}

.copyrights .copy-warp #menu-copyright {
    margin: 0;
    padding: 0;
}

.copyrights .copy-warp #menu-copyright li {
    display: inline-block;
}

.copyrights .copy-warp #menu-copyright li a {
    color: #333;
    padding: 0;
    font-size: 16px;
    padding-left: 10px;
}

.owl-carousel.features .item {
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
    border-left: 1px solid #D5D5D5;
    min-height: 110px;
}

.owl-carousel.features .item div {
    font-size: 18px;
}

.owl-carousel.features .item img {
    height: 29px;
    margin-bottom: 23px;
}

.articles .item {
    position: relative;
    max-width: 578px;
    margin-bottom: 25px;
}

.articles .item>p {
    max-height: 45px;
    overflow: hidden;
    font-size: 16px;
}

.articles .item h2 {
    position: absolute;
    top: 5px;
    right: 15px;
    margin: 0;
    z-index: 9;
}

.articles .item h2 a {
    color: white;
    font-size: 18px;
}

.articles .item>a.f-img {
    display: inline-block;
    color: black;
    font-weight: 700;
    position: relative;
    margin-bottom: 15px;
    margin-top: 0;
    max-height: 175px;
    width: 100%;
    overflow: hidden;
}

.articles .item>a img {
    width: 100%;
}

.articles .item>a.f-img:after {
    content: '';
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
}

.owl-warp.reco {
    margin-bottom: 0;
}

.owl-warp.reco .hashTag,
.owl-warp.reco .owl-carousel.reco {
    display: inline-block;
    height: 100%;
    vertical-align: top;
}

.owl-warp.reco .owl-carousel.reco {
    margin-right: 30px;
}

.owl-warp.reco .owl-carousel.reco .item {
    text-align: center;
    padding: 15px 30px;
}

.owl-warp.reco .owl-carousel.reco .item img {
    max-width: 50px;
    margin: 0 auto;
    margin-bottom: 7px;
}

.owl-warp.reco .hashTag .item img {
    padding-left: 25px;
}

.owl-warp.reco .hashTag .item>div {
    display: flex;
    flex-direction: column;
}

.owl-warp.reco .owl-carousel.reco .item .name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 7px;
}

.brands-owl {
    display: flex;
    overflow: hidden;
}

.brands-owl:hover .item {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

.brands-owl .item {
    box-shadow: 0 0 14px 2px rgb(223 223 223 / 50%);
    margin-left: 10px;
    display: inline-block;
    animation: marquee 10s linear infinite;
}

.brands-owl .item img {
    max-width: 120px;
    height: auto;
}

.brand-warp {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(1000%, 0);
    }
}

.reco-products {
    margin-bottom: 50px;
    height: 100%;
    min-height: 100%;
}


/* club form */

.club-form {
    position: relative;
}

.club-form input {
    border: 0;
    outline: 0;
    font-size: 18px;
    font-family: 'Assistant', sans-serif;
    padding: 15px 20px;
    padding-left: 90px;
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
}

.club .club-form input {
    box-shadow: 0 0 15px 7px rgb(223 223 223 / 50%);
    position: relative;
    z-index: 6;
}

.club {
    position: relative;
    z-index: 4;
}

.club:after {
    content: '';
    background-image: url('/wp-content/uploads/2021/07/elemet1.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 338px;
    height: 152px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -76px;
    z-index: 5;
}

.post-sidebar .club .club-form:after {
    margin-left: -134px;
    width: 268px;
}

.club h3 {
    font-size: 36px;
    margin-bottom: 0;
}

.club-form input[type="submit"] {
    position: absolute;
    /* content: 'dsa'; */
    left: 0;
    width: 80px;
    top: 0;
    padding: 14px 10px;
    background-color: #FD9341;
    color: white;
    font-weight: 700;
    z-index: 99;
    cursor: pointer;
    box-shadow: none;
}


/* Home */

.home-slider {
    position: relative;
    z-index: 8;
    margin-bottom: 30px;
    min-height: 518px;
}

.home-slider .home-slider-content {
    position: relative;
}

.home-slider .board {
    width: 100%;
    height: 190px;
    bottom: 0;
    position: absolute;
    background-size: cover;
}

.home header {
    padding-bottom: 0;
    background: linear-gradient(180deg, rgba(26, 117, 189, 1) 0%, rgba(49, 160, 216, 1) 25%, rgba(56, 172, 223, 0) 64%, rgba(56, 172, 223, 0) 100%);
}

.owl-carousel.home .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* full-image-owl-banner */

.owl-carousel.home .item.full-img {
    justify-content: center;
}

.owl-carousel.home .item.full-img .content,
.owl-carousel.home .item.full-img .tag-img {
    display: none;
}

.owl-carousel.home .item.full-img .product-img img {
    display: block;
    width: 100%;
}


/* end */

.owl-carousel.home .item.banner {
    justify-content: center;
}

.owl-carousel.home .item .content {
    max-width: 360px;
    min-width: 360px;
    position: relative;
    min-height: 294px;
    padding: 20px;
    background-color: rgb(255 255 255 / 75%);
}

.owl-carousel.home .item .content ul {
    margin: 10px 0;
}

.owl-carousel.home .item .content ul li {
    font-size: 20px;
    line-height: 1.2em;
}

.owl-carousel.home .item.banner .content {
    padding: 0;
    max-width: 100%;
    min-width: auto;
    min-height: auto;
    background: none;
}

.owl-carousel.home .item.banner .tag-img {
    display: none;
}

.owl-carousel.home .item .tag-img {
    align-self: flex-end;
}

.owl-carousel.home .item .tag-img img {
    max-width: 100px;
}

.owl-carousel.home .item .content .tag {
    font-size: 50px;
    line-height: 1em;
    color: black;
    font-weight: 700;
    margin-bottom: 7px;
}

.owl-carousel.home .item .content .title {
    font-size: 35px;
    line-height: 1em;
    color: black;
    min-height: 140px;
}

.owl-carousel.home .item .content .price {
    font-size: 45px;
    color: #FD9341;
    font-weight: 700;
    margin-bottom: 10px;
}

.owl-carousel.home .item .content .price del {
    font-size: 20px;
    color: gray;
    font-weight: 500;
}

.owl-carousel.home .item .content a {
    margin: 0;
}

.brands-owl {
    margin-bottom: 50px;
}

.flex-warp {
    display: flex;
}

.flex-warp>* {
    flex: 1;
}

.flex-warp>a {
    padding-bottom: 7px;
    padding-left: 7px;
}

.flex-warp a {
    display: inline-block;
    position: relative;
}

.flex-warp a div.img-warp {
    position: relative;
}

.flex-warp a div.img-warp:after {
    content: '';
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(26, 117, 189, 0) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 6;
}

.flex-warp a h3 {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    z-index: 7;
    font-size: 30px;
    color: white;
    text-align: center;
    margin-top: -16px;
    margin-bottom: 0;
}

.flex-warp>div {
    display: flex;
    flex-wrap: wrap;
}

.flex-warp>div>a {
    width: 50%;
    text-align: center;
    max-width: 321px;
    padding-bottom: 7px;
    padding-left: 7px;
}

.flex-warp a img {
    width: 100%;
}

.home-categories {
    margin-bottom: 30px;
}

.term-description-warp,
.inner-description {
    max-height: 300px;
    margin: 25px 0;
    overflow: auto;
    direction: ltr;
}

.term-description-warp #open-des {
    direction: rtl;
    text-align: left;
    padding: 15px 0;
    font-weight: 700;
    cursor: pointer;
}

.term-description {
    direction: rtl;
    padding-right: 15px;
}

.product-description {
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 25px;
    padding-left: 10px;
}


/* width */

.term-description-warp::-webkit-scrollbar,
.product-description::-webkit-scrollbar,
.inner-description::-webkit-scrollbar,
.owl-warp.reco .hashTag::-webkit-scrollbar,
.woocommerce div.product div.images .flex-control-thumbs::-webkit-scrollbar {
    width: 10px;
}


/* Track */

.term-description-warp::-webkit-scrollbar-track,
.product-description::-webkit-scrollbar-track,
.inner-description::-webkit-scrollbar-track,
.owl-warp.reco .hashTag::-webkit-scrollbar-track,
.woocommerce div.product div.images .flex-control-thumbs::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

.term-description-warp::-webkit-scrollbar-thumb,
.product-description::-webkit-scrollbar-thumb,
.inner-description::-webkit-scrollbar-thumb,
.owl-warp.reco .hashTag::-webkit-scrollbar-thumb,
.woocommerce div.product div.images .flex-control-thumbs::-webkit-scrollbar-thumb {
    background: #31A0D8
}


/* Handle on hover */

.term-description-warp::-webkit-scrollbar-thumb:hover,
.product-description::-webkit-scrollbar-thumb:hover,
.inner-description::-webkit-scrollbar-thumb:hover,
.owl-warp.reco .hashTag::-webkit-scrollbar-thumb:hover,
.woocommerce div.product div.images .flex-control-thumbs::-webkit-scrollbar-thumb:hover {
    background: #1A75BD
}

.inner-article .post-warp {
    max-width: 950px;
    margin-left: auto;
}

.inner-article .post-sidebar {
    max-width: 280px;
    margin-right: auto;
}

.club-reg-form {
    max-width: 550px;
    box-shadow: 0 0 15px 7px rgb(223 223 223 / 50%);
    padding: 30px;
    border-top: 5px solid #FD9341;
    transition: all .35s ease-in-out;
    position: relative;
    margin: 0 auto;
}

.club-reg-form .wpcf7-list-item {
    margin: 0;
}

.club-reg-form .wpcf7-form input[type="text"],
.club-reg-form .wpcf7-form input[type="email"],
.club-reg-form .wpcf7-form input[type="tel"],
.club-reg-form .wpcf7-form input[type="date"],
.club-reg-form .wpcf7-form input[type="submit"] {
    height: 50px;
    font-size: 18px;
    border: 1px solid #E7E7E7;
    padding: 15px;
    transition: border-color .35s ease-in-out;
    font-family: 'Assistant', sans-serif;
    margin-bottom: 15px;
    width: 100%;
}

.club-reg-form .wpcf7-form input[type="submit"] {
    margin: 0;
    margin-top: 15px;
}

.club-reg-form label {
    font-size: 18px;
}

.club-reg-form .required {
    color: red;
    font-weight: 700;
    border: 0!important;
    text-decoration: none;
}


/* Contact */

.contact {
    padding: 40px;
    background: linear-gradient(0deg, rgba(56, 173, 224, 0.3) 0%, rgba(26, 117, 189, 0.3) 100%);
    margin-bottom: 50px;
}

.contact h3 {
    font-size: 25px;
    padding-top: 5px;
    border-top: 1px solid white;
    margin-bottom: 35px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"] {
    height: 50px;
    font-size: 18px;
    border: 1px solid #E7E7E7;
    padding: 7px;
    transition: border-color .35s ease-in-out;
    font-family: 'Assistant', sans-serif;
    display: block;
    box-sizing: border-box;
    width: 100%;
}

.wpcf7-form input[type="text"]:focus-visible,
.wpcf7-form input[type="email"]:focus-visible {
    border: 0;
    outline: 0;
}

.wpcf7-form .flex-warp-cf7 {
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    display: flex;
}

.wpcf7-form .flex-warp-cf7>div {
    display: block;
}

.wpcf7-form .check-box {
    font-size: 18px;
}

.wpcf7-form p {
    margin: 0;
}
.contact .wpcf7-form-control.wpcf7-email {
  direction: rtl;
  text-align: right;
}
.wpcf7-form input[type="submit"] {
    padding: 13px 50px;
    color: white !important;
    font-weight: 700;
    margin: 5px 0;
    margin-top: 15px;
    font-size: 20px;
    background: rgb(253, 147, 65);
    background: linear-gradient( 90deg, rgba(253, 147, 65, 1) 0%, rgba(255, 193, 143, 1) 100%);
    border-radius: 10px;
    position: relative;
    transition: all .35s ease-in-out;
    display: inline-block;
    border: 0;
    margin-right: 20px;
    margin-bottom: 0;
    width: 100%;
    max-width: 280px;
    cursor: pointer;
}

.wpcf7-not-valid-tip {
    position: absolute;
    top: 0;
    left: 10px;
    font-weight: 700;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    display: none;
}

#back-top {
    display: none;
    position: fixed;
    align-items: center;
    bottom: 180px;
    right: 27px;
    padding: 15px 0;
    cursor: pointer;
}

#back-top .warp {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: rgb(0 0 0 / 5%);
}

#back-top .warp img {
    transform: rotate(180deg);
    width: 30px;
    margin: 5px auto;
    transition: transform .35s ease-in-out;
}

#back-top .warp:hover img {
    transform: scale(1.2) rotate(180deg);
}

#back-top .warp div {
    font-weight: 700;
}

.side-cat {
    position: relative;
}

#pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a {
    background-color: #1A75BD !important;
}

#pojo-a11y-toolbar .pojo-a11y-toolbar-toggle a:hover {
    color: white !important;
}

.grecaptcha-badge {
    display: none;
}

.woocommerce-form-login-toggle,
.woocommerce-form-coupon-toggle {
    /* display: none; */
}


/* Flash Sales */

.tax-product_cat .wcct_timer_wrap,
.related.products .wcct_timer_wrap {
    transform: scale(0.75);
    position: relative;
    right: -32px;
    display: flex;
    flex-direction: row-reverse;
}

.tax-product_cat .wcct_countdown_timer,
.related.products .wcct_countdown_timer {
    margin-bottom: 0;
}

.tax-product_cat .wcct_countdown_timer>p,
.related.products .wcct_countdown_timer>p {
    font-weight: 700;
}

.ttt-pnwc-footer,
.wc_coupon_message_wrap,
.woocommerce-message,
.woocommerce-checkout .woocommerce-error {
    display: none;
}

#sc-cc {
    margin-bottom: 15px !important;
}

#sc-cc .mr-2 {
    margin-right: 0;
    margin-left: 0.5rem;
}

.wcct_h3.wcct_text_left,
.wcct_text_left {
    text-align: right !important;
}

.ttt-pnwc-container {
    border-radius: 0;
    border-top: 5px solid #FD9341;
}

.ttt-pnwc-notice {
    justify-content: right;
}

.ttt-pnwc-notice .ttt-pnwc-message{
    text-align: right;
    font-size: 20px;
    line-height: 1.2em;
    padding-right: 15px;
}

.woocommerce-checkout .header-warp {
    padding-bottom: 0;
    margin-bottom: 5px;
    text-align: center;
}

.woocommerce-checkout .header-warp h1 {
    text-align: center;
}

#coupons_list h3 {
    text-align: center;
    font-weight: 500;
    text-decoration: underline;
}

#coupons_list #all_coupon_container {
    justify-content: center;
}

.wcct_header_area,
.wcct_footer_area {
    z-index: 9999 !important;
}

#___ratingbadge_0 {
    right: auto !important;
    left: 0;
}

form.checkout {
    margin-bottom: 35px;
}

.top-cat-info {
    display: flex;
}

.top-cat-info>div {
    flex: 1;
}

.archive .ti-header.source-Google {
    display: none !important;
}

.archive .foot .ti-header.source-Google {
    display: block !important;
}

.ti-widget.ti-goog .ti-review-content {
    max-height: 41.2px !important;
    text-align: right;
}


/* popup */

#open-popup {
    display: none;
}

.open-tav {
    cursor: pointer;
}

#float-tav {
    position: fixed;
    left: 30px;
    bottom: 30px;
    max-width: 200px;
    z-index:9;
}

#float-tav img {
    width: 100%;
}

#float-tav .exit {
    position: absolute;
    top: -15px;
    right: -15px;
    cursor: pointer;
}

.bg-popup {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
}

.bg-popup .warp {
    background-color: white;
    border: 2px solid #FD9341;
    border-radius: 5px;
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.bg-popup .warp>img {
    max-width: 250px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.bg-popup .warp i {
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
}

.bg-popup .warp i img {
    width: 55px;
}

.bg-popup .warp .small-title {
    font-size: 20px;
    font-weight: 700;
}

.bg-popup .warp .big-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1em;
}

.bg-popup .warp ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-top: 15px;
}

.bg-popup .warp ul li {
    padding: 0;
    margin-bottom: 3px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-popup .warp ul li img {
    width: 25px;
}

.bg-popup .warp .cta {
    padding: 13px 50px;
    color: white !important;
    font-weight: 700;
    margin: 5px 0;
    margin-top: 15px;
    font-size: 20px;
    background: rgb(253, 147, 65);
    background: linear-gradient(90deg, rgba(253, 147, 65, 1) 0%, rgba(255, 193, 143, 1) 100%);
    border-radius: 0;
    position: relative;
    transition: all .35s ease-in-out;
    display: inline-block;
    cursor: pointer;
}

.elements-hide .xoo-wsc-modal,
.elements-hide .fb-customerchat,
.elements-hide .wcct_header_area,
.elements-hide .wcct_footer_area {
    visibility: hidden !important;
}

#wcf_cf_gdpr_message_block span {
    font-size: 12px !important;
}

#___ratingbadge_0 {
    display: none !important;
}


/* open chat cta */

#cta-chat .warp {
    display: flex;
    justify-content: start;
    align-items: center;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 5px;
}

#order_review #cta-chat .warp {
    justify-content: center;
}

#order_review #cta-chat .phone {
    text-align: center;
    margin-bottom: 15px;
}

.page-title #cta-chat .warp {
    margin-top: 0;
}

#cta-chat .warp #open-chat {
    background-color: #177CCB;
    padding: 5px 10px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    margin-right: 10px;
    color: white;
    cursor: pointer;
}

#cta-chat .warp img {
    width: 20px;
    margin-left: 5px;
}

.fb_dialog_content iframe:first-child {
    height: auto;
}

.woocommerce-product-details__short-description {
    padding: 10px;
    border: 2px solid #32a0d8;
    margin-bottom: 20px;
}


/* badge service */


/*chaning the menu color - specifily*/

#menu-main>li.disc>a {
    color: #FD9341;
}


/*end*/


/*spects_table*/

.specs_table th {
    background-color: #EAEAEA;
    ;
    padding: 5px 20px;
}

.specs_table td {
    padding: 5px 20px;
    text-align: center;
}


/*end table*/

table.vertical-table td,
table.vertical-table th {
    border-width: 2px;
    border-color: #EAEAEA;
    border-style: solid;
    padding: 5px;
}

table.vertical-table td {
    background-color: #eaeaea;
}

.vertical-table {
    width: 100%;
    font-size: 17px;
}

.vertical-table tr {
    border-bottom: 2px solid #EAEAEA;
    background-color: #EAEAEA;
    ;
}

.vertical-table tr td:first-child {
    width: 25%;
    font-weight: 700;
    background-color: #EAEAEA;
    ;
}

.vertical-table tr td:last-child {
    background-color: white;
    border-color: #00000014;
}

#static-text{
    color: red;
}

#static-text .small{
    font-size: 12px;
}
#static-text .big{
    font-size: 16px;
}


/* shooping-il - delete when the time comes*/

.dealers-warp .shooping-il {
    text-align: unset;
    width: unset;
    height: unset;
    background-color: unset;
    border-radius: unset;
    color: unset;
    font-weight: unset;
    font-size: unset;
    line-height: unset;
    padding-top: unset;
    margin-right: unset;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.shopingIl {
    display: flex;
    justify-content: space-around;
}

.dealers-warp .shooping-il.mini-tag {
    margin-left: 5px;
}



.dealers-warp .shooping-il img {
    width: 100%;
    max-width: 150px;
}

.dealers-warp .shooping-il.mini-tag img {
    width: 100%;
    max-width: 100px;
}


.dealers-warp .shooping-il.mini-tag .shopingIl img {
    max-width: 70px;
    border-radius: 50%;
}
@media only screen and (max-width: 787px) {
    .owl-carousel.home .item {}
    .dealers-warp .shooping-il.mini-tag img {
        max-width: 60px;
    }

    .dealers-warp .shooping-il img {
        max-width: 100px;
    }

    .dealers-warp .shooping-il.mini-tag .shopingIl img {
    max-width: 55px;
    border-radius: 50%;
}

.dealers-warp .shooping-il {
    row-gap: 5px;
}
}


/* end-shooping-il */


/* whats-app */

.whatsapp-wrap {
    position: fixed;
    bottom: 0;
    right: 0;
    margin-right: 100px;
    margin-bottom: 20px;
    z-index: 99;
}

.whatsapp-wrap svg {
    width: 60px;
    height: 60px;
    color: #00cd52;
}

.whatsapp-wrap svg path {}

@media only screen and (max-width: 787px) {
    .whatsapp-wrap {
        margin-right: 20px;
        margin-bottom: 170px;
    }
}



.disclaimer ul {
    margin: unset;
    margin-bottom: 20px;
    margin-top: -20px;
    border: 1px solid #59afde;
    padding: 10px 0;
    padding-right: 20px;
}

.disclaimer ul li {
    font-size: 14px;
}


/* end whats-app */

/* for rent template */

.page-template-for-rent .main {
    padding: 50px 0;
}

.rent-wrap .rent-head {
    text-align: center;
}

.rent-wrap .rent-head h1 {
    font-weight: 700;
    font-size: 52px;
    margin: unset;
    margin-bottom: 20px;
}

.rent-wrap .rent-head p {
    font-size: 22px;
}

.rent-wrap .rent-head p:last-child {
    margin-bottom: 30px;
}

.rent-wrap .items {
    margin: unset;
    padding: unset;
    max-width: 400px;
    margin: 0 auto;
    list-style: none;
    margin-bottom: 50px;
}

.rent-wrap .items li {
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
}

.rent-wrap .items li::before {
    content: '';
    position: absolute;
    background-image: url('/wp-content/uploads/2023/04/check2-circle.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 30px;
    height: 30px;
    right: 0;
    top: 0;
    margin-right: -35px;
    margin-top: -1px;
}

.prod-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.prod-item {
    width: 100%;
    padding: 15px 0;
    transition: all 0.4s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 14px 2px rgb(223 223 223 / 50%);
    border: 2px solid #ddd;
}

.prod-item:hover {
    transform: translateY(-8px);
}


.prod-wrap  .img-wrap {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prod-wrap img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 20px;
}

.prod-wrap span {
    color: black;
    font-size: 18px;
    transition: all 0.2s ease-out;
    display: inline-block;
    margin-bottom: 15px;
}



/* a.prod-item:hover span {
    font-size: 22px;
    color: #4a9cd08f ;
} */

.sum-rent {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: start;
    padding: 0 15px;
}

.sum-rent a {
    background-color: #1A75BD;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    width: 100%;
    min-height: 40px;
    border-radius: unset;
    font-weight: 700;
}

.sum-rent p {
    margin: unset;
    color: orange;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

@media only screen and (max-width: 787px) {
    .page-template-for-rent .main {
        padding-top: 120px;
    }
    .prod-wrap {
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: unset;
    }

    .rent-wrap .rent-head h1 {
        font-size: 35px;
    }

    .rent-wrap .rent-head p {
        font-size: 18px;
    }

    .rent-wrap .items {
        max-width: unset;
        padding-right: 30px;
    }

    .rent-wrap .items li {
        font-size: 18px;
    }
}


/* end - rent */

.product_tag-rent .related,
.product_tag-rent .disclaimer,
.product_tag-rent .quantity

 {
    display: none;
}

.product_tag-rent form.cart .button {
    display: none;
}


/* high - menu */

.high-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: start;
    border-bottom: 3px solid #FD9341;
    position: relative;
}

.high-menu ul li a {
    font-size: 20px;
    font-weight: 700;
    color: white;
    display: inline-block;
    text-decoration: none;
    padding: 7px;
    margin: 8px 0;
    background-color: #fd9341;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.high-menu ul li a:hover{
    color: white !important;
}

@media only screen and (max-width: 787px) {
    .high-menu ul {
        flex-direction: column;
        border: unset;
    }

}

/* working hours pop */
.hours-modal {
    --bs-modal-width: 850px;
}
.hours-modal .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 23px;
}

.hours-modal iframe {
    height: 280px !important;
}

.hours-modal .map-wrap {
flex: 3;
}

.hours-modal .info {
    flex: 2;
}

@media only screen and (max-width: 787px) {
    .hours-modal {
        --bs-modal-width: calc(100% - 22px);
    }

    .hours-modal .wrapper {
        flex-direction: column;
        gap: 15px
    }
    .hours-modal iframe {
        height: 170px !important;
    }
    .hours-modal .map-wrap {
    width: 100%;   
    }

    .hours-modal .info {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 788px) {
    .dgwt-wcas-suggestions-wrapp {
        height: 560px !important;
        overflow: auto !important;
    }
}

/* Force 4-column layout for custom cart upsells */
.woocommerce ul.products.cart-upsells-grid.columns-4 li.product,
.woocommerce ul.products.cart-upsells-grid li.product {
    width: 23.6%;
    float: right; /* Use 'left' for LTR languages */
    clear: none;
}

/* Target the 4th item in the row to remove its right margin */
.woocommerce ul.products.cart-upsells-grid li.product:nth-child(4n) {
    margin-right: 0;
}

/* Clear the float after every 4th item to start a new row */
.woocommerce ul.products.cart-upsells-grid li.product:nth-child(4n+1) {
    clear: both;
}

.cart-upsells-section h2{
    text-align: right;
}

@media only screen and (max-width: 787px) {
    /* Force 4-column layout for custom cart upsells */
    .woocommerce ul.products.cart-upsells-grid.columns-4 li.product,
    .woocommerce ul.products.cart-upsells-grid li.product {
        width: 50%;
    }

    .cart-upsells-section{
        margin-top: 30px;
    }

    
.single-articles li {
    font-size: 16px;
}
}


/* itamar add cookies 15092025 */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1e73be;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    z-index: 1000;
     display: none;
}

.cookie-consent-text {
    margin: 0;
    padding: 0 20px 0 0;
    font-size: 16px;
    text-align: center;
    color: white;
}

.cookie-consent-text a {
    color: white;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    text-decoration: none;
}

.cookie-consent-button {
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap; /* Prevents the text from wrapping */
        background: linear-gradient(90deg, rgba(253, 147, 65, 1) 0%, rgba(255, 193, 143, 1) 100%);
}

.cookie-consent-button:hover {
    background-color: #ffda47;
}

/* For responsiveness on smaller screens */
@media (max-width: 768px) {
    .cookie-consent-banner {
        flex-direction: column;
    }

    .cookie-consent-text {
        padding: 0 0 15px 0;
    }
}

/* Shooping Il Script */


.top-strip-il {
  width: 100%;
  height: 100px; /* example */
  overflow: hidden;
  position: relative;
  background: transparent; /* or whatever color */
  z-index: 9999;
}

.top-strip-inner-il {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  animation: moveStrip 20s linear infinite;
}

.top-strip-inner-il img {
  height: 100%; /* keep strip sized */
}

@keyframes moveStrip {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-30%);
  }
}


.nl-popup-overlay {
    display: none;  /* ADD THIS */
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity .25s ease;
}

.nl-popup-overlay.is-open {
    display: flex;
    opacity: 1;
}

.nl-popup {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 820px;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: row-reverse; /* image on left, content on right (RTL) */
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    direction: rtl;
    animation: nlPopupIn .3s ease;
}

@keyframes nlPopupIn {
    from { transform: translateY(20px) scale(.97); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}

.nl-popup-close {
    position: absolute;
    top: 10px;
    left: 14px;
    background: transparent;
    border: none;
    font-size: 30px;
    line-height: 1;
    color: #333;
    cursor: pointer;
    padding: 4px 8px;
    z-index: 2;
}
.nl-popup-close:hover { color: #000; }

/* ============================================
   Image side
   ============================================ */
.nl-popup-image {
    flex: 0 0 45%;
    background: #4a90d9;
    overflow: hidden;
}
.nl-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   Content side
   ============================================ */
.nl-popup-content {
    flex: 1;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nl-popup-inner {
    width: 100%;
    border: 1px dashed #f08a24;
    border-radius: 4px;
    padding: 28px 22px;
    text-align: right;
}

.nl-popup-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px 0;
    line-height: 1.2;
}

.nl-popup-subtitle {
    font-size: 24px;
    color: #333;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.nl-popup-note {
    font-size: 12px;
    color: black;
    margin-bottom: 18px;
}
.newsletter-popup-form br {
    display: none;
}

/* ============================================
   Form (same as CF7 styles)
   ============================================ */
.newsletter-popup-form {
    direction: rtl;
    text-align: right;
}

.newsletter-popup-form .nl-field { margin: 0 0 12px 0; }

.newsletter-popup-form .nl-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    background: #fff;
    color: #222;
    direction: rtl;
    text-align: right;
    transition: border-color .15s ease, box-shadow .15s ease;
    font-family: inherit;
}
.newsletter-popup-form .nl-input:focus {
    outline: none;
    border-color: #f08a24;
    box-shadow: 0 0 0 3px rgba(240,138,36,.15);
}

.newsletter-popup-form .nl-consent {
    font-size: 12px;
    color: #555;
    margin: 4px 0 14px 0;
    line-height: 1.4;
}
.newsletter-popup-form .nl-consent label {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    cursor: pointer;
}
.newsletter-popup-form .nl-consent input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.newsletter-popup-form .nl-submit-wrap { margin: 0; }

.newsletter-popup-form .nl-submit {
    width: 100%;
    background: #f08a24;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 13px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease, transform .05s ease;
    font-family: inherit;
}
.newsletter-popup-form .nl-submit:hover { background: #d97612; }
.newsletter-popup-form .nl-submit:active { transform: translateY(1px); }

.wpcf7-response-output {
    display: none !important;
}

/* Newsletter form - validation error message */
.newsletter-popup-form .wpcf7-form-control-wrap {
    position: static !important;
    display: block;
}

.newsletter-popup-form .wpcf7-not-valid-tip {
    position: static !important;
    display: block;
    color: #d32f2f;
    background: #fff5f5;
    border: 1px solid #f5c2c2;
    border-radius: 4px;
    padding: 8px 12px;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 500;
    text-align: right;
    direction: rtl;
    line-height: 1.4;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
}

/* Invalid input field styling */
.newsletter-popup-form .wpcf7-not-valid {
    border-color: #d32f2f !important;
    background: #fff5f5;
}

.newsletter-popup-form .wpcf7-not-valid:focus {
    border-color: #d32f2f !important;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15) !important;
}

/* Hide the default CF7 response output at bottom */
.newsletter-popup-form ~ .wpcf7-response-output,
.wpcf7-response-output {
    display: none !important;
}

.wpcf7-spinner {
    display: none !important;
}

/* ============================================
   Mobile
   ============================================ */
@media (max-width: 640px) {
    .nl-popup { flex-direction: column; max-width: 420px; }
    .nl-popup-image { flex: 0 0 160px; }
    .nl-popup-content { padding: 24px 18px; }
    .nl-popup-inner { padding: 22px 16px; }
    .nl-popup-title { font-size: 22px; }
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .newsletter-popup-form .wpcf7-not-valid-tip {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* ActiveTrail consent checkbox — styled */
#activetrail_consent_field .woocommerce-input-wrapper label.checkbox {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  padding: 12px 16px;
  border: 1.5px solid #d0d0d0;
  border-radius: 8px;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  user-select: none;
}

#activetrail_consent_field .woocommerce-input-wrapper label.checkbox:hover {
  border-color: #f47c00;
  background: #fff7ef;
  box-shadow: 0 0 0 3px rgba(244, 124, 0, 0.12);
}

#activetrail_consent_field .woocommerce-input-wrapper label.checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid #d0d0d0;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
margin-inline-end: 5px !important;
margin-inline-start: 5px !important;
}

#activetrail_consent_field .woocommerce-input-wrapper label.checkbox:hover input[type="checkbox"] {
  border-color: #f47c00;
}

#activetrail_consent_field .woocommerce-input-wrapper label.checkbox input[type="checkbox"]:checked {
  background: #f47c00;
  border-color: #f47c00;
}

#activetrail_consent_field .woocommerce-input-wrapper label.checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* === Contact Section === */
.contact {
  padding: 50px 20px;
}

.contact h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1a3a52;
  margin-bottom: 35px;
}

/* === 2-column grid layout === */
.contact-form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form-row .col-lg-6 {
  width: 100%;
  max-width: 100%;
  flex: unset;
  padding: 0;
  min-width: 0; /* prevents grid blowout */
}

.contact-form-row .flex-warp-cf7,
.contact-form-row .map-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Remove default CF7 paragraph margins & line breaks */
.contact .wpcf7-form p {
  margin: 0;
}

.contact .wpcf7-form br {
  display: none;
}

.contact .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* === Input Fields === */
.contact .wpcf7-form-control.wpcf7-text,
.contact .wpcf7-form-control.wpcf7-email {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 12px;
  border: none;
  border-radius: 10px;
  background: #ffffff;
  font-size: 15px;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s, transform 0.15s;
  box-sizing: border-box;
  display: block;
}

.contact .wpcf7-form-control.wpcf7-text:focus,
.contact .wpcf7-form-control.wpcf7-email:focus {
  outline: none;
  box-shadow: 0 4px 14px rgba(245, 169, 78, 0.35);
  transform: translateY(-1px);
}

.contact .wpcf7-form-control::placeholder {
  color: #8a9aa8;
}


.contact .check-box p {
  margin: 0;
}

.contact .check-box .wpcf7-list-item {
  margin: 0;
}

.contact .check-box label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #1a3a52;
  cursor: pointer;
  user-select: none;
}

.contact .check-box input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #f5a94e;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}

/* === Submit Button === */
.contact .wpcf7-submit {
  width: 100%;
  padding: 15px 0;
  background: linear-gradient(135deg, #f5a94e 0%, #e8962f 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(245, 169, 78, 0.35);
  transition: transform 0.15s, box-shadow 0.25s;
}

.contact .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 169, 78, 0.5);
}

.contact .wpcf7-submit:active {
  transform: translateY(0);
}

/* === Map === */
.contact .map-wrapper {
  width: 100%;
}

.contact .map-wrapper p {
  margin: 0;
  width: 100%;
}

.contact .map-wrapper iframe {
  width: 100% !important;
  height: 320px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: block;
}

.contact .map-address {
  text-align: center;
  margin: 12px 0 0 !important;
  font-size: 15px;
  font-weight: 500;
  color: #1a3a52;
}

.contact-form-row input[type="submit"] {
    margin-right: 0;
}

/* === Mobile === */
@media (max-width: 991px) {
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 500px;
  }
  
  .contact h3 {
    font-size: 22px;
    margin-bottom: 25px;
  }
  
  .contact .map-wrapper iframe {
    height: 220px;
  }
}