/*
// Variables
// Reset
// Animations
*/

/* ---------------- */

/*
// Variables
*/
:root {
    --tm-theme--main-color: #ffd333;
    --tm-theme--opposite-color: #3d464d;

    --tm-accent--main-color: #ee2f2f;
    --tm-accent--opposite-color: #fff;

    /*
    // Primary button
    */
    --tm-button-primary--default--bg-color: var(--tm-theme--main-color);
    --tm-button-primary--default--font-color: var(--tm-theme--opposite-color);
    --tm-button-primary--hover--bg-color: var(--tm-button-primary--default--bg-color);
    --tm-button-primary--hover--font-color: var(--tm-button-primary--default--font-color);
    --tm-button-primary--active--bg-color: var(--tm-button-primary--default--bg-color);
    --tm-button-primary--active--font-color: var(--tm-button-primary--default--font-color);

    /*
    // Secondary button
    */
    --tm-button-secondary--default--bg-color: #f5f5f5;
    --tm-button-secondary--default--font-color: #333;
    --tm-button-secondary--hover--bg-color: #ebebeb;
    --tm-button-secondary--hover--font-color: var(--tm-button-secondary--default--font-color);
    --tm-button-secondary--active--bg-color: #e5e5e5;
    --tm-button-secondary--active--font-color: var(--tm-button-secondary--default--font-color);

    /*
    // Sale badge
    */
    --tm-badge--sale--bg-color: var(--tm-accent--main-color);
    --tm-badge--sale--font-color: var(--tm-accent--opposite-color);

    /*
    // Out of stock badge
    */
    --tm-badge--out-of-stock--bg-color: #808080;
    --tm-badge--out-of-stock--font-color: #fff;

    /*
    // Price
    */
    --tm-price--default--color: inherit;
    --tm-price--new--color: var(--tm-accent--main-color);
    --tm-price--old--color: #737373;

    /*
    // Topbar
    */
    --tm-topbar--bg-color: #f7f7f7;
    --tm-topbar--font-color: #737373;

    /*
    // Footer
    */
    --tm-footer--bg-color: #fff;
    --tm-footer--primary-font-color: #3d464d;
    --tm-footer--secondary-font-color: #737373;
    --tm-footer--divider-color: #ebebeb;

    /*
    // Control
    */
    --tm-control--border-width: 1px;
    --tm-control--border-radius: 2px;
    --tm-control--default--shadow: 0 0 0 var(--tm-control--border-width) rgba(0, 0, 0, .1) inset, 0 0 0 0 rgba(0, 0, 0, .08);
    --tm-control--hover--shadow: 0 0 0 var(--tm-control--border-width) rgba(0, 0, 0, .2) inset, 0 0 0 0 rgba(0, 0, 0, .08);
    --tm-control--active--shadow: 0 0 0 var(--tm-control--border-width) rgba(0, 0, 0, .25) inset, 0 0 0 3px rgba(0, 0, 0, .08);

    /*
    // Invalid control
    */
    --tm-invalid-control--default--shadow: 0 0 0 1px #d65b5b inset, 0 0 0 0 rgba(214, 91, 91, .2);
    --tm-invalid-control--hover--shadow: 0 0 0 1px #d65b5b inset, 0 0 0 0 rgba(214, 91, 91, .2);
    --tm-invalid-control--active--shadow: 0 0 0 1px #d65b5b inset, 0 0 0 3px rgba(214, 91, 91, .2);
}

/*
// Reset
*/

*,
:before,
:after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    padding: 0;
    margin: 0;
}

