:root {
    --main-color: #a72e13;
    --secondary-color: #f9e4b0;
    --black: #121212;
    --acent-bg: #f2f2f2;
    --gray: #999999;
    --light-gray: #dbdbdb;
    --text: #696969;
    --shadow: 0 0 12px rgba(0, 0, 0, 0.1)
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    font-family: 'Roboto', sans-serif;
    color: var(--black);
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: .3s ease-in-out;
}

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

img {
    max-width: 100%;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 20px;
}

p {
    line-height: 1.4;
    margin: 20px 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1%;
    }
}

.container {
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.content {
    margin: 0 auto;
    width: 54%;
}

.primary-btn {
    padding: 10px 20px;
    color: #fff;
    text-align: center;
    background: var(--main-color);
    box-shadow: 0 4px 12px rgb(164 60 35 / 40%);
    border: 1px solid var(--main-color);
    font-size: 16px;
    border-radius: 5px;
    transition: .3s ease-in-out;
    cursor: pointer;
}

.primary-btn:hover {
    box-shadow: none;
}

.secondary-btn {
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid var(--main-color);
    cursor: pointer;
}

.form-wrapper {
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    padding: 10px 20px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    padding: 20px;
    background-color: rgb(0, 0, 0, 0.4);
}

.hidden {
    display: none;
}

.input {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    color: var(--text);
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid var(--acent-bg);
    background: var(--acent-bg);
    outline: none;
}
.is-invalid {
    border-color: var(--main-color);
}

.alert-danger {
    color: var(--main-color);
}
.textarea {
    border: none;
    border-radius: 5px;
    background: var(--acent-bg);
    font-family: inherit;
    font-size: 16px;
    margin: 10px 0;
    padding: 10px;
    min-height: 100px;
    width: 100%;
}

.icon {
    width: 24px;
    height: 24px;
}

.add-to-cart, .availability-request {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.add-to-cart .counter, .availability-request .counter {
    margin-right: 30px;
}

/* Link Block */

.link-block {
    background: var(--acent-bg);
    border-radius: 5px;
    margin: 30px 0;
    padding: 15px;
}

.link-block.sf {
    position: relative;
}

.link-block__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 32px;
    background: linear-gradient(0deg, var(--acent-bg) 30%, transparent);
}

.link-block__search {
    position: relative;
    width: 100%;
}

.link-block__search .input {
    background: #fff;
    padding: 10px 10px 10px 30px;
    width: 100%;
}

.link-block__list {
    max-height: 526px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.link-block__list::-webkit-scrollbar {
    display: none;
}

.link-block__title {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.link-block.sf .link-block__title {
    margin-bottom: 0;
}

.link-block__title.icon {
    color: var(--main-color);
    font-weight: normal;
    width: auto;
    height: auto;
}

.link-block__title svg {
    margin-right: 10px;
}

.link-block__title svg path {
    fill: var(--main-color);
}

.link-block__title.active {
    color: var(--main-color);
}

.link-block__link {
    display: flex;
    margin: 0 0 12px 15px;
    align-items: center;
}

.link-block.sf .link-block__link {
    white-space: nowrap;
}

.link-block__runnig-line {
    animation: links-title-rinning 10s infinite;
}

@keyframes links-title-rinning {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(0);
    }
}

.link-block__link.active {
    color: var(--main-color);
    font-weight: bold;
}

.link-block__link:hover {
    color: var(--main-color);
}

.link-block__link span {
    font-family: monospace;
    font-size: 10px;
    margin-left: 4px;
    padding: 4px;
    color: #fff;
    background: var(--main-color);
    border-radius: 5px;
}

.link-block__link.parent {
    font-weight: 600;
}

.link-block__link.child {
    display: block;
    margin: 0 0 12px 25px;
}

.link-block__link--btn {
    fill: #4d4dff;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.link-block__link--btn.open {
    fill: var(--main-color);
    transform: rotate(180deg);
}

.link-block__link--btn svg {
    margin-left: 20px;
    width: 22px;
    height: 22px;
    pointer-events: none;
}
.link-block__link--btn.open svg {
    margin: 0;
}
.link-block-arrow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
}

.link-block-arrow .link-block__link {
    width: 164px;
}

.link-block__submenu {
    display: block;
    height: 0;
    overflow: hidden;
    margin: 0 0 0 15px;
    transition: 0.3s ease-in-out;
}

.link-block__submenu.active {
    margin: 15px 0 15px 15px;
    height: auto;
}

/* Sidebars */

.left-sidebar,
.right-sidebar {
    flex: 0 0 auto;
    width: 18.5%;
}

.left-sidebar {
    margin-right: 4.5%;
}

.right-sidebar {
    margin-left: 4.5%;
}

.sidebar-btn {
    background: #fff;
    box-shadow: var(--shadow);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    transition: .3s ease-in-out;
    z-index: 10;
}

.sidebar-btn__filter {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.sidebar-btn__filter svg {
    margin-right: 10px;
}

.sidebar-btn__category,
.sidebar-btn__filter {
    margin: 0px 15px;
}

/* Breadcrumbs */

.breadcrumbs {
    color: var(--text);
    font-size: 14px;
    margin: 30px 0 20px 0;
}

.breadcrumbs > li {
    display: inline-block;
}

.breadcrumbs__current {
    color: var(--main-color);
}

.breadcrumbs a:hover {
    color: var(--main-color);
}

/* Counter */

.counter,
.add-to-cart__counter,
.nominal-counter {
    position: relative;
    color: #121212;
    width: 100px;
}
.nominal-counter {
    width: auto;
}

.counter__input,
.add-to-cart__input,
.nominal-counter__input {
    padding: 8px 30px;
    width: 100%;
    font-size: 18px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid var(--text);
}

.counter__plus,
.counter__minus,
.add-to-cart__plus,
.add-to-cart__minus,
.nominal-counter__plus,
.nominal-counter__minus {
    font-size: 24px;
    position: absolute;
    background: transparent;
    border: none;
    transition: .2s ease-in-out;
    cursor: pointer;
}
.counter__plus,
.add-to-cart__plus,
.nominal-counter__plus {
    right: 10px;
    top: 2px;
}

.counter__minus,
.add-to-cart__minus,
.nominal-counter__minus {
    left: 10px;
    top: 2px;
}


.counter__plus:hover,
.counter__minus:hover,
.add-to-cart__plus:hover,
.add-to-cart__minus:hover,
.nominal-counter__plus:hover,,
.nominal-counter__minus:hover {
    color: var(--main-color);
}

.nominal-counter__info, .nominal-counter__info-pc {
    margin-top: 5px;
}

/*-----------------------*\
        # HEADER
\*-----------------------*/

.logo,
.mob-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0;
    color: var(--main-color);
}
.logo {
    margin: 15px 0;
}

.logo .icon {
    width: 204px;
    height: 30px;
}

.mob-logo {
    display: none;
}

.logo img {
    width: 200px;
}

.logo__desc {
    font-size: 11px;
    text-transform: uppercase;
    color: #121212;
    margin-top: 2px;
    letter-spacing: 1px;
}

.header-top {
    padding: 6px 0;
    border-bottom: 1px solid var(--acent-bg);
}

.header-top__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 14px;
    color: var(--text);
}

.header-top a {
    margin: 0 15px;
    display: flex;
    align-items: center;
}

.header-top a svg {
    margin-right: 4px;
}

.header-top a:hover {
    color: var(--main-color);
}


.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.search {
    position: relative;
    width: 360px;
    fill: var(--text);
}

.search .input {
    padding: 10px 10px 10px 36px;
    width: 100%;
}

.search-on-own {
    margin-top: 20px;
    margin-bottom: 20px;
}

.search-on-own .input[type=search] {
    margin-right: 10px;
    width: 600px;
}

