body {
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    font-family: 'Open Sans', sans-serif;
    color: #000;
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    --main-color: #D91E25;
    --second-color: #2EA3F2;
    padding-top: 100px;
}
* {
    outline: none;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}
.marg-top {
    margin-top: 60px;
}
.marg-top-big {
    margin-top: 100px;
}
.marg-bottom {
    margin-bottom: 60px;
}
.error-wrapper h1 {
    margin-bottom: 20px;
    font-size: 3.5rem;
}
.error-wrapper h1 span {
    font-size: 1.2rem;
    display: block;
    line-height: 140%;
}
.absolute-link {
    position: relative;
}
.absolute-link .absolute-link__item {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9;
}
.position-relative {
    position: relative;
}
.section-color {
    padding-right: 120px;
}
.section-heading {
    font-size: 34px;
    line-height: 43px;
    font-weight: 600;
    font-family: 'Roboto', serif;
    color: #000;
}
.section-heading--color {
    border-bottom: 3px solid #000;
    color: #000;
    display: inline-block;
    padding: 0 40px 3px 0;
    position: relative;
    letter-spacing: 1px;
}
.page-heading {
    font-size: 42px;
    line-height: 62px;
    font-family: 'Roboto', serif;
    font-weight:500;
    color: #000;
    margin-bottom: 60px;
}
.text-center {
    text-align: center;
}
.hero {
    display: flex;
    align-items: flex-start;
}
.hero h1 {
    margin: 0;
}
.hero__content {
    margin: 0 0 20px 40px;
}
.pbtn {
    border-radius: 3px;
    padding: 8px 35px;
    font-size: 16px;
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    font-weight: 300;
}
.pbtn:hover {
    background-color: var(--second-color);
}
.pbtn--second {
    background-color: var(--second-color);
}
.pbtn--second:hover {
    background-color: var(--main-color);
}

/* @ @ HEADER @ @ */
.slick-lightbox .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    font-size: 0;
    color: transparent;
    border: none;
    width: 36px;
    height: 36px;
    background-size: 31px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    background-color: var(--main-color);
}
.slick-lightbox .slick-next {
    right: 25px;
    background-image: url(../images/arrow-right.svg);
}
.slick-lightbox .slick-prev {
    right: 75px;
    background-image: url(../images/arrow-left.svg);
}
/* menu button start */
.nav-icon {
    width: 33px;
    height: 23px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 999999;
    position: relative;
    display: none;
    margin-left: 10px;
}
.nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.nav-icon span:nth-child(1) {
    top: 0px;
}
.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
    top: 10px;
}
.nav-icon span:nth-child(4) {
    top: 20px;
}
.nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
.nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}
/* menu button end */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #fff;
    transition: .3s;
    z-index: 99;
    box-shadow: 0px 0px 6px rgba(200,200,200, .2);
}
.scrolled .header {
    padding-top: 10px;
    padding-bottom: 10px;
}
.header__logo img {
    width: 240px;
}

.header__items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
/* menu start */
.header__menu {
    z-index: 999;
}
.header__menu ul {
    list-style: none;
    padding: 0;
    margin: 0%;
}
.header__menu>div>ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header__menu ul ul {
    display: none;
}
.header__menu>div>ul>li {
    margin-left: 30px;
    text-align: center;
}
.header__menu>div>ul>li.current-menu-item,
.header__menu>div>ul>li.current_page_item {
    color: var(--main-color);
}
.header__menu a {
    text-transform: uppercase;
    font-weight:600;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    letter-spacing: 1.4px;
    font-size: 14px;
    line-height: 18px;
}
.header__menu a:hover {
    color: var(--main-color);
}
.header__icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: 10px;
}
.header__icons span,
.header__icons a {
    display: flex;
    align-items: center;
    margin-left: 15px;
    cursor: pointer;
}
.header__icons svg {
    width: 20px;
    height: 20px;
}
/* menu end */
/* @ @ HEADER END @ @ */