body {
    overflow-x: hidden;
    font-family: Roboto, 'sans-serif';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    background: #fff;
    color: #3d464d;
    backface-visibility: hidden;
    overflow-y: scroll;
    text-align: left;
    direction: ltr;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

table {
    border-spacing: 0;
}

button {
    font-size: inherit;
    font-family: inherit;
    font-weight: normal;
    line-height: inherit;
    color: inherit;
}

/*
// Animations
*/
@keyframes tm-loader-animation {
    from {
        transform: rotateZ(0deg);
    }
    to {
        transform: rotateZ(360deg);
    }
}

/*
// .tm-spring
*/
.tm-spring {
    flex-grow: 1;
}

/*
// .tm-button
*/
.tm-button {
    --tm-button--default--bg-color: #fff;
    --tm-button--default--font-color: #333;
    --tm-button--hover--bg-color: var(--tm-button--default--bg-color);
    --tm-button--hover--font-color: var(--tm-button--default--font-color);
    --tm-button--active--bg-color: var(--tm-button--default--bg-color);
    --tm-button--active--font-color: var(--tm-button--default--font-color);
    --tm-button--loader-size: 16px;

    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    font-family: inherit;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    transition:
        background .12s,
        color .12s;

    font-size: 13px;
    line-height: 20px;
    padding: 8px 16px;
    border-radius: 2px;
}
.tm-button:has(svg) {
    display: inline-flex;
    padding: 8px 10px;
}
.tm-button {
    background: var(--tm-button--default--bg-color);
    color: var(--tm-button--default--font-color);
}
.tm-button:hover {
    background: var(--tm-button--hover--bg-color);
    color: var(--tm-button--hover--font-color);
}
.tm-button:active {
    transition-duration: 0s, 0s;
    background: var(--tm-button--active--bg-color);
    color: var(--tm-button--active--font-color);
}
.tm-button--primary {
    --tm-button--default--bg-color: var(--tm-button-primary--default--bg-color);
    --tm-button--default--font-color: var(--tm-button-primary--default--font-color);
    --tm-button--hover--bg-color: var(--tm-button-primary--hover--bg-color);
    --tm-button--hover--font-color: var(--tm-button-primary--hover--font-color);
    --tm-button--active--bg-color: var(--tm-button-primary--active--bg-color);
    --tm-button--active--font-color: var(--tm-button-primary--active--font-color);
}
.tm-button--secondary {
    --tm-button--default--bg-color: var(--tm-button-secondary--default--bg-color);
    --tm-button--default--font-color: var(--tm-button-secondary--default--font-color);
    --tm-button--hover--bg-color: var(--tm-button-secondary--hover--bg-color);
    --tm-button--hover--font-color: var(--tm-button-secondary--hover--font-color);
    --tm-button--active--bg-color: var(--tm-button-secondary--active--bg-color);
    --tm-button--active--font-color: var(--tm-button-secondary--active--font-color);
}
.tm-button--small {
    padding: 4px 12px;
}
.tm-button--loading {
    position: relative;
}
.tm-button--loading svg {
    opacity: 0;
}
.tm-button--loading,
.tm-button--loading:hover,
.tm-button--loading:active {
    background: var(--tm-button--default--bg-color);
    color: transparent;
}
.tm-button--loading:not(:disabled) {
    cursor: default;
}
.tm-button--loading:before {
    position: absolute;
    content: '';

    width: var(--tm-button--loader-size);
    height: var(--tm-button--loader-size);
    left: calc(50% - var(--tm-button--loader-size) / 2);
    top: calc(50% - var(--tm-button--loader-size) / 2);
    border-radius: calc(var(--tm-button--loader-size) / 2);
    border: 2px solid var(--tm-button--default--font-color);
    border-top-color: transparent;

    animation-name: tm-loader-animation;
    animation-duration: .5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/*
// .tm-container
*/
.tm-container {
    width: 100%;
    max-width: 1140px;
    padding: 0 15px;
    margin: 0 auto;
}

/*
// .tm-site
*/
.tm-site {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/*
// .tm-body
*/
.tm-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

/*
// .tm-menu
*/
.tm-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/*
// .tm-topbar
*/
.tm-topbar {
    min-height: 36px;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    background: var(--tm-topbar--bg-color);
    color: var(--tm-topbar--font-color);
}
.tm-topbar__body {
    display: flex;
}
.tm-topbar__spring {
    flex-grow: 1;
}
.tm-topbar__menu + .tm-topbar__social-links {
    margin-left: 16px;
}
@media (max-width: 1199.98px) {
    .tm-topbar {
        display: none;
    }
}

/*
// .tm-menu--topbar
*/
.tm-menu--topbar ul {
    display: flex;
    flex-wrap: wrap;
    padding: 4px 0;
}
.tm-menu--topbar li {
    padding: 4px 0;
}
.tm-menu--topbar li:not(:last-child) {
    margin-right: 16px;
}
.tm-menu--topbar a {
    color: inherit;
    text-decoration: none;
}
.tm-menu--topbar a:hover {
    text-decoration: underline;
}

/*
// .tm-logo
*/
.tm-logo {
    font-size: 28px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
}
.tm-logo a {
    color: inherit;
    text-decoration: none;
}
.tm-logo a:hover {
    color: inherit;
    text-decoration: underline;
}
.tm-logo img {
    display: block;
}

/*
// .tm-logo--mobile
*/
.tm-logo--mobile {
    padding: 4px 0;
    align-self: center;
    margin: 0 12px;
    font-size: 18px;
    height: 100%;
}
.tm-logo--mobile a {
    display: flex;
    align-items: center;
    height: 100%;
}
.tm-logo--mobile img {
    max-height: 100%;
}

@media (max-width: 374.98px) {
    .tm-logo--mobile {
        margin: 0 8px;
        font-size: 16px;
    }
}

/*
// .tm-header
*/
.tm-header {
    padding: 12px 0;
    display: flex;
    align-items: center;
}
.tm-header > .tm-container {
    display: flex;
    align-items: center;
    min-height: 100px;
}
.tm-header__search {
    flex-grow: 1;
}
.tm-header__phone {
    text-align: right;
}
.tm-header__phone-title {
    color: #737373;
    font-size: 13px;
}
.tm-header__phone-value {
    font-size: 20px;
    font-weight: 500;
}
.tm-header__search + .tm-header__phone,
.tm-header__logo + .tm-header__search {
    margin-left: 64px;
}
@media (max-width: 1199.98px) {
    .tm-header {
        display: none;
    }
}

/*
// .tm-logo--header
*/
.tm-logo--header {
    display: flex;
    align-items: center;
}
.tm-logo--header img {
    height: auto;
    width: 100%;
}

/*
// .tm-search
*/
.tm-search {
    position: relative;
    display: flex;
    z-index: 0;
    height: 40px;
}
.tm-search__input {
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 15px;
    line-height: 1;
    flex-grow: 1;
    padding: 0 16px;
    color: inherit;
    appearance: none;
}
.tm-search__input:focus {
    outline: none;
}
.tm-search__input::placeholder {
    color: #999;
}
.tm-search__input::-webkit-search-cancel-button {
    display: none;
}
.tm-search__button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #d4d4d4;
    padding: 0;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition:
        color .12s;
}
.tm-search__button:hover {
    color: var(--tm-theme--main-color);
}
.tm-search__field {
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    box-shadow: inset 0 0 0 2px #e5e5e5;
    border-radius: 4px;
    transition:
        box-shadow .12s,
        background .12s;
}
.tm-search__input:hover ~ .tm-search__field {
    box-shadow: inset 0 0 0 2px #d4d4d4 ;
}
.tm-search__input:focus ~ .tm-search__field {
    box-shadow: inset 0 0 0 2px var(--tm-theme--main-color);
}

/*
// .tm-nav
*/
.tm-nav {
    display: flex;
    min-height: 54px;
    background: var(--tm-theme--main-color);
    color: var(--tm-theme--opposite-color);
    z-index: 100;
    box-shadow:
        0 1px rgb(0 0 0 / 4%),
        inset 0 -1px rgb(0 0 0 / 4%);
}
.tm-nav > .tm-container {
    display: flex;
    min-height: 100%;
}
@media (max-width: 1199.98px) {
    .tm-nav {
        display: none;
    }
}

/*
// .tm-menu--nav
*/
.tm-menu--nav a {
    color: inherit;
    text-decoration: none;
}
.tm-menu--nav .tm-menu__list--level--0 {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}
.tm-menu--nav .tm-menu__list--level--0 > li > a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 14px;
    z-index: 0;
    font-size: 15px;
    line-height: 1;
    letter-spacing: .02em;
    font-weight: 500;
}
.tm-menu--nav .tm-menu__list--level--0 > li > a svg {
    opacity: .4;
    margin: 0 -2px 0 6px;
}
.tm-menu--nav .tm-menu__list--level--0 ul {
    position: absolute;
    padding: 10px 0;
    width: 180px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    display: none;
}
.tm-menu--nav .tm-menu__list--level--0 li:hover > ul {
    display: block;
}
.tm-menu--nav .tm-menu__list--level--0 a {
    display: flex;
    padding: 8px 16px;
}
.tm-menu--nav .tm-menu__list--level--1 ul {
    position: absolute;
    left: 100%;
    top: -10px;
}
.tm-menu--nav .tm-menu__list--level--1 li {
    position: relative;
}
.tm-menu--nav .tm-menu__list--level--1 li:hover > a {
    background: #f2f2f2;
}
.tm-menu--nav .tm-menu__list--level--1 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tm-menu--nav .tm-menu__list--level--1 svg {
    margin: 0 -4px 1px 12px;
    opacity: .4;
}

/*
// .tm-mobile-header
*/
.tm-mobile-header {
    display: flex;
    min-height: 54px;
    background: var(--tm-theme--main-color);
    color: var(--tm-theme--opposite-color);
    z-index: 100;
    box-shadow:
        0 1px rgb(0 0 0 / 4%),
        inset 0 -1px rgb(0 0 0 / 4%);
}
.tm-mobile-header > .tm-container {
    display: flex;
    min-height: 100%;
}
.tm-mobile-header__button {
    position: relative;
    padding: 0 14px;
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 0;
    color: inherit;
    cursor: pointer;
    background: transparent;
    border: none;
}

@media (min-width: 1200px) {
    .tm-mobile-header {
        display: none;
    }
}
@media (max-width: 374.98px) {
    .tm-mobile-header {
        min-height: 44px;
    }
    .tm-mobile-header > .tm-container {
        padding: 0 4px;
    }
    .tm-mobile-header__button {
        padding: 0 8px;
    }
}

/*
// .tm-indicator
*/
.tm-indicator {
    position: relative;
    height: 100%;
}
.tm-indicator__button {
    position: relative;
    padding: 0 14px;
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 0;
    color: inherit;
    text-decoration: none;
}
.tm-indicator__dropdown {
    width: 360px;
    position: absolute;
    right: 0;
    top: 100%;
    display: none;
}
.tm-indicator--open .tm-indicator__dropdown {
    display: block;
}

@media (max-width: 374.98px) {
    .tm-indicator__button {
        padding: 0 8px;
    }
}

/*
// .tm-menu--nav, .tm-mobile-header, .tm-indicator
*/
.tm-menu--nav .tm-menu__list--level--0 ul,
.tm-indicator__dropdown {
    background: #fff;
    color: #3d464d;
    box-shadow: 0 1px 15px rgb(0 0 0 / 25%);
}
.tm-menu--nav .tm-menu__list--level--0 > li > a:before,
.tm-mobile-header__button:before,
.tm-indicator__button:before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    left: 0;
    height: calc(100% - 6px * 2);
    background: #fff;
    opacity: 0;
    transition: opacity .2s;
    border-radius: 2px;
}
.tm-menu--nav .tm-menu__list--level--0 > li:hover > a:before,
.tm-mobile-header__button:hover:before,
.tm-indicator:hover .tm-indicator__button:before,
.tm-indicator--open .tm-indicator__button:before {
    opacity: .4;
}