.search__icon {
    position: absolute;
    top: 16px;
    left: 6px;
    cursor: pointer;
}
.filter__item--search {
    position: relative;
}

.filter__item--search .input {
    margin: 20px 0 0;
    background: #fff;
    padding: 10px 10px 10px 30px;
}

.filter__item--search .search__icon {
    top: 32px;
}
.search__result-dynamic {
    position: absolute;
    top: 50px;
    display: none;
    z-index: 3;
    width: 100%;
    height: 260px;
    border: 1px solid var(--main-color);
    background: #fff;
    overflow-y: scroll;
}

.search__result-dynamic > div {
    position: relative;
}

.search__result-dynamic table {
    height: 100%;
    width: 100%;
}

.search__result-header {
    padding: 10px;
    background-color: var(--main-color);
    text-align: right;
    color: #fff;
}

.search__result-dynamic table td {
    margin: 0;
    padding: 5px 20px;
    height: 60px;
    vertical-align: top;
    border-bottom: 1px dashed var(--gray);
}

.search__result-footer {
    padding: 10px;
    background-color: var(--main-color);
    color: #fff;
}

.search__close {
    display: none;
}

.phone__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: #fff;
    flex-wrap: wrap;
    max-width: 480px;
}

.phone__wrapper.active {
    display: flex;
}

.phone__icon {
    display: none;
    cursor: pointer;
}

.phone__item {
    margin: 8px 0;
    white-space: nowrap;
}

.phone__item.whatsapp {
    display: none;
}

.phone__item:hover {
    color: var(--main-color);
}

.phone__item span {
    font-size: 14px;
    color: var(--text);
}

.cart {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cart__icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    color: var(--text);
    fill: var(--text);
    position: relative;
}

.cart__counter {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 8px;
    top: -2px;
    border-radius: 50%;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.cart__desc {
    cursor: pointer;
}

.cart:hover .mini-cart {
    display: block;
}

/* Changed by James */
.mini-cart {
    display: none;
    position: absolute;
    right: 0;
    top: 56px;
    z-index: 3;
    font-size: 14px;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 5px;
}

/* Added by James */
.mini-cart_div {
    display: flex;
    flex-direction: column;
    padding: 20px 10px 20px 20px;
    max-height: 420px;
    width: 280px;
}



.mini-cart.active {
    display: block;
}

.mini-cart__title {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}

.mini-cart__wrap {
    overflow-y: scroll;
}

.mini-cart__wrap::-webkit-scrollbar {
    width: 6px;
    border-radius: 5px;
    background: #f2f2f2;
}

.mini-cart__wrap::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #999;
}

.mini-cart__item {
    margin-right: 10px;
    padding: 15px 0;
    position: relative;
    border-top: 1px solid #999;
}

.mini-cart__item-name {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
}

.mini-cart__item-name svg {
    margin-left: 20px;
    flex: 0 0 auto;
}


.mini-cart__code {
    margin: 10px 0;
    font-size: 14px;
    color: var(--text);
}

.mini-cart__item-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.mini-cart__total {
    padding: 10px 0;
    font-size: 18px;
    font-weight: 700;
    border-top: 1px solid #999;
}

#menu {
    padding: 15px 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--main-color);
}

#menu ul {
    display: flex;
    align-items: center;
}

#menu ul li {
    margin-right: 30px;
}

.mob-menu {
    display: none;
}

.overlay.active {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
}

/*-----------------------*\
        # HOME PAGE
\*-----------------------*/

.home__h1 {
    margin-top: 60px;
    text-align: center;
}

.home__column {
    padding: 0 15px;
    width: 25%;
}

.home__article a {
    text-decoration: underline;
}

/*-----------------------*\
    # CATEGORIES PAGE
\*-----------------------*/

.category-article__text {
    color: var(--text);
    line-height: 1.4;
    margin-top: 10px;
    overflow: hidden;
}

.category-article__text img {
    margin: 20px;
    user-select: none;
}

.category-article__hidden {
    height: 132px;
}

.category-article__text.active {
    height: auto;
}

.category-article__show-more {
    margin-top: 10px;
    width: 100%;
    color: var(--main-color);
    cursor: pointer;
    font-weight: 700;
}

.category-article__text a {
   color: var(--main-color);
    text-decoration: underline;
    font-style: italic;
}

/* Filter */

.filter {
    display: flex;
    flex-wrap: wrap;
    background: #f2f2f2;
    border-radius: 5px;
    color: var(--text);
    padding: 20px;
    margin: 20px 0;
}

.filter__item {
    width: 100%;
    margin-bottom: 30px;
}

.filter__item--half {
    width: 50%;
    margin-bottom: 0;
}

.filter__item.checkboxes {
   margin-bottom: 15px;
}

.filter__item:last-child {
    margin: 0;
}

.filter__item-name {
    font-size: 18px;
    font-weight: 700;
}

.separator {
    height: 1px;
    width: 30px;
    margin: 0 10px;
    background: var(--gray);
}

.price-input {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 15px 0 30px;
}

.price-input .field {
    position: relative;
}

.field input {
    border: 1px solid #999;
    border-radius: 5px;
    color: var(--text);
    text-align: center;
    padding: 10px 20px;
    width: 120px;
}