/* @ @ BANER START @ @ */
.baner {
    position: relative;
}
.scrolldown {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    cursor: pointer;
    z-index: 9;
    animation: jumpInfinite 1.5s infinite;
}
.scrolldown svg {
    height: auto;
    width: 100%;
}
@keyframes jumpInfinite {
    0% {
      bottom: 60px;
    }
    50% {
      bottom: 75px;
    }
    100% {
      bottom: 60px;
    }
}
.baner__slick {
    max-width: 100%;
    padding-bottom: 40px;
}
.baner .baner__item {
    display: flex !important;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    height: 40vw !important;
    min-height: 500px !important;
    max-height: 700px !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.baner__content {
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}
.baner__title {
    color: #fff;
    font-size: 26px;
    line-height: 62px;
    margin-bottom: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, .4);
    font-weight: 400;
    letter-spacing: 1px;
}
.baner__title strong {
    color: var(--main-color);
    font-weight: 900;
    font-size: 62px;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, .3);
}
.baner__txt {
    font-size: 22px;
    line-height: 32px;
    color:#fff;
    text-align: center;
    max-width: 100%;
    width: 700px;
    margin-left: auto;
    letter-spacing: 1px;
    margin-right: auto;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, .4);
}
.baner__txt p {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.baner__txt p img {
    margin: auto;
    margin-top: 40px;
}
.baner__btn {
    margin-top: 30px;
}
.baner .slick-dots {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    padding: 0;
    margin: 0;
}
.baner .slick-dots li {
    border-radius: 50%;
    background-color: #000;
    margin: 5px;
    width: 14px;
    height: 14px;
    cursor: pointer;
}
.baner .slick-dots li.slick-active {
    background-color: var(--main-color);
}
.baner .slick-dots li button {
    font-size: 0;
    color: transparent;
    background-color: transparent;
    border: none;
}
/* @ @ BANER END @ @ */
/* @ @ CATS LIST START @ @ */
.boxes .row {
    justify-content: center;
}
.boxes__slick {
    max-width: 100%;
    padding: 0 0 50px 0;
}
.boxes .slick-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.boxes .slick-dots li {
    background-color: #000;
    border-radius: 50%;
    margin: 4px 3px;
    transition: .3s;
    width: 10px;
    height: 10px;
    cursor: pointer;
}
.boxes .slick-dots li.slick-active {
    background-color: var(--main-color);
}
.boxes .slick-dots li button {
    font-size: 0;
    color: transparent;
    background-color: transparent;
    border: none;
}
.boxes .slick-arrow {
    position: absolute;
    top: -70px;
    background-color: transparent;
    font-size: 0;
    color: transparent;
    border: none;
    width: 36px;
    height: 36px;
    background-size: 31px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    background-color: var(--second-color);
}
.boxes .slick-next {
    right: 25px;
    background-image: url(../images/arrow-right.svg);
}
.boxes .slick-prev {
    right: 75px;
    background-image: url(../images/arrow-left.svg);
}
.boxes__item {
    margin-top: 30px;
    padding: 5px;
}
.boxes__item-wrapper {
    position: relative;
}
.boxes__link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
}
.boxes__img {
    height: 200px;
    text-align: center;
    transition: .3s;
    display: flex;
    justify-content: center;
    width: 100%;
}
.boxes__item img {
    object-fit: contain;
    height: 100%;
    mix-blend-mode: multiply;
}
.boxes__item:hover .boxes__img {
    filter: brightness(85%);
}
.boxes__item h3 {
    margin: 20px 0;
    color: var(--main-color);
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    transition: .3s;
    text-align: center;
}
.boxes__item:hover h3 {
    color: var(--second-color);
}