@media (max-width: 374.98px) {
    .tm-menu--nav .tm-menu__list--level--0 > li > a:before,
    .tm-mobile-header__button:before,
    .tm-indicator__button:before {
        height: calc(100% - 4px * 2);
    }
}


/*
// .tm-icon
*/
.tm-icon {
    display: flex;
    position: relative;
}
.tm-icon svg {
    display: block;
}
.tm-icon__counter {
    height: 15px;
    font-size: 10px;
    padding: 0 5px;
    border-radius: 1000px;
    position: absolute;
    background: #fff;
    color: #3d464d;
    font-weight: 700;
    top: -8px;
    right: -10px;
}


/*
// .tm-mini-cart
*/
.tm-mini-cart {
    font-size: 14px;
    padding: 20px;
}
.tm-mini-cart__items {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tm-mini-cart__item {
    display: flex;
}
.tm-mini-cart__item + .tm-mini-cart__item {
    border-top: 1px solid rgba(0, 0, 0, .06);
    margin-top: 16px;
    padding-top: 16px;
}
.tm-mini-cart__item-image {
    flex-shrink: 0;
    margin-right: 16px;
}
.tm-mini-cart__item-image img {
    --tm-size: 64px;

    display: block;
    width: var(--tm-size);
    height: var(--tm-size);
    object-fit: cover;
}
.tm-mini-cart__item-info {
    flex-grow: 1;
    line-height: 1.25;
}
.tm-mini-cart__item-name {
    color: inherit;
    text-decoration: none;
}
.tm-mini-cart__item-name:hover {
    color: inherit;
    text-decoration: underline;
}
.tm-mini-cart__item-options {
    font-size: 12px;
    color: #777;
    list-style: none;
    display: block;
    padding: 0;
    margin: 4px 0 0;
}
.tm-mini-cart__item-options li {
    display: inline;
}
.tm-mini-cart__item-options li:not(:last-child):after {
    content: ', ';
}
.tm-mini-cart__item-meta {
    font-size: 12px;
    color: #777;
    margin: 4px 0 0;
    /*color: #6c757d;*/
}
.tm-mini-cart__item-delete {
    font-size: .5rem;
    margin-left: 8px;
    align-self: flex-start;
    display: flex;
    padding: 8px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: rgba(0, 0, 0, .25);
    transition: background .12s;
    cursor: pointer;
}
.tm-mini-cart__item-delete:not(.tm-mini-cart__item-delete--loading):hover {
    background: rgba(0, 0, 0, .06);
}
.tm-mini-cart__item-delete:not(.tm-mini-cart__item-delete--loading):active {
    transition-duration: 0s;
    background: rgba(0, 0, 0, .08);
}
.tm-mini-cart__item-delete.tm-mini-cart__item-delete--loading {
    position: relative;
    color: transparent;
    cursor: default;
}
.tm-mini-cart__item-delete.tm-mini-cart__item-delete--loading:before {
    --tm-loader-size: 14px;
    --tm-font-color: #333;

    position: absolute;
    content: '';

    width: var(--tm-loader-size);
    height: var(--tm-loader-size);
    left: calc(50% - var(--tm-loader-size) / 2);
    top: calc(50% - var(--tm-loader-size) / 2);
    border-radius: calc(var(--tm-loader-size) / 2);
    border: 2px solid #000;
    border-top-color: transparent;
    opacity: .25;

    animation-name: tm-loader-animation;
    animation-duration: .5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.tm-mini-cart__actions {
    margin-top: 32px;
    display: flex;
    margin-left: -8px;
    margin-bottom: -8px;
}
.tm-mini-cart__actions > * {
    flex-basis: 0;
    flex-grow: 1;
    margin-left: 8px;
    margin-bottom: 8px;
}

/*
// .tm-social-links
*/
.tm-social-links {
    --tm-social-links--gutter: 6px;
}
.tm-social-links__list {
    display: flex;
    list-style: none;
    margin: calc(var(--tm-social-links--gutter) * -1) 0 0 calc(var(--tm-social-links--gutter) * -1);
    padding: 0;
}

/*
// .tm-social-links--footer
*/
.tm-social-links--footer a {
    position: relative;
    z-index: 0;
    margin-left: var(--tm-social-links--gutter);
    margin-top: var(--tm-social-links--gutter);
    display: flex;
    font-size: 16px;
    padding: 8px;
    color: inherit;
}
.tm-social-links--footer a:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 4px;
    background: currentColor;
    opacity: .06;
    transition: opacity .08s ease-in-out;
}
.tm-social-links--footer a:hover:before {
    opacity: .1;
}
.tm-social-links--footer a:active:before {
    transition-duration: 0s;
    opacity: .14;
}

/*
// .tm-social-links--topbar
*/
.tm-social-links--topbar {
    --tm-social-links--gutter: 0;
}
.tm-social-links--topbar {
    display: flex;
    align-items: center;
}
.tm-social-links--topbar a {
    margin-left: var(--tm-social-links--gutter);
    margin-top: var(--tm-social-links--gutter);
    display: flex;
    font-size: 16px;
    padding: 8px 6px;
    color: inherit;
    opacity: .7;
    transition: opacity .08s ease-in-out;
}
.tm-social-links--topbar a:hover {
    opacity: 1;
}

/*
// .tm-footer
*/
.tm-footer {
    margin-top: 40px;
    background: var(--tm-footer--bg-color);
    color: var(--tm-footer--primary-font-color);
}
.tm-footer--is-white {
    border-top: 1px solid var(--tm-footer--divider-color);
}
.tm-footer__widgets {
    padding: 32px 0;
}
.tm-footer__widgets-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -36px 0 0 -24px;
}
.tm-footer__widgets-item {
    margin: 36px 0 0 24px;
}
.tm-footer__bottom {
    font-size: 14px;
    color: var(--tm-footer--secondary-font-color);
    text-align: center;
}
.tm-footer__bottom a {
    color: var(--tm-footer--primary-font-color);
    text-decoration: none;
}
.tm-footer__bottom a:hover {
    text-decoration: underline;
}
.tm-footer__bottom .tm-container {
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.tm-footer__bottom .tm-container:before {
    content: '';
    width: 100%;
    margin-bottom: 20px;
}
.tm-footer__widgets + .tm-footer__bottom .tm-container:before {
    height: 1px;
    background: var(--tm-footer--divider-color);
}
.tm-footer__payment-methods img {
    display: block;
}
.tm-footer__copyright + .tm-footer__payment-methods {
    margin-top: 16px;
}
@media (min-width: 768px) {
    .tm-footer__bottom {
        text-align: left;
    }
    .tm-footer__bottom .tm-container {
        flex-direction: row;
    }
    .tm-footer__copyright + .tm-footer__payment-methods {
        margin-top: 0;
    }
}
@media (min-width: 1200px) {
    .tm-footer {
        margin-top: 64px;
    }
    .tm-footer__widgets {
        padding: 48px 0;
    }
}

/*
// .tm-breadcrumb
*/
.tm-breadcrumb {
    display: block;
    font-size: 14px;
}
.tm-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
.tm-breadcrumb li {
    display: flex;
    align-items: center;
}
.tm-breadcrumb li:not(:last-child) {
    margin-right: 12px;
}
.tm-breadcrumb li:not(:last-child):after {
    content: '';
    display: block;
    width: 6px;
    height: 9px;
    margin-left: 12px;
    background: #ccc;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6px' height='9px' viewBox='0 0 6 9' %3E%3Cpath d='M.4 8.8c-.4-.4-.5-1-.1-1.4l3-2.9-3-2.9C-.1 1.2-.1.5.4.2c.4-.3.9-.3 1.3.1L6 4.5 1.6 8.7c-.3.4-.9.4-1.2.1z'%3E%3C/path%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6px' height='9px' viewBox='0 0 6 9' %3E%3Cpath d='M.4 8.8c-.4-.4-.5-1-.1-1.4l3-2.9-3-2.9C-.1 1.2-.1.5.4.2c.4-.3.9-.3 1.3.1L6 4.5 1.6 8.7c-.3.4-.9.4-1.2.1z'%3E%3C/path%3E%3C/svg%3E");
}
.tm-breadcrumb a {
    color: inherit;
    text-decoration: none;
}
.tm-breadcrumb a:hover {
    text-decoration: underline;
}
.tm-breadcrumb span {
    color: #737373;
}

/*
// .tm-page-header
*/
.tm-page-header {
    padding: 16px 0 24px;
}
.tm-page-header__title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
}
.tm-page-header__breadcrumb + .tm-page-header__title {
    margin-top: 8px;
}