.field label {
    color: var(--text);
    position: absolute;
    top: 10px;
    left: 10px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* .slider {
    height: 5px;
    position: relative;
    background: #fff;
    border-radius: 5px;
}

.slider .progress {
    height: 100%;
    left: 0.3%;
    right: 0;
    position: absolute;
    border-radius: 5px;
    background: var(--main-color);
}

.range-input {
    position: relative;
}

.range-input label {
    position: absolute;
    opacity: 0;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 28px;
    width: 28px;
    border: 10px solid var(--main-color);
    border-radius: 50%;
    background: #fff;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    height: 28px;
    width: 28px;
    border: 10px solid var(--main-color);
    border-radius: 50%;
    background: #fff;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
} */

.filter__row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.filter__arrow-down {
    position: relative;
    top: 5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.filter__row-hidden {
    display: none;
}

.filter__row label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    margin-right: 20px;
    margin-bottom: 15px;
}

.filter__row label input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter__checkbox {
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #999;
    margin-right: 12px;
}

.filter__row label input[type="checkbox"]:checked+.filter__checkbox {
    background: var(--main-color);
}

.filter__row label input[type="checkbox"]:checked+.filter__checkbox svg {
    display: block;
}

.filter__submit {
    border: 1px solid var(--main-color);
    box-shadow: none;
    margin-right: 20px;
}

/* Filter end */

/* Sort */

.category-switches {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 10px;
}

.category-sort {
    position: relative;
    cursor: pointer;
    padding: 8px;
    border: 1px solid var(--gray);
    border-radius: 5px;
}

.category-sort__icon {
    width: 12px;
    height: 12px;
    pointer-events: none;
}
.category-sort__icon.rotated {
    transform: rotate(180deg);
}

.category-sort {
    position: relative;
    cursor: pointer;
}

.category-sort__box {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    width: 168px;
    padding: 10px;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 5px;
    z-index: 1;
}

.category-sort__box.active {
    display: block;
}

.category-sort__value {
    line-height: 1.8;
    transition: 0.3s ease-in-out;
}

.category-sort__value:hover {
    color: var(--main-color);
}


/* Sort old */

.sort {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.sort span {
    font-weight: 700;
    margin-right: 20px;
}

.sort__wrapper {
    position: relative;
    margin-right: 10px;
}

.sort input {
    position: absolute;
    opacity: 0;
}

.sort__item {
    background: #f2f2f2;
    border: 1px solid #9999;
    border-radius: 5px;
    color: var(--text);
    cursor: pointer;
    padding: 4px 8px;
}

.up.sort__item::after {
    content: "";
    display: inline-block;
    background: url(../images/front/sort_arrow-down.png) no-repeat;
    height: 16px;
    width: 16px;
    position: relative;
    top: 2px;
    right: -2px;
}

.down.sort__item::after {
    content: "";
    display: inline-block;
    background: url(../images/front/sort_arrow-down.png) no-repeat;
    height: 16px;
    width: 16px;
    position: relative;
    top: 2px;
    right: -2px;
    transform: rotate(180deg);
}

.sort__wrapper input[type="radio"]:checked+label {
    border: 1px solid var(--main-color);
    background: var(--main-color);
    color: #fff;
}

.sort__wrapper input[type="radio"]:checked+.down.sort__item::after {
    content: "";
    display: inline-block;
    background: url(../images/front/sort_arrow-down_white.png) no-repeat;
}

.sort__wrapper input[type="radio"]:checked+.up.sort__item::after {
    content: "";
    display: inline-block;
    background: url(../images/front/sort_arrow-down_white.png) no-repeat;
}

/* Sort end */

/* Product list */
.product-list {
    margin-top: 20px;
}
.product-list__item {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}
.product-list__item .secondary-btn, .add-to-cart .secondary-btn {
    background: #fff;
    color: var(--black);
    font-size: inherit;
}

/*.product-list__img {
    width: 30%;
    text-align: center;
    border: 1px solid red;
}*/

.product-list__gallery {
    width: 38%;
    position: relative;
}

.product-list-thumbs {
    display: flex;
    margin: 20px 0;
}

.product-list-thumbs__item {
    width: 30%;
    margin: 0 1.5%;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.product-list-thumbs__item img {
    height: auto;
    border-radius: 5px;
}

.product-list__zoom {
    position: absolute;
    top: 0;
    right: 12px;
    padding: 16px;
    cursor: pointer;
}

.product-list__zoom svg {
    pointer-events: none;
}

.product-list__img  {
    display: flex;
    /*padding: 10px 0;
    border: 1px solid #fad9d1;
    border-radius: 5px;
    box-shadow: var(--shadow);*/
    align-items: start;
    height: auto;
}
/*.product-list__img img {
    height: 266px;
    width: auto;
}*/

.product-list__img img {
    height: auto;
    max-width: 100%;
    max-height: 260px;
    width: auto;
}

.product-list__desc {
    width: 60%;
}

.product-list__name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.product-params {
    border-radius: 5px;
    margin: 20px 0;
    overflow: hidden;
}

.product-params__row {
    display: flex;
    align-items: stretch;
}

.product-params__field {
    background: var(--main-color);
    color: #fff;
    border-bottom: 1px solid #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    width: 50%;
}

.product-params__field-content {
    background: var(--secondary-color);
    border-bottom: 1px solid #fff;
    display: flex;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    width: 50%;
}

.product-params__field-content a {
    text-decoration: underline;
    font-style: italic;
}

.product-params__field-content a:hover {
  color: var(--main-color);
}
.product-params table {
    font-size: 14px;
    border-collapse: collapse;
    border-radius: 5px;
    overflow: hidden;
}

.product-params th, td {
    padding: 10px;
    text-align: center;
}

.product-params th {
    background-color: var(--main-color);
    color: #fff;
}

.product-params tr {
    background: var(--secondary-color);
    border-top: 1px solid #fff;
}

.product-params td a {
    text-decoration: underline;
}

.product-params .gift-set {
    font-size: 12px;
    color: var(--text);
    margin-bottom: 10px;
}

.product-params__info-btn, .product-property-icon {
    cursor: pointer;
    margin-left: 8px;
}

.product-params__info-btn svg, .product-property-icon svg {
    pointer-events: none;
}

.product-field-info, .product-property-tip {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    font-size: 13px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
    width: 260px;
    animation: fadeIn 0.3s ease-in-out;
}

.product-list__price {
    font-size: 20px;
    font-weight: 700;
}

.product-list__price .price-on-request {
    font-size: 16px;
    color: var(--main-color);
}

.peers {
    margin-top: 20px;
}

.peers h2 {
    margin-bottom: 20px;
}

.peers > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
}

.peers > div img {
    width: 100%;
}


/* Product list end */

/* Product labls */
.tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.tabs__item {
    white-space: nowrap;
    margin: 5px;
    font-size: 14px;
    padding: 8px 12px;
}

.product-lables {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 20px 0 60px;
}

.product-lables-item {
    width: 25%;
    position: relative;
}

.product-lables-item__info {
    display: block;
    margin: 10px 0;
}

.product-lables-item__wrap {
    padding: 10px;
    height: 100%;
    transition: 0.3s ease-in-out;
}

.product-lables-item:hover .product-lables-item__wrap {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 5px;
    background: #fff;
}

.product-lables-item__title {
    font-size: 12px;
    font-weight: bold;
    transition: .3s ease-in-out;
}

.product-lables-item__title:hover {
    color: var(--main-color);
}

.product-lables-item__price,
.product-lables-item__desc {
    margin-top: 10px;
    font-size: 14px;
}

.product-lables-item__desc a:hover {
    color: var(--main-color);
}

.product-lables-item__title,
.product-lables-item__price,
.product-lables-item__desc {
    display: none;
}

/* Pagination */

/* Added by James. To be refactored later on */
.pagination {
    margin: 10px 0;
    font-size: 1.1rem;
    color: var(--text);
}

.pagination span, .pagination a.pagination_page{
    display: inline-block;
    margin: 0 3px;
    border: 1px solid var(--main-color);
    border-radius: 3px;
    padding: 5px 7px;
}

.pagination span{
    background-color: var(--main-color);
    color: #fff;
}
.pagination a.pagination_page:hover {
    background-color: var(--main-color);
    color: #fff;
}

.pagination-top {
    font-size: 14px;
    color: #696969;
}

.h1-pagination {
    font-size: 20px;
    color: var(--text);
}

/* Disabled by James
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    color: var(--text);
    font-size: 18px;
}

.pagination__item {
    margin: 0 10px;
}

.pagination__item:hover {
    color: var(--main-color);
}

.pagination__current {
    border: 1px solid var(--main-color);
    border-radius: 5px;
    padding: 10px 10px;
    color: var(--black);
}

.pagination__prev svg,
.pagination__next svg {
    width: 24px;
    height: 24px;
}
*/

/* Pagination end */

/*-----------------------*\
        # PRODUCT PAGE
\*-----------------------*/

.product__wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 20px;
}

.product__right {
    width: 50%;
}

/*.product__gallery {
    width: 48%;
    border: 1px solid blue;
}*/

.product__gallery {
    position: relative;
    margin-top: 20px;
    /*padding: 10px 0;*/
    width: 48%;
    /*border: 1px solid #fad9d1;
    border-radius: 5px;
    box-shadow: var(--shadow);*/
}

.product__gallery > a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.product__gallery > a > img {
    height: auto;
    width: auto;
    max-height: 420px;
}

.product__weight {
    margin: 10px 0;
    color: var(--gray);
    font-size: 14px;
}

.product__wrap .add-to-cart {
    margin-top: 20px;
}

.product-thumbnail-wrap {
    overflow: hidden;
    position: relative;
}

.product__thumbnail {
    display: flex;
    align-items: center;
    transition: 0.3s ease-in-out;
}

.product-thumbnail-btn {
    position: absolute;
    right: 0;
    height: 100%;
    width: 50px;
    top: 0;
    user-select: none;
    cursor: pointer;
}

.product-thumbnail-btn--left {
    display: none;
    background: linear-gradient(90deg, white 55%, transparent);
    left: 0;
}

.product-thumbnail-btn--right {
    background: linear-gradient(90deg, transparent 5%, white);
    right: 0;
}

.product-thumbnail-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow);
    color: var(--main-color);
    padding: 10px;
    position: absolute;
    top: 50%;
    right: 5px;
    pointer-events: none;
    transform: translateY(-50%);
}