/* @ @ CATS LIST END @ @ */
/* @ @ PRODS START @ @ */
.prods__slick {
    max-width: 100%;
    padding: 0 0 50px 0;
}
.prods .slick-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.prods .slick-dots li {
    background-color: #000;
    border-radius: 50%;
    margin: 4px 3px;
    transition: .3s;
    width: 10px;
    height: 10px;
    cursor: pointer;
}
.prods .slick-dots li.slick-active {
    background-color: var(--main-color);
}
.prods .slick-dots li button {
    font-size: 0;
    color: transparent;
    background-color: transparent;
    border: none;
}
.prods .slick-arrow {
    position: absolute;
    top: -70px;
    background-color: transparent;
    font-size: 0;
    color: transparent;
    border: none;
    width: 36px;
    height: 36px;
    background-size: 31px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    background-color: var(--second-color);
}
.prods .slick-next {
    right: 25px;
    background-image: url(../images/arrow-right.svg);
}
.prods .slick-prev {
    right: 75px;
    background-image: url(../images/arrow-left.svg);
}
.prods__item {
    display: flex !important;
    padding: 0 15px;
    flex-direction: column;
}
.prods__item img {
    width: 100%;
    object-fit: cover;
    height: 220px;
}
.prods__price {
    display: flex;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    color: var(--second-color);
}
.prods__price del {
    color: #555555;
}
.prods__price ins {
    margin-left: 10px;
    text-decoration: none;
}
.prods__item h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}
.prods__more {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: auto;
}
.prods .slick-track,
.boxes .slick-track {
    display: flex !important;
  }