@media (min-width: 480px) {
    .tm-page-header__title {
        font-size: 28px;
    }
}

/*
// .tm-filters-button
*/
.tm-filters-button {
    display: flex;
    align-items: center;
    border: none;
    padding: 6px 8px;
    margin: 0;
    background: transparent;
    box-shadow: inset 0 0 0 1px #e5e5e5;
    border-radius: 2px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    height: 32px;
}
.tm-filters-button:hover {
    background: #f2f2f2;
}
.tm-filters-button svg {
    margin-right: 6px;
}
.tm-filters-button span {
    display: block;
    background: var(--tm-theme--main-color);
    color: var(--tm-theme--opposite-color);
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    height: 20px;
    border-radius: 2px;
    padding: 0 5px;
    margin-left: 10px;
    margin-right: -1px;
}

@media (min-width: 1200px) {
    .tm-filters-button {
        display: none;
    }
}

/*
// .tm-view-mode
*/
.tm-view-mode {
    display: flex;
}
.tm-view-mode__button {
    display: flex;
    padding: 7px 9px;
    background: #fff;
    border: 1px solid #e5e5e5;
    color: #a1abb3;
    cursor: pointer;
    transition:
        background .12s ease-in-out,
        color .12s ease-in-out;
}
.tm-view-mode__button:first-child {
    border-radius: 2px 0 0 2px;
}
.tm-view-mode__button:last-child {
    border-radius: 0 2px 2px 0;
}
.tm-view-mode__button:hover {
    background: #f2f2f2;
    color: #3d464d;
}
.tm-view-mode__button--active,
.tm-view-mode__button--active:hover {
    cursor: default;
    border-color: var(--tm-theme--main-color);
    background: var(--tm-theme--main-color);
    color: var(--tm-theme--opposite-color);
    z-index: 1;
}
.tm-view-mode__button + .tm-view-mode__button {
    margin-left: -1px;
}

/*
// .tm-view-options
*/
.tm-view-options__body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -12px 0 0 -16px;
}
.tm-view-options__body > * {
    margin: 12px 0 0 16px;
}
.tm-view-options__legend {
    margin-right: auto;
    font-size: 15px;
}
.tm-view-options__select {
    --padding-x: 10px;
    --padding-y: 8px;
    --padding-x-with-border: calc(var(--padding-x) + var(--tm-control--border-width));
    --padding-y-with-border: calc(var(--padding-y) + var(--tm-control--border-width));
    --padding-x-total: calc(var(--padding-x-with-border) * 2 + 5px + var(--tm-control--border-width));

    font-family: inherit;
    font-size: 14px;
    line-height: 1;
    appearance: none;
    cursor: pointer;
    color: inherit;
    border: none;
    border-radius: 2px;
    padding: var(--padding-y-with-border) var(--padding-x-total) var(--padding-y-with-border) var(--padding-x);
    box-shadow: 0 0 0 var(--tm-control--border-width) rgba(0, 0, 0, .1) inset, 0 0 0 0 rgba(0, 0, 0, .08);
    transition: box-shadow .2s;

    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 10'%3E%3Cpath fill='%234d4d4d' d='M4.503 4H.497c-.403 0-.639-.508-.408-.878L2.095.233a.469.469 0 0 1 .816 0l2 2.889c.231.37-.005.878-.408.878zM.497 6h4.006c.403 0 .639.504.408.871L2.905 9.737a.47.47 0 0 1-.816 0l-2-2.866C-.142 6.504.094 6 .497 6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 5px 10px;
    background-position: right calc(var(--padding-x-with-border) + var(--tm-control--border-width)) center;
}
.tm-view-options__select:hover {
    box-shadow: 0 0 0 var(--tm-control--border-width) rgba(0, 0, 0, .2) inset, 0 0 0 0 rgba(0, 0, 0, .08);
}
.tm-view-options__select:focus {
    outline: none;
    box-shadow: 0 0 0 var(--tm-control--border-width) rgba(0, 0, 0, .25) inset, 0 0 0 3px rgba(0, 0, 0, .08);
}

/*
// .tm-pagination
*/
.tm-pagination ul {
    list-style: none;
    padding: 0;
    margin: -4px 0 0 -4px;
    display: flex;
}
.tm-pagination li {
    margin: 4px 0 0 4px;
}
.tm-pagination li > * {
    display: block;
    padding: 9px 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: inherit;
    text-decoration: none;
    border-radius: 2px;
}
.tm-pagination li span {
    background: var(--tm-theme--main-color);
    color: var(--tm-theme--opposite-color);
    cursor: default;
}
.tm-pagination li a {
    transition:
        .1s background ease-in-out,
        .1s color ease-in-out;
}
.tm-pagination li a:hover {
    background: rgba(0, 0, 0, .08);
}
.tm-pagination li a:active {
    transition-duration: 0s, 0s;
    background: rgba(0, 0, 0, .12);
}

/*
// .tm-grid
*/
.tm-grid {
    --tm-grid--columns: 10;
    --tm-grid--gutter: 16px;
    --tm-grid--gutter-x: var(--tm-grid--gutter);
    --tm-grid--gutter-y: var(--tm-grid--gutter);
    --tm-grid--min-item-width: 100px;
    --tm-grid--item-grow: 1;

    pointer-events: none;
}
.tm-grid__body {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: calc(var(--tm-grid--gutter-y) * -1) 0 0 calc(var(--tm-grid--gutter-x) * -1);
}
.tm-grid__item {
    flex-basis: calc(100% / var(--tm-grid--columns) - var(--tm-grid--gutter-x));
    margin-top: var(--tm-grid--gutter-y);
    margin-left: var(--tm-grid--gutter-x);
    flex-grow: var(--tm-grid--item-grow);
    min-width: var(--tm-grid--min-item-width);
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}
.tm-grid__item:not(.tm-grid__item--filler) {
    pointer-events: auto;
}
.tm-grid__item--filler {
    margin-top: 0;
}
.tm-grid__item > * {
    flex-grow: 1;
}

/*
// .tm-grid--categories
*/
.tm-grid--categories {
    --tm-grid--columns: 5;
    --tm-grid--gutter: 8px;
    --tm-grid--min-item-width: 160px;
}

/*
// .tm-category
*/
.tm-category {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.35;
    color: inherit;
    padding: calc(6px + 1px);
    border-radius: 2px;
    transition: box-shadow .12s;
    box-shadow:
        inset 0 0 0 1px #ededed;
}
.tm-category:hover {
    box-shadow:
        inset 0 0 0 2px var(--tm-theme--main-color);
}
.tm-category img {
    width: 40px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    margin-right: 10px;
}
.tm-category__name {
    hyphens: auto;
    padding: 2px 4px 2px 0;
}