.product__thumbnail::-webkit-scrollbar {
    display: none;
}

.product__thumbnail-item {
    border-radius: 5px;
    border: 1px solid var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.product__thumbnail-item img {
    height: auto;
}

.product-description,
.product-volumes,
.product-recommend,
.product-reviews {
    margin-top: 40px;
    position: relative;
}

.product-recommend {
    overflow: hidden;
}

.product-volumes__wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 10px;
}

.product-volumes__item {
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-template-areas:
        "a a b"
        "a a c";
    line-height: 1.4;
    margin: 1% 2% 1% 0;
    padding: 10px;
    width: 23%;
    transition: .3s ease-in-out;
}

.product-volumes__item:hover {
    border: 1px solid var(--main-color);
    box-shadow: var(--shadow);
}

.product-volumes__item img {
    grid-area: a;
}

.product-volumes__item strong {
    grid-area: b;
    align-self: end;
}

.product-volumes__item span {
    grid-area: c;
    align-self: start;
}

.product-recommend__wrap {
    display: flex;
    align-items: stretch;
    transition: 0.3s ease-in-out;
}

.product-recommend__wrap::-webkit-scrollbar {
    display: none;
}

.product-recommend__item {
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: 0 0 auto;
    font-size: 14px;
    color: var(--text);
    margin: 3% 2.1% 2% 0;
    padding: 10px;
    width: 23%;
    text-align: center;
    transition: .3s ease-in-out;
}

.product-recommend__item:hover {
    border: 1px solid var(--main-color);
    box-shadow: var(--shadow);
}

.product-recommend__item img {
    width: auto;
    height: auto;
    max-height: 180px;
    margin-bottom: 10px;
}

.product-recommend__item-price {
    margin-top: 10px;
    font-weight: 700;
    color: var(--black);
}

.product-recommend__arrow-right,
.product-recommend__arrow-left {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow);
    color: var(--main-color);
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 50%;
}

.product-recommend__arrow-right {
    right: 0;
}

.product-recommend__arrow-left {
    left: 10px;
}

.product-reviews__item {
    background: #f2f2f2;
    border-radius: 5px;
    margin: 20px 0;
    padding: 20px;
}

.product-reviews__user {
    display: flex;
    align-items: flex-start;
    font-weight: 700;
}

.product-reviews__star-block {
    display: flex;
    margin: 0 10px 3px;
}

.product-reviews__star svg {
    color: #FFDD2A;
    margin: 0 2px;
}

.product-reviews__date {
    margin-bottom: 10px;
}

.product-reviews {
    margin-bottom: 40px;
}

.review-form__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.review-form__notice {
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 600;
    font-size: 14px;
    color: var(--main-color);
}

fieldset.review-form__star {
    border: none;
    position: relative;
}

.review-form__star legend {
    margin-bottom: 10px;
}

.review-form__score {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.review-form__star-label-1,
.review-form__star-label-2,
.review-form__star-label-3,
.review-form__star-label-4,
.review-form__star-label-5 {
    color: var(--gray);
    cursor: pointer;
}

.review-form__star-label-1:hover,
.review-form__star-label-2:hover,
.review-form__star-label-3:hover,
.review-form__star-label-4:hover,
.review-form__star-label-5:hover {
    color: var(--main-color);
}

#review-score-1:checked~.review-form__star-label-1 svg {
    color: var(--main-color);
}

#review-score-2:checked~.review-form__star-label-1 svg,
#review-score-2:checked~.review-form__star-label-2 svg {
    color: var(--main-color);
}

#review-score-3:checked~.review-form__star-label-1 svg,
#review-score-3:checked~.review-form__star-label-2 svg,
#review-score-3:checked~.review-form__star-label-3 svg {
    color: var(--main-color);
}

#review-score-4:checked~.review-form__star-label-1 svg,
#review-score-4:checked~.review-form__star-label-2 svg,
#review-score-4:checked~.review-form__star-label-3 svg,
#review-score-4:checked~.review-form__star-label-4 svg {
    color: var(--main-color);
}

#review-score-5:checked~.review-form__star-label-1 svg,
#review-score-5:checked~.review-form__star-label-2 svg,
#review-score-5:checked~.review-form__star-label-3 svg,
#review-score-5:checked~.review-form__star-label-4 svg,
#review-score-5:checked~.review-form__star-label-5 svg {
    color: var(--main-color);
}

.letter-counter {
    display: block;
    width: 100%;
    text-align: right;
    font-weight: 600;
}

/* Cart Page */

.cart-page {
    display: block;
    margin-top: 30px;
}

.cart-page__item {
    display: grid;
    gap: 10px;
    /*grid-template-columns: 80px auto 80px 120px 20px;*/
    grid-template-columns: 80px auto 310px 20px;
    align-items: center;
    margin: 20px 0;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cart-page__price-and-quantity {
    display: grid;
    gap: 5px;
    grid-template-columns: 90px 110px 110px;
}

.cart-page__item.header {
    font-weight: 600;
}

.cart-page__name {
    text-align: left;
}

.cart-page__name ul li:nth-child(1) {
    font-size: 14px;
    color: var(--text);
}

.cart-page__name ul li:nth-child(2) {
    margin: 6px 0;
}

.cart-page__delete {
    color: var(--gray);
}

.cart-page__item img {
    height: auto;
    right: 10px;
}

.cart-page__item .add-to-cart__plus {
    right: 10px;
}

.cart-page__item .add-to-cart__counter {
    width: 100px;
}

.cart-page .primary-btn {
    display: inline-block;
}

.cart-page__summary {
    /*font-size: 20px;
    font-weight: 700;
    margin: 20px 0;*/
}

.cart-page__summary ul li span {
    font-weight: 600;
}

.cart-page__checkout {
    margin-top: 20px;
}
.cart-page__item-desc {
    display: flex;
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    margin-top: 5px;
}

.cart-page__item-desc div {
    margin-right: 10px;
}

.cart-page__price-label {
    display: none;
}

/*-----------------------*\
    # CHECKOUT PAGE
\*-----------------------*/

.checkout {
    display: none;
    margin-top: 30px;
}

.checkout h1 {
    margin-bottom: 20px;
}

.checkout__cart {
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    margin: 20px 0;
    padding: 10px 20px;
}

.checkout__cart .cart-page__item {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--light-gray);
    margin: 0;
}

.checkout .secondary-btn {
    border-color: var(--main-color);
    color: var(--main-color);
}


.checkout__title {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0;
}

.checkout__text {
    font-size: 14px;
    margin-top: 20px;
}

.checkout__text p {
    margin: 10px 0;
}

.checkout__text-title {
    color: var(--main-color);
    font-weight: 700;
}

.checkout-check {
    display: flex;
    font-weight: 700;
    margin: 10px 0;
}

.checkout-check label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    margin-right: 20px;
}

.checkout-check label input {
    position: absolute;
    opacity: 0;
}

.checkout-check__checkbox {
    width: 24px;
    height: 24px;
    background: #f2f2f2;
    border-radius: 5px;
    border: 1px solid #999;
    margin-right: 12px;
}

.checkout-check label input[type="checkbox"]:checked+.checkout-check__checkbox {
    background: var(--main-color);
}

.checkout__company-fields {
    display: none;
}

.checkout__company-fields.active {
    display: block;
}

.input__info {
    display: none;
    color: var(--main-color);
}