.boxes .slick-slide, 
.prods .slick-slide {
    height: auto !important;
}
/* @ @ PRODS END @ @ */
/* @ @ CTA START @ @ */
.cta {
    padding: 40px 0 80px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.cta p {
    font-size: 24px;
    margin-bottom: 10px;
}
.cta__item {
    color: #fff;
    margin-bottom: 60px;
}
.cta__item h2 {
    font-size: 34px;
}
/* @ @ CTA END @ @ */
/* @ @ SEARCH START @ @ */
#searchform {
    position: absolute;
    right: 60px;
    top: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #eaeaea;
    border-radius: 3px;
    display: none;
}
#searchform input[type='text'] {
    padding: 6px;
    width: 200px;
    border: none;
    border-right: 1px solid #eaeaea;
}
#searchform button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    background-color: #fff;
}
#searchform button svg {
    width: 22px;
    height: 22px;
}
/* @ @ SEARCH END @ @ */
/* @ @ CHESS START @ @ */
.chess {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}
.chess:nth-child(odd) {
    flex-direction: row-reverse;
}
.chess__img {
    max-width: 50%;
    flex: 0 0 50%;
}
.chess__img img {
    object-fit: cover;
    width: 100%;
}
.chess__txt {
    max-width: 50%;
    flex: 0 0 50%;
    padding: 40px;
    display: flex;
    align-items: center;
}
/* @ @ CHESS END @ @ */
/* @ @ CF START @ @ */
.cf {
    padding: 40px;
    background-color: var(--main-color);
}
.cf form {
    width: 100%;
    position: relative;
}
.cf__title {
    font-size: 42px;
    text-align: center;
    line-height: 34px;
    color: #fff;
}
.cf__title span {
    font-size: 24px;
    display: block;
    margin-top: 10px;
    font-weight: 400;
}
.cf .wpcf7-not-valid-tip {
    color: yellow;
}
.cf textarea,
.cf input:not([type='submit']):not([type='checkbox']) {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #000;
    border: 1px solid #ffff;
    background-color: #fff;
    margin:10px 0;
    padding: 10px;
    resize: none;
    outline: none;
    width: 100%;
}
.cf textarea::placeholder,
.cf input:not([type='submit']):not([type='checkbox'])::placeholder {
    color: #555555;
}
.cf input[type="submit"] {
    border: 1px solid var(--second-color);
    font-size: 16px;
    background-color: var(--second-color);
    color: #fff;
    padding: 10px 30px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    margin: 20px 0 0 0;
    letter-spacing: 1px;
    transition: .3s;
}
.cf input[type="submit"]:hover {
    color: #000;
    background-color: #fff;
    border-color: #fff;
}
.cf .wpcf7 form .wpcf7-response-output {
    color: #fff;
}
.cf .wpcf7-acceptance .wpcf7-list-item {
    margin-left: 0;
    font-size: 12px;
    color: #fff;
    line-height: 18px;
}
.cf .wpcf7-acceptance .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
}
.cf .wpcf7-acceptance .wpcf7-list-item input {
    min-width: 20px;
    min-height: 20px;
    margin-right: 15px;
}
/* @ @ CF END @ @ */
/* @ @ DESC START @ @ */
.desc {
    position: relative;
}
.desc__img img {
    width: 100%;
    object-fit: cover;
}
.desc__txt {
    padding: 60px 15px 60px 60px;
    font-size: 20px;
    line-height: 32px;
    text-align: justify;
}
.desc__txt .pbtn {
    margin-top: 10px;
}
/* @ @ DESC END @ @ */
/* @ @ DOWNLOADS START @ @ */
.pob {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.pob__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}
.pob__title {
    font-size: 28px;
    text-align: center;
}
.pob__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.pob__btn a {
    margin: 5px;
    background-color: var(--main-color);
    padding: 10px 25px;
    color: #fff;
    font-weight: 500;
    text-align: center;
    display: inline-block;
}
.pob__btn a:hover {
    background-color: var(--second-color);
}
.pob__item p {
    margin: 0;
}
/* @ @ DOWNLOADS END @ @ */
/* @ @ ICONS START @ @ */
.icons {
    display: flex;
    flex-wrap: wrap;
}
.icons__item {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.icons__item figure {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.icons__item img {
    width: auto;
    max-height: 100%;
}
.icons__title {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    color: var(--main-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.icons__txt {
    font-size: .9rem;
    line-height: 140%;
    display: block;
    text-align: center;
}
/* @ @ ICONS END @ @ */
/* @ @ TABS START @ @ */
.tabs__nav {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0 15px;
}
.tabs__nav li {
    margin-right: 20px;
}
.tabs__btn {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 110%;
    border: none;
    border-bottom: 1px solid #555555;
    padding: 10px 30px;
    color: #000;
    cursor: pointer;
    transition: .3s;
    font-weight: 600;
    background-color: transparent;
}
.tabs__btn.active {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}
.tabs__items {
    width: 100%;
}
.tabs__item {
    display: none;
}
.tabs__rows {
    width: 700px;
    max-width: 100%;
    margin-top: 30px;
}
.tabs__row {
    width: 100%;
    padding: 10px 5px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.tabs__row:nth-child(odd) {
    background-color: #ECECEC;
}
.tabs__row span {
    display: inline-block;
    max-width: 50%;
    flex: 0 0 50%;
    padding: 0 10px;
    font-weight: 600;
}
.tabs__row-left {
    text-align: left;
}
.tabs__row-right {
    text-align: right;
}
/* @ @ TABS END @ @ */
/* @ @ INFO START @ @ */
.info__item {
    border-top: 1px solid #DEDEDE;
    padding-top: 30px;
}
.info__title {
    font-size: clamp(20px, 2vw, 32px);
}
.info__item .pbtn {
    margin: 10px 10px 0 0;
    font-size: 1rem;
}

.links__box {
    padding: 15px;
}
.links__box-img img {
    width: 100%;
    aspect-ratio: 5/3;
    object-fit: cover;
}
/* @ @ INFO END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @ WOO START @ @ */
body .woocommerce-info,
body .woocommerce-message {
    border-top-color: var(--main-color);
}
.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--main-color)
}
.cart-collaterals {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}
.cart-collaterals .cart_totals {
    float: none !important;
}
.cart-collaterals .cart_totals h2 {
    text-align: center;
}
.cart_totals table td {
    text-align: right !important;
}
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button, body .woocommerce #respond input#submit, body .woocommerce a.button, body .woocommerce button.button, body .woocommerce input.button, body.woocommerce #respond input#submit, body.woocommerce a.button, body.woocommerce button.button, body.woocommerce input.button {
    border-radius: 3px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 35px !important;
    color: #fff !important;
    background-color: var(--main-color);
    border: none;
    transition: .3s;
    background: var(--main-color) !important;
}
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, body .woocommerce #respond input#submit:hover, body .woocommerce a.button:hover, body .woocommerce button.button:hover, body .woocommerce input.button:hover, body.woocommerce #respond input#submit:hover, body.woocommerce a.button:hover, body.woocommerce button.button:hover, body.woocommerce input.button:hover {
    background-color: var(--second-color) !important;
    color: #fff !important;
}
td.actions .coupon .input-text {
    height: 36px;
    min-width: 120px;
}
.woocommerce-checkout form input, .woocommerce-checkout form textarea {
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #eaeaea;
    font-size: 16px;
    padding: 8px 10px;
}

.filters {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--second-color);
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    display: none;
}