/*
// .tm-layout
*/
.tm-layout {
    display: flex;
}
.tm-grid--categories + .tm-layout {
    margin-top: 32px;
}
.tm-layout__sidebar {
    width: 240px;
    margin-right: 32px;
    flex-shrink: 0;
}
.tm-layout__main {
    flex-grow: 1;
}

.tm-layout__sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.tm-layout__sidebar-close {
    float: right;
    font-size: 12px;
    color: rgba(0, 0, 0, .25);
    background: transparent;
    border: none;
    margin: -2px -6px -2px 12px;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    transition: background-color .12s;
    cursor: pointer;
}
.tm-layout__sidebar-close:hover {
    background: rgba(0, 0, 0, .06);
}
.tm-layout__sidebar-close:active {
    transition-duration: 0s;
    background: rgba(0, 0, 0, .1);
}

@media (min-width: 1200px) {
    .tm-layout__sidebar-close {
        display: none;
    }
}
@media (max-width: 1199.98px) {
    .tm-layout__sidebar {
        position: fixed;
        display: none;
        padding: 20px;
        margin: 0;
        z-index: 110;
        background: #fff;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }
    .tm-layout__sidebar--show {
        display: block;
    }
}

/*
// .tm-filters
*/
.tm-filters h2 {
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    margin: 0 0 16px;
}

/*
// .tm-filter
*/
.tm-filter + .tm-filter {
    margin-top: 24px;
}
.tm-filter--single + .tm-filter--single {
    margin-top: 12px;
}
.tm-filter h3 {
    margin: 0;
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
}
.tm-filter label {
    display: flex;
}
.tm-filter label .tm-checkbox {
    margin-right: 6px;
}
.tm-filter span {
    margin-left: .25em;
}
.tm-filter--counter {
    color: #999;
    font-weight: normal;
    font-size: 75%;
}
.tm-filter ul {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    font-size: 14px;
    line-height: 18px;
}
.tm-filter li + li {
    margin-top: 6px;
}
.tm-filter .tm-price-range {
    margin-top: 10px;
}

/*
// .tm-filter-actions
*/
.tm-filter-actions {
    margin-top: 24px;
    display: flex;
    gap: 8px;
}

/*
// .tm-checkbox
*/
.tm-checkbox {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    border-radius: 2px;
}
.tm-checkbox__input,
.tm-checkbox__body {
    width: inherit;
    height: inherit;
}
.tm-checkbox__input {
    position: absolute;
    opacity: 0;
    z-index: 1;
    margin: 0;
}
.tm-checkbox__body {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .15);
}
.tm-checkbox__input:hover + .tm-checkbox__body {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .25);
}
.tm-checkbox__body svg {
    display: none;
}
.tm-checkbox__input:checked + .tm-checkbox__body {
    background-color: var(--tm-theme--main-color);
    color: var(--tm-theme--opposite-color);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05);
}
.tm-checkbox__input:checked:hover + .tm-checkbox__body {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .15);
}
.tm-checkbox__input:checked + .tm-checkbox__body svg {
    display: block;
}

