/*!
Theme Name: anixshop
Theme URI: https://arnocode.com/
Author: Arnocode
Author URI: https://arnocode.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: anixshop
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

anixshop is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/


/* font
-------------------------------------------------------------- */
@font-face {
    font-family: "Montserrat";
    font-display: swap;
    src: url("fonts/Montserrat-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    font-display: swap;
    src: url("fonts/Montserrat-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    font-display: swap;
    src: url("fonts/Montserrat-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "GigaSans";
    font-display: swap;
    src: url("fonts/GigaSans-ExtraBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'tm-anix';
    src: url('fonts/tm-anix.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

.tm-anix {
    font-family: 'tm-anix' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tm-anix-icon-outofstock:before {
    content: "\e907";
}

.tm-anix-icon-instock:before {
    content: "\e908";
}

.tm-anix-icon-right-arrow:before {
    content: "\e909";
}

.tm-anix-icon-shopping-cart:before {
    content: "\e901";
}

.tm-anix-icon-heart:before {
    content: "\e900";
}

.tm-anix-icon-user:before {
    content: "\e902";
}

.tm-anix-icon-vk:before {
    content: "\e903";
}

.tm-anix-icon-youtube3:before {
    content: "\e904";
}

.tm-anix-icon-instagram2:before {
    content: "\e905";
}

.tm-anix-icon-facebook:before {
    content: "\e906";
}



/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
    background: #FEFEFE;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 480px) {
    html {
        line-height: 1.6;
    }
}


/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
html,
body {
    height: 100%;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
    background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
    font-weight: 700;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
    border-style: none;
}


/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
    display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
    display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
    display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
optgroup,
textarea {
    color: #58595a;
    font-family: -apple-system, "Segoe UI", "Helvetica Neue", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

p {
    margin-bottom: 25px;
}

p:last-child {
    margin-bottom: 0;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 0 25px;
    padding: 10px 25px;
    border-left: 3px solid #000;
    background: #eee;
}

address {
    margin: 0 0 25px;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", courier, monospace;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
    background: #fff;
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px solid #d3d3d3;
    margin-bottom: 25px;
}

ul,
ol {
    margin: 0 0 25px 3em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 25px;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 25px 25px;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

img {
    height: auto;
    max-width: 100%;
}

figure {
    margin: 1em 0;
}

table {
    margin: 0 0 25px;
    width: 100%;
}

/* Links
--------------------------------------------- */
:active,
:hover,
a:active,
a:hover {
    outline: 0;
}

a {
    color: #A179B7;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

a:hover,
a:focus,
a:active {
    color: #a11a28;
    text-decoration: none;
}

a,
a:visited {
    text-decoration: none;
}


/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/



/* Posts and pages
--------------------------------------------- */

.updated:not(.published) {
    display: none;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 25px 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 25px;
}

/* Comments
--------------------------------------------- */
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
    margin: 0 0 25px;
}

.widget select {
    max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
    display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
    margin-bottom: 25px;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
    margin-bottom: 25px;
    display: grid;
    grid-gap: 25px;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
    display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px solid #d3d3d3;
    margin: -1px auto;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
    outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

    /*rtl:ignore*/
    float: left;

    /*rtl:ignore*/
    margin-right: 25px;
    margin-bottom: 25px;
}

.alignright {

    /*rtl:ignore*/
    float: right;

    /*rtl:ignore*/
    margin-left: 25px;
    margin-bottom: 25px;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}


/* header
========================================================================== */
.tm-header__logo {
    z-index: 10;
    width: 110px;
    height: 70px;
    flex: 0 0 auto;
    overflow: hidden;
}

.tm-header__logo,
.tm-header__logo a {
    display: flex;
}

.tm-header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.tm-header {
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    position: absolute;
    padding: 15px 0;
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.12);
}

.tm-header_active {
    position: fixed;
    background: #fff;
    z-index: 1000;
    animation: slideDown 0.5s;
    top: 0 !important;
}


@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.tm-search-wrap-comp {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 480px;
    margin: 0 30px;
    position: relative;
    z-index: 20;
    height: 40px;
}

.tm-search-wrap-comp .dgwt-wcas-search-wrapp {
    max-width: inherit;
}

.tm-search-wrap-comp .aws-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    transition: width .25s ease;
    z-index: 21;
}

/* Раскрытие поиска влево при фокусе — форма парит абсолютом, контейнер не двигается */
.tm-search-wrap-comp:focus-within .aws-container {
    width: 820px;
    max-width: calc(100vw - 220px);
    z-index: 30;
}

/* AWS-поиск (advanced-woo-search) — овальная фиолетовая рамка, лупа справа без фона. */
.tm-search-wrap-comp .aws-container .aws-search-form {
    border: 2px solid #A179B7;
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
    height: 40px;
    padding-right: 14px;
    box-sizing: border-box;
}

.tm-search-wrap-comp .aws-container .aws-search-field {
    border: none;
    background: transparent;
    padding: 0 18px;
    height: 36px;
    font-size: 14px;
    color: #212121;
}

.tm-search-wrap-comp .aws-container .aws-search-field:focus {
    outline: none;
    box-shadow: none;
}

.tm-search-wrap-comp .aws-search-btn {
    background: transparent !important;
    border: none !important;
    padding: 0 6px !important;
    cursor: pointer;
    box-shadow: none !important;
}

.tm-search-wrap-comp .aws-search-btn_icon svg {
    width: 18px;
    height: 18px;
    fill: #A179B7;
}

.tm-search-wrap-comp .aws-search-btn:hover .aws-search-btn_icon svg {
    fill: #6e4d85;
}

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    background: #fff;
    border: 2px solid #E1E3E3;
    transition: all .3s ease-in-out;
}

.dgwt-wcas-open .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input,
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    border-radius: 4px;
}

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:hover {
    background: #eee;
}

.dgwt-wcas-suggestions-wrapp {
    box-shadow: 0 15px 20px rgba(0, 0, 0, .15);
}

.tm-search__icon {
    font-size: 26px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    position: relative;
    z-index: 10;
}

.tm-search__content {
    position: absolute;
    top: 101px;
    width: 100vw;
    left: calc(-50vw + 50%);
    background: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #D3D3D3;
}

.tm-search__content .widget {
    margin-bottom: 0;
}


.tm-search__content input {
    outline: none;
}



.tm-search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit svg {
    display: none;
}

.tm-header__login {
    font-size: 32px;
    position: relative;
    width: 24px;
}

.tm-header__login a {
    display: flex;
}

.tm-search__icon:hover,
.tm-header__login a:hover {
    opacity: .5;
}

.tm-search__icon,
.tm-header__login a {
    color: #212121;
}

.cc-compass {
    display: none;
}

.cc-compass.cc-compass-open {
    display: block;
}

.cc-window {
    transition: all .3s ease;
}

.tm-header-bar {
    position: relative;
    z-index: 1001;
}


.tm-header-cart {
    position: relative;
}

.tm-header-cart__icon {
    position: relative;
    display: inline-block;
    color: #212121;
    text-decoration: none;
    cursor: pointer;
}

.tm-header-cart__icon:hover {
    opacity: .5;
}

.tm-header-cart__icon::after {
    font-family: 'tm-anix';
    content: "\e901";
    font-size: 27px;
    display: inline-block;
}

.tm-header-cart__number {
    position: absolute;
    background: #A179B7;
    color: #fff;
    border-radius: 50%;
    right: -8px;
    bottom: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    box-sizing: border-box;
}

.tm-header-cart__dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 360px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    padding: 20px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.tm-header-cart.is-open .tm-header-cart__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tm-header-cart__dropdown::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 18px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, .04);
}

.tm-header-cart__dropdown .woocommerce-mini-cart {
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 360px;
    overflow-y: auto;
}

.tm-header-cart__dropdown .woocommerce-mini-cart-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #EEF1F1;
    list-style: none;
    position: relative;
}

.tm-header-cart__dropdown .woocommerce-mini-cart-item:last-child {
    border-bottom: none;
}

.tm-header-cart__dropdown .woocommerce-mini-cart-item:before {
    display: none;
}

.tm-header-cart__dropdown .tm-mini-cart__thumb {
    flex: 0 0 64px;
    display: block;
    line-height: 0;
}

.tm-header-cart__dropdown .tm-mini-cart__thumb img,
.woocommerce .tm-header-cart__dropdown ul.cart_list li .tm-mini-cart__thumb img {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    margin: 0;
}

.tm-header-cart__dropdown .tm-mini-cart__info {
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 24px;
}

.tm-header-cart__dropdown .tm-mini-cart__name {
    color: #212121;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.3;
    display: block;
}

.tm-header-cart__dropdown .tm-mini-cart__name:hover {
    color: #A179B7;
}

.tm-header-cart__dropdown .tm-mini-cart__qty-price {
    color: #676262;
    font-size: 13px;
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border: 1px solid #EEF1F1;
    border-radius: 999px;
}

.tm-header-cart__dropdown .woocommerce-mini-cart-item .remove,
.tm-header-cart__dropdown .woocommerce-mini-cart-item .remove_from_cart_button {
    position: absolute;
    top: 12px;
    right: 0;
    color: #676262;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-header-cart__dropdown .woocommerce-mini-cart-item .remove:hover {
    color: #A179B7;
}

.tm-header-cart__dropdown .woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
    padding-top: 12px;
    border-top: 1px solid #EEF1F1;
    font-weight: 500;
}

.tm-header-cart__dropdown .woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.tm-header-cart__dropdown .woocommerce-mini-cart__buttons .button {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 13px;
    text-decoration: none;
    display: block;
    border: 2px solid #2DD4BF;
    background: transparent;
    color: #2DD4BF;
    transition: background .15s ease, color .15s ease;
}

.tm-header-cart__dropdown .woocommerce-mini-cart__buttons .button:hover {
    background: rgba(45,212,191,.08);
}

.tm-header-cart__dropdown .woocommerce-mini-cart__buttons .button.checkout,
.tm-header-cart__dropdown .woocommerce-mini-cart__buttons .checkout {
    background: #2DD4BF;
    color: #fff;
}

.tm-header-cart__dropdown .woocommerce-mini-cart__buttons .button.checkout:hover,
.tm-header-cart__dropdown .woocommerce-mini-cart__buttons .checkout:hover {
    background: #14b8a6;
    color: #fff;
}

.tm-header-cart__dropdown .woocommerce-mini-cart__empty-message {
    margin: 0;
    text-align: center;
    color: #676262;
}

/* WPML language switcher — компактный dropdown с флагами */
.tm-lang .wpml-ls-legacy-dropdown {
    width: auto;
    background: transparent;
}

.tm-lang .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 6px 32px 6px 14px !important;
    border: 1px solid transparent;
    border-radius: 4px;
    background: #fff;
    color: #212121;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    position: relative !important;
    box-sizing: content-box !important;
    min-width: 56px !important;
    white-space: nowrap !important;
}

.tm-lang .wpml-ls-legacy-dropdown,
.tm-lang .wpml-ls-statics-shortcode_actions,
.tm-lang .wpml-ls-statics-shortcode_actions ul,
.tm-lang .wpml-ls-item.wpml-ls-current-language {
    width: max-content !important;
    max-width: none !important;
}

.tm-lang .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
    content: "" !important;
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    left: auto !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    border-left: 5px solid transparent !important;
    border-right: 5px solid transparent !important;
    border-top: 6px solid #A179B7 !important;
    border-bottom: 0 none !important;
    font-family: inherit !important;
    font-size: inherit !important;
    transform: translateY(-50%) !important;
    transition: transform .2s ease !important;
}

.tm-lang .wpml-ls-legacy-dropdown:hover a.wpml-ls-item-toggle:after,
.tm-lang .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle[aria-expanded="true"]:after {
    transform: rotate(180deg) !important;
}

.tm-lang .wpml-ls-flag {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}

.tm-lang .wpml-ls-sub-menu {
    border: 1px solid #EEF1F1 !important;
    background: #fff !important;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    margin-top: 6px !important;
    padding: 6px 0 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    min-width: 100% !important;
    width: max-content !important;
    z-index: 100 !important;
    list-style: none !important;
}

.tm-lang .wpml-ls-sub-menu li {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

.tm-lang .wpml-ls-sub-menu li:before {
    display: none !important;
}

.tm-lang .wpml-ls-sub-menu a.wpml-ls-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 8px 14px !important;
    background: transparent !important;
    color: #212121 !important;
    border: none !important;
    font-size: 13px;
    font-weight: 500;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    text-decoration: none !important;
}

.tm-lang .wpml-ls-sub-menu a.wpml-ls-link span.wpml-ls-display {
    color: inherit !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.tm-lang .wpml-ls-sub-menu a.wpml-ls-link:hover {
    background: rgba(161,121,183,0.08) !important;
    color: #A179B7 !important;
}

.tm-lang-wrap {
    position: relative;
}

.tm-header-wishlist__icon {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: #212121;
    text-decoration: none;
}

.tm-header-wishlist__icon:hover {
    opacity: .5;
}

.tm-header-wishlist__number {
    position: absolute;
    background: #A179B7;
    color: #fff;
    border-radius: 50%;
    right: -6px;
    bottom: 2px;
    width: 15px;
    height: 15px;
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.tm-header__right {
    z-index: 10;
}

.tm-header-menu-title {
    font-weight: 500;
    color: #676262;
    padding-bottom: 11px;
    border-bottom: 1px solid #EEF1F1;
}

.tm-header-menu-title-line {
    height: 40px;
}

.tm-menu-wrapper-bar li {
    padding-left: 0;
}

.tm-menu-wrapper-bar li::before {
    display: none;
}

.tm-menu-wrapper-bar {
    display: flex;
    column-gap: 18px;
    margin-bottom: 0;
    margin: 0;
    list-style: none;
}

.tm-menu-wrapper-bar li a {
    color: #000000;
    font-weight: 500;
}

.tm-menu-wrapper-bar li a:hover {
    color: #A179B7;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item.mega-tm-other-links>a {
    display: none;
}

li.tm-active-menu a {
    background: #A179B7;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid #A179B7;
}

li.tm-active-menu:hover a {
    background: none;
    color: #A179B7;
}

@media (min-width: 1251px) {

    .tm-search-wrap,
    .tm-header__menu-wrap {
        display: none;
    }
}


.tm-header-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    background: #A179B7;
    padding: 8px 0;
    color: #fff;
    text-transform: uppercase;
}

.tm-header-marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.tm-header-marquee__item {
    flex: 0 0 auto;
    padding-right: 40px;
    white-space: nowrap;
}


@media (min-width: 768px) {
    #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item.mega-tm-other-links {
        display: none;
    }
}