.onsale {
    background-color: var(--second-color) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 22px !important;
    padding: 10px 5px !important;
    min-height: initial !important;
}

.woocommerce .woocommerce-ordering select {
    padding: 10px 15px;
    border: 1px solid #eaeaea;
}
body .shoplist .products {
    margin-top: 100px;
}
body .related {
    clear: both;
    padding-top: 60px;
}
.woocommerce ul.products li.product a img {
    transition: .3s;
}
.woocommerce ul.products li.product a img:hover {
    filter: brightness(65%);
}
.woocommerce-loop-product__title {
    font-family: 'Roboto', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 10px 0 !important;
}

.woocommerce ul.products li.product .price {
    display: flex !important;
    justify-content: flex-start !important;
    font-weight: 500 !important;
    color: var(--second-color) !important;
    font-size: 17px !important;
    font-family: 'Roboto', sans-serif !important;
    margin-bottom: 15px;
}
.woocommerce ul.products li.product .price del {
    color: #555555;
}
.woocommerce ul.products li.product .price ins {
    margin-left: 10px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
}
.woocommerce div.product form.cart {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.woocommerce div.product .product_title {
    text-transform: uppercase;
    font-size: 24px;
    color: var(--main-color);
}
.woocommerce .quantity .qty {
    min-width: 60px;
    height: 40px;
}
.woocommerce div.product form.cart .button {
    background-color: var(--main-color) !important;
    color: #fff !important;
    padding: 12px 25px !important;
    border-radius: 3px !important;
}
.woocommerce div.product form.cart .button:hover {
    background-color: var(--second-color) !important;
}

.woocommerce div.product div.images .flex-control-thumbs {
    display: flex;
}
.woocommerce div.product div.images .flex-control-thumbs li:not(:last-child) {
    padding-right: 2px;
}
.woocommerce div.product div.images .flex-control-thumbs li:not(:first-child) {
    padding-left: 2px;
}

.woocommerce .star-rating span::before {
    color: var(--main-color);
}
body.woocommerce div.product p.price, body.woocommerce div.product span.price {
    font-size: 26px;
    color: var(--second-color);
    font-weight: 600;
}

.woocommerce-tabs.wc-tabs-wrapper {
    margin-top: 30px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding-left: 8px;
    border-bottom: none;
    padding-top: 30px;
    border-bottom-left-radius: 3px;
}
body.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border-radius: 0;
    border: 1px solid var(--main-color) !important; 
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: #fff !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #000 !important;
}
li#tab-title-additional_information {
    margin-left: 15px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:not(.active) {
    background-color: var(--main-color);
}
body.woocommerce .woocommerce-content div.product .woocommerce-tabs ul.tabs::before {
    border: none;
}
body.woocommerce div.product .woocommerce-tabs ul.tabs li::after, body.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
    display: none !important;
}

.woocommerce div.product form.cart .variations {
    text-align: left;
}
.woocommerce div.product form.cart .variations select {
    padding: 5px;
    border: 1px solid #eaeaea;
}

.woocommerce #review_form #respond textarea {
    padding: 10px;
    font-family: 'Lato', sans-serif;

}