/*
// .tm-price-range
*/
.tm-price-range {
    display: flex;
    align-items: center;
    max-width: 360px;
}
.tm-price-range__dash {
    flex-shrink: 0;
    margin: 0 6px;
    height: 2px;
    width: 12px;
    box-shadow: inset 0 -1px rgba(0, 0, 0, .15);
    position: relative;
    top: -1px;
}
.tm-price-range input {
    width: 0;
    flex-basis: 0;
    flex-grow: 1;
    padding: 6px 10px;
    appearance: none;
    -moz-appearance: textfield;
}
.tm-price-range input::-webkit-outer-spin-button,
.tm-price-range input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*
// .tm-products-view
*/
.tm-grid--categories + .tm-products-view {
    margin-top: 32px;
}
.tm-products-view__view-options {
    margin-bottom: 20px;
}
.tm-products-view__pagination {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

/*
// .tm-grid--products
*/
.tm-grid--products {
    --tm-grid--columns: 4;
    --tm-grid--gutter: 8px;
    --tm-grid--gutter-y: 12px;
    --tm-grid--min-item-width: 140px;
}
.tm-grid--products[data-layout="list"] {
    --tm-grid--columns: 1;
    --tm-grid--gutter-y: 12px;
}
.tm-layout__sidebar + .tm-layout__main .tm-grid--products[data-layout="grid"] {
    --tm-grid--columns: 3;
}
@media (min-width: 440px) {
    .tm-grid--products {
        --tm-grid--min-item-width: 160px;
    }
}
@media (min-width: 992px) {
    .tm-grid--products {
        --tm-grid--gutter: 12px;
        --tm-grid--gutter-y: 16px;
    }
}
@media (max-width: 1199.98px) {
    .tm-layout__sidebar + .tm-layout__main .tm-grid--products[data-layout="grid"] {
        --tm-grid--columns: 4;
    }
}

/*
// .tm-price
*/
.tm-price {
    font-weight: 700;
    color: var(--tm-price--default--color);
}
.tm-price__old {
    text-decoration: line-through;
    font-weight: normal;
    font-size: 80%;
    color: var(--tm-price--old--color);
}
.tm-price__new {
    color: var(--tm-price--new--color);
}

/*
// .tm-heart
*/
.tm-heart {
    --heart-background: #fff;
    --heart-border: #333;
}
.tm-heart--ghost {
    --heart-background: #ccc;
    --heart-border: transparent;
}
.tm-heart--active {
    --heart-background: var(--tm-accent--main-color);
    --heart-border: transparent;
}

/*
// .tm-product-card
*/
.tm-product-card {
    --tm-product-card--padding: 12px;

    display: flex;
    position: relative;
    padding: calc(var(--tm-product-card--padding) + 1px);
    border-radius: 2px;
    transition: box-shadow .12s;
    box-shadow:
        inset 0 0 0 1px #ededed;
}
.tm-product-card:hover {
    box-shadow:
        inset 0 0 0 2px var(--tm-theme--main-color);
}
.tm-product-card__badge {
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: .02em;
}
.tm-product-card__badge--sale {
    background: var(--tm-badge--sale--bg-color);
    color: var(--tm-badge--sale--font-color);
}
.tm-product-card__badge--out-of-stock {
    background: var(--tm-badge--out-of-stock--bg-color);
    color: var(--tm-badge--out-of-stock--font-color);
}
.tm-product-card__image img {
    display: block;
    width: 100%;
    height: auto;
}
.tm-product-card__name {
    font-size: 13px;
    line-height: 1.35;
}
.tm-product-card__name a {
    color: inherit;
    text-decoration: none;
}
.tm-product-card__name a:hover {
    text-decoration: underline;
}
.tm-product-card__price {
    font-size: 14px;
}
.tm-product-card__favorites-button {
    display: flex;
    border: none;
    background: transparent;
    padding: 4px;
    cursor: pointer;
}
.tm-product-card__favorites-button--loading {
    position: relative;
}
.tm-product-card__favorites-button--loading:not(:disabled) {
    cursor: default;
}
.tm-product-card__favorites-button--loading svg {
    opacity: 0;
}
.tm-product-card__favorites-button--loading:before {
    position: absolute;
    content: '';

    width: 16px;
    height: 16px;
    left: calc(50% - 16px / 2);
    top: calc(50% - 16px / 2);
    border-radius: calc(16px / 2);
    border: 2px solid #333;
    border-top-color: transparent;

    animation-name: tm-loader-animation;
    animation-duration: .5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@media (min-width: 640px) {
    .tm-product-card__name {
        font-size: 14px;
    }
    .tm-product-card__price {
        font-size: 15px;
    }
}
@media (min-width: 992px) {
    .tm-product-card {
        --tm-product-card--padding: 16px;
    }
    .tm-product-card__name {
        font-size: 15px;
    }
    .tm-product-card__price {
        font-size: 16px;
    }
}

/*
// .tm-product-card--grid,
// .tm-product-card--list
*/
.tm-product-card--grid .tm-product-card__header,
.tm-product-card--list .tm-product-card__header {
    left: calc(10px + 1px);
    top: calc(10px + 1px);
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.tm-product-card--grid .tm-product-card__badges,
.tm-product-card--list .tm-product-card__badges {
    margin: 0 0 8px;
    display: flex;
}
.tm-product-card--grid .tm-product-card__badge,
.tm-product-card--list .tm-product-card__badge {
    padding: 0 7px;
    font-size: 12px;
    line-height: 20px;
    height: 20px;
}
.tm-product-card--grid .tm-product-card__badge:nth-child(n + 2),
.tm-product-card--list .tm-product-card__badge:nth-child(n + 2) {
    margin-left: 6px;
}

/*
// .tm-product-card--grid
*/
.tm-product-card--grid {
    flex-direction: column;
}
.tm-product-card--grid .tm-product-card__image {
    margin-bottom: 16px;
}
.tm-product-card--grid .tm-product-card__price {
    margin-top: 4px;
}
.tm-product-card--grid .tm-product-card__footer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-grow: 1;
    flex-wrap: wrap;
    margin-top: 16px;
    gap: 8px;
}
.tm-product-card--grid .tm-product-card__footer > :first-child {
    margin-right: auto;
}

/*
// .tm-product-card--list
*/
.tm-product-card--list {
    display: grid;
    grid-template-columns: calc(120px + 20px) 1fr;
    grid-template-rows: auto 1fr;
}
.tm-product-card--list .tm-product-card__image {
    grid-column: 1;
    grid-row: 1 / 3;
}
.tm-product-card--list .tm-product-card__body {
    grid-column: 2;
    grid-row: 1;
}
.tm-product-card--list .tm-product-card__footer {
    grid-column: 2;
    grid-row: 2;
}
.tm-product-card--list .tm-product-card__image {
    margin-right: 20px;
}
.tm-product-card--list .tm-product-card__name {
    font-size: 16px;
    margin-top: 8px;
}
.tm-product-card--list .tm-product-card__description {
    font-size: 14px;
    color: #737373;
}
.tm-product-card--list .tm-product-card__name + .tm-product-card__description,
.tm-product-card--list .tm-product-card__name + .tm-product-card__price,
.tm-product-card--list .tm-product-card__description + .tm-product-card__price {
    margin-top: 12px;
}
.tm-product-card--list .tm-product-card__footer {
    margin-top: 16px;
    margin-bottom: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-grow: 1;
    flex-wrap: wrap;
    gap: 8px;
}
.tm-product-card--list .tm-product-card__footer > :first-child {
    margin-right: auto;
}
@media (max-width: 439.98px) {
    .tm-product-card--list {
        grid-template-columns: calc(108px + 16px) 1fr;
        padding-left: 0;
        padding-right: 0;
        border-radius: 0;
        box-shadow:
            inset 0 -1px #ededed,
            inset 0 1px #ededed;
    }
    .tm-product-card--list:hover {
        box-shadow:
            inset 0 -2px var(--tm-theme--main-color),
            inset 0 2px var(--tm-theme--main-color);
    }
    .tm-product-card--list .tm-product-card__header {
        left: 0;
        top: calc(var(--tm-product-card--padding) + 1px + 4px);
    }
    .tm-product-card--list .tm-product-card__image {
        margin-right: 16px;
    }
    .tm-product-card--list .tm-product-card__name {
        font-size: 15px;
        margin-top: 4px;
    }
    .tm-product-card--list .tm-product-card__description {
        font-size: 13px;
    }
    .tm-product-card--list .tm-product-card__price {
        font-size: 15px;
    }
}
@media (min-width: 640px) {
    .tm-product-card--list {
        grid-template-columns: calc(200px + 20px) 1fr;
    }
}
@media (min-width: 992px) {
    .tm-product-card--list .tm-product-card__image {
        margin-right: 24px;
        grid-template-columns: calc(200px + 24px) 1fr;
    }
}

/*
// .tm-product-card--horizontal
*/
.tm-product-card--horizontal .tm-product-card__badge {
    padding: 4px 6px;
    font-size: 11px;
    line-height: 12px;
    min-height: 20px;
    left: calc(10px + 1px);
    top: calc(10px + 1px);
    position: absolute;
}
.tm-product-card--horizontal .tm-product-card__badge--out-of-stock {
    width: calc(80px + 6px * 2);
    text-align: center;
}
.tm-product-card--horizontal .tm-product-card__image {
    flex-shrink: 0;
    width: 80px;
    margin-right: 16px;
}
.tm-product-card--horizontal .tm-product-card__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 4px 0;
}
.tm-product-card--horizontal .tm-product-card__name {
    max-height: calc(15px * 1.35 * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tm-product-card--horizontal .tm-product-card__price {
    font-size: 15px;
    margin-top: 6px;
}

/*
// .tm-empty
*/
.tm-empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 2px;
    padding: 48px 24px;
    background: rgba(0, 0, 0, .04);
    min-height: 8rem;
    font-size: 15px;
}
.tm-empty__actions {
    margin-top: 1.25rem;
}

/*
// .tm-number-control
*/
.tm-number-control {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}
.tm-number-control__input {
    text-align: center;
    -moz-appearance: textfield;
    border: none;
    font-family: inherit;
    color: inherit;
    font-size: 15px;
    line-height: 20px;
    padding: 8px calc(3px * 2 + 22px + 4px);
    width: 100%;
    transition: box-shadow .2s;
    border-radius: var(--tm-control--border-radius);
    box-shadow: var(--tm-control--default--shadow);
}
.tm-number-control__input:hover {
    box-shadow: var(--tm-control--hover--shadow);
}
.tm-number-control__input:focus {
    outline: none;
    box-shadow: var(--tm-control--active--shadow);
}
.tm-number-control__input::-webkit-outer-spin-button,
.tm-number-control__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.tm-number-control__add,
.tm-number-control__sub {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    height: 100%;
    width: 28px;
    top: 0;
    cursor: pointer;
    z-index: 0;
    user-select: none;
}
.tm-number-control__add svg,
.tm-number-control__sub svg {
    opacity: .7;
}
.tm-number-control__add {
    right: 0;
}
.tm-number-control__add:before,
.tm-number-control__sub:before {
    position: absolute;
    content: '';
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    z-index: -1;
    border-radius: 1px;
    transition: background-color .12s;
}
.tm-number-control__add:hover:before,
.tm-number-control__sub:hover:before {
    background: rgba(0, 0, 0, .08);
}
.tm-number-control__add:active:before,
.tm-number-control__sub:active:before {
    transition-duration: 0s;
    background: rgba(0, 0, 0, .12);
}
.tm-number-control__add:after,
.tm-number-control__sub:after {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, .2);
    width: 1px;
    height: calc(100% - 10px);
}
.tm-number-control__add:after {
    left: 0;
}
.tm-number-control__sub:after {
    right: 0;
}

.tm-number-control--invalid .tm-number-control__input {
    box-shadow: var(--tm-invalid-control--default--shadow);
}
.tm-number-control--invalid .tm-number-control__input:hover {
    box-shadow: var(--tm-invalid-control--hover--shadow);
}
.tm-number-control--invalid .tm-number-control__input:focus {
    box-shadow: var(--tm-invalid-control--active--shadow);
}

.tm-number-control--sm .tm-number-control__input {
    font-size: 14px;
    padding: 5px calc(3px * 2 + 20px + 4px);
}
.tm-number-control--sm .tm-number-control__add,
.tm-number-control--sm .tm-number-control__sub {
    width: 26px;
}

/*
// .tm-alert
*/
.tm-alert {
    font-size: 14px;
    padding: 16px 24px;
    border-radius: 2px;
}
.tm-alert ul {
    padding-left: 12px;
}
.tm-alert ul:first-child {
    margin-top: 0;
}
.tm-alert ul:last-child {
    margin-bottom: 0;
}
.tm-alert--style--danger {
    background: #f7dddd;
}
.tm-alert--style--warning {
    background: #f7eedd;
}
.tm-alert--style--success {
    background: #e8f5df;
}

/*
// .tm-search-form
*/
.tm-search-form {
    display: flex;
}
.tm-search-form .tm-search-form__input {
    max-width: 360px;
    flex-basis: 0;
    width: 0;
    flex-grow: 1;
    margin-right: 8px;
}
.tm-search-form + .tm-products-view,
.tm-search-form + .tm-alert {
    margin-top: 32px;
}

/*
// .tm-search-page
*/
.tm-search-page {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    text-align: center;
}
.tm-search-page__title {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 16px;
}
.tm-search-page__form {
    justify-content: center;
}

@media (min-width: 480px) {
    .tm-search-page__title {
        font-size: 28px;
        margin: 0 0 20px;
    }
}

/*
// .tm-dash
*/
.tm-dash {
    background: #757575;
    display: inline-block;
    height: 1px;
    opacity: .5;
    vertical-align: middle;
    width: 1rem;
}

/*
// .tm-building
*/
.tm-building {
    margin-top: 15px;
}
.tm-building__item + .tm-building__item {
    margin-top: 32px;
}
@media (min-width: 1200px) {
    .tm-building {
        margin-top: 28px;
    }
    .tm-building__item + .tm-building__item {
        margin-top: 48px;
    }
}

/*
// .tm-backdrop
*/
.tm-backdrop {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #333;
    opacity: 0;
    transition: opacity .15s;
}
.tm-backdrop--show {
    opacity: .9;
}

/*
// .tm-modal
*/
.tm-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 110;
    display: flex;
    padding: 8px;
    opacity: 0;
    transition: opacity .15s, transform .15s;
    transform: scale(.9);
    user-select: none;
    overflow-y: auto;
}
.tm-modal--show {
    opacity: 1;
    transform: scale(1);
}
.tm-modal__dialog {
    flex-grow: 1;
    margin: auto;
    max-width: 600px;
    background: #fff;
    border-radius: 2px;
    padding: 16px 20px;
    user-select: auto;
}
.tm-modal__body {
    backface-visibility: hidden;
}
.tm-modal__close {
    float: right;
    font-size: 12px;
    color: rgba(0, 0, 0, .25);
    background: transparent;
    border: none;
    margin: calc(20px - 16px - 12px) calc(20px - 20px - 12px) 8px 8px;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    transition: background-color .12s;
    cursor: pointer;
}
.tm-modal__close:hover {
    background: rgba(0, 0, 0, .06);
}
.tm-modal__close:active {
    transition-duration: 0s;
    background: rgba(0, 0, 0, .1);
}
.tm-modal__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    margin: -2px 0 16px;
}