/* Stock checkout */
.checkout-stock {
    max-width: 580px;
    width: 100%;
}
.checkout-stock__title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
.checkout-stock__product {
    display: flex;
    margin: 20px 0 10px;
    padding: 10px 0;
    border-top: 1px solid var(--acent-bg);
    border-bottom: 1px solid var(--acent-bg);
}
.checkout-stock__product img {
    width: 80px;
    margin-right: 20px;
}
.checkout-stock__wrap {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
.checkout-stock__price {
    margin-right: 20px;
}

.checkout-stock__price span {
    color: var(--main-color);
}
.checkout-stock__total {
    font-weight: bold;
}
.checkout-stock__total span {
    color: var(--main-color);
}
.checkout-stock__submit {
    margin-top: 20px;
}

/* Article */

.article figure,
.article img {
    background: #f2f2f2;
    border-radius: 5px;
}

.article figcaption {
    color: var(--text);
    font-style: italic;
    font-size: 14px;
    padding: 10px;
    text-align: center;
}

/* Search page */

.search-article_text {
    color: var(--text);
    line-height: 1.4;
    margin-top: 10px;
    overflow: hidden;
}

.search-article_text h2 {
    padding: 0 0 3px;
    width: 100;
    border-bottom: 1px solid var(--light-gray);
}

.search-article_text h2.relevant {
    color: var(--main-color)
}
.search-article_text ul {
    margin-top: 10px;
    margin-left: 10px
}
.search-article_text li {
    margin-bottom: 10px;
}

/* Blog */

.main-articles {
    display: flex;
    align-items: stretch;
}

.main-articles-item-wrap {
    width: 33%;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-articles-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
}

.main-articles-item img {
    width: 100%;
    height: auto;
}

.main-articles-item--large {
    width: 65%;
    height: auto;
}

.main-article-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: linear-gradient(0deg, #00000070, transparent);
    color: #fff;
    width: 100%;
}

.main-article-title {
    font-size: 24px;
    font-weight: bold;
}

.blog-list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 40px 0;
}

.blog-list-item {
    display: flex;
    flex-direction: column;
    width: 25%;
    padding: 10px 10px 30px;
}

.blog-list-item__img {
    border-radius: 5px;
    height: auto;
}

.blog-list-item__categoty {
    font-size: 14px;
    color: var(--text);
    margin: 10px 0;
}

.blog-list-item__title {
    font-weight: bold;
    line-height: 1.4;
}

.blog-article {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
}

.blog-article p {
    font-size: 18px;
    line-height: 1.6;
}

.blog-article h2 {
    margin-top: 40px;
}

.blog-article h3 {
    font-size: 16px;
    margin-top: 40px;
}

.blog-article a {
    text-decoration: underline;
    font-style: italic;
    color: var(--main-color);
}

.blog-article img {
    border-radius: 5px;
    margin: 20px 0;
    width: 100%;
    height: auto;
}

.blog-article blockquote {
    font-style: italic;
    margin-left: 40px;
    position: relative;
}

.blog-article blockquote:before {
    content: "";
    background: url(../images/site/outline_quote.png);
    background-size: contain;
    width: 32px;
    height: 32px;
    position: absolute;
    left: -40px;
    top: 0;
}

.blog-article .breadcrumbs a {
    font-style: normal;
    text-decoration: none;
    color: inherit;
}

.blog-article #video {
    margin: 40px 0;
    overflow: hidden;
    border-radius: 5px;
    line-height: 0;
}

.blog-article-content {
    padding: 20px;
    background: var(--acent-bg);
    border-radius: 5px;
}

.blog-article-content__title {
    font-size: 20px;
    font-weight: bold;
}

.blog-article-content-list p {
    margin: 15px 0 0 40px;
    position: relative;
}

.blog-article-content-list p:before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    left: -30px;
    top: 50%;
}

.blog-article-content-list a {
    color: #121212;
    font-style: normal;
    text-decoration: none;

}

.blog-article ol {
    padding-left: 40px;
    line-height: 1.6;
    margin: 20px 0;
}

.blog-article ul {
    list-style: disc;
    padding-left: 40px;
}

.blog-article li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.blog-article .product-list__img img,
.blog-article .product-list-thumbs__item img {
    width: auto;
    margin: 0;
}

.blog-article .product-list a {
    color: inherit;
    font-style: normal;
    text-decoration: none;
}

.article-author {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    font-style: italic;
    margin-top: 40px;
    color: var(--text);
}

.article-author div {
    margin-right: 20px
}

.blog-article__date {
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    color: var(--text);
}

.blog-article__date-upadte {
    font-weight: normal;
}


.tags {
    margin-top: 80px;
}

.tags__title {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 10px;
}

.tags__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.tags__item {
    white-space: nowrap;
    margin: 5px;
    font-size: 14px;
    padding: 8px 12px;
}

.related-products__title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 10px;
}

.related-products__inner {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.product-vartical {
    width: 25%;
    padding: 10px;
}

.product-vartical__inner {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--acent-bg);
    border-radius: 5px;
    position: relative;
    transition: 0.3s ease-in-out;
    height: 100%;
}

.product-vartical__inner:hover {
    border: 1px solid var(--main-color);
    box-shadow: 0 0 12px rgba(0,0,0,0.10);
}

.product-vartical__inner img {
    margin-top: 10px;
}

.product-vartical__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-vartical__article {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 14px;
    color: var(--text);
}
.product-vartical__img {
    max-width: 220px;
}

.product-vartical__title {
    text-align: center;
    font-weight: bold;
    margin: 10px 0;
}

.product-vartical__price {
    font-size: 20px;
}

.product-vartical__add-to-cart.primary-btn {
    width: 100%;
    margin-top: 10px;
}

.product-vartical__add-to-cart.secondary-btn {
    width: 100%;
    margin-top: 10px;
}

/*-----------------------*\
    # FOOTER
\*-----------------------*/

.footer {
    background: var(--main-color);
    padding: 40px 0 20px 0;
    color: #fff;
    margin-top: 80px;
}

.footer__icon {
    width: 180px;
    height: 27px;
    fill: white;
}

.footer p {
    margin: 10px 0;
}

.footer__wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-column li {
    margin: 10px 0;
}

.footer-column__social {
    display: flex;
    align-items: center;
}

.footer-column__social li {
    margin: 0;
}

.footer-column__social .icon {
    width: 32px;
    height: 32px;
    fill: white;
    margin-right: 10px;
}

.footer__18 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin: 80px 0 20px 0;
    text-transform: uppercase;
}

.footer__18 .icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    fill: white;
}

.footer__text p {
    font-size: 13px;
    line-height: 1.6;
}

.footer__copyright {
    font-size: 13px;
    text-align: center;
    margin-top: 40px;
}

.liveinternet {
    display: block;
    background: var(--main-color);
    padding: 0 10px;
}

/* Footer end */

.price-exception {
    margin-top: 5px;
    width: 100%;
    text-align: right;
    font-size: 14px;
}

.cart-print {
    display: block;
}

.checkout__btn input {
    margin-left: 10px;
}

/*-----------------------*\
    # 404
\*-----------------------*/