.sidebar {
    border-right: 1px solid #eaeaea;
    padding: 30px 30px;
    font-size: 14px;
}
.sidebar .current-cat>a {
    font-weight: 600;
    color: #D91E25;
}
.sidebar .widget_product_categories {
    margin-top: 40px;
}
.sidebar .product-categories {
    list-style: none;
    padding-left: 0;
}
.sidebar .widget:not(:last-child) {
    margin-bottom: 20px;
}
.sidebar .widgettitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}
.sidebar__close {
    display: none;
}
.sidebar .woocommerce .woocommerce-widget-layered-nav-list li {
    line-height: 20px;
    display: flex;
    margin: 2px 0;
}
.sidebar .woocommerce .woocommerce-widget-layered-nav-list a {
    padding-left: 25px;
    position: relative;
    display: inline-block;
    line-height: 20px;
}
.sidebar .woocommerce .woocommerce-widget-layered-nav-list a::before {
    content: '';
    border: 1px solid #DEDEDE;
    width: 12px;
    height: 12px;
    display: inline-block;
    position: absolute;
    top: 3px;
    left: 0;
}
.sidebar .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before {
    content: '';
    background-color: var(--main-color);
    border-color: transparent;
}
.woocommerce .widget_price_filter .price_slider_amount {
    margin-top: 20px;
}
.sidebar .woocommerce .woocommerce-widget-layered-nav-list .count {
    display: none;
}
.woocommerce .sidebar .widget_price_filter .ui-slider-horizontal {
    height: 2px;
    background-color: #eaeaea;
}
.woocommerce .sidebar .widget_price_filter .ui-slider .ui-slider-handle {
    top: -5px;
    background-color: var(--second-color);
}
.woocommerce .sidebar .widget_price_filter .ui-slider .ui-slider-range {
    background-color: var(--second-color);
}

.shoplist li .button {
    width: 100%;
    text-align: center;
}
/* @ @ WOO END @ @ */
/* @ @ FOOTER START @ @ */
.footer {
    box-shadow: 0px 0px 6px rgba(200,200,200, .4);
    padding-top: 40px;
    margin-top: 80px;
}
body.home .footer {
    margin-top: 0;
}
.footer__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}
.footer__about {
    display: flex;
    flex-direction: column;
}
.footer__about p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #666;
    margin-top: 0;
    margin-bottom: 30px;
}
.footer__logo {
    margin: 0 0 30px 0;
    display: inline-block;
}
.footer__logo img {
    width: 300px;
}
.footer__posts {
    padding-left: 120px;
}
.footer__posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__posts ul li {
    border-bottom: 1px dotted #ECECEC;
    padding: 5px 0;
}
.footer__posts ul li a {
    font-weight: 500;
    font-size: 14px;
}
.footer__posts ul li span {
    font-weight: 300;
    display: inline-block;
    margin-right: 10px;
    font-size: 12px;
}

.footer__socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer__socials a {
    display: inline-block;
    margin: 2px 5px;
}
.footer__socials svg {
    width: 14px;
    height: 14px;
}

.footer__menu {
    margin-top: 10px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.footer__menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-end;
}
.footer__menu ul li {
    margin: 0 15px 15px 15px;
}
.footer__menu ul li a {
    font-size: 16px;
    font-weight: 500;
}
.footer__menu ul li a:hover {
    color: var(--main-color);
}
.copyright {
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 20px;
    margin-top: 20px;
}
.copyright p,
.copyright a {
    display: inline-block;
    margin: 5px 0;
    font-size: 12px;
    line-height: 18px;
    color: #666;
}
/* @ @ FOOTER END @ @ */