@media (max-width: 1250px) {
    .tm-header__menu {
        height: 24px;
        display: flex;
        align-items: center;
        margin-left: 30px;
    }

    .tm-header__logo {
        width: 64px;
        height: 30px;
        position: absolute;
        left: 45px;
    }

    .tm-primary-navigation {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
        top: 25px;
    }

    .tm-search-wrap-comp {
        display: none;
    }



    .tm-search__content {
        top: 55px;
        padding: 5px 10px;
    }

    .tm-search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
        font-size: 18px;
    }
}

@media (min-width: 1181px) {
    .tm-mob-back {
        display: none;
    }
}

@media (max-width:767px) {
    .tm-header-bar.tm-flex {
        display: none;
    }

    .tm-menu-wrapper-bar {
        flex-wrap: wrap;
    }

    .tm-menu-wrapper-bar li {
        width: 100%;
        padding: 7px 0;
    }
}

@media (max-width: 480px) {

    .tm-search {
        position: inherit;
    }

    .tm-search__content {
        right: auto;
        left: 0;
        width: 100%;
    }
}

@media (max-width: 430px) {

    .tm-header__right {
        display: flex;
        justify-content: center;
    }

}


/* menu
========================================================================== */
@media (max-width: 1250px) {
    .tm-toogle-navigation {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}


/* ======================================================================= */
/* BLOCKS
========================================================================== */
/* products tabs slider
---------------------------------------- */
.tm-mainproducts-slider-wrap {
    position: relative;
}

.tm-mainproducts-slider .tm-product-category__card .star-rating {
    margin-bottom: 0;
}

.tm-mainproducts-slider .star-rating {
    display: block;
    margin: 0 0 .5em;
    float: none;
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 1em;
    width: 5.4em;
    font-family: star;
}

.tm-mainproducts-slider .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.tm-mainproducts-slider .star-rating::before {
    content: "sssss";
    color: #cfc8d8;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.tm-mainproducts-slider .star-rating span::before {
    content: "SSSSS";
    top: 0;
    position: absolute;
    left: 0;
}

.tm-mainproducts-slider .tm-product-category__card .star-rating span::before {
    color: #FFBC00;
}

.tm-tabs-products__tabs {
    border-bottom: 2px solid #EEF1F1;
}

.tm-mainproducts-slider__prev.swiper-button-prev {
    left: -45px;
}

.tm-mainproducts-slider__next.swiper-button-next {
    right: -45px;
}

.tm-product-category__img>a {
    height: 264px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-product-category__img img {
    max-height: 100%;
}

@media (max-width: 1380px) {
    .tm-mainproducts-slider__next.swiper-button-next {
        right: -15px;
    }

    .tm-mainproducts-slider__prev.swiper-button-prev {
        left: -15px;
    }
}


/* soon
---------------------------------------- */
.tm-soon {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.tm-soon__item {
    min-width: 0;
}

.tm-soon__item--1,
.tm-soon__item--2,
.tm-soon__item--3 {
    grid-column: span 2;
}

.tm-soon__item--4,
.tm-soon__item--5 {
    grid-column: span 3;
}

.tm-soon__card {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.tm-soon__card.tm-relative {
    position: relative;
}
.tm-soon__link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.tm-soon__link img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform .4s ease;
    z-index: 1;
}

.tm-soon__link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 2;
    transition: background .3s ease;
}

.tm-soon__title {
    position: absolute;
    left: 24px;
    z-index: 3;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.tm-soon__card:hover img {
    transform: scale(1.08);
}

.tm-soon__card:hover .tm-soon__link::after {
    background: rgba(0,0,0,.25);
}

.tm-soon__card:hover img {
    transform: scale(1.08);
}

.tm-soon__title {
    position: absolute;
    left: 24px;
    z-index: 3;
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    max-width: calc(100% - 48px);
    font-family: "GigaSans", sans-serif;
}

.tm-soon__item--1 .tm-soon__title,
.tm-soon__item--2 .tm-soon__title,
.tm-soon__item--3 .tm-soon__title {
    bottom: 24px;
}

.tm-soon__item--4 .tm-soon__title,
.tm-soon__item--5 .tm-soon__title {
    top: 24px;
    font-size: 44px;
}

@media (max-width: 991px) {
    .tm-soon {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tm-soon__item--1,
    .tm-soon__item--2,
    .tm-soon__item--3,
    .tm-soon__item--4,
    .tm-soon__item--5 {
        grid-column: span 1;
    }

    .tm-soon__link {
        min-height: 260px;
    }

    .tm-soon__title {
        left: 20px;
        max-width: calc(100% - 40px);
        font-size: 20px;
    }

    .tm-soon__item--1 .tm-soon__title,
    .tm-soon__item--2 .tm-soon__title,
    .tm-soon__item--3 .tm-soon__title {
        bottom: 20px;
    }

    .tm-soon__item--4 .tm-soon__title,
    .tm-soon__item--5 .tm-soon__title {
        top: 20px;
        font-size: 35px;
    }
}

@media (max-width: 575px) {
    .tm-soon {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tm-soon__link {
        min-height: 220px;
    }

    .tm-soon__title {
        font-size: 18px;
        left: 16px;
        max-width: calc(100% - 32px);
    }

    .tm-soon__item--1 .tm-soon__title,
    .tm-soon__item--2 .tm-soon__title,
    .tm-soon__item--3 .tm-soon__title {
        bottom: 16px;
    }

    .tm-soon__item--4 .tm-soon__title,
    .tm-soon__item--5 .tm-soon__title {
        top: 16px;
        font-size: 18px;
    }
}

/* products page slider
---------------------------------------- */
.tm-product-page-slider.swiper {
    overflow: visible;
}

.tm-product-page-slider.swiper::after,
.tm-product-page-slider.swiper::before {
    position: absolute;
    content: '';
    background: #fff;
    height: 100%;
    width: 100vw;
    z-index: 5;
    top: 0;
}

.tm-product-page-slider.swiper::after {
    left: 100%;
}

.tm-product-page-slider.swiper::before {
    right: 100%;
}

.tm-product-page-slider .ivpa-required-short {
    display: none;
}

@media (max-width: 980px) {
    .tm-product-page-slider {
        width: calc(100% + 20px);
    }
}

/* home categories
---------------------------------------- */
.tm-home-categories {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}

.tm-home-categories__card {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #E8E0EE;
    aspect-ratio: 1;
}

.tm-home-categories__card:hover img {
    transform: translate(-50%, -50%) scale(1.1);
}

.tm-home-categories__card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 992px) {
    .tm-home-categories {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 576px) {
    .tm-home-categories {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* benefits
---------------------------------------- */
.tm-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.tm-features__item {
    min-width: 0;
}

.tm-features__card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 120px;
    padding: 24px;
    border-radius: 12px;
    background: #f7f7f8;
}

.tm-features__icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
}

.tm-features__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(0deg);
    transition: transform .3s ease;
    transform-origin: center center;
}

.tm-features__content {
    min-width: 0;
}

.tm-features__title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.tm-features__subtitle {
    font-size: 16px;
    line-height: 1.4;
    color: #555;
}

.tm-features__item--1:hover .tm-features__icon img,
.tm-features__item--3:hover .tm-features__icon img {
    transform: rotate(-4deg);
}

.tm-features__item--2:hover .tm-features__icon img,
.tm-features__item--4:hover .tm-features__icon img {
    transform: rotate(4deg);
}

@media (max-width: 991px) {
    .tm-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .tm-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tm-features__card {
        padding: 20px;
    }

    .tm-features__title {
        font-size: 16px;
    }

    .tm-features__subtitle {
        font-size: 16px;
    }
}


/* subscription
---------------------------------------- */
.tm-subscription__wrap-title {
    padding-top: 50px;
}

.tm-subscription__form {
    display: flex;
}

.tm-subscription__arrow {
    position: absolute;
    top: 100%;
    right: -40px;
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
    pointer-events: none;
    z-index: 5;
}

.tm-subscription:hover .tm-subscription__arrow {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tm-subscription__images {
    position: relative;
    max-width: 540px;
    width: 100%;
    min-height: 540px;
    margin-left: 0;
}

.tm-subscription__images img {
    position: absolute;
    display: block;
}

.tm-subscription__message {
    width: 150px;
    height: 150px;
    left: 60%;
    object-fit: contain;
    opacity: 0;
    visibility: hidden;
    transform: rotate(0deg) scale(0.96);
    transition: opacity .35s ease, visibility .35s ease, transform .35s ease;
    z-index: 4;
}

.tm-subscription__boy {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(0deg);
    transform-origin: center center;
    transition: transform .35s ease;
    z-index: 2;
}

.tm-subscription__highlight {
    top: 7%;
    width: 65px;
    height: 69px;
    object-fit: contain;
    left: 30%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 5;
}

.tm-subscription__back {
    width: 80%;
    height: 80%;
    object-fit: contain;
    z-index: 1;
    right: -25%;
    top: 0;
    bottom: 0;
    margin: auto;
}

.tm-subscription:hover .tm-subscription__message {
    opacity: 1;
    visibility: visible;
    transform: rotate(-8deg) scale(1);
}

.tm-subscription:hover .tm-subscription__boy {
    transform: rotate(5deg);
}

.tm-subscription:hover .tm-subscription__highlight {
    opacity: 1;
    visibility: visible;
}

/* slider with other images
---------------------------------------- */
.tm-slider-with {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
        "a a b"
        "c d e";
    gap: 20px 40px;
}

.tm-slider-with__item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-slider-with__item--a {
    grid-area: a;
}

.tm-slider-with__item--b {
    grid-area: b;
}

.tm-slider-with__item--c {
    grid-area: c;
}

.tm-slider-with__item--d {
    grid-area: d;
}

.tm-slider-with__item--e {
    grid-area: e;
}

.tm-slider-with__item,
.tm-slider-with__item--a,
.tm-home-slider-wrap,
.tm-home-slider {
    min-width: 0;
}

.tm-home-slider,
.tm-home-slider-wrap {
    width: 100%;
}

.tm-home-banner,
.tm-home-slider__card {
    overflow: hidden;
    border-radius: 12px;
}

.tm-home-banner {
    height: 250px;
}

.tm-home-slider__card {
    height: 100%;
}

.tm-home-slider__card img,
.tm-home-banner img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: block;
}

.tm-home-slider,
.tm-home-banner_big {
    height: 490px;
}

@media (min-width: 992px) {
    .tm-home-banner .tm-home-banner_big_2 {
        display: none;
    }
}

@media (max-width: 991px) {
    .tm-slider-with {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "a a"
            "b c"
            "d e";
        gap: 16px 20px;
    }

    .tm-home-banner_big {
        height: 250px;
    }

    .tm-home-banner .tm-home-banner_big_1 {
        display: none;
    }

    .tm-home-slider {
        height: auto;
    }
}

@media (max-width: 575px) {
    .tm-slider-with {
        grid-template-columns: 1fr;
        grid-template-areas:
            "a"
            "b"
            "c"
            "d"
            "e";
        gap: 12px;
    }
}

/* home-categories2
---------------------------------------- */
.tm-home-categories2 {
    display: grid;
    grid-template-columns: 25% 25% 30% 20%;
    grid-template-rows: repeat(2, 235px);
    gap: 30px;
}

.tm-home-categories2__item {
    min-width: 0;
}

.tm-home-categories2__item--1 {
    grid-column: 1;
    grid-row: 1;
}

.tm-home-categories2__item--2 {
    grid-column: 2;
    grid-row: 1 / 3;
}

.tm-home-categories2__item--3 {
    grid-column: 3;
    grid-row: 1;
}

.tm-home-categories2__item--4 {
    grid-column: 4;
    grid-row: 1;
}

.tm-home-categories2__item--5 {
    grid-column: 1;
    grid-row: 2;
}

.tm-home-categories2__item--6 {
    grid-column: 3;
    grid-row: 2;
}

.tm-home-categories2__item--7 {
    grid-column: 4;
    grid-row: 2;
}

.tm-home-categories2__card {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    transition: background-color .3s ease;
}

.tm-home-categories2__card.tm-relative {
    position: relative;
}

.tm-home-categories2__link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 24px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
}

.tm-home-categories2__title {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 3;
    max-width: calc(100% - 48px);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: #111;
    transition: color .3s ease;
}

.tm-home-categories2__img {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    width: auto;
    max-width: 185px;
    max-height: calc(100% - 72px);
    height: auto;
    display: block;
    transform: rotate(0deg);
    transform-origin: center center;
    transition: transform .35s ease;
    pointer-events: none;
}

.tm-home-categories2__img--centered {
    position: absolute;
    top: 50%;
    right: 24px;
    left: auto;
    bottom: auto;
    transform: translateY(-50%) rotate(0deg);
    max-width: 90%;
    max-height: 80%;
}

.tm-home-categories2__arrow {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #31D6C8;
    color: #fff;
    transition: background-color .3s ease, color .3s ease;
}

.tm-home-categories2__card:hover {
    background: #31D6C8;
}

.tm-home-categories2__card:hover .tm-home-categories2__title {
    color: #fff;
}

.tm-home-categories2__card:hover .tm-home-categories2__arrow {
    background: #fff;
    color: #31D6C8;
}

.tm-home-categories2__card:hover .tm-home-categories2__img {
    transform: rotate(-5deg);
}

.tm-home-categories2__card:hover .tm-home-categories2__img--centered {
    transform: translateY(-50%) rotate(-5deg);
}

@media (max-width: 991px) {
    .tm-home-categories2 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .tm-home-categories2__item {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .tm-home-categories2__card {
        min-height: 235px;
    }

    .tm-home-categories2__item--2 .tm-home-categories2__card {
        min-height: 500px;
    }
}

@media (max-width: 575px) {
    .tm-home-categories2 {
        grid-template-columns: 1fr;
    }

    .tm-home-categories2__card,
    .tm-home-categories2__item--2 .tm-home-categories2__card {
        min-height: 235px;
    }

    .tm-home-categories2__link {
        padding: 20px;
    }

    .tm-home-categories2__title {
        top: 20px;
        left: 20px;
        max-width: calc(100% - 40px);
        font-size: 18px;
    }

    .tm-home-categories2__arrow {
        left: 20px;
        bottom: 20px;
    }

    .tm-home-categories2__img {
        right: 14px;
        bottom: 14px;
        max-width: 150px;
    }

    .tm-home-categories2__img--centered {
        top: 50%;
        right: 16px;
        left: auto;
        bottom: auto;

        transform: translateY(-50%);
        max-width: 75%;
        max-height: 70%;
    }
}

/* brands
---------------------------------------- */
.tm-home-brands {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.tm-home-brands--cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tm-home-brands--cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tm-home-brands--cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.tm-home-brands__card {
    min-width: 0;
}

.tm-home-brands__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    overflow: hidden;
}

.tm-home-brands__link img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
    transform: scale(1) rotate(0deg);
    transform-origin: center center;
    transition: transform .35s ease;
    will-change: transform;
}

.tm-home-brands__link:hover img {
    transform: scale(1.05) rotate(5deg);
}

@media (max-width: 991px) {
    .tm-home-brands,
    .tm-home-brands--cols-4,
    .tm-home-brands--cols-5,
    .tm-home-brands--cols-6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .tm-home-brands__link {
        min-height: 120px;
        padding: 18px;
    }

    .tm-home-brands__link img {
        max-height: 95px;
    }
}

@media (max-width: 575px) {
    .tm-home-brands,
    .tm-home-brands--cols-4,
    .tm-home-brands--cols-5,
    .tm-home-brands--cols-6 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .tm-home-brands__link {
        min-height: 100px;
        padding: 16px;
    }

    .tm-home-brands__link img {
        max-height: 80px;
    }
}


/* ======================================================================= */
/* ENDS BLOCKS
========================================================================== */


/* subscribe block
========================================================================== */
.subscribe_row .title,
.subscribe_row .subscribe {
    margin-bottom:0;
}
.subscribe_row .subscription_form {
    display: flex;
    border-radius: 30px;
    border: 2px solid rgba(161, 121, 183, 0.15);
    background: #FFF;
    width: 446px;
    justify-content: space-between;
}
.subscribe_row .subscription_form .email_field {
    width:100%;
}
.subscribe_row .subscription_form .email_field input[type="email"] {
    border: none;
    border-radius: 30px 0 0 30px;
    padding: 16px;
    outline: none;
}
.subscribe_row .subscription_form .submit_btn {
    display: flex;
    padding: 4px;
    position: relative;
    align-items: center;
}
.subscribe_row .subscription_form .submit_btn input[type="submit"] {
    border: none;
    z-index: 2;
    color: transparent;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background: transparent;
    outline: none;
}
.subscribe_row .subscription_form .submit_btn img {
    background: #31D6C8;
    padding: 13px;
    border-radius: 50%;
    position: absolute;
    z-index: 0;
    transition: ease-in-out .2s;
}
.subscribe_row .subscription_form .submit_btn:hover img {
    background: #A179B7
}
.subscribe_row .subs_arrow {
    position: absolute;
    top: auto;
    bottom: 25px;
    right: 40px;
}
.subscribe_row .subs_arrow,
.subscribe_row .subs_img-1,
.subscribe_row .subs_img-2 {
    visibility: hidden;
  	opacity: 0;
  	transition: all .5s ease-out;
}
.subscribe_row:hover .subs_arrow,
.subscribe_row:hover .subs_img-1,
.subscribe_row:hover .subs_img-2 {
     visibility: visible;
  	opacity: 1;
  	transition: all .5s ease-out;
}
.subscribe_row .subs_img-1 {
    position: absolute;
    z-index: 2;
    top: -8rem;
    left: 16rem;
}
.subscribe_row .subs_img-2 {
    position: absolute;
    z-index: 2;
    top: -140px;
    right: 65px;
}
.subscribe_row .subs_img-3 {
    position: absolute;
    bottom: auto;
    top: -99px;
    right: 0;
    z-index: 1;
    transition: all .5s ease-out;
}
.subscribe_row:hover .subs_img-3 {
    rotate:5deg;
}
.subscribe_row .subs_img-4 {
    position: absolute;
    z-index: 0;
    right: 0;
    text-align: right;
    top: -25px;
}

@media(max-width: 1300px) and (min-width: 1201px){
	.subscribe_row .subs_arrow{
		right: -15px;
	}
}

@media(max-width: 1201px) and (min-width:1150px){
	.subscribe_row .subs_arrow{
		right: -70px;
	}
}

@media(max-width: 1150px) and (min-width: 1024px){
	.subscribe_row .subs_arrow{
		right: -150px;
	}
}

@media(max-width:1024px){	
	.subscribe_row .subscription_form{
		width: auto;
	}
}

/* object fit
========================================================================== */
.tm-home-categories__card img,
.tm-banner-left-img__img img {
    object-fit: cover;
    width: 100%;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.35s ease-in-out;
    top: 50%;
    left: 50%;
    position: absolute;
    height: 102%;
}


/* calendar
========================================================================== */
.el-select,
.el-date-editor.el-input,
.el-date-editor.el-input__wrapper {
    width: 100%;

}

.el-select .el-input,
.el-date-editor.el-input,
.el-date-editor.el-input__wrapper {
    height: 54px;
}


/* category product
========================================================================== */
.tax-product_cat .select2-search--dropdown .select2-search__field {
    opacity: 0;
}

.woocommerce .woocommerce-result-count,
.tm-archive-product__ordering .woocommerce-ordering {
    margin-bottom: 0;
}

.tm-archive-product__ordering-name {
    padding-top: 2px;
}

.tm-archive-product__ordering-name,
.tm-archive-product__count {
    color: #676262;
}

.tm-product-category__remove.product-remove button {
    width: 100%;
    cursor: pointer;
    background-color: #F6F6F6;
    border: 0 none;
    height: 40px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 10px;
    transition: all .3s ease-in-out;
    border-radius: 0;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}


.tm-product-category__remove.product-remove button:hover {
    background-color: #000;
    color: #fff;
}

.term-description {
    margin-top: 50px;
}

.tm-term-description,
.tm-category-also {
    margin-top: 50px;
}

.tm-category-also .tm-grid {
    row-gap: 4px;
}

.woocommerce-products-header {
    padding-right: 140px;
}

.tm-category-tags {
    position: relative;
    z-index: 10;
}

.tm-category-tags__link {
    padding: 2px 0;
}

.tm-category-tags__link a {
    color: #3A3A3A;
    font-size: 14px;
    border: 1px solid #D7D7D7;
    border-radius: 4px;
    padding: 4px 12px;
    transition: all .3s ease-in-out;
}

.tm-category-tags__link a:hover {
    background: #D7D7D7;
}

.tm-category-tags__container {
    max-height: 28px;
    overflow: hidden;
}

.tm-category-tags__container.expanded {
    max-height: none;
}

#collapseButtonTags,
#collapseButtonCategories {
    font-size: 14px;
    font-weight: 500;
    color: #ED2C3D;
    cursor: pointer;
    text-decoration: underline;
    margin: 15px 0;
    position: absolute;
    right: 0;
    top: -62px;
}

#collapseButtonTags:hover,
#collapseButtonCategories:hover {
    text-decoration: none;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
    margin-bottom: 2.617924em;
    background-color: #1e1e1e;
    margin-left: 0;
    border-radius: 2px;
    color: #fff;
    clear: both;
    padding: 1em 2em 1em 3.5em;
    position: relative;
    list-style: none outside;
}

.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-error .button,
.woocommerce-page .woocommerce-info .button,
.woocommerce-page .woocommerce-message .button {
    order: 2;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    top: 0;
    bottom: 0;
    margin: auto;
    height: 18px;
    line-height: 18px;
}

.woocommerce-error li::before {
    display: none;
}

.woocommerce-checkout .woocommerce-error a:hover,
.woocommerce-checkout .woocommerce-info a:hover,
.woocommerce-checkout .woocommerce-message a:hover {
    color: #fff;
}

.woocommerce-info {
    border-top-color: #cccccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.woocommerce-checkout .woocommerce-info {
    justify-content: flex-start;
    column-gap: 25px;
}

.woocommerce-error a,
.woocommerce-info a {
    color: rgba(255, 255, 255, .7);
}

.woocommerce-info::before {
    color: #cccccc;
}


.tm-product-category__sold {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

.tm-product-category__card {
    position: relative;
    transition: all .3s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid #EEF1F1;
    padding: 16px;
    border-radius: 4px;
    flex-grow: 1;
}

.tm-product-category__card:hover {
    box-shadow: 2px 4px 24px 0px rgba(0, 0, 0, 0.08);
}



.woocommerce .products .tm-product-category__card .star-rating {
    margin-bottom: 0;
}

.tm-product-category__card .tm-product__stock {
    font-size: 14px;
}

.woocommerce .tm-product-category__card .star-rating span::before {
    color: #FFBC00;
}

.tm-product-category__img {
    margin-bottom: 12px;
    position: relative;
}

.tm-product-category__card:hover img {
    opacity: .7;
}

.tm-product-category__img img {
    transition: all .3s ease-in-out;
}


.tm-product-category__title {
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

.tm-product-category__title a {
    font-size: 16px;
    line-height: 1.1;
    color: #A179B7;
    transition: all .3s ease-out;
    display: block;
    overflow: hidden;
    margin-bottom: 6px;
    font-weight: 500;
    text-transform: uppercase;
}

.tm-product-category__title a:hover {
    color: #c3bab6;
}

.tm-product-category__size {
    color: #676262;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}


.tm-product-category__price {
    color: #000;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    margin-top: 15px;
}

.tm-product-category__price del {
    opacity: .5;
}

.tm-product-category__price ins {
    background: none;
    color: #000;
    margin-left: 8px;
}

.tm-product-category__meta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.tm-product-category__meta .tm-product-card__tags {
    left: 0;
    top: -8px;
}


.tm-product-category__meta-content {
    align-items: flex-end;
}

.tm-product-category__meta-content .tm-tire-thorns>div,
.tm-product-category__meta-content .tm-tire-nordic>div {
    font-size: 26px;
}

.tm-product-category__meta-content .tm-tire-runflat,
.tm-product-category__meta-content .tm-tire-xl,
.tm-product-category__meta-content .tm-tire-3pmsf,
.tm-product-category__meta-content .tm-tire-ice-grip {
    padding: 2px 6px;
    font-size: 10px;
}

.woocommerce div.product form.cart div.quantity {
    float: none;
}

.tm-mainproducts-slider div.product.tm-product-category__card form.cart div.quantity,
.woocommerce div.product.tm-product-category__card form.cart div.quantity {
    margin-right: 0;
}

.tm-grid-products .tm-product-category__card .product-quantity {
    position: relative;
}

.tm-grid-products .tm-product-category__card .product-quantity,
.tm-mainproducts-slider .tm-product-category__card .product-quantity,
.woocommerce-page .tm-product-category__card .product-quantity {
    border: 1px solid #EEF1F1;
    border-radius: 4px;
    width: 100px;
    height: 34px;
    padding: 6px 8px;
    box-sizing: border-box;
}

.tm-mainproducts-slider .tm-product-category__card .product-quantity .product-count__button::before,
.tm-product-category__card .product-quantity .product-count__button::before {
    font-size: 12px;
    line-height: 1;
}

.tm-mainproducts-slider .tm-product-category__card .product-count__button,
.tm-product-category__card .product-count__button {
    height: 25px;
    width: 25px;
    top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.tm-mainproducts-slider .tm-product-category__card .product-count__top,
.tm-product-category__card .product-count__top {
    right: 8px;
}

.tm-mainproducts-slider .tm-product-category__card .product-count__down,
.tm-product-category__card .product-count__down {
    left: 8px;
}

.tm-grid-products .tm-product-category__card .product-quantity input.qty,
.tm-mainproducts-slider .tm-product-category__card .product-quantity input.qty,
.woocommerce-page .tm-product-category__card .product-quantity input.qty {
    width: calc(100% - 50px);
    margin-left: 25px;
}

.tm-product-category__card .simple-cart-form .single_add_to_cart_button.button,
.tm-product-category__card .variations_form.cart .single_add_to_cart_button.button {
    height: 33px;
    width: 33px;
    box-sizing: border-box;
    position: relative;
}

.tm-product-category__card .simple-cart-form .single_add_to_cart_button.button::before,
.tm-product-category__card .variations_form.cart .single_add_to_cart_button.button::before {
    content: "\e90e";
    font-family: 'tm-anix';
    font-size: 21px;
}

div.product .tm-product-category__form-btn {
    margin-top: 15px;
}

div.product .tm-product-category__form-btn form.cart {
    margin: 0;
}

.tm-product-category__card button.button.loading {
    padding: 7px 4px !important;
}

.tm-product-category__card button.button.loading::after,
.tm-product-category__card button.button.added::after {
    position: absolute !important;
    right: 2px;
    top: 2px;
}


.tm-product-order.tm-content-btn {
    margin-top: 10px;
}

.tm-product-order.tm-content-btn a {
    width: 100%;
    height: 33px;
}

@media (max-width:1180px) {
    .tm-product__tabs-line3 .tm-flex {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .tm-product__tabs-line3 .tm-grid>.tm-grid__width-1-5 {
        width: 325px;
        min-width: 325px;
        padding-left: 20px;
    }

    .tm-product__tabs-line1 {
        width: calc(100% + 20px);
        overflow: hidden;
    }

    .tm-product__tabs-line2 {
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .tm-product__tabs-line2::-webkit-scrollbar {
        display: none;
    }

    .tm-product__tabs-line3 {
        max-width: 100%;
    }

    .tm-product__tabs-line {
        display: flex;
        border-bottom: 0 none;
        margin-bottom: 0;
    }

    .tm-tabs-triggers__item {
        width: inherit;
        white-space: nowrap;
        margin-right: 7px;
        margin-bottom: 0;
    }

    .tm-tabs-triggers__item:not(:last-child) {
        margin-right: 25px;
    }


}

@media (max-width: 768px) {
    .term-description {
        max-width: 100%;
    }

    .products.tm-grid {
        row-gap: 40px;
        margin-left: -14px;
    }

    .products.tm-grid>* {
        padding-left: 14px;
    }


    .tm-product-category__sale-badge {
        width: 45px;
    }

    .tm-product-category__sold {
        width: 90px;
        height: 90px;
        font-size: 14px;
    }
}

@media (max-width: 670px) {
    .products.tm-grid .tm-grid__width-1-4 {
        width: 50%;
    }

    .tm-archive-product__ordering-name,
    .tm-archive-product__count-number {
        display: none;
    }
}

@media (max-width: 360px) {
    .products.tm-grid .tm-grid__width-1-4 {
        width: 100%;
    }
}

/* product
========================================================================== */
.tm-product .stock.out-of-stock {
    margin-top: 25px;
}

.single-product .cwgstock_button,
.cwg_popup_submit {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease-out;
    text-decoration: none;
    padding: 10px 25px;
    cursor: pointer;
}

.single-product .cwgstock_button:hover,
.cwg_popup_submit:hover {
    background: #3d3d3d;
}

.single-product .cwginstock-panel-heading h4 {
    color: #000;
}

.single-product .cwgstock_email {
    height: 54px;
    font-size: 16px;
}

.single-product .cwg_iagree_checkbox {
    font-size: 14px;
    margin-bottom: 15px;
}

.woocommerce-variation-availability,
a.added_to_cart.wc-forward {
    display: none;
}

.tm-grid.tm-product-grid {
    margin-left: -80px;
}

.tm-grid.tm-product-grid>* {
    padding-left: 80px;
}

.tm-product__images-container {
    display: flex;
    margin-left: -25px;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
}

.tm-product__images-container .swiper-button-prev {
    left: 25px;
}

.tm-product__images-container .swiper-button-next {
    right: 0;
}

.tm-product__images-container .swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.tm-product__images-container .swiper-button {
    border-radius: 0;
}

.tm-product__images-main,
.tm-product__images-column {
    padding-left: 25px;
}

.tm-product__images-main {
    width: 100%;
    overflow: hidden;
}

.tm-product__images-column {
    width: 100%;
}

.tm-product__images-main {
    margin-bottom: 30px;
    position: relative;
}

.tm-product__images-zoom {
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.22);
    color: #fff;
    font-size: 14px;
    width: 34px;
    height: 34px;
    z-index: 10;
}

.tm-product__images-main a:hover .tm-product__images-zoom {
    background: rgba(0, 0, 0, 0.8);
}

.tm-product__images-main .swiper-slide {
    overflow: hidden;
    border-radius: 4px;
}

.tm-product__images-main .slider__image {
    padding-bottom: 105%;
}


.tm-product__images-thumbs .slider__image div {
    position: relative;
    padding-bottom: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.tm-product__images-thumbs .slider__image div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all .3s ease-in-out;
}

.tm-product__images-thumbs .slider__image div:hover:before,
.tm-product__images-thumbs .swiper-slide-thumb-active .slider__image div::before {
    background: rgba(0, 0, 0, .2);
}

.tm-product__images-main .slider__image img,
.tm-product__images-thumbs .slider__image img {
    object-fit: cover;
    width: 100%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: absolute;
    height: 100%;
}



.tm-product__sale-badge {
    font-weight: 600;
    color: #B5B5B5;
}

.tm-product__sale-badge span {
    color: #D92A2A;
    font-family: 'Montserrat', sans-serif;
}


.tm-product__sku {
    font-size: 14px;
    line-height: 12px;
    color: #B5B5B5;
}

.tm-product__btns {
    width: 100%;
}

.added_to_cart.button {
    display: none !important;
}


.woocommerce-variation-add-to-cart .tm-product__price,
.tm-product__content {
    width: 100%;
}


.product-count__content input {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #8c7c73;
    text-align: center;
}

form.cart.simple-cart-form {
    margin-top: 15px;
}

.simple-cart-form .single_add_to_cart_button.button,
.variations_form.cart .single_add_to_cart_button.button {
    background: #A179B7 !important;
    font-weight: 400 !important;
    width: 100%;
    height: 39px;
    border-radius: 4px;
    transition: all .3s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border: 0 none;
    color: #fff;
}

.simple-cart-form .single_add_to_cart_button.button:hover,
.variations_form.cart .single_add_to_cart_button.button:hover {
    background: #ad0b1c !important;
}


.woocommerce-variation-availability {
    margin-top: 8px;
}

.woocommerce-variation-availability p {
    margin-bottom: 0;
}

.simple-cart-form .single_add_to_cart_button.button.wc-variation-is-unavailable,
.variations_form.cart .single_add_to_cart_button.button.wc-variation-is-unavailable {
    display: none;
}

.out-of-stock {
    color: red;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt {
    background: #A179B7 !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover {
    background-color: #ad0b1c !important;
    color: #fff;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.loading::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.loading::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.loading::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.loading::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.loading::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.loading::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.loading::after {
    top: 14px;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
    width: 100%;
    height: 50px;
    font-size: 20px;
    border-radius: 0;
    float: none;
}

.simple-cart-form .single_add_to_cart_button.button span,
.variations_form.cart .single_add_to_cart_button.button span {
    font-weight: 400;
    margin-right: 12px;
}


.woocommerce-variation-availability {
    margin-top: 0;
}

.woocommerce-variation-price {
    display: none;
}

.tm-product__price del {
    order: 2;
}

.tm-product__price ins {
    background: none;
}

.tm-product__price,
.tm-product__price span.price {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.tm-product__price-variation,
.tm-product__price,
.tm-product__price span.woocommerce-Price-amount.amount {
    color: #000;
    font-size: 22px;
    line-height: 25px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

.tm-product__price ins span.woocommerce-Price-amount.amount {
    color: #FF9C06;
}

.tm-product__price del,
.tm-product__price del span.woocommerce-Price-amount.amount {
    font-size: 14px;
    line-height: 18px;
    color: #8f8f8f;
}



.woocommerce .outofstock {
    filter: grayscale(100%);
    opacity: 0.5;
}


.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before {
    margin: 0;
    left: 0;
    top: 0;
}


.tm-product__benefits {
    border-top: 1px solid #D3D3D3;
    border-bottom: 1px solid #D3D3D3;
    padding: 25px 0;
}

.tm-product__separator {
    height: 30px;
    width: 1px;
    background: #D3D3D3;
}

.tm-product__benefits span {
    font-size: 22px;
}

.tm-slider-line.tabs {
    border-bottom: 2px solid #EEF1F1;
    display: flex;
    margin: 0;
    list-style: none;
}

.tm-slider-line.tabs>li {
    padding-left: 0;
}

.tm-slider-line.tabs>li::before {
    display: none;
}

.tm-slider-line.tabs>li:not(:last-child) {
    margin-right: 40px;
}

.tm-slider-line.tabs>li a {
    color: #000;
    font-size: 22px;
    font-weight: 600;
    position: relative;
}

.tm-slider-line.tabs>li.active a::after {
    content: '';
    width: 100%;
    position: absolute;
    bottom: -8px;
    height: 2px;
    background: #A179B7;
    left: 0;
}


.tm-recently-viewed,
.tm-product__related {
    margin-top: 60px;
}


.tm-product-page-slider__item.swiper-slide,
.tm-related-slider__item.swiper-slide {
    height: auto !important;
    box-sizing: border-box;
}

.tm-product-category__info {
    flex-grow: 1;
}



@media (max-width: 1180px) {
    .tm-product__price-wrap {
        width: 100%;
    }
}

@media (max-width: 1080px) {
    .tm-grid.tm-product-grid {
        margin-left: -40px;
    }

    .tm-grid.tm-product-grid>* {
        padding-left: 40px;
    }
}

@media (max-width: 980px) {

    .tm-product__images-container {
        max-width: 520px;
    }

    .tm-product-info .tm-grid__width-6-10 {
        width: 60%;
    }

    .tm-product-info .tm-grid__width-4-10 {
        width: 40%;
    }
}



@media (max-width: 880px) {
    .tm-related-slider .tm-grid {
        display: block;
        margin-left: auto;
        box-sizing: border-box;
    }

    .tm-related-slider {
        margin-right: -20px;
    }
}

@media (max-width: 768px) {
    .tm-product__images-main {
        width: 100%;
    }

    .tm-product__images-column {
        width: calc(100% + 20px);
        overflow: visible;
    }

    .slider__thumbs {
        height: 100px;
        width: calc(100% - 96px);
        margin: 15px 0 0;
    }

    .tm-product__images-main {
        height: 380px;
    }

    .tm-product__images-main {
        margin-bottom: 15px;
    }
}

@media (max-width: 570px) {

    .tm-product-info .tm-grid__width-6-10,
    .tm-product-info .tm-grid__width-4-10 {
        width: 100%;
    }
}


/* reviews
========================================================================== */
.woocommerce .woocommerce-product-rating .star-rating {
    font-size: 1.5em;
    margin-top: 0;
}

.woocommerce .woocommerce-product-rating .star-rating span::before {
    color: #FFBC00;
}

.woocommerce-review-link {
    color: #676262;
}

.woocommerce-review-link:hover {
    color: #A179B7;
}

.tm-product .rx_recommended_wrapper,
.tm-product .rx_rating_graph_wrapper {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    border: 2px solid #EEF1F1 !important;
    border-radius: 4px;
}

.tm-product .rx_recommended_wrapper {
    width: 35%;
}

.tm-product .rx_rating_graph_wrapper {
    width: 65%;
    padding: 24px;
}

.tm-product .rx-graph-style-2 {
    display: flex;
    column-gap: 30px;
}

.tm-product .rx_style_two_free_progress_bar {
    width: 50%;
    margin-left: -15px;
    padding-left: 15px;
}

.tm-product .rx-selection-arrow b {
    margin-left: -4px;
}

.tm-product .rx-filter-bar-style-2 {
    background-color: #EEF1F1 !important;
}

.tm-product .rx_listing_container_style_2 {
    margin-top: 0 !important;
}

.tm-product .rx_listing_style_2 .rx_review_block {
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 0 0 30px 0 !important;
}

.tm-product .rx_listing_style_2 .rx_review_block::before {
    display: none;
}

.tm-product .rx_listing_container_style_2 {
    border-width: 0 1px 1px 1px !important;
    border-style: solid !important;
    border-color: #EEF1F1 !important;
    padding: 28px !important;
}

.tm-product .rx_listing_style_2 .rx_review_block:last-child {
    padding: 0 0 0 0 !important;
}

.tm-product .rx_listing_style_2 .rx_review_block:not(:last-child) {
    margin-bottom: 30px !important;
    border-bottom: 2px solid #D7D7D7 !important;
}

.rx-criteria-table tbody {
    display: flex;
    flex-wrap: wrap;
}

.tm-product .rx-criteria-table tbody tr {
    width: 50%;
}

.tm-product .rx-review-form-area-style-2 {
    background: none !important;
    border: 1px solid #EEF1F1;
}

.rx-review-form-area-style-2 .reviewx_front_end_from input[type='text'],
.rx-review-form-area-style-2 .reviewx_front_end_from input[type='number'],
.rx-review-form-area-style-2 .reviewx_front_end_from input[type='email'],
.rx-review-form-area-style-2 .reviewx_front_end_from input[type='tel'],
.rx-review-form-area-style-2 .reviewx_front_end_from input[type='url'] {
    height: 49px;
}

.rx-review-form-area-style-2 .reviewx_front_end_from input[type='text'],
.rx-review-form-area-style-2 .reviewx_front_end_from input[type='number'],
.rx-review-form-area-style-2 .reviewx_front_end_from input[type='email'],
.rx-review-form-area-style-2 .reviewx_front_end_from input[type='tel'],
.rx-review-form-area-style-2 .reviewx_front_end_from input[type='url'],
.rx-review-form-area-style-2 .reviewx_front_end_from textarea {
    background-color: #EEF1F1 !important;
    border: 1px solid #D7D7D7;
}

.tm-product .reviewx_recommended_list {
    margin-left: 0;
}

.tm-product .reviewx_recommended_list .reviewx_radio::before {
    display: none;
}

.tm-product .rx-review-form-area-style-2 #respond input#submit,
.tm-product .rx-review-form-area-style-2 #review_form input[type="submit"] {
    background-color: #A179B7 !important;
    border-radius: 4px !important;
    transition: all .3s ease-in-out;
}

.tm-product .rx-review-form-area-style-2 #respond input#submit:hover,
.tm-product .rx-review-form-area-style-2 #review_form input[type="submit"]:hover {
    background-color: #ad0b1c !important;
}

@media (max-width: 1180px) {
    .tm-product .rx-criteria-table tbody tr td:first-child {
        width: 55%;
    }

    .tm-product .entry-content {
        margin-top: 10px;
    }
}

@media (max-width: 980px) {
    .tm-product .rx-criteria-table tbody tr {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .tm-product .reviewx-star-rating .rx_star_rating label {
        width: 1.2em;
    }

    .tm-slider-line.tabs>li a {
        font-size: 18px;
    }

    .tm-product .rx_style_two_free_progress_bar {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
    }
}

/* account
========================================================================== */
.wc-block-components-notice-banner {
    align-items: center !important;
}

.woocommerce-MyAccount-navigation__header {
    padding: 30px 30px 0;
}

.woocommerce-account-mail {
    font-weight: 600;
    color: #676262;
}

.tm-main.tm-page-login {
    padding: 130px 0 80px;
}

.tm-login-form__img {
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
    height: 100%;
}

.tm-login-wrap .tm-grid {
    row-gap: 0;
    margin-left: 0;
}

.tm-login-wrap .tm-grid>* {
    padding-left: 0;
}

.tm-login-form__form {
    width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.tm-login-form__column {
    padding: 40px 0;
}

.tm-login-form__text a {
    text-decoration: underline;
    color: #212121;
}

.page-template-page-login .woocommerce p.lost_password a:hover,
.tm-login-form__text a:hover {
    text-decoration: none;
}

.page-template-page-login .woocommerce form.login,
.page-template-page-login .woocommerce form.register {
    margin: 0;
    border: 0 none;
    padding: 0;
}

.page-template-page-login .woocommerce form .form-row-first,
.page-template-page-login .woocommerce form .form-row-last {
    width: 100%;
}

.page-template-page-login .woocommerce form.login {
    display: flex;
    flex-direction: column;
}

.page-template-page-login .woocommerce form.login .form-row-first {
    order: 1;
}

.page-template-page-login .woocommerce form.login .form-row-last {
    order: 2;
}

.page-template-page-login .woocommerce form.login div:nth-child(3) {
    order: 5;
}

.page-template-page-login .woocommerce form.login .form-row:nth-child(4) {
    order: 4;
    margin: 0;
}

.page-template-page-login .woocommerce form.login div:nth-child(6) {
    order: 6;
}

.page-template-page-login .woocommerce p.lost_password {
    order: 3;
}

.page-template-page-login .woocommerce p.lost_password a {
    color: #7A7A7A;
    text-decoration: underline;
    font-size: 13px;
}

.page-template-page-login .tm-h1.text-center {
    margin-bottom: 8px;
}

.page-template-page-login .tm-login-form__text {
    margin-bottom: 24px;
    color: #676262;
}

.page-template-page-login .tm-login-form__text a {
    color: #A179B7;
}

.page-template-page-login .woocommerce .woocommerce-form-register .woocommerce-form-register__submit,
.page-template-page-login .woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
.page-template-page-login .woocommerce form.lost_reset_password button.button {
    width: 100%;
    height: 48px;
    background: #31D6C8;
    color: #fff;
    border: 0 none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: background .25s ease-out;
    cursor: pointer;
}

.page-template-page-login .woocommerce .woocommerce-form-register .woocommerce-form-register__submit:hover,
.page-template-page-login .woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover,
.page-template-page-login .woocommerce form.lost_reset_password button.button:hover {
    background: #28B5A8;
}

/* поля форм логина / регистрации / сброса пароля */
.page-template-page-login .woocommerce input.input-text {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #E2E9F1;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    transition: border-color .2s ease;
}

.page-template-page-login .woocommerce input.input-text:focus {
    border-color: #31D6C8;
    outline: none;
}

/* lost-password — поле full-width (по умолчанию form-row-first занимает половину) */
.page-template-page-login .woocommerce form.lost_reset_password .form-row-first {
    width: 100%;
    float: none;
}

.page-template-page-login .woocommerce form.lost_reset_password > p:first-of-type {
    color: #676262;
    font-size: 13px;
    margin-bottom: 18px;
}

.page-template-page-login .woocommerce .woocommerce-form-register .woocommerce-form-register__submit {
    margin-bottom: 30px;
}


.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
    float: none;
}

.xoo-el-form-container ul.xoo-el-tabs li::before,
.u-column2.col-2.woocommerce-Address,
.woocommerce-account .woocommerce-MyAccount-navigation ul li::before,
.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--wishlist,
.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--downloads,
.woocommerce-account .woocommerce::after,
.woocommerce-account .woocommerce::before {
    display: none;
}

/* «Remember me» как inline-чекбокс выровненный по левому краю */
.page-template-page-login .woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 8px 0 16px;
    font-size: 13px;
    color: #676262;
    cursor: pointer;
}

.page-template-page-login .woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme input {
    margin: 0;
}

.woocommerce-account .tm-main .woocommerce {
    display: flex;
    flex-wrap: wrap;
    background: #FFF;
}

.woocommerce-account.logged-in .tm-main .woocommerce {
    border: 1px solid #E2E9F1;
}

.woocommerce-account .woocommerce-MyAccount-content {
    width: 70%;
    padding: 40px;
}

.woocommerce-account .rx-woocommerce-myaccount-navigation {
    width: 30%;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    border-right: 1px solid #E2E9F1;
    width: 100%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    margin: 0;
    height: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}


.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    padding-left: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:not(:last-child) {
    margin-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    color: #212121;
    font-weight: 500;
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
    padding-left: 55px;
    padding-right: 15px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: #F3F5F6;
    color: #243141;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a::after {
    font-family: 'tm-anix';
    position: absolute;
    left: 25px;
    font-size: 22px;
    line-height: 20px;
    font-weight: 400;
    top: 16px;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--dashboard a::after {
    content: "\e904";
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--orders a::after {
    content: "\e900";
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-address a::after {
    content: "\e903";
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-account a::after {
    content: "\e905";
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a::after {
    content: "\e902";
}


.woocommerce-account .u-column1.col-1.woocommerce-Address {
    border: 1px solid #E2E9F1;
    background: #F3F5F6;
    padding: 30px;
}

.woocommerce-account header.woocommerce-Address-title.title {
    position: relative;
}

.woocommerce-account header.woocommerce-Address-title.title a {
    position: absolute;
    right: 0;
    top: -15px;
    font-size: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.woocommerce-account header.woocommerce-Address-title.title a::after {
    font-size: 22px;
    font-family: 'tm-anix';
    content: "\e901";
    color: #747E99;
}

.woocommerce-account .woocommerce form .form-row {
    margin-bottom: 15px;
}

.woocommerce-account .woocommerce form .form-row em {
    color: #747E99;
    font-weight: 500;
    font-size: 12px;
    margin-top: 6px;
}

.woocommerce-account .woocommerce form .form-row input,
.woocommerce-account .woocommerce fieldset {
    border: 1px solid #E2E9F1;
    border-radius: 10px;
}

.woocommerce-account .woocommerce legend {
    margin-left: 20px;
}

.woocommerce-account .woocommerce fieldset {
    padding: 30px;
}

.woocommerce-account button.button {
    background: #ED2C3D !important;
    margin-top: 20px;
    color: #fff !important;
    border-radius: 3px !important;
    transition: all .3s ease-in-out;
}


.woocommerce-account button.button:hover {
    background: #5c5c5c !important;
}

.woocommerce-orders-table__row {
    border-radius: 0;
    border: 1px solid #E2E9F1;
    background: #F3F5F6;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 500;
}

.woocommerce-account a.button {
    background: #fff;
    border-radius: 0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06);
    padding: 14px 20px;
    text-align: center;
}

.woocommerce-account a.button:hover {
    background: #5c5c5c;
    color: #fff;
}

.woocommerce-orders-table__row:not(:last-child) {
    margin-bottom: 6px;
}

.woocommerce-orders-table__header,
.woocommerce-orders-table__row>div {
    width: 20%;
}

.woocommerce-orders-table__header:nth-child(1),
.woocommerce-orders-table__row>div:nth-child(1) {
    width: 15%;
}

.woocommerce-orders-table__header:nth-child(2),
.woocommerce-orders-table__row>div:nth-child(2) {
    width: 25%;
}

.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-status {
    color: #ED2C3D;
}

.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-total {
    font-size: 14px;
}

.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-total>span {
    display: block;
    font-size: 16px;
}

.woocommerce-orders-table__header-wrap {
    margin-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
    font-weight: 600;
}

.woocommerce-table--order-details-notice {
    font-weight: 500;
    font-size: 16px;
    color: #747E99;
}

.woocommerce-table--order-details-notice mark {
    color: #ED2C3D;
    background: none;
}

.tm-acc-order-billing-details {
    border-radius: 0;
    border: 1px solid #E2E9F1;
    background: #F3F5F6;
    padding: 30px;
}

.woocommerce-table--order-details-footer>div {
    border-top: 1px solid #E2E9F1;
    border-bottom: 1px solid #E2E9F1;
    padding-top: 30px;
    padding-bottom: 30px;
}

.woocommerce-table--order-details-footer>div>div:first-child {
    font-weight: 600;
}

.woocommerce-table--order-details-header {
    padding-left: 30px;
    padding-right: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.woocommerce-table--order-details-header,
.woocommerce-account .woocommerce-table__line-item {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
}

.woocommerce-table--order-details-header>div,
.woocommerce-account .woocommerce-table__line-item>div {
    width: 20%;
}

.woocommerce-table--order-details-header>div:first-child,
.woocommerce-account .woocommerce-table__line-item>div:first-child {
    width: 40%;
    font-weight: 600;
}

.woocommerce-table--order-details-products {
    border-radius: 10px;
    border: 1px solid #E2E9F1;
    background: #F3F5F6;
    padding: 30px;
}

.woocommerce form.lost_reset_password .woocommerce-form-row {
    width: 100%;
    float: none;
}

@media (max-width: 1180px) {
    .woocommerce-orders-table__row {
        row-gap: 10px;
    }

    .woocommerce-orders-table__header-wrap.tm-flex {
        display: none;
    }

    .woocommerce-orders-table__row>div {
        width: 30%;
    }

    .woocommerce-orders-table__row>div:nth-child(1) {
        width: 15%;
    }

    .woocommerce-orders-table__row>div:nth-child(2) {
        width: 30%;
    }

    .woocommerce-orders-table__row>div:nth-child(3) {
        width: 25%;
    }

    .woocommerce-orders-table__row>div:nth-child(5) {
        width: 100%;
    }

}

@media (max-width: 1060px) {

    .woocommerce-table--order-details-header.tm-flex {
        display: none;
    }

    .woocommerce-account .woocommerce-table__line-item>div:first-child,
    .woocommerce-account .woocommerce-table__line-item>div {
        width: 100%;
        text-align: right;
    }

    .woocommerce-account .woocommerce-table__line-item>div::before {
        content: attr(data-title) ": ";
        font-weight: 700;
        float: left;
        margin-right: 10px;
    }

    .woocommerce-account .woocommerce-table__line-item:not(:last-child) {
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #ccc;
    }
}

@media (min-width: 981px) {
    .tm-login-wrap {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
}

@media (max-width: 980px) {
    .tm-login-form__img {
        display: none;
    }

    .woocommerce-orders-table__row>div,
    .woocommerce-orders-table__row>div:nth-child(1),
    .woocommerce-orders-table__row>div:nth-child(2),
    .woocommerce-orders-table__row>div:nth-child(3) {
        width: 50%;
    }

    .woocommerce-orders-table__row>div:nth-child(5) {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .woocommerce-message,
    .woocommerce-info,
    .woocommerce-error,
    .woocommerce-noreviews,
    p.no-comments {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100%;
        padding: 20px;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        margin: 0;
        height: 100%;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .woocommerce-account br {
        display: block;
    }

    .woocommerce-orders-table__row {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {

    .tm-login-form__wrap,
    .tm-login-form__form,
    .woocommerce-orders-table__row>div,
    .woocommerce-orders-table__row>div:nth-child(1),
    .woocommerce-orders-table__row>div:nth-child(2),
    .woocommerce-orders-table__row>div:nth-child(3) {
        width: 100%;
    }
}


/* cart
========================================================================== */
.cc-overlay {
    z-index: 1002;
}

.cc-window {
    background-color: #fff;
}

.cc-cart-actions {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    border-top: 1px solid #d3d3d3;
}

.cc-cart-actions .cc-totals {
    height: 65px;
}

.cc-header {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    border-bottom: 1px solid #d3d3d3;
}

.cc-nav ul li a[aria-selected=true] {
    border-bottom: 0 none;
}

.cc_item_total_price {
    padding-bottom: 15px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.cc-cart-actions a.cc-button-primary,
.cc-compass-count {
    background: #A179B7;
    color: #fff;
}

.cc-nav ul li::before {
    display: none;
}

.cc-cart-product a.remove,
.woocommerce .cc-cart-product a.remove {
    position: inherit;
    width: auto;
    line-height: 1.1;
    font-weight: 500;
    text-decoration: underline;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
}

.cc-cart-product a.remove:hover,
.woocommerce .cc-cart-product a.remove:hover {
    text-decoration: none;
}

.cc_item_line.tm-flex {
    display: flex;
}

.cc_item_total_price,
.cc_item_title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.cc_item_title_desc {
    font-weight: 400;
    color: #909090;
}



.cc_item_quantity_update {
    background-color: transparent;
}

.cc-coupon-form .cc-coupon-btn {
    cursor: pointer;
}

.cc-header .cc-nav ul li a {
    font-size: 16px !important;
    font-weight: 700 !important;
    font-family: 'Montserrat', sans-serif;
}

.tm-center-cart {
    max-width: 1370px;
    margin-right: auto;
}

.tm-cart-attribute-summary {
    font-size: 16px;
    line-height: 20px;
}

.woocommerce-cart-form__contents {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.tm-cart__item {
    background: #FFFFFF;
    padding: 24px;
    position: relative;
    border: 1px solid #d1d1d1;
}

.tm-cart__item .product-thumbnail {
    max-width: 70px;
}

.tm-cart__item .product-remove a {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 18px;
    top: 18px;
    font-size: 0;
}

.tm-cart__item .product-remove a::before {
    content: "\e912";
    font-family: 'tm-anix';
    font-size: 24px;
    line-height: 24px;
    color: #B5B5B5;
    display: block;
}

.tm-cart__title.tm-h5 {
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    transition: all .3s ease-in-out;
}

.tm-cart__title:hover {
    opacity: .5;
}

.woocommerce .tm-cart__item a.remove:hover {
    background: none;
    cursor: pointer;
}

.woocommerce .tm-cart__item a.remove:hover:before {
    color: #DF0526;
}

.tm-cart__item .product-thumbnail a {
    display: block;
    max-width: 200px;
    position: relative;
}

.tm-cart__item .product-name,
.tm-cart__item-column {
    flex-grow: 1;
}

.tm-cart__item-price-line {
    row-gap: 20px;
}

.tm-cart__item .product-subtotal .woocommerce-Price-amount,
.tm-cart__item .product-price {
    font-weight: 500;
    color: #8A8888;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}

.tm-cart__item .product-subtotal .woocommerce-Price-amount {
    color: #000;
}

.tm-cart__item .product-price {
    margin-right: 38px;
}

.woocommerce-page .tm-pages__content {
    padding-bottom: 50px;
}

.woocommerce-page .cart-collaterals+div {
    margin-top: 50px;
}

.tm-cart__goto {
    padding-top: 40px;
}

.tm-cart__goto a {
    text-decoration: underline;
}

.tm-cart__goto a:hover {
    text-decoration: none;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    float: none;
}

.tm-cart-totals {
    background: #FFFFFF;
    border: 5px solid #F3F3F3;
    border-radius: 6px;
    padding: 20px;
}

.woocommerce-page .tm-cart-totals.cart_totals {
    width: 100%;
}

.woocommerce-checkout ul li::before,
.woocommerce-cart .woocommerce-message,
.woocommerce .cart-collaterals::after,
.woocommerce .cart-collaterals::before,
.woocommerce-page .cart-collaterals::after,
.woocommerce-page .cart-collaterals::before {
    display: none;
}



.tm-cart__totals-table {
    width: 100%;
    margin-bottom: 30px;
    line-height: 24px;
}

.woocommerce-shipping-calculator {
    margin-bottom: 30px;
}

.order-total-sum,
.order-total-title {
    font-size: 24px;
}

.order-total-title {
    color: #000;
}

.order-total-sum {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr th {
    border: 0 none;
}

.woocommerce-cart .cart-collaterals .cart_totals tr th {
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #554c43;
    padding-right: 15px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

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

.woocommerce-cart .cart-collaterals .cart_totals table,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    margin-bottom: 0;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    padding: 0;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
}


.product-count__content,
.woocommerce-page .product-quantity {
    position: relative;
    width: 80px;
}

.tm-grid-products input,
.product-count__content input,
.woocommerce-page .product-quantity input.qty {
    width: 80px;
    outline: none;
    border: 0 none;
    font-size: 18px;
}

.product-count__content input::-webkit-outer-spin-button,
.product-count__content input::-webkit-inner-spin-button,
.woocommerce-page .product-quantity input.qty::-webkit-outer-spin-button,
.woocommerce-page .product-quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-count__content input[type=number],
.woocommerce-page .product-quantity input.qty[type=number] {
    -moz-appearance: textfield;
}

.tm-product__price-btn .product-quantity {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #EEF1F1;
    padding: 8px;
    margin-bottom: 8px;
}

.tm-product__price-btn .product-quantity input.qty {
    width: calc(100% - 60px);
    margin-left: 30px;
}

.product-count__button {
    position: absolute;
    top: 0;
    z-index: 10;
    height: 20px;
    display: flex;
    align-items: center;
}

.tm-product__price-btn .product-count__button {
    height: 25px;
    width: 25px;
    bottom: 0;
    margin: auto;
}

.product-count__button:hover {
    cursor: pointer;
}

.product-count__top {
    right: 0;
}

.product-count__down {
    left: 0;
}

.tm-product__price-btn .product-count__top {
    right: 12px;
}

.tm-product__price-btn .product-count__down {
    left: 12px;
}

.product-count__button::before {
    font-family: 'tm-anix';
    font-size: 20px;
    color: #b7b7b7;
}

.tm-product__price-btn .product-count__button::before {
    font-size: 12px;
}

.product-count__button:hover:before {
    color: #b9011f;
}

.product-count__top::before {
    content: "\e911";
}

.product-count__down::before {
    content: "\e910";
}

.wc-list-product dl.variation {
    margin-top: 15px;
}

.wc-list-product dl.variation dt,
.wc-list-product dl.variation dd,
.tm-cart__item dl.variation dt,
.tm-cart__item dl.variation dd {
    float: left;
    line-height: 20px;
}

.wc-list-product dl.variation dd,
.tm-cart__item dl.variation dd {
    margin-right: 20px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.wc-list-product dl.variation p,
.tm-cart__item dl.variation p {
    margin-bottom: 0;
}



/* checkout
========================================================================== */
.woocommerce-checkout #payment ul.payment_methods,
.woocommerce-checkout #payment div.form-row,
.woocommerce form .form-row {
    padding: 0;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
    border: 1em solid #F6F6F6;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
    background: #F6F6F6;
}

.wc_payment_method label {
    font-weight: 500;
}

.woocommerce form .form-row input.input-text {
    border: 1px solid #e1e1e1;
    height: 38px;
    border-radius: 0;
    padding: 8px 12px;
    font-size: 14px;
}

.woocommerce form .form-row textarea {
    border: 1px solid #e1e1e1;
    padding: 10px;
    resize: vertical;
}

.woocommerce form .woocommerce-billing-fields__field-wrapper label {
    font-size: 14px;
    margin-bottom: 3px;
}

.wc-list-product {
    border: 5px solid #F3F3F3;
    padding: 24px;
    border-radius: 5px;
    margin-top: 25px;
}

.wc-list-product .cart_item:not(:last-child) {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e1e1e1;
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
    border: 0 none;
}

.tm-cart__totals-shipping ul,
.tm-cart__totals-shipping p {
    font-weight: 400;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
    background: none;
    border-radius: 0;
}

.wc-checkout-total {
    background: #FFFFFF;
    border: 5px solid #F3F3F3;
    border-radius: 10px;
    padding: 32px 40px;
}

form.checkout.woocommerce-checkout>.tm-grid {
    margin-left: -70px;
}

form.checkout.woocommerce-checkout>.tm-grid>* {
    padding-left: 70px;
}

/* .woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last,
.woocommerce form .woocommerce-billing-fields__field-wrapper .form-row.validate-email {
    width: 100%;
} */
.woocommerce form .woocommerce-billing-fields__field-wrapper .form-row:first-child {
    width: 100%;
}

.woocommerce form .woocommerce-billing-fields__field-wrapper .form-row:first-child span.woocommerce-input-wrapper {
    display: flex;
    column-gap: 4px;
}

.woocommerce form .woocommerce-billing-fields__field-wrapper .form-row:first-child span.woocommerce-input-wrapper>*:nth-child(3) {
    margin-left: 8px;
}

.woocommerce form .woocommerce-billing-fields__field-wrapper #billing_company_field label span,
.woocommerce form .woocommerce-billing-fields__field-wrapper #billing_tax_number_field label>span {
    display: none;
}

.woocommerce-billing-fields__field-wrapper {
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
}

.woocommerce form .woocommerce-billing-fields__field-wrapper .form-row {
    margin-bottom: 15px;
    width: 50%;
    padding-left: 15px;
}


.woocommerce form .woocommerce-billing-fields__field-wrapper .form-row.thwcfd-field-email {
    width: 100%;
}



.woocommerce form .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px;
}

.woocommerce ul#shipping_method li {
    padding-left: 0;
}

.woocommerce form .form-row.place-order {
    margin-bottom: 0;
}

.woocommerce .wc-checkout-total button.button.alt {
    float: none;
    width: 100%;
    color: #fff;
    font-weight: 600;
    height: 40px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.woocommerce-checkout #payment ul.payment_methods li,
.woocommerce form .form-row input.input-text,
.wc-checkout-qty,
.wc-list-product .wc-checkout-name,
.woocommerce .wc-checkout-total button.button.alt {
    font-family: "Montserrat", sans-serif;
}

.woocommerce-privacy-policy-text {
    font-size: 14px;
    line-height: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.woocommerce form .form-row label.checkbox {
    display: block;
    line-height: 20px;
    margin-bottom: 10px;
}

.woocommerce form .form-row .input-checkbox {
    width: 20px;
    height: 20px;
}

.wc-list-product .wc-checkout-name {
    text-transform: uppercase;
    color: #554c43;
}

.wc-list-product span.woocommerce-Price-amount.amount {
    font-weight: 600;
    color: #000;
    font-family: 'Montserrat', sans-serif;
}

.woocommerce-checkout #payment ul.payment_methods li {
    text-transform: uppercase;
    padding-left: 0;
}

.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::before,
.woocommerce-checkout #payment ul.payment_methods li::before {
    display: none;
}

@media (max-width: 480px) {
    .woocommerce form .woocommerce-billing-fields__field-wrapper .form-row {
        width: 100%;
    }

    .wc-checkout-total {
        padding: 20px;
    }
}

/* select
========================================================================== */
.select2-dropdown,
.select2-container--default .select2-selection--single {
    border: 1px solid #e1e1e1;
}

.select2-results__option::before {
    display: none;
}

.select2-container .select2-selection--single {
    height: 38px;
    border: 1px solid #e1e1e1;
    padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow::after {
    font-family: 'tm-anix';
    content: "\e90f";
    font-size: 12px;
    line-height: 1.5;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
    background: #000;
}

.select2-container--default .select2-selection--single {
    height: 38px;
    line-height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.2;
    height: 38px;
}


/* thank you
========================================================================== */
.tm-thank-you {
    width: 557px;
    margin-left: auto;
    margin-right: auto;
}

.tm-thank-you__header,
.tm-thank-you__footer {
    border-color: #e1e1e1;
    border-style: solid;
}

.tm-thank-you__header {
    border-width: 1px 1px 0 1px;
    border-radius: 10px 10px 0 0;
    padding: 48px 29px 30px;
    font-size: 16px;
    line-height: 20px;
}

.tm-thank-you__footer {
    border-width: 0 1px 1px 1px;
    border-radius: 0 0 10px 10px;
    padding: 48px 60px;
}

.tm-thank-you__img {
    display: flex;
}

.woocommerce-order-overview__date strong,
.woocommerce-order-overview__total strong {
    font-family: 'Montserrat', sans-serif;
}

.woocommerce ul.order_details {
    margin: 0;
}

.tm-thank-you .woocommerce-table__line-item {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    padding: 10px;
}

.tm-thank-you .woocommerce-table__line-item .product-thumbnail {
    max-width: 100px;
    margin-right: 20px;
    display: flex;
}

.tm-thank-you__item-img {
    display: flex;
    margin-right: 10px;
}

.tm-thank-you__item-img img {
    border-radius: 10px;
}

.tm-thank-you .woocommerce-table__product-name {
    display: flex;
    align-items: center;
}

.tm-thank-you .woocommerce-table__product-name a {
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

@media (max-width:595px) {
    .tm-thank-you {
        width: 100%;
    }

    .tm-thank-you__header {
        padding: 28px 36px;
    }

    .tm-thank-you__footer {
        padding: 28px 30px;
    }
}

/* other pages
============================================================================ */
.wp-block-group.alignfull {
    width: 100vw;
    left: calc(-50vw + 50%);
    position: relative;
}

.wp-block-group.alignfull>div {
    max-width: 1620px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.alignwide {
    margin-left: calc(25% - 25vw);
    margin-right: calc(25% - 25vw);
}

.wp-block-button__link:hover {
    background: rgb(77, 77, 77);
    color: #fff;
}

/* swiper
========================================================================== */
.swiper-wrapper {
    box-sizing: border-box;
}

.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet-active {
    background: #A179B7;
}

.swiper-button {
    width: 35px;
    height: 35px;
    background: #EEF1F1;
    transition: all .3s ease-in-out;
    border-radius: 4px;
}

.swiper-button:hover {
    background: #A179B7;
}


.tm-product__images-main:hover .tm-product__images-left.swiper-button-disabled,
.tm-product__images-main:hover .tm-product__images-right.swiper-button-disabled,
.swiper:hover .swiper-button.swiper-button-disabled {
    opacity: .5;
}

.swiper-button-prev {
    left: -35px;
}

.swiper-button-next {
    right: -35px;
}

.swiper-button::after {
    font-size: 13px;
    color: #000;
}


.swiper-button:hover:after {
    color: #fff;
}

@media (min-width: 1181px) {

    .tm-product__images-main .tm-product__images-left,
    .tm-product__images-main .tm-product__images-right {
        visibility: hidden;
        transform: translateY(70%);
        opacity: 0;
    }

    .tm-product__images-main:hover .tm-product__images-left,
    .tm-product__images-main:hover .tm-product__images-right {
        visibility: visible;
        opacity: 1;
        transform: translateY(0%);
    }
}

@media (max-width: 1440px) {
    .swiper-button-prev {
        left: 0;
    }

    .swiper-button-next {
        right: 0;
    }
}

@media (max-width: 767px) {
    .swiper-button-prev {
        left: 20px;
    }

    .swiper-button-next {
        right: 20px;
    }

    .tm-product-page-slider-wishlist {
        width: calc(100% + 20px);
    }
}


/* lang 
========================================================================== */
.tm-lang .wcml_currency_switcher,
.tm-lang .wpml-ls-legacy-dropdown {
    width: 63px;
}

.tm-lang .wcml-dropdown li,
.tm-lang .wcml_currency_switcher a,
.tm-lang .wpml-ls-legacy-dropdown a {
    background: none;
    border: 0 none;
    color: #000;
}

.tm-lang .wpml-ls-legacy-dropdown a {
    padding-top: 6px;
}

.tm-lang .wcml_currency_switcher li::before,
.tm-lang .wpml-ls-legacy-dropdown li::before {
    display: none;
}

.tm-lang .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle,
.tm-lang .wcml-dropdown a.wcml-cs-item-toggle {
    padding-right: 17px;
}

.tm-lang .wcml_currency_switcher a:hover,
.tm-lang .wcml_currency_switcher a:focus,
.tm-lang .wpml-ls-legacy-dropdown a:hover,
.tm-lang .wpml-ls-legacy-dropdown a:focus {
    background: none;
}

.tm-lang .wcml-dropdown a.wcml-cs-item-toggle:after,
.tm-lang .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
    border: 0 none;
    content: "\e90f";
    font-family: 'tm-anix';
    top: 10px;
    font-size: 9px;
}

.tm-lang .wcml-dropdown .wcml-cs-submenu,
.tm-lang .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
    border-top: 0 none;
}

.tm-lang .wcml_currency_switcher:hover a,
.tm-lang .wcml_currency_switcher:focus a,
.tm-lang .wcml_currency_switcher .wpml-ls-item:focus a,
.tm-lang .wcml_currency_switcher .wpml-ls-current-language:hover>a,
.tm-lang .wcml_currency_switcher a:focus,
.tm-lang .wcml_currency_switcher a:hover,
.tm-lang .wpml-ls-legacy-dropdown:hover a,
.tm-lang .wpml-ls-legacy-dropdown:focus a,
.tm-lang .wpml-ls-legacy-dropdown .wpml-ls-item:focus a,
.tm-lang .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover>a,
.tm-lang .wpml-ls-legacy-dropdown a:focus,
.tm-lang .wpml-ls-legacy-dropdown a:hover {
    background: #f9f7f7;
    color: #000;
}

.tm-lang .wcml_currency_switcher .wpml-ls-sub-menu:hover a:hover,
.tm-lang .wpml-ls-legacy-dropdown .wpml-ls-sub-menu:hover a:hover {
    color: #686868;
}

.tm-lang .wcml_currency_switcher a,
.tm-lang .wpml-ls-legacy-dropdown a {
    font-weight: 400;
}

@media (max-width: 1250px) {
    .tm-lang .wpml-ls-legacy-dropdown a {
        padding-top: 7px;
    }

    .wpml-ls-legacy-dropdown a {
        padding: 5px 10px 5px 0;
    }
}


/* social
========================================================================== */
.tm-social a {
    color: #898989;
    transition: all .3s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    background: #D9D9D9;
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.tm-social {
    column-gap: 15px;
}

.tm-social a:hover {
    color: #fff;
}

.tm-social a.tm-anix-icon-pinterest:hover,
.tm-social a.tm-anix-icon-youtube3:hover {
    background: #f60002;
}


.tm-social a.tm-anix-icon-facebook:hover {
    background: #1675ec;
}

.tm-social a.tm-anix-icon-vk:hover {
    background: #457abb;
}

.tm-social a.tm-anix-icon-instagram2:hover {
    background: #f21db2;
}

.tm-social a.tm-anix-icon-whatsapp:hover {
    background: #24e034;
}

.tm-social a.tm-anix-icon-tiktok:hover {
    background: #666666;
}

.tm-social a.tm-anix-icon-telegram:hover {
    background: #11a0ff;
}


/* latest news
========================================================================== */
.tm-blog-card__img {
    display: flex;
    margin-bottom: 12px;
}

.tm-blog-card__readmore a {
    font-size: 12px;
    text-decoration: underline;
}

.tm-blog-card__readmore a:hover {
    text-decoration: none;
}

.tm-blog-card__content {
    font-size: 15px;
}

.tm-blog-card__img a:hover,
.tm-blog-card__title a:hover {
    opacity: .5;
}

@media (max-width: 979px) {
    .tm-latests-news {
        width: calc(100% + 20px);
    }
}

@media (max-width: 570px) {
    .tm-latests-news {
        width: calc(100% + 20px);
    }
}

@media (max-width: 480px) {
    .tm-blog-card__title.tm-h5 {
        font-size: 14px;
    }

    .tm-blog-card__content {
        font-size: 11px;
        line-height: 1.4;
    }

    .tm-blog-card__readmore a {
        font-size: 10px;
    }
}



/* 404
========================================================================== */
.tm-404__content {
    max-width: 550px;
    margin: 180px auto 0;
}


/* breadcrumb
========================================================================== */
.tm-breadcrumb-wrapper {
    padding: 20px 0 0;
    margin-bottom: 30px;
}

.tm-breadcrumb {
    color: #212121;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 15px;
}

.tm-breadcrumb span.current-item {
    color: #212121;
    font-weight: 500;
}

.tm-breadcrumb .widget {
    margin: 0;
}

.tm-breadcrumb span a {
    color: #212121;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
}

.tm-breadcrumb span a:hover {
    color: #8f8f8f;
    text-decoration: underline;
}


/* pagination
========================================================================== */
.category-pagination .pagination {
    margin-top: 50px;
    margin-bottom: 50px;
}

.woocommerce-pagination ul.page-numbers span.page-numbers,
.woocommerce-pagination ul.page-numbers a.page-numbers,
.category-pagination .nav-links a.page-numbers,
.category-pagination .nav-links span.page-numbers {
    display: flex;
    min-width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    color: #8A8888;
    transition: all 0.3s ease-out;
    border-radius: 4px;
    font-size: 14px;
    background: #EEF1F1;
}

.woocommerce-pagination ul.page-numbers li:not(:last-child),
.category-pagination .nav-links>*:not(:last-child) {
    margin-right: 7px;
}

.woocommerce-pagination ul.page-numbers a.page-numbers.current,
.woocommerce-pagination ul.page-numbers span.page-numbers.current,
.category-pagination .nav-links a.page-numbers.current,
.category-pagination .nav-links span.page-numbers.current,
.woocommerce-pagination ul.page-numbers a.page-numbers:hover,
.category-pagination .nav-links a.page-numbers:hover {
    color: #fff;
    background: #A179B7;
}

.category-pagination .nav-links span.dots {
    background: none;
}

.category-pagination .nav-links {
    display: flex;
    justify-content: center;
}

.woocommerce nav.woocommerce-pagination {
    margin-top: 40px;
}

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

.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul li {
    border: 0 none;
}

.woocommerce nav.woocommerce-pagination ul li::before {
    display: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    padding: 0;
}


/* accordion
========================================================================== */
.tm-content-accordion-list {
    position: relative;
    width: 100%;
    height: auto;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #D3D3D3;
}

.tm-content-accordion-list>div {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}



.tm-content-accordion-list>div.active {
    border-bottom: 0;
    padding-bottom: 0;
}

.tm-content-accordion-list>div .tm-content-accordion-list__title::after {
    right: 0;
    top: 24px;
    position: absolute;
    font-family: 'tm-anix';
    content: "\e90f";
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    color: #6d6d6d;
    font-weight: 400;
    color: #000;
    font-size: 24px;
    height: 24px;
    line-height: 24px;
}

.tm-content-accordion-list>div.active .tm-content-accordion-list__title::after {
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    color: #000;
    content: "\e90e";
}

.tm-content-accordion-list__title {
    font-weight: 500;
    color: #000;
    font-size: 15px;
    line-height: 26px;
    transition: all 0.3s ease-out;
    padding: 22px 42px 22px 0;
    background: #fff;
    border-width: 1px 0 0 0;
    border-style: solid;
    border-color: #D3D3D3;
}

.tm-content-accordion-list>div.active .tm-content-accordion-list__title {
    color: #000;
}

.tm-content-accordion-list__text {
    padding: 0 0 20px;

}

.tm-content-accordion-list__text p:last-child {
    margin-bottom: 0;
}

.tm-content-accordion-list>div:first-child .tm-content-accordion-list__title {
    padding-top: 2px;
    border: 0 none;
}

.tm-content-accordion-list>div:first-child .tm-content-accordion-list__title::after {
    top: 5px;
}

@media (max-width: 980px) {

    .tm-content-accordion-list__text {
        padding: 18px 78px;
    }

}

@media (max-width: 768px) {

    .tm-content-accordion-list__text {
        padding: 18px 20px;
    }

    .tm-content-accordion-list>div {
        max-width: 100%;
    }
}

/* lang 
========================================================================== */
.wpml-ls-legacy-list-horizontal {
    padding: 0;
}

.tm-lang .wpml-ls-legacy-list-horizontal li:first-child::before {
    display: none;
}

.tm-lang .wpml-ls-legacy-list-horizontal a {
    color: #fff;
}

.tm-lang .wpml-ls-legacy-list-horizontal li::before {
    content: '/';
    color: #fff;
    font-size: 14px;
    top: 4px;
    display: block;
}

.wpml-ls-legacy-list-horizontal .wpml-ls-item {
    padding-left: 5px;
}

.wpml-ls-legacy-list-horizontal .wpml-ls-item:first-child a,
.wpml-ls-legacy-list-horizontal .wpml-ls-item:first-child {
    padding-left: 0;
}

@media (max-width: 480px) {
    .tm-lang .wpml-ls-legacy-list-horizontal li::before {
        font-size: 12px;
    }
}

/* .tm-lang .wpml-ls-legacy-dropdown {
    width: 63px;
}

.tm-lang .wpml-ls-legacy-dropdown a {
    background: none;
    border: 0 none;
    color: #000;
}

.tm-lang .wpml-ls-legacy-dropdown li::before {
    display: none;
}

.tm-lang .wpml-ls-legacy-dropdown a:hover,
.tm-lang .wpml-ls-legacy-dropdown a:focus {
    background: none;
}

.tm-lang .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
    border: 0.2em solid transparent;
    border-top: 0.4em solid;
}

.tm-lang .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
    border-top: 0 none;
}

.tm-lang .wpml-ls-legacy-dropdown:hover a,
.tm-lang .wpml-ls-legacy-dropdown:focus a,
.tm-lang .wpml-ls-legacy-dropdown .wpml-ls-item:focus a,
.tm-lang .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover>a,
.tm-lang .wpml-ls-legacy-dropdown a:focus,
.tm-lang .wpml-ls-legacy-dropdown a:hover {
    background: #f9f7f7;
    color: #000;
}

.tm-lang .wpml-ls-legacy-dropdown .wpml-ls-sub-menu:hover a:hover {
    color: #864627;
} */



/* search
========================================================================== */
.tm-search-card {
    background: #F4F4F4;
    border-radius: 6px;
    padding: 15px 18px;
    text-align: center;
}

.tm-search-card__content {
    line-height: 24px;
}

.dgwt-wcas-suggestions-wrapp {
    width: 100% !important;
    left: 0 !important;
}

.dgwt-wcas-suggestions-wrapp>* {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto
}


/* footer
========================================================================== */
.tm-footer__logo {
    max-width: 240px;
}

.tm-footer__logo2 {
    max-width: 150px;
}

.tm-footer__line1 {
    padding-bottom: 70px;
}

.tm-footer__line2 {
    padding-bottom: 130px;
}

.tm-footer-wrapper li {
    padding-left: 0;
}

.tm-footer-wrapper li:not(:last-child) {
    margin-bottom: 10px;
}

.tm-footer-wrapper li::before {
    display: none;
}

.tm-footer-wrapper li a {
    color: #000;
}

.tm-footer-wrapper li a:hover {
    text-decoration: underline;
}

.tm-footer ul {
    margin-bottom: 0;
    margin: 0;
    list-style: none;
}

.tm-footer__copyright {
    font-size: 14px;
}



/* popup
========================================================================== */
.form-popup {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
}

#becomeMember {
    max-width: 750px;
}

.form-popup-content {
    border-radius: 0;
    background: #fff;
    padding: 30px;
}

@media (max-width:1440px) {
    .form-popup-content__title {
        font-size: 35px;
        line-height: 40px;
    }
}

@media (max-width:480px) {
    .form-popup-content__title {
        font-size: 28px;
        line-height: 40px;
    }
}

/* filter
========================================================================== */
.widget.widget_wpc_chips_widget {
    margin: 0;
}

body .wpc-filter-chips-list li.wpc-filter-chip:not(.wpc-chip-reset-all) a {
    border-color: #1B6EEA !important;
}

.wpc-custom-selected-terms ul.wpc-filter-chips-list {
    margin-bottom: 0;
}

.wpc-filter-chips-list a,
body .wpc-filter-chips-list li.wpc-filter-chip a {
    padding: 8px 15px 7px !important;
}

.tm-archive-product__chips .wpc-custom-selected-terms ul.wpc-filter-chips-list {
    margin-bottom: 0;
}

.tm-archive-product__chips .wpc-custom-selected-terms ul.wpc-filter-chips-list li:last-child {
    margin-bottom: 30px;
}

.wpc-filters-widget-wrapper .wpc-posts-found,
.wpc-filter-chip::before,
.wpc-checkbox-item::before,
.tm-archive-product .tm-centered-content>.wpc-custom-selected-terms {
    display: none;
}


.wpc-filters-main-wrap .wpc-filter-title {
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    color: #554c43;
    font-size: 18px;
}

.wpc-filters-range-column input {
    border: 1px solid #ccd0dc;
    outline: none;
    height: 40px;
    padding-left: 10px;
}

.tm-archive-product__sidebar-inner>section .widget-title,
.wpc-filter-set-widget-title .widget-title {
    font-size: 35px;
    text-transform: uppercase;
    color: #554c43;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding-top: 20px;
}

.widget_wpc_filters_widget,
body .wpc-filters-open-button-container a.wpc-open-close-filters-button {
    margin-bottom: 0 !important;
}

.wpc-term-item-content-wrapper {
    position: relative;
    padding-left: 35px;
}

.wpc-term-item-content-wrapper input {
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    height: 0;
    width: 0;
}

.wpc-filters-main-wrap li.wpc-term-item input[type=checkbox] {
    position: absolute;
}

.wpc-term-item-content-wrapper label::before {
    width: 22px;
    height: 22px;
    border-radius: 2px;
    border: 1px solid #CCD0DC;
    position: absolute;
    left: 0;
    top: -1px;
    content: '';
}

.wpc-term-item-content-wrapper input:checked~label::before {
    background: #A179B7;
    border: 1px solid #A179B7;
}

.wpc-term-item-content-wrapper label::after {
    left: 8px;
    top: 2px;
    content: '';
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
}

.wpc-term-item-content-wrapper input:checked~label::after {
    border: solid #fff;
    border-width: 0 2px 2px 0;
    width: 6px;
    height: 12px;
}

.wpc-term-item-content-wrapper label a {
    color: #000;
}

.wpc-term-count {
    font-family: 'Montserrat', sans-serif;
}

/* form
========================================================================== */
.wpcf7-form-control {
    background: transparent;
    border-radius: 8px;
    width: 100%;
    height: 54px;
    line-height: 54px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 30px;
    border-width: 2px;
    border-color: #d9d9d9;
    border-style: solid;
    outline: none;
    color: #000;
}

.wpcf7-not-valid {
    box-shadow: 0 0 15px #dc323257;
}

.wpcf7-form-control::-webkit-input-placeholder {
    color: #8c7c73;
}

.wpcf7-form-control::-moz-placeholder {
    color: #8c7c73;
}

.wpcf7-form-control:-moz-placeholder {
    color: #8c7c73;
}

.wpcf7-form-control:-ms-input-placeholder {
    color: #8c7c73;
}

.wpcf7-form-control:focus,
.wpcf7-form-control:active {
    border-color: #1e1e27;
    outline: none;
}

.wpcf7-textarea {
    height: 100px;
    resize: vertical;
}

.wpcf7-form-control.wpcf7-acceptance label {
    display: block;
    line-height: 24px;
}

.wpcf7-form-control.wpcf7-acceptance {
    border: 0 none;
    display: block;
    padding: 0;
    margin-bottom: 25px;
    height: auto;
}

.tm-form-btn,
.wpcf7-submit {
    width: 160px;
    background: #31D6C8;
    border-radius: 999px;
    height: 48px;
    border: 0 none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: none;
    transition: background .25s ease-out;
    margin-left: auto;
    margin-right: auto;
}

.tm-form-btn.tm-form-btn_left {
    margin-left: 0;
}

.tm-form-btn.tm-form-btn_right {
    margin-right: 0;
}

.tm-form-btn:hover,
.wpcf7-submit:hover {
    background: #28B5A8;
    color: #fff;
    cursor: pointer;
}

.wpcf7-spinner {
    display: none;
}

.wpcf7-not-valid-tip {
    position: absolute;
    left: 0;
    bottom: -35px;
    font-size: 12px;
}

.wpcf7-list-item {
    display: flex;
    align-items: center;
    position: relative;
}

.tm-content-form {
    max-width: 940px;
}

.tm-content-form .tm-grid {
    row-gap: 10px;
    margin-left: -10px;
}

.tm-content-form .tm-grid>* {
    padding-left: 10px;
}

@media (max-width:480px) {
    .wpcf7-form-control {
        margin-bottom: 12px;
    }
}

/* tabs 
========================================================================== */
.tm-tabs-content__item {
    display: none;
}

.tm-tabs-content__item.tm-tabs-content__item-active {
    display: block;
}


.tm-tabs-triggers__item {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    color: #000;
    padding-bottom: 12px;
    position: relative;
    background: none;
    outline: none;
    border: 0 none;
    font-family: "Montserrat", sans-serif;
}

.tm-tabs-triggers__item:hover {
    cursor: pointer;
}

.tm-tabs-triggers__item::after {
    content: '';
    width: 0%;
    height: 4px;
    background: #A179B7;
    bottom: 0;
    left: 0;
    display: block;
    position: absolute;
    transition: all 0.3s ease-out;
}

.tm-tabs-triggers__item:hover::after,
.tm-tabs-triggers__item-active::after {
    width: 100%;
}

.tm-tabs-triggers__item:not(:last-child) {
    margin-right: 45px;
}


/* main style
========================================================================== */
.tm-relative {
    position: relative;
}

.wp-block-separator {
    height: 1px;
    border: 0 none;
}

:where(.wp-block-columns.tm-two-column-space.is-layout-flex) {
    gap: 120px;
}

.cmplz-marketing .cmplz-manage-consent,
.grecaptcha-badge,
.vp-portfolio__item-meta-title {
    display: none;
}

.vp-portfolio__items-style-fade .vp-portfolio__item-overlay {
    background-color: rgba(0, 0, 0, .2);
}

.tm-youtube-wrap {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.tm-youtube {
    width: 100%;
    position: relative;
    padding: 58% 0 0 0;
}

.tm-youtube iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

body.mega-menu-menu-1-mobile-open,
.tm-fix-body {
    overflow: hidden;
    position: fixed;
    width: 100vw;
    height: 100vh;
}

.tm-main {
    padding: 130px 0 80px;
    flex: 1 1 auto;
}

.tm-page {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tm-centered-content {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.tm-centered-content_small {
    max-width: 1160px;
}

.tm-padding {
    padding: 80px 0;
}

.tm-smaller-padding {
    padding: 30px 0;
}

.tm-small-padding {
    padding: 40px 0;
}

.tm-middle-padding {
    padding: 60px 0;
}


.tm-padding-no-bottom {
    padding-bottom: 0;
}

.tm-flex {
    display: flex;
    flex-wrap: wrap;
}

.tm-flex-nw {
    display: flex;
}

.tm-flex-middle {
    align-items: center;
}

.tm-flex-center {
    justify-content: center;
}

.tm-flex-space {
    justify-content: space-between;
}

.tm-flex-end {
    justify-content: flex-end;
}

.tm-flex-column {
    flex-direction: column;
}

.tm-flex-column-end {
    align-items: flex-end;
}

.tm-grid-right {
    order: 2;
}

.tm-col-gap5 {
    column-gap: 5px;
}

.tm-col-gap10 {
    column-gap: 10px;
}

.tm-col-gap15 {
    column-gap: 15px;
}

.tm-col-gap20 {
    column-gap: 20px;
}

.tm-col-gap30 {
    column-gap: 30px;
}

.tm-col-gap45 {
    column-gap: 45px;
}

.tm-row-gap5 {
    row-gap: 5px;
}

.tm-row-gap10 {
    row-gap: 10px;
}

.tm-row-gap15 {
    row-gap: 15px;
}

.tm-row-gap20 {
    row-gap: 20px;
}

.tm-row-gap25 {
    row-gap: 25px;
}

.tm-gap10 {
    gap: 10px;
}

.tm-gap15 {
    gap: 15px;
}

.tm-gap20 {
    gap: 20px;
}

.tm-gap30 {
    gap: 30px;
}

.tm-gap40 {
    gap: 40px;
}

.tm-grid {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -30px;
    row-gap: 30px;
}

.tm-grid>* {
    padding-left: 30px;
    box-sizing: border-box;
}

.tm-grid__width-1-1 {
    width: 100%;
}

.tm-grid__width-1-2 {
    width: 50%;
}

.tm-grid__width-5-20 {
    width: 55%;
}

.tm-grid__width-1-3 {
    width: 33.333%;
}

.tm-grid__width-2-3 {
    width: 35%;
}

.tm-grid__width-1-4 {
    width: 25%;
}

.tm-grid__width-1-5 {
    width: 20%;
}

.tm-grid__width-1-6 {
    width: 16.666%;
}

.tm-grid__width-1-8 {
    width: 80%;
}

.tm-grid__width-1-7 {
    width: 70%;
}

.tm-grid__width-7-10 {
    width: 75%;
}

.tm-grid__width-6-10 {
    width: 60%;
}

.tm-grid__width-6-20 {
    width: 65%;
}

.tm-grid__width-4-10 {
    width: 40%;
}

.tm-grid__width-4-20 {
    width: 45%;
}

.tm-grid__width-3-10 {
    width: 30%;
}

.tm-grid__width-3-20 {
    width: 35%;
}

@media (min-width: 782px) {
    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis] {
        flex-grow: 1 !important;
    }
}

@media (max-width: 1180px) {
    :where(.wp-block-columns.tm-two-column-space.is-layout-flex) {
        gap: 90px;
    }

    .tm-grid__width-1-6 {
        width: 33.333%;
    }
}

@media (max-width: 980px) {
    :where(.wp-block-columns.tm-two-column-space.is-layout-flex) {
        gap: 60px;
    }

    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        flex-basis: 0 !important;
    }

    .wp-block-columns {
        flex-wrap: wrap !important;
    }

    .tm-grid-right {
        order: inherit;
    }

    .tm-grid__width-1-3,
    .tm-grid__width-1-4 {
        width: 50%;
    }

    .tm-grid__width-2-3,
    .tm-grid__width-5-20,
    .tm-grid__width-6-20,
    .tm-grid__width-4-20,
    .tm-grid__width-1-2,
    .tm-grid__width-2-3,
    .tm-grid__width-1-5,
    .tm-grid__width-1-8,
    .tm-grid__width-1-7,
    .tm-grid__width-7-10,
    .tm-grid__width-6-10,
    .tm-grid__width-6-20,
    .tm-grid__width-4-10,
    .tm-grid__width-3-10,
    .tm-grid__width-3-20 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .tm-grid__width-1-6 {
        width: 50%;
    }

    .tm-grid__width-1-3,
    .tm-grid__width-1-4 {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis] {
        flex-grow: 0 !important;
    }

    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        flex-basis: 100% !important;
    }
}

@media (max-width: 480px) {
    .tm-grid__width-1-6 {
        width: 100%;
    }

    .tm-grid>*:last-child {
        margin-bottom: 0;
    }
}

h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.tm-h1,
.tm-h2,
.tm-h3,
.tm-h4,
.tm-h5,
.tm-h6 {
    font-weight: 600;
    line-height: 120%;
    position: relative;
    z-index: 3;
    font-family: "GigaSans", sans-serif;
}

h1,
.tm-h1,
h2,
.tm-h2 {
    font-size: 44px;
}

h3,
.tm-h3 {
    font-size: 24px;
}

h4,
.tm-h4 {
    font-size: 22px;
}

h5,
.tm-h5 {
    font-size: 20px;
}

h6,
.tm-h6 {
    font-size: 18px;
}

.size13 {
    font-size: 13px;
}

.size14 {
    font-size: 14px;
}

.size16 {
    font-size: 16px;
}

.extrabold {
    font-weight: 800;
}


.bold {
    font-weight: 700;
}

.semibold {
    font-weight: 600;
}

.medium {
    font-weight: 500;
}

.regular {
    font-weight: 400;
}

.tm-no-color-link a {
    color: #000;
}

.tm-contrast-content a,
.color-white {
    color: #fff;
}

.tm-contrast-content {
    color: #DADADA;
}

.color-black {
    color: #000;
}

.color-grey {
    color: #909090;
}

.color-green {
    color: #00BA13;
}

.color-red {
    color: #A179B7;
}

.tm-grey-bg {
    background: #F6F6F6;
}

.text-center {
    text-align: center;
}

.tm-text-purple {
    color: #A179B7;
}

.trans {
    text-transform: uppercase;
}

.maxcenter {
    margin-left: auto;
    margin-right: auto;
}

.max400 {
    max-width: 400px;
}

.max440 {
    max-width: 440px;
}

.max520 {
    max-width: 520px;
}

.max680 {
    max-width: 680px;
}

.max900 {
    max-width: 900px;
}

.max1080 {
    max-width: 1080px;
}

.max1140 {
    max-width: 1140px;
}

.tm-column-right {
    order: 2;
}


.lh16 {
    line-height: 1.6;
}

.lh18 {
    line-height: 1.8;
}


/* ul {
    padding: 0;
    margin-left: 0;
    list-style: none;
}

ul li {
    position: relative;
    padding-left: 15px;
}

ul li:not(:last-child) {
    display: block;
    margin-bottom: 5px;
}

ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 20px;
    background: #000;
    border-radius: 50%;
    width: 5px;
    height: 5px;
}


ol {
    counter-reset: num;
    list-style-type: none;
    margin-left: 0;
    padding: 0;
}

ol li {
    padding-left: 35px;
    position: relative;
}

ol li:not(:last-child) {
    display: block;
    margin-bottom: 15px;
}

ol li:before {
    content: counter(num) ". ";
    counter-increment: num;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    width: 30px;
    text-align: right;
    color: #f7941e;
} */

.tm-content-btn_centered,
.tm-content-btn_centered a {
    margin: 0 auto;
}

.tm-content-btn a {
    width: 165px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.3s ease-out;
    text-decoration: none;
    padding: 10px 10px 8px;
    text-transform: uppercase;
    text-align: center;
}

.tm-content-btn a:hover,
.tm-content-btn a:active,
.tm-content-btn a:focus {
    background: #444444;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.tm-content-btn_white a {
    background: #fff;
    color: #000;
}

.tm-content-btn_big a {
    width: 210px;
}

@media (min-width: 481px) {
    .tm-banner-mob {
        display: none;
    }
}

@media (max-width: 1600px) {
    .tm-main {
        padding: 50px 0 60px;
    }

    .tm-padding-no-bottom {
        padding-bottom: 0;
    }

}


@media (max-width: 1180px) {

    .tm-main {
        padding: 40px 0 40px;
    }

    .tm-padding-no-bottom {
        padding-bottom: 0;
    }


}

@media (max-width: 980px) {
    .tm-column-right {
        order: inherit;
    }

    .wp-block-image .alignright {
        float: none;
        margin: 0;
    }

    .tm-padding,
    .tm-middle-padding {
        padding: 40px 0;
    }

    h1,
    .tm-h1,
    h2,
    .tm-h2 {
        font-size: 26px;
    }

    h3,
    .tm-h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .tm-banner-comp {
        display: none;
    }
}

@media (max-width: 350px) {
    .tm-content-btn a {
        width: 100%;
    }
}

/* margins
========================================================================== */
.tm-margin-3xsmall-bottom {
    margin-bottom: 5px;
}

.tm-margin-xxsmall-bottom {
    margin-bottom: 8px;
}

.tm-margin-xsmall-bottom {
    margin-bottom: 10px;
}

.tm-margin-small-bottom {
    margin-bottom: 15px;
}

.tm-margin-standart-bottom {
    margin-bottom: 20px;
}

.tm-margin-xstandart-bottom {
    margin-bottom: 25px;
}

.tm-margin-default-bottom {
    margin-bottom: 30px;
}

.tm-margin-xdefault-bottom {
    margin-bottom: 40px;
}

.tm-margin-medium-bottom {
    margin-bottom: 50px;
}

.tm-margin-large-bottom {
    margin-bottom: 60px;
}

.tm-margin-xlarge-bottom {
    margin-bottom: 80px;
}

.tm-margin-2xlarge-bottom {
    margin-bottom: 100px;
}

.tm-margin-3xlarge-bottom {
    margin-bottom: 120px;
}

.tm-margin-4xlarge-bottom {
    margin-bottom: 140px;
}

@media (max-width: 1440px) {
    .tm-margin-xlarge-bottom {
        margin-bottom: 60px;
    }

    .tm-margin-2xlarge-bottom {
        margin-bottom: 80px;
    }

    .tm-margin-3xlarge-bottom {
        margin-bottom: 90px;
    }

    .tm-margin-4xlarge-bottom {
        margin-bottom: 120px;
    }
}

@media (max-width: 980px) {

    .tm-margin-2xlarge-bottom,
    .tm-margin-3xlarge-bottom,
    .tm-margin-4xlarge-bottom {
        margin-bottom: 60px;
    }
}