.error-404 {
    height: calc(100vh - 159px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.error-404__title {
    font-weight: bold;
    font-size: 10vw;
}

.error-404__subtitle {
    font-size: 24px;
}

.error-404__description {
    max-width: 350px;
    text-align: center;
    margin: 20px 0;
    color: var(--text);
}

.error-404__wrapper {
    display: flex;
    max-width: 350px;
    width: 100%;
    justify-content: space-around;
}

/* Classification table */

.classification__wrap {
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--light-gray);
    margin: 20px 0;
}
.classification-table {
    display: flex;
    overflow-x: scroll;
}

.classification-table::-webkit-scrollbar{
    display: none;
}

.classification__filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.classification-btns {
    display: flex;
    flex-wrap: wrap;
}

.classification-btns .secondary-btn.active {
    background: var(--main-color);
    color: #fff;
}

.classification-btns .secondary-btn {
    margin-left: 20px;
}

.classification-arrows__right,
.classification-arrows__left {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    z-index: 1;
    width: 48px;
    height: 48px;
    background: var(--main-color);
    opacity: 0.5;
    color: #fff;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.classification-arrows__right:hover,
.classification-arrows__left:hover {
    opacity: 0.7;
}

.classification-arrows__right.active,
.classification-arrows__left.active {
    display: flex;
}

.classification-arrows__right svg {
    pointer-events: none;
}

.classification__column {
    width: 224px;
    border-left: 1px solid var(--gray);
    flex: 0 0 auto;
}

.classification__title {
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}
.classification-submenu {
    position: relative;
    margin-left: 10px;
}

.classification-submenu-options__item .filter__row span {
    pointer-events: none;
}
.classification-submenu__btn {
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.classification-submenu__btn.active {
    transform: rotate(180deg);
}
.classification-submenu__btn svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}
.classification-submenu-options {
    display: none;
    position: absolute;
    top: 32px;
    right: -52px;
    background: #fff;
    width: 200px;
    padding: 5px 15px;
    z-index: 1;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
    color: var(--black);
}
.classification-submenu-options.active {
    display: block;
}

.classification__subtitle {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    background: var(--light-gray);
}

.classification__item {
    font-size: 14px;
    border-bottom: 1px solid var(--light-gray);
}

.classification__item .filter__row {
    margin: 0;
    padding: 10px;
}

.classification__item .filter__row label {
    margin: 0;
}

.classification__item-value.highlight {
    background: var(--secondary-color);
}

label.classification-check-all {
    margin: 0 15px;
}

.classification-check-all input, .classification-check-all span {
    pointer-events: none;
}

.classification-desc {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.classification-desc__item {
    position: relative;
    padding-left: 28px;
    margin-right: 20px;
}

.classification-desc__item:before {
    content: "";
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid var(--gray);
    position: absolute;
    top: -2px;
    left: 0;
}

.classification-desc__item.classification-desc__item--region::before {
    background: var(--black);
    border: 1px solid var(--black);
}
/*-----------------------*\
    # MEDIA START
\*-----------------------*/

@media (max-width: 1200px) {

    .phone__icon {
        display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    color: var(--text);
    fill: var(--text);
    }

    .phone__item {
        margin: 8px 0;
    }

    .phone__wrapper {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        background: #fff;
        border-radius: 5px;
        box-shadow: var(--shadow);
        position: absolute;
        padding: 20px;
        top: 140px;
        left: auto;
        right: 40px;
        width: 320px;
        z-index: 2;
        flex-wrap: wrap;
        max-width: 440px;
    }

    .cart__desc {
        display: none;
    }

    .mini-cart {
        display: none;
    }

    .mini-cart.active {
        display: block;
    }

    .home__column {
        padding: 0 10px;
    }

    .link-block {
        margin: 20px 0;
    }

    .sidebar-btn {
        display: flex;
    }

    .left-sidebar,
    .right-sidebar {
        display: none;
    }

    .content {
        margin: 0 auto;
        width: 100%;
    }

    .left-sidebar.active,
    .right-sidebar.active {
        background: #fff;
        box-shadow: 4px 0 12px rgb(0 0 0 / 20%);
        display: block;
        height: 100%;
        width: 254px;
        padding: 0 20px;
        position: fixed;
        top: 0;
        left: 0;
        overflow: scroll;
        z-index: 10;
    }

    .right-sidebar.active {
        box-shadow: -4px 0 12px rgb(0 0 0 / 20%);
        left: auto;
        right: 0;
    }

}

@media (max-width: 1024px) {
    .product-lables-item {
        width: 14.2%;
    }
    .blog-list-item {
        width: 33%;
    }
    .link-block-arrow .link-block__link {
        width: 116px;
    }
    .product-vartical {
        width: 33.3%;
    }
}

@media (max-width: 768px) {
    #menu ul {
        justify-content: center;
    }

    .footer__item {
        margin: 10px;
    }

    .row {
        flex-wrap: wrap;
    }

    .home__column {
        width: 50%;
    }

    .custom-modal_div {
        width: 100%;
    }
    .product-lables-item {
        width: 25%;
    }
    .product-lables-item__wrap {
        height: 312px;
    }
    .product-vartical {
        width: 50%;
    }

}

@media (max-width: 580px) {
    .mob-logo {
        display: block;
        font-size: 14px;
        text-align: center;
    }

    .logo__desc {
        font-size: 9px;
    }

    .mob-logo svg {
        width: 164px;
        height: 28px;
    }

    .header {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 10;
    }

    .header-top {
        display: none;
    }

    .logo,
    #menu {
        display: none;
    }

    #menu.active {
        display: block;
    }

    .mob-menu {
        background: var(--main-color);
        box-shadow: var(--shadow);
        display: flex;
        justify-content: space-between;
        padding: 10px 20px;
        z-index: 2;
        width: 100%;
        transition: .3s ease-in-out;
    }

    .mob-menu__item {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .mob-menu__item svg {
        height: 20px;
        width: 20px;
    }

    .mob-menu__item span,
    .mob-menu__item a {
        color: #fff;
        margin-top: 4px;
        font-size: 14px;
    }

    .phone__item.whatsapp {
        display: flex;
        align-items: center;
    }

    .phone__item.whatsapp svg{
        margin-right: 8px;
    }

    #menu ul {
        flex-direction: column;
    }

    #menu ul li {
        margin: 15px 0;
    }

    .field input {
        width: 116px
    }

    .filter {
        padding: 16px;
    }

    .search {
        display: none;
        position: fixed;
        padding: 20px;
        top: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        height: 100%;
        background: #fff;
    }
    .search__form {
        position: relative;
        display: flex;
        align-items: center;
    }

    .search__close {
        display: block;
        margin-left: 10px;
        font-size: 14px;
        text-transform: uppercase;
    }

    .search__result-dynamic {
        position: static;
        border-radius: 5px;
    }
    .search.active {
        display: block;
    }

    .search__result-header {
        text-align: center;
    }

    .search .input {
        background: #fff;
        width: 100%;
    }

    .search__icon {
        left: 10px;
    }

    .phone__icon {
        display: none;
    }

    .cart__icon {
        display: none;
    }

    .mini-cart.active {
        top: -480px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .mini-cart__wrap {
        max-height: 248px;
    }

    .phone__wrapper {
        margin: 0;
        top: -320px;
        left: 50%;
        right: auto;
        transform: translate(-50%);
    }

    .breadcrumbs {
        margin: 20px 0;
    }

    .home__column {
        padding: 0;
        width: 100%;
    }

    .filter__item {
        margin-bottom: 15px;
    }

    .filter__item.checkboxes {
        margin-bottom: 20px;
    }

    .filter__row label,
    .radio-container,
    .filter__row {
        margin: 10px;
    }

    .sort__wrapper {
        margin: 8px;
    }

    .sort__item {
        font-size: 14px;
    }

    .product-list__item {
        flex-direction: column;
    }

    .product-list__desc {
        width: 100%;
    }
    .product-list__gallery {
        width: 100%;
    }
    .product-list__img {
        justify-content: center;
    }
    .product-list-thumbs {
        width: 48px;
        margin: 0;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
    }
    .product-list-thumbs__item {
        width: 100%;
        margin: 5px 0;
    }

    .product-params__field,
    .product-params__field-content {
        font-size: 13px;
        padding: 6px;
    }

    .product-params__row.price {
        flex-direction: column;
        align-items: flex-start;
    }

    .add-to-cart, .availability-request {
        margin: 12px 0;
    }

    .sidebar-btn {
        bottom: 60px;
        justify-content: space-between;
        z-index: auto;
    }

    .sidebar-btn__category {
        margin: 0 10px 0 20px;
        width: 45%;
    }

    .sidebar-btn__filter {
        width: 45%;
        margin: 0 20px 0 10px;
        padding: 10px;
        white-space: nowrap
    }

    .cart-page__item {
        grid-template-columns: 80px auto;
        justify-content: space-between;
        position: relative;
    }

    .cart-page__delete {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 1;
    }

    .product__wrap {
        flex-direction: column;
    }

    .product__gallery,
    .product__right {
        width: 100%;
    }

    .product-volumes__item {
        width: 46%;
        margin: 2%;
    }

    .product-recommend__item {
        width: 46%;
        margin: 20px 2% 2%;
    }

    .product-recommend__arrow-left {
        left: -10px;
    }

    .footer {
        padding: 40px 0 80px 0;
    }

    .footer__wrap {
        flex-direction: column;
        align-items: center;
    }
    .footer-column {
        text-align: center;
        margin-top: 40px;
    }

    .footer__logo {
        margin-bottom: 20px;
    }

    .footer__18 {
        align-items: center;
        font-size: 12px;
        text-align: center;
    }

    .footer__18 span {
        width: 75%;
    }

    .price-exception {
        margin: 0;
        text-align: left;
    }

    .cart-print {
        display: none;
    }

    .cart-page__item.header {
        display: none;
    }

    .cart-page__price, .add-to-cart__sum {
        display: flex;
        align-items: center;
        flex-direction: column;
        font-weight: 700;
    }

    .cart-page__price-label {
        display: inline-block;
        font-weight: 400;
    }

    .checkout__btn {
        display: flex;
        flex-direction: column;
    }

    .checkout__btn input {
        margin-left: 0;
    }
    .product-lables-item {
        width: 50%;
    }
    .product-lables-item__wrap {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }
    .product-lables-item__info {
        display: block;
    }
    .error-404__title {
        font-size: 32vw;
    }

    .filter__item--half {
        width: 100%;
    }
    .product-vartical {
        width: 100%;
    }
    .main-articles{
        flex-direction: column;
    }
    .main-articles-item {
        width: 100%;
    }
    .main-articles-item-wrap {
        width: 100%;
        padding: 0;
    }
    .main-articles-item {
        width: 100%;
        margin-bottom: 20px;
    }
    .blog-list {
        flex-direction: column;
        margin: 0 0 40px;
    }
    .blog-list-item {
        width: 100%;
        padding: 0 0 30px;
    }
}