@media (min-width: 576px) {
    .tm-modal {
        padding: 32px;
    }
    .tm-modal__dialog {
        padding: 28px 32px;
    }
    .tm-modal__close {
        margin: calc(20px - 28px - 12px) calc(20px - 32px - 12px) 8px 8px;
    }
    .tm-modal__title {
        font-size: 20px;
        margin: -2px 0 20px;
    }
}

/*
// .tm-cart-product-added-dialog
*/
.tm-cart-product-added-dialog {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
}
.tm-cart-product-added-dialog__product-image {
    grid-column: 1;
    grid-row: 1;
}
.tm-cart-product-added-dialog__product-info {
    grid-column: 2;
    grid-row: 1;
}
.tm-cart-product-added-dialog__actions {
    grid-column: 1 / 3;
    grid-row: 2;
}
.tm-cart-product-added-dialog__product-image img {
    width: 100%;
    height: auto;
    display: block;
}
.tm-cart-product-added-dialog__product-info {
    margin: 4px 0 4px 16px;
    flex-grow: 1;
}
.tm-cart-product-added-dialog__product-name {
    margin-top: -2px;
    font-size: 14px;
    line-height: 1.3;
}
.tm-cart-product-added-dialog__product-name a {
    color: inherit;
    text-decoration: none;
}
.tm-cart-product-added-dialog__product-name a:hover {
    text-decoration: underline;
}
.tm-cart-product-added-dialog__product-price {
    font-size: 14px;
    font-weight: bold;
    margin: 6px 0;
}
.tm-cart-product-added-dialog__product-quantity {
    font-size: 13px;
    color: #999;
}
.tm-cart-product-added-dialog__actions {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0 -8px -8px;
}
.tm-cart-product-added-dialog__actions > * {
    flex-grow: 1;
    margin: 0 0 8px 8px;
}
.tm-cart-product-added-dialog__actions .tm-button {
    font-size: 14px;
}

@media (min-width: 480px) {
    .tm-cart-product-added-dialog {
        grid-template-columns: 96px 1fr;
    }
    .tm-cart-product-added-dialog__product-name {
        font-size: 15px;
    }
    .tm-cart-product-added-dialog__product-price {
        font-size: 15px;
    }
    .tm-cart-product-added-dialog__product-quantity {
        font-size: 13px;
    }
    .tm-cart-product-added-dialog__actions > * {
        flex-grow: 0;
    }
}
@media (min-width: 576px) {
    .tm-cart-product-added-dialog__product-info {
        margin: 4px 0 4px 20px;
    }
}

/*
// .tm-mobile-search
*/
.tm-mobile-search {
    --tm-mobile-search--height: 52px;
    --tm-mobile-search--button-margin: 6px;

    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: var(--tm-mobile-search--height);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    background: #fff;
    z-index: 110;
    transition:
        visibility 0s,
        opacity .2s,
        transform .2s,
        background .2s;
    transition-delay: .2s, 0s, 0s, 0s;
}
.tm-mobile-search--show {
    transition-delay: 0s, 0s, 0s, 0s;
    visibility: visible;
    opacity: 1;
    transform: none;
}
.tm-mobile-search__field {
    position: relative;
    flex-grow: 1;
}
.tm-mobile-search__icon {
    pointer-events: none;
    position: absolute;
    left: calc((var(--tm-mobile-search--height) - 4px) / 2 - 20px / 2);
    top: calc(50% - 20px / 2);
    opacity: .25;
}
.tm-mobile-search__input {
    border: none;
    padding: 0 calc(var(--tm-mobile-search--height) - 4px);
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    font-family: inherit;
    font-size: 16px;
    background: transparent;
}
.tm-mobile-search__input:focus {
    outline: none;
}
.tm-mobile-search__input::placeholder {
    color: #a6a6a6;
}
.tm-mobile-search__input::-webkit-search-decoration,
.tm-mobile-search__input::-webkit-search-cancel-button,
.tm-mobile-search__input::-webkit-search-results-button,
.tm-mobile-search__input::-webkit-search-results-decoration {
    -webkit-appearance:none;
}
.tm-mobile-search__reset {
    border: none;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    top: var(--tm-mobile-search--button-margin);
    right: var(--tm-mobile-search--button-margin);
    color: inherit;
    background: transparent;
    border-radius: 2px;
    transition: background-color .12s;
    width: calc(var(--tm-mobile-search--height) - (var(--tm-mobile-search--button-margin) * 2) - 4px);
    height: calc(var(--tm-mobile-search--height) - (var(--tm-mobile-search--button-margin) * 2));
    cursor: pointer;
}
.tm-mobile-search__reset:hover {
    background: rgba(0, 0, 0, .08);
}
.tm-mobile-search__reset:active {
    transition-duration: 0s;
    background: rgba(0, 0, 0, .1);
}
.tm-mobile-search__reset svg {
    opacity: .25;
}
.tm-mobile-search__button {
    margin: var(--tm-mobile-search--button-margin);
    margin-left: 0;
}

@media (max-width: 374.98px) {
    .tm-mobile-search {
        --tm-mobile-search--height: 44px;
        --tm-mobile-search--button-margin: 4px;
    }
}

/*
// .tm-mobile-menu
*/
.tm-mobile-menu {
    position: fixed;
    width: 240px;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    z-index: 110;
    overflow: hidden;
    visibility: hidden;
    transform: translateX(calc(-100% - 10px));
    transition:
        visibility 0s,
        transform .3s ease-in-out;
    transition-delay: .2s, 0s;
}
.tm-mobile-menu--show {
    transition-delay: 0s, 0s;
    visibility: visible;
    transform: none;
}
.tm-mobile-menu__panel {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform .2s ease-in-out;
    display: flex;
    flex-direction: column;
}
.tm-mobile-menu__panel--previous {
    transform: translateX(-100%);
}
.tm-mobile-menu__panel--next {
    transform: translateX(100%);
}
.tm-mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 16px;
}
.tm-mobile-menu__title {
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
}
.tm-mobile-menu__title svg {
    opacity: .25;
    margin-right: 12px;
}
button.tm-mobile-menu__title {
    display: flex;
    align-items: center;
    padding: 8px;
    margin: -8px;
    border-radius: 4px;
    border: none;
    background: transparent;
    transition: background-color .12s;
    height: 32px;
    cursor: pointer;
}
button.tm-mobile-menu__title:hover {
    background: rgba(0, 0, 0, .08);
}
button.tm-mobile-menu__title:active {
    transition-duration: 0s;
    background: rgba(0, 0, 0, .1);
}
.tm-mobile-menu__close {
    position: relative;
    padding: 5px;
    display: flex;
    border: none;
    background: transparent;
    color: rgba(0, 0, 0, .25);
    cursor: pointer;
}
.tm-mobile-menu__close:before {
    position: absolute;
    content: '';
    left: -6px;
    right: -6px;
    top: -6px;
    bottom: -6px;
    border-radius: 100%;
    transition: background-color .12s;
}
.tm-mobile-menu__close:hover:before {
    background: rgba(0, 0, 0, .08);
}
.tm-mobile-menu__close:active:before {
    transition-duration: 0s;
    background: rgba(0, 0, 0, .1);
}
.tm-mobile-menu__links {
    padding: 8px 0;
    margin: 0;
    list-style: none;
    flex-grow: 1;
    overflow-y: auto;
}
.tm-mobile-menu__links a {
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: inherit;
    text-decoration: none;
}
.tm-mobile-menu__links li:hover a {
    background: rgba(0, 0, 0, .04);
}
.tm-mobile-menu__links svg {
    color: #ccc;
    margin-left: 16px;
}
.tm-mobile-menu__links li > .tm-mobile-menu__panel {
    display: none;
}
.tm-mobile-menu__account {
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding: 13px 16px;
    display: flex;
    align-items: center;
}
.tm-mobile-menu__account-link {
    display: flex;
    align-items: center;
}
.tm-mobile-menu__account-link + .tm-mobile-menu__account-link:before {
    display: block;
    content: '';
    background: rgba(0, 0, 0, .1);
    width: 1px;
    height: 16px;
    margin: 0 16px;
}
.tm-mobile-menu__account-link > form {
    display: flex;
}
.tm-mobile-menu__account-link :where(a, button) {
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
    font-family: inherit;
    color: inherit;
    text-decoration: none;
    border: none;
    padding: 0;
    background: transparent;
}
.tm-mobile-menu__account-link :where(a, button):hover {
    color: inherit;
    text-decoration: underline;
}
.tm-mobile-menu__account-link:first-child {
    overflow: hidden;
}
.tm-mobile-menu__account-link:first-child :where(a, button) {
    overflow: hidden;
    text-overflow: ellipsis;
}
.tm-mobile-menu__favorites {
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
}
.tm-mobile-menu__favorites:hover {
    background: rgba(0, 0, 0, .04);
    color: inherit;
}
.tm-mobile-menu__favorites-title {
    margin-left: 12px;
}
.tm-mobile-menu__favorites .tm-icon__counter {
    line-height: 15px;
    background: var(--tm-accent--main-color);
    color: var(--tm-accent--opposite-color);
}

/*
// .tm-form
*/
.tm-form {
    max-width: 360px;
}
.tm-alert + .tm-form {
    margin-top: 24px;
}
.tm-form__info {
    font-size: 14px;
}
.tm-form__info + .tm-field {
    margin-top: 20px;
}
.tm-form__submit {
    display: block;
    width: 100%;
    margin-top: 24px;
}
.tm-form__agreement-notice {
    font-size: 12px;
    color: #777;
}
.tm-form__agreement-notice a {
    color: #3d464d;
    font-weight: 500;
    text-decoration: none;
}
.tm-form__agreement-notice a:hover {
    text-decoration: underline;
}
.tm-form__submit + .tm-form__agreement-notice {
    margin-top: 16px;
}
.tm-form__alternative-actions {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}
.tm-form__alternative-actions li + li {
    margin-top: 2px;
}
.tm-form__alternative-actions a {
    color: inherit;
    text-decoration: none;
}
.tm-form__alternative-actions a:hover {
    text-decoration: underline;
}
.tm-form__agreement-notice + .tm-form__alternative-actions {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, .1);
}
.tm-form__submit + .tm-form__alternative-actions {
    margin-top: 20px;
}

/*
// .tm-account-nav
*/
.tm-account-nav {
    font-size: 14px;
    white-space: nowrap;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 24px;
}
.tm-account-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f5f5f5;
    display: flex;
    overflow-x: auto;
}
.tm-account-nav__item-link {
    display: block;
    border: none;
    background: transparent;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    padding: 12px 20px;
    margin: 0;
    text-decoration: none;
    cursor: pointer;
}
.tm-account-nav__item-link:hover {
    color: inherit;
}
.tm-account-nav__item:not(.tm-account-nav__item--current) .tm-account-nav__item-link:hover {
    background: rgba(0, 0, 0, .04);
}
.tm-account-nav__item--current .tm-account-nav__item-link {
    font-weight: 500;
    box-shadow: inset 0 -2px var(--tm-theme--main-color);
    cursor: default;
}
@media (max-width: 575.98px) {
    .tm-account-nav {
        font-size: 13px;
    }
    .tm-account-nav__item-link {
        padding: 10px 14px;
    }
}

/*
// .tm-table
*/
.tm-table {
    width: 100%;
    font-size: 14px;
}
.tm-table img {
    display: block;
}
.tm-table tr > * {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}
.tm-table tr > * + * {
    padding-left: 20px;
}
.tm-table tr > th {
    padding-top: 0;
    font-weight: normal;
    color: #777;
}
.tm-table__link {
    font-weight: 500;
    color: inherit;
    text-decoration: none;
}
.tm-table__link:hover {
    color: inherit;
    text-decoration: underline;
}
.tm-table__alt-text {
    font-size: 13px;
    color: #777;
}

@media (max-width: 1199.98px) {
    .tm-table__cell--payment-method,
    .tm-table__cell--shipping-method {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .tm-table--orders thead,
    .tm-table__cell--status,
    .tm-table__cell--total-price {
        display: none;
    }
    .tm-table--orders tr:first-child td {
        border-top: 1px solid rgba(0, 0, 0, .15);
    }
}