/* @ @ MEDIA START @ @  */
@media(min-width: 2100px) {
   
}
@media(max-width: 1500px) {
    .baner__content {
        padding: 60px;
    }
    .baner__img img {
        height: 600px;
    }
}
@media(max-width: 1380px) {
  
}
@media(max-width: 1280px) {
    .nav-icon {
        display: block;
        margin-left: 20px;
    }
    .header__menu {
        position: fixed;
        top: 0;
        left: -150vw;
        width: 35%;
        overflow: auto;
        background-color: #fff;
        box-shadow: 0px 0px 6px rgba(144,144,144, .2);
        height: 100%;
        transition: .5s;
    }
    .menuopened .header__menu{
        left: 0;
    }
    .header__menu>div>ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 30px 30px 50px;
    }
    .header__menu>div>ul>li {
        margin: 10px 0;
    }
    .header__menu>div>ul>li>a {
        font-size: 18px;
    }

    .baner__title {
        line-height: 52px;
    }
    .baner__title strong {
        font-size: 52px;
    }
}
@media(max-width: 1200px) {
  
}
@media(max-width: 1070px) {
    
}
@media(min-width: 993px) {
    .desc__img img {
        position: absolute;
        left: 0;
        top: 0;
        width: 50%;
        height: 100%;
    }
    
    .chess__img {
        display: flex;
        align-items: stretch;
    }
    .chess__img img {
        height: 100%;
    }
}
@media(max-width: 992px) {
    .baner-small {
        margin-bottom: 20px;
    }

    .baner__content {
        padding: 40px;
    }
    .baner__title {
        font-size: 32px;
        line-height: 44px;
    }
    .baner__txt p,
    .baner__txt {
        font-size: 16px;
    }

    .boxes__slick {
        max-width: 100%;
        padding: 0 0 40px 0;
    }

    .blog-list__photo img {
        height: initial;
    }


    .chess {
        margin-top: 0;
    }
    .chess__img,
    .chess__txt {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .desc__txt {
        padding: 20px 15px;
        font-size: 16px;
        line-height: 24px;
    }

    .footer__posts {
        padding-left: 15px;
        margin-top: 30px;
    }
    .footer__socials {
        align-items: flex-start;
        margin-top: 0;
    }
    .footer__box {
        margin-top: 40px;
        text-align: center;
    }
    .footer__menu {
        text-align: center;
        justify-content: center;
    }
    .footer__menu ul {
        justify-content: center;
    }
    .copyright {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }


    .filters {
        display: inline-block;
        z-index: 99;
    }
    .sidebar {
        border-right: none;
        position: fixed;
        background: #fff;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        padding: 30px;
        z-index: 9999;
        transition: .5s;
        top: -120%;
    }
    .sidebaropened .sidebar {
        top: 0;
    }
    .sidebar__close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 26px;
        font-weight: 600;
    }
}
@media(max-width: 767px) {
    body,html {
        font-size: 14px;
        line-height: 150%;
    }
    body {
        padding-top: 60px;
    }
    .marg-top-big {
        margin-top: 60px;
    }
    .section-color {
        margin-bottom: 40px;
        padding-right: 15px;
    }
    .prods .slick-arrow {
        top: -60px;
    }
    .section-heading--color {
        font-size: 22px;
        line-height: 32px;
    }
    .page-heading {
        font-size: 28px;
        line-height: 140%;
    }
    .hero {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 30px;
    }
    .hero__content {
        margin: 20px 0 0 0;
    }

    .header {
        padding: 10px 0;
    }
    .scrolled .header {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .header__menu {
        width: 60%;
    }

    .baner__item {
        flex-direction: column-reverse !important;
    }
    .baner__content {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .baner__title {
        font-size: 20px;
        line-height: 42px;
    }
    .baner__title strong {
        font-size: 42px;
    }
    .baner__txt p {
        margin-top: 10px;
    }

    .boxes .slick-arrow {
        top: -60px;
    }
    .boxes .slick-next {
        right: 25px;
    }
    .boxes .slick-prev {
        right: 75px;
    }

    .tabs__nav li {
        margin: 0;
    }
    .tabs__btn {
        padding: 8px 12px;
        font-size: 12px;
    }


    .footer {
        margin-top: 40px;
    }

    .coupon input#coupon_code {
        width: 100%;
        margin-bottom: 8px;
    }
    .coupon button.button.wp-element-button {
        width: 100% !important;
    }

    .pob__item {
        padding: 0;
        margin-bottom: 40px;
    }
    .pob__btn a {
        font-size: 12px;
        padding: 6px 10px;
    }

    .icons__item {
        margin-top: 40px;
    }
}
@media(max-width: 501px) {
    .header__menu {
        width: 100%;
    }

    .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
        width: 100% !important;
        margin: 0 0 30px 0 !important;
    }
}
@media(max-width: 480px) {
    .prods__item img {
        height: initial;
    }
    .prods__more {
        margin-top: 10px;
    }
}
/* @ @ MEDIA END @ @  */