:root {
    --white: #fff;
    --blue: #00007B;
    --dark-blue: #092391;
    --red: #C40000;
    --gold: #FFAE68;
    --brown: #715D4F;
    --khaki: #836A41;
    --sand: #846D43;
    --yellow: #DABD43;
    --gray: #747474;
    --orange: #F59322;
    --pink: #FF95B9;
    --green: #33a952;

    --star-gray: #DEDEDE;
    --star-gold: #F4CC25;

    --star-active: #f4cc25;
    --star-inactive: #dcdcdc;
}

.w-col {
    display: flex;
    flex-direction: column;
}
.w-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.align-center {
    align-items: center;
}
.hide {
    display: none;
}

.text_color_blue {
    color: var(--blue);
}
.text_color_darkblue {
    color: var(--dark-blue);
}
.text_color_yellow {
    color: var(--yellow);
}
.text_color_red {
    color: var(--red);
}
.text_color_brown {
    color: var(--brown);
}
.text_color_orange {
    color: var(--orange);
}

.w-btn.left-icon i:before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: url(../svg/left-tri.svg) top center no-repeat;
}

/*
 * HEADER
 */

.w-cart.dropdown_height .w-cart-quantity {
    left: 19px;
    bottom: 30px;
    min-width: 16px;
    height: 16px;
    font-size: 13px;
    line-height: 16px;
    transition: all 500ms;
}
.sticky .w-cart.dropdown_height .w-cart-quantity {
    bottom: 20px;
}

.custom-cart .fa-shopping-cart:before {
    content: "";
    position: absolute;
    top: 34%;
    left: 25%;
    width: 26px;
    height: 29px;
    background: url(../svg/head-cart.svg) top center / cover no-repeat;
    transition: all 500ms;
}
.sticky .custom-cart .fa-shopping-cart:before {
    top: 29%;
}

.l-header input[name="s"] {
    border-radius: 26px;
}

.l-header {
    border-bottom: 3px solid white;
}

/*
 * FOOTER
 */

.vc_column_container.logo {
    justify-content: center;
}

footer .wpcf7-form-control-wrap {
    margin-top: 0;
}
.footer-form {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}
.footer-form > span {
    min-width: calc(100% - 136px);
}
.footer-form input {
    height: 50px;
    width: 136px;
}
.footer-form input[type=submit] {
    background: #3B3B3B;
    border-style: none;
}
.footer-form input:not([type=submit]) {
    border: 1px solid #707070;
    max-width: 312px;
}
.footer-form .wpcf7-spinner {
    display: none !important;
}
footer input:not([type=submit]):focus {
    box-shadow: none;
}

footer .w-menu li {
    margin-bottom: 0;
}
footer .w-menu li a {
    font-size: 14px;
    line-height: 24px;
    color: #D2D3D4 !important;
}
footer a:hover {
    color: var(--orange) !important;
}

footer .widget_nav_menu li {
    margin-bottom: 0;
}
footer .widget_nav_menu li a {
    font-size: 16px;
    line-height: 24px;
    color: #D2D3D4;
}

footer .w-tabs-section.active:not(.has_text_color)>.w-tabs-section-header {
    color: #D2D3D4;
}
footer .w-tabs.accordion>div>div>.w-tabs-section-content {
    padding-top: 0;
}

footer .w-tabs.accordion>div>div>.w-tabs-section-header {
    justify-content: space-between;
}

/*
 * HOMEPAGE
 */

.back-arrow {
    -webkit-clip-path: polygon(80% 0,100% 0,100% 100%,69% 100%,61% 67%);
    clip-path: polygon(80% 0,100% 0,100% 100%,69% 100%,61% 67%);
}

.product-card .woocommerce-product-attributes-item--attribute_pa_size > .w-post-elm-before, .product-card .woocommerce-product-attributes-item--attribute_pa_color > .w-post-elm-before {
    display: none !important;
}
.product-card .woocommerce-product-attributes-item--attribute_pa_size .woocommerce-product-attributes-item__value, .product-card .woocommerce-product-attributes-item--attribute_pa_color > *  {
    padding: 0 .3rem !important;
}
.product-card img {
    padding: 32px 7px;
}

.w-grid-item.product .woocommerce-product-attributes-item--attribute_pa_color {
    display:none !important
}

.w-grid-item.product .product_field.price {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    gap: 0.8rem;
    margin-top: auto !important;
}
.w-grid-item.product .product_field.price bdi .woocommerce-Price-currencySymbol {
    font-size: 18px;
}
.w-grid-item.product .product_field.price del bdi {
    color: #000000;
    font-size: 18px;
}
.w-grid-item.product .product_field.price del {
    order: 1;
    text-decoration: none;
    position: relative;
}
.w-grid-item.product .product_field.price del:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    background: #000;
    bottom: 38%;
    right: 0;
}