/* Added by James */
/* Modal */
.custom-modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top:  0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    padding: 20px;
    background-color: rgb(0, 0, 0, 0.4);
}
    .custom-modal_div {
        position: relative;
        margin: 0 20px;
        padding: 25px 20px 10px;
        width: auto;
        height: auto;
        min-height: 200px;
        background-color: #fff;
        box-shadow: var(--shadow);
        border-radius: 10px;
    }

/* Cart in modal that appears after adding a product to the cart */
.cart-in-modal {
    max-width: 860px;
    width: 100%;
}

.cart-in-modal__close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.cart-in-modal__title {
    font-size: 28px;
    font-weight: 700;
}

.cart-in-modal__product {
    display: flex;
    margin: 30px 0;
}

.cart-in-modal__product img {
    height: 200px;
    margin-right: 40px;
}

.cart-in-modal__total {
    margin: 20px 0;
    color: var(--text);
}

.cart-in-modal__total span {
    color: var(--main-color);
}

.cart-in-modal .product-list__name {
    margin: 20px 0;
}

.cart-in-modal .primary-btn {
    margin-left: 20px;
}

.cart-in-modal .secondary-btn {
    color: var(--main-color);
}

.cart-in-modal__product-desc {
    max-width: 100%;
}

.cart-in-modal__product-desc .product-list__price {
    display: flex;
    align-items: center;
}

.cart-in-modal__product-desc .counter {
    margin-left: 20px;
}

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

@media (max-width: 580px) {
    .cart-in-modal__product img {
        display: none;
    }
    .cart-in-modal__title {
        font-size: 18px;
    }
    .cart-in-modal__product {
        margin: 0;
    }
    .cart-in-modal .add-to-cart {
        margin: 20px 0;
        align-items: flex-start;
        flex-direction: column;
    }
    .cart-in-modal .secondary-btn {
        margin: 15px 0;
        width: 100%;
    }
    .cart-in-modal .primary-btn {
        width: 100%;
        margin: 0;
    }

    .cart-in-modal__product-desc .product-list__price {
        font-size: 16px;
    }
}

.age-check {
    padding: 20px;
    margin: 0 20px;
    max-width: 860px;
    width: 100%;
}

.age-check__18 {
    position: absolute;
    right: 30px;
    top: 30px;
}

.age-check {
    margin: 60px 0;
}

.age-check__logo {
    text-align: center;
}

.age-check__logo div {
    color: var(--main-color);
}

.age-check__big-text {
    font-size: 24px;
    margin: 30px 0;
}

.age-check .primary-btn {
    font-size: 20px;
    margin: 30px auto;
    width: max-content;
}

/* Modal window that pops up when adding a new product review */
.review-status-in-modal {
    margin: 0;
    padding: 40px;
    max-width: 600px;
    max-height: 400px;
    line-height: 1.3;
    font-size: 18px;
    font-weight: 600;
}

.review-status-in-modal_btn {
    margin-top: 40px;
}

/* Contact page */
.contact-wrap {
    display: flex;
    align-items: flex-start;
}

.contact__info ul {
    list-style: disc;
    margin-left: 40px;
    line-height: 1.6;
}

.contact__map iframe {
    margin: 20px 0;
}

.contact__gallery {
    position: relative;
    overflow: hidden;
}

.contact__slide{
    position: absolute;
    opacity: 0;
    transition: 1s ease-in-out;
}

.contact__slide.active {
    position: relative;
    opacity: 1;
}

figcaption {
    text-align: center;
    font-style: italic;
    margin-top: 10px;
    font-size: 18px;
}

@media (max-width: 580px) {
    .contact-wrap {
        flex-direction: column-reverse;
    }
    .age-check__18 {
        width: 48px;
        height: 48px;
    }

    .age-check {
        margin: 60px 0 0;
        padding: 0;
    }

    .age-check__big-text {
        font-size: 18px;
        margin: 20px 0;
    }
}

.gift-card-form-in-modal, .gift-card-form {
    position: relative;
    padding: 30px 10px 40px;
    max-width: 580px;
    width: 100%;
}

.gift-card-form {
    margin-top: 40px;
}

.gift-card-form-in-modal__close {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

.gift-card-form__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gift-card-form label {
    display: inline-block;
    margin-top: 20px;
}

.gift-card-form .gift-card-details {
    padding: 20px 0 30px;
}

.gift-card-form .gift-card-details ul {
    margin-bottom: 20px;
}

.gift-card-form .gift-card-details li {
    margin-bottom: 5px;
}

.gift-card-form .gift-card-details li span {
    font-weight: 600;
}

.cancel-btn {
    margin-right: 10px;
    padding: 10px 20px;
    background: none;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    box-shadow: 0 4px 12px rgb(164 60 35 / 40%);
    font-size: 14px;
    text-align: center;
    color: inherit;
    transition: .3s ease-in-out;
    cursor: pointer;
}

.cancel-btn:hover {
    background: var(--main-color);
    color: #fff;
}

.cancel-btn:hover + .primary-btn {
    background: none;
    color: inherit;
}

input[name="pin"] {
    margin-bottom: 20px;
}

.error_messages {
    margin: 0px 0px 20px;
}

.error_messages li {
    margin-bottom: 5px;
}

.error_messages li span {
    color: var(--main-color);
}

.info-block {
    margin: 20px 0px;
    padding: 0;
    width: 100%;
    box-sizing: border-box ;
    font-size: 0;
}
.info-block > a {
    display: flex;
    align-items: center;
    padding: 0;
}
.info-block__content, .info-block__image {
    margin: 0;
    display: inline-block;
    width: 59%;
    box-sizing: border-box;
}
.info-block__content {
    padding: 0 10px;
    font-size: 0.75rem;}

.info-block__image img {
    width: 100%;
    height: auto;
}

.out-of-stock {
    background-color: var(--gray);
    color: #fff;
    box-shadow: none;
    border: 1px solid var(--gray);
}

.old-price {
    display: block;
    text-decoration: line-through;
    margin-bottom: 2px;
    font-weight: 400;
    font-size: 18px;
    color: #696969;
}

.sale-price {
    color: var(--main-color);
}

.exception {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--main-color);
}