.color-attr {
    display: flex;
    gap: 9px;
    align-items: center;
    margin: 0 .5rem .5rem;
}
.color-attr li {
    list-style: none;
    margin: 0;
}
.color-attr li > span {
    display: block;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 1px solid #707070;
}
.color-gray span {
    background: var(--gray);
}
.color-sand span {
    background: var(--sand);
}
.color-brown span {
    background: var(--brown);
}
.color-blue span {
    background: var(--blue);
}
.color-orange span {
    background: var(--orange);
}
.color-white span {
    background: var(--white);
}
.color-navy-blue span {
    background: #31353a;
}
.color-green span {
    background: #6d835b;
}
.color-beige span {
    background: #d3bdab;
}
.color-black span {
    background: #111;
}

#contacts:before {
    content: '';
    position: absolute;
    top: -3.2vw;
    left: 0;
    right: 0;
    height: 10vw;
    background: url(../svg/row_top_divider.webp) top center/contain no-repeat;
    z-index: 1;
}
#contacts .l-section-img:before {
    content: '';
    position: absolute;
    top: -3.2vw;
    right: 5%;
    width: 10%;
    height: 21vw;
    background: url(../svg/row_effect.svg) top center/contain no-repeat;
    z-index: 1;
}

.contact-form .wpcf7-form-control-wrap {
    margin-top: 0;
}
.contact-form .wpcf7 input, .contact-form .wpcf7 textarea {
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    margin-top: 0 !important;
    margin-bottom: 16px;
    margin-left: 16px;
    font-size: 18px;
}
.contact-form .wpcf7 input:not([type="submit"]):focus {
    box-shadow: none;
    border: 1px solid var(--grey);
}
.contact-form .wpcf7 .w-row {
    gap: 11px;
}
.contact-form .wpcf7 .w-row .wpcf7-form-control-wrap:first-child {
}
.contact-form .w-row .field-remark {
    width: 100%;
}
.contact-form .cf7-btn-wrap {
    height: 100%;
}
.contact-form .wpcf7 input[type="submit"] {
    border-radius: 5px;
    font-size: 32px;
    background: var(--khaki);
    width: 100%;
    padding: 1rem 2rem;
    height: -webkit-fill-available;
}
.contact-form .wpcf7 .wpcf7-spinner {
    display: none !important;
}

/*
 * Shop
 */

.post_title.post_title-fix-h {
    min-height: 48px;
}

.woocommerce input:not([type=submit]):focus, .woocommerce select:focus {
    box-shadow: none;
}

.mod-woo-tree {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.mod-mega-menu .mod-title,
.woocommerce .w-filter-item-title {
    font-size: 28px;
    font-weight: 700;
}
.mod-woo-tree .mod-woo {
    margin: 0;
    list-style: none;
}
.mod-woo-tree .mod-mega-menu, .mod-woo-tree .mod-woo .mod-woo__item {
    margin-bottom: 1rem;
    font-size: 24px;
}
.mod-woo-tree .mod-woo .mod-woo__link.active .mod-woo__name {
    color: var(--color-header-middle-text-hover);
    border-bottom: 1px solid var(--color-header-middle-text-hover);
}

.mod-color-block.mod-woo {
    display: flex;
    gap: 12px;
}
.mod-color-block.mod-woo li span {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #707070;
}

/*
 * Products
 */

.woocommerce .g-breadcrumbs li:last-child {
    color: var(--orange) !important;
}

.single-product.woocommerce div.product .images {
    width: 60%;
}
.single-product.woocommerce div.product .summary {
    width: calc(40% - 67px);
}
.single-product.woocommerce .l-section#shop {
    max-width: 1360px;
}
.single-product.woocommerce .l-main.product {
    /*background: #F5F5F5;*/
}
.single-product.woocommerce .woocommerce-product-gallery .flex-viewport {
    min-height: 705px;
    height: auto !important;
    background: #fff;
}
.single-product.woocommerce .woocommerce-product-gallery__image {
    height: 586px;
    /*width: auto !important;*/
    margin-top: 60px; 
    margin-bottom: 50px;
    margin-right: 20px !important;
    display: flex !important;
    align-items: center;
}
.single-product.woocommerce .woocommerce-product-gallery__image img {
    width: 627px;
    height: auto;
    /*aspect-ratio: 1 / 1;*/
}
.single-product.woocommerce .woocommerce-product-gallery ol>li {
    margin: 0 0 22px 22px;
    background: #fff;
}
.single-product.woocommerce .woocommerce-product-gallery ol>li img {
    padding: 10px;
}

.single-product.woocommerce .l-section.for_shop .onsale {
    right: 7.6rem;
}

.single-product.woocommerce div.product .product_title {
    font-size: 37px;
    font-weight: 700;
}

.product__rating {
    padding-bottom: 1rem;
    direction: rtl;
}
.product__rating .c-icon {
    fill: var(--star-gray);
    margin: 0 2px;
}
.product__rating .c-icon.active {
    fill: var(--star-gold);
}

.single-product.woocommerce .price {
    color: #000000 !important;
    display: flex;
    align-items: flex-end;
    gap: 1.0rem;
    margin-bottom: 1rem;
}
.single-product.woocommerce .price ins, .single-product.woocommerce .price .amount {
    color: #000000;
    font-size: 46px;
    font-weight: bold;
    line-height: 58px;
    order: 1;
}
.single-product.woocommerce .w-grid-list .price ins, .single-product.woocommerce .w-grid-list .price .amount {
    font-size: inherit;
    line-height: inherit;
}
.single-product.woocommerce .price .amount .woocommerce-Price-currencySymbol {
    font-size: 20px;
}
.single-product.woocommerce .price del {
    position: relative;
    order: 2;
    text-decoration: none;
}
.single-product.woocommerce .price del .amount {
    font-size: 29px;
    line-height: 66px;
}
.single-product.woocommerce .price del:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    background: #707070;
    bottom: 50%;
    right: 0;
}

.single-product.woocommerce .variations_form .variations tr {
    border-top: 1px solid #707070;
}

.single-product.woocommerce .cart .quantity {
    display: none !important;
}

.single-product.woocommerce .cart .quantity+.button {
    vertical-align: middle;
    width: 100%;
}
.single-product.woocommerce .variations_form.cart, .single-product.woocommerce button[name="add-to-cart"] {
    max-width: 441px;
}

.product-custom-colors {
    max-width: 441px;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    padding: .5rem 0 1rem;
}
.product-custom-colors .color-attr {
    gap: 12px;
}
.product-custom-colors .color-attr li > span {
    width: 30px;
    height: 30px;
}

.single-product.woocommerce form > table.variations {
    margin-top: .5rem;
}
.single-product.woocommerce .cart .variations label {
    font-size: 21px;
    font-weight: 400;
}
.single-product.woocommerce .cart .variations select {
    width: 100%;
    background: #fff;
    border: 1px solid #CFCFCF;
}

.product__contact-wrap .w-btn-wrapper {
    width: 50%;
    margin-top: 0;
}


.woocommerce-cart .woocommerce .shop_table td:last-child, .woocommerce-checkout .woocommerce .shop_table td:last-child {
    text-align: right;
}
.woocommerce-billing-fields #billing_country_field {
    display:none
}


@media (max-width: 1480px) {

}

@media (min-width: 1380px) {
  .single-product.woocommerce .l-section#shop {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 1023px) {

}

@media (max-width: 767px) {

}

@media (max-width: 599px) {
  .l-subheader.at_middle {
    background: #fff !important;
    color: #000 !important;
  }
  .custom-cart .fa-shopping-cart:before {
    top: 26%;
  }
  .sticky .custom-cart .fa-shopping-cart:before {
    top: 20%;
  }
  .w-cart.dropdown_height .w-cart-quantity {
    left: 16px;
    bottom: 23px;
  }
  .sticky .w-cart.dropdown_height .w-cart-quantity {
    bottom: 12px;
  }

  .w-grid[class*="cols_"] .w-grid-item {
    padding: calc(var(--gap) / 2) !important;
  }

  .home__icons .vc_row.via_grid.cols_4 {
    grid-template-columns: repeat(2,1fr) !important;
  }

  .col-filter {
    position: absolute !important;
    left: 52%;
    right: 0
  }
  .col-filter form.w-filter.state_mobile {
    padding-top: .5rem! important;
    padding-bottom: .5rem! important;
    padding-right: 0.5rem;
  }
  .col-filter form.w-filter.state_mobile .w-filter-opener {
    color: #fff;
  }
  .col-filter form.w-filter.state_mobile .w-filter-opener:after {
    content: '';
    position: absolute;
    top: 1px;
    right: 0;
    height: 32px;
    width: 32px;
    background: url(../svg/filter.svg) top center/contain no-repeat;
    z-index: 1;
  }
  .w-post-elm.product_ordering {
    max-width: 50% !important;
  }

  .single-product.woocommerce .woocommerce-product-gallery {
    display: block;
  }
  .single-product.woocommerce .woocommerce-product-gallery .flex-viewport {
    min-height: 405px;
  }
  .single-product.woocommerce .woocommerce-product-gallery__image {
    height: auto;
    margin-right: 0 !important;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .single-product.woocommerce .woocommerce-product-gallery ol {
    display: flex;
    gap: 11px;
  }
  .single-product.woocommerce .woocommerce-product-gallery ol li {
    margin: 11px 0 0;
  }
}

@media (max-width: 499px) {
  .contact-form .wpcf7 .w-row {
    flex-direction: column;
    margin-bottom: 11px;
  }
  .contact-form .wpcf7 input, .contact-form .wpcf7 textarea {
    margin-bottom: 0;
  }
  .contact-form .wpcf7 input[type="submit"] {
    font-size: 28px;
    width: 100%;
    padding: .8rem 2rem;
    height: auto;
  }
}

@media (max-width: 419px) {

}