.contacts-img-slider {
    position: relative;
    overflow: hidden;
}

.contacts-img-slider__wrap {
    display: flex;
    align-items: stretch;
    transition: 0.5s ease-in-out;
}

.contacts-img-slider__item {
    flex: 0 0 auto;
    width: 100%;
}

.contacts-img-slider__item img {
    height: auto;
    max-width: 100%;
    aspect-ratio: attr(width) / attr(height);
    margin: 0;
}

.contacts-img-slider__decs {
    text-align: center;
    margin-top: 10px;
}

.contacts-img-slider__arrow-left,
.contacts-img-slider__arrow-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow);
    color: var(--main-color);
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: calc(50% - 60px);
}

.contacts-img-slider__arrow-left {
    left: 0;
}

.contacts-img-slider__arrow-right {
    right: 0;
}

.dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.contacts-img-slider__dot {
    width: 16px;
    height: 16px;
    background: var(--light-gray);
    border-radius: 50%;
    margin: 8px;
    cursor: pointer;
}

.contacts-img-slider__dot.active {
    background: var(--main-color);
}

/* Calendar */

.calendar__gradient {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient( to top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 1) 40% );
    z-index: 1;
}

.current-day {
    background: var(--main-color);
    color: #fff;
    border-radius: 5px;
    box-shadow: 4px 4px 8px rgb(164 60 35 / 40%);
}
.calendar__line-day.current-day span {
    color: #fff;
}

/* Calendar grid */
.calendar {
    position: relative;
}
.calendar__inner {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 20px 0;
}
.calendar__month {
    width: 33%;
    max-width: 242px;
    padding: 8px;
}
.calendar__title {
    font-size: 14px;
    font-weight: bold;
    padding: 8px 12px;
    background: var(--main-color);
    border-radius: 10px 10px 0 0;
    color: #fff;
    text-transform: uppercase;
}
.calendar__month-inner {
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    height: 100%;
}

.calendar__weeks,
.calendar__days {
    display: flex;
    flex-wrap: wrap;
    padding: 0 8px;
}
.calendar__days {
    padding-bottom: 12px;
}
.calendar__weeks li {
    text-transform: uppercase;
    font-size: 12px;
    color: var(--text);
}

.calendar__weeks li,
.calendar__days li {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar__weeks li.weekends {
    color: var(--main-color);
}

.calendar__days li {
    transition: 0.3s ease-in-out;
}

.calendar__days li:hover {
    border-radius: 5px;
    background: var(--light-gray);
}
li.current-day:hover {
    background: var(--main-color);
}

.calendar__days li a {
    color: var(--main-color);
    font-weight: bold;
    text-decoration: underline;
}


/* Banner */

.banner {
    display: block;
    margin: 30px 0;
}

.banner img {
    border-radius: 5px;
}

.holiday__banner {
    margin: 20px 0;
    border-radius: 5px;
}

/* articles */

.holiday__article {
    border-radius: 10px;
    margin: 20px 0;
}

.holiday__article:last-child {
    border-bottom: 1px solid var(--light-gray);
}
.holiday__article-img {
    width: 180px;
    margin-right: 20px;
}

.holiday__article img {
    border-radius: 5px;
}
.holiday__article-wrap {
    flex: 1;
}

.holiday__article-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
s}

@media (max-width: 576px) {
    .calendar__inner {
        height: 100vh;
        overflow-y: scroll;
    }
    .calendar__inner::-webkit-scrollbar {
        display: none;
    }
    .calendar__month {
        width: 100%;
        max-width: none;
    }
    .calendar__weeks li, .calendar__days li {
        width: 11vw;
        height: 11vw;
    }
    .holiday__article {
        border-radius: 10px;
        margin: 20px 0;
    }
    .holiday__article-img {
        width: 100%;
        margin: 0 0 10px;
    }
}

.category-article__text ul {
    list-style: disc;
    padding-left: 20px;
}

.category-article__text li {
    margin-bottom: 10px;
}

.text-to-speech__btn, .play-pronounce__btn {
    position: relative;
    width: 20px;
    height: 20px;
    margin-left: 8px;
    display: inline-block;
}

.text-to-speech__btn svg, .play-pronounce__btn svg {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 4px;
}

.table-action__icon-tooltlip {
  display: none;
  position: absolute;
  top: -30px;
  left: -50%;
  z-index: 1;
  padding: 5px;
  font-size: 14px;
  background: #121212;
  border-radius: 5px;
  color: #fff;
}

.text-to-speech__btn:hover .table-action__icon-tooltlip, .play-pronounce__btn:hover .table-action__icon-tooltlip {
  display: block;
}

/* Sugar level */
.sugar-level {
    display: flex;
    margin-top: 40px;
    margin-bottom: 80px;
}

.sugar-level-item {
    width: 14.3%;
    border-radius: 5px;
    padding: 15px;
    transition: 0.3s ease-in-out;
    flex: 0 0 auto;
}

.sugar-level-item__title {
    display: flex;
    align-items: center;
}

.sugar-level-item__title--wrap {
    width: 165px;
    overflow: hidden;
    white-space: nowrap;
}

.sugar-level-item__title--anim {
    animation: title-running 10s infinite;
}

@keyframes title-running {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-140px);
    }
    100% {
        transform: translateX(0px);
    }
}

.sugar-level-item__desc div {
    display: none;
    position: absolute;
}

.sugar-level-item__desc:hover div {
    display: block;
    left: 0;
    bottom: 0;
    z-index: 1;
    font-size: 16px;
    background: var(--secondary-color);
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
    border-radius: 10px;
    font-size: 14px;
    padding: 10px;
    width: 260px;
}

.sugar-level-item__title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
}

.sugar-level-item__desc span {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    background: var(--main-color);
    border-radius: 30px;
    width: 20px;
    height: 20px;
    color: #fff;
    cursor: pointer;
}
.sugar-level-item__info {
    text-align: center;
    margin-top: 10px;
}
.sugar-level-item__lalbes {
    margin-top: 10px;
    text-align: center;
    color: var(--main-color);
    text-decoration: underline;
    cursor: pointer;
}
.sugar-level__btn.primary-btn {
    padding: 10px;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .sugar-level {
        overflow-x: scroll;
    }
    .sugar-level-item {
        width: 18%;
    }
    .sugar-level-item__title {
        font-size: 18px;
    }
    .sugar-level-item__info {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .sugar-level-item {
        width: 23%;
    }
}

@media (max-width: 580px) {
    .sugar-level-item {
        width: 40%;
    }
}

.sk-chase {
  width: 40px;
  height: 40px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--main-color);
  border-radius: 100%;
  animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
.sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }

@keyframes sk-chase {
  100% { transform: rotate(360deg); }
}

@keyframes sk-chase-dot {
  80%, 100% { transform: rotate(360deg); }
}

@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  } 100%, 0% {
    transform: scale(1.0);
  }
}
