@charset "UTF-8";
/***** FONTS *****/
@font-face {
  font-family: "icomoon";
  font-display: swap;
  src: url("../fonts/icomoon.woff2") format("woff2"), url("../fonts/icomoon.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Extrabold";
  font-display: swap;
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Comfortaa";
  font-display: swap;
  src: url("../fonts/Comfortaa-Regular.woff2") format("woff2"), url("../fonts/Comfortaa-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Comfortaa";
  font-display: swap;
  src: url("../fonts/Comfortaa-Medium.woff2") format("woff2"), url("../fonts/Comfortaa-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Comfortaa";
  font-display: swap;
  src: url("../fonts/Comfortaa-SemiBold.woff2") format("woff2"), url("../fonts/Comfortaa-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Comfortaa";
  font-display: swap;
  src: url("../fonts/Comfortaa-Bold.woff2") format("woff2"), url("../fonts/Comfortaa-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
/***** GENERAL ELEMENTS *****/
:root {
  --font-family: "Comfortaa", sans-serif;
  --font-montserrat: "Montserrat-Extrabold", sans-serif;
  --content-width: 1160px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --white-color: #ffffff;
  --black-color: #131313;
  --lightBlack-color: #292932;
  --font-color: #131313;
  --global-color: #E88320;
  --lightGrey-color: #F5F6F7;
  --grey-color: #E5E5E5;
  --border-radius: 15px;
}

/***** Mixins *****/
/***** BLOCKS GLOBAL *****/
/*-----generals-----*/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Comfortaa", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
  color: var(--font-color);
  background: var(--white-color);
  margin: 0;
  overflow-x: hidden;
  position: relative;
}

section {
  margin-bottom: 100px;
}

@media screen and (max-width: 1024px) {
  section {
    margin-bottom: 70px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.link-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dis-scroll {
  position: fixed;
  overflow: hidden;
  height: 100vh;
}

::-webkit-scrollbar {
  width: 0.375rem;
  background: var(--lightGrey-color);
}

::-webkit-scrollbar-thumb {
  background: var(--grey-color);
  width: 0.375rem;
  height: 5rem;
  border-radius: 0.9375rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--global-color);
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

a {
  background-color: transparent;
  transition: 0.3s ease;
}

a:active,
a:hover {
  outline: 0;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: inherit;
}

a:focus {
  outline: none;
  outline-offset: 0;
}

figure {
  margin: 0;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

svg,
svg:hover,
path,
polygon {
  transition: 0.05s;
}

svg:not(:root) {
  overflow: hidden;
}

h1,
h2,
h3 {
  margin: 0;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

mark {
  background: #ff0;
  color: #000;
}

hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid #f2f2f2;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}

input:focus,
button:focus,
select:focus,
textarea:focus {
  outline: none;
  outline-offset: 0;
}

button {
  overflow: visible;
  transition: 0.3s ease;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 0.125rem;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}


.site-main {
  padding-bottom: 40px;
}

/*-----buttons----*/
.btn-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  min-height: 40px;
  gap: 10px;
  text-align: center;
  color: var(--white-color);
  font-size: 17px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  border: 0;
  outline: none;
  border-radius: 10px;
  background-color: var(--global-color);
  transition: 0.3s ease;
}
.btn i {
  font-size: 20px;
}
.btn:hover {
  opacity: 0.9;
}
.btn.disabled {
  opacity: 0.4;
  cursor: auto;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  width: 40px;
  height: 40px;
  outline: none;
  border: 0;
  background: none;
  transition: 0.3s ease;
  cursor: pointer;
  z-index: 1;
}
.btn-icon i {
  font-size: 30px;
  line-height: 1;
  color: var(--font-color);
  transition: 0.3s ease;
}
.btn-icon i:hover {
  color: var(--global-color);
}

.link-withicon {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--global-color);
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
}
.link-withicon i {
  margin-right: 10px;
  font-size: 20px;
}
.link-withicon span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.link-withicon span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  border-radius: 5px;
  background-color: var(--global-color);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.link-withicon:hover {
  color: var(--font-color);
}
.link-withicon:hover span::before {
  transform: translateY(-1px);
  background-color: var(--font-color);
}

.link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  color: var(--global-color);
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
  background: none;
}
.link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  border-radius: 5px;
  background-color: var(--global-color);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.link:hover {
  color: var(--font-color);
}
.link:hover::before {
  transform: translateY(-1px);
  background-color: var(--font-color);
}

.link-input {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  color: var(--global-color);
  padding: 4px 0;
  margin: 0;
  outline: none;
  border: 0;
  border-radius: 0 !important;
  border-bottom: 1px solid var(--global-color);
  background: none;
}
.link-input:hover {
  color: var(--font-color);
  border-color: var(--font-color);
}

.link-dark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  color: var(--font-color);
}
.link-dark:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  border-radius: 5px;
  background-color: var(--font-color);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.link-dark:hover {
  color: var(--global-color);
}
.link-dark:hover::before {
  transform: translateY(-1px);
  background-color: var(--global-color);
}

.link-grey {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  color: #989898;
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
  background: none;
}
.link-grey:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  border-radius: 5px;
  background-color: #989898;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.link-grey:hover {
  color: var(--global-color);
}
.link-grey:hover::before {
  transform: translateY(-1px);
  background-color: var(--global-color);
}

.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 17px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  color: var(--font-color);
}
.download-link i {
  font-size: 22px;
  line-height: 1;
  color: var(--global-color);
}
.download-link i:first-child {
  margin-right: 10px;
}
.download-link i:last-child {
  margin-left: 10px;
}
.download-link:hover {
  color: var(--global-color);
}

.back-link {
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-start;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
  text-transform: uppercase;
}
.back-link i {
  font-size: 24px;
  transform: rotate(90deg);
}

.btn-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  position: relative;
  cursor: pointer;
}
.btn-play img {
  width: 120px;
  height: 120px;
  z-index: 3;
}
.btn-play.disabled {
  opacity: 0.4;
  cursor: auto;
}

@media screen and (max-width: 1024px) {
  .btn {
    font-size: 15px;
    line-height: 18px;
  }
  .btn-icon {
    width: 26px;
    height: 26px;
  }
  .btn-icon i {
    font-size: 26px;
  }
  .link-withicon i {
    margin-right: 8px;
    font-size: 18px;
  }
  .link-withicon span {
    font-size: 15px;
  }
  .link,
.link-input,
.link-dark,
.link-grey {
    font-size: 15px;
  }
  .download-link {
    font-size: 16px;
  }
}
/*-----title----*/
.heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 48px;
}
.heading-row .link {
  margin-top: 16px;
}

.section-text {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: var(--font-color);
}
.section-text:not(:last-child) {
  margin-bottom: 1rem;
}
.section-text p {
  margin-top: 0;
  margin-bottom: 0;
}
.section-text p:not(:last-child) {
  margin-bottom: 1rem;
}

.default-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding: 30px 20px;
  border-radius: var(--border-radius);
  background: var(--lightGrey-color);
}
.default-wrapper .quantity input {
  background: var(--white-color);
}
.default-wrapper .select2-selection__rendered,
.default-wrapper .select2-container .select2-selection--single,
.default-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
  border-radius: 10px;
  background: #ffffff;
}

.default-wrapper-dark {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding: 30px 20px;
  border-radius: var(--border-radius);
  background: radial-gradient(133.33% 133.33% at 50% 50%, #515158 0%, rgba(81, 81, 88, 0) 100%), #292932;
}
.default-wrapper-dark .link:hover {
  color: var(--lightGrey-color);
}
.default-wrapper-dark .link:hover::before {
  background-color: var(--lightGrey-color);
}
.default-wrapper-dark .link-input:hover {
  color: var(--lightGrey-color);
  border-color: var(--lightGrey-color);
}
.default-wrapper-dark .title-1, .default-wrapper-dark .title-2, .default-wrapper-dark .title-3, .default-wrapper-dark .title-4 {
  color: var(--lightGrey-color);
}

.title-1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  color: var(--font-color);
}
.title-2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: var(--font-color);
}
.title-3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--font-color);
}
.title-4 {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
  color: var(--font-color);
}

@media screen and (max-width: 1024px) {
  .heading-row {
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .section-text {
    font-size: 16px;
  }
  .section-text:not(:last-child) {
    margin-bottom: 0.7rem;
  }
  .section-text p:not(:last-child) {
    margin-bottom: 0.7rem;
  }
  .title-1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 576px) {
  .heading-row {
    margin-bottom: 24px;
  }
  .default-wrapper,
.default-wrapper-dark {
    padding: 24px 10px;
  }
  .title-1 {
    font-size: 24px;
  }
  .title-1,
.title-2,
.title-3,
.title-4 {
    text-align: left !important;
  }
}
.card {
  display: flex;
  flex-direction: column;
  padding: 10px 10px 30px 10px;
  width: 100%;
  border-radius: var(--border-radius);
  background-color: var(--grey-color);
}
.card-img {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
  aspect-ratio: 28/17;
  border-radius: var(--border-radius);
}
.card-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}
.card-info {
  width: 100%;
}
.card-info-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.card-info:hover .card-name {
  color: var(--global-color);
}
.card-name {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
  color: var(--font-color);
  transition: color 0.3s ease;
}
.card-text {
  margin-top: 20px;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
  color: #989898;
}
.card-text p {
  margin: 0;
}
.card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-wrap: wrap;
  margin-left: 16px;
  gap: 2px;
}
.card-price .current {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
  color: var(--font-color);
}
.card-price .old {
  flex-shrink: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.1;
  text-decoration: line-through;
  color: #989898;
}
.card-price-info {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 6px;
  color: var(--font-color);
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid #C9A869;
  background: linear-gradient(135deg, #292929 0%, #141414 100%);
}
.card-price-info img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}
.card .link-withicon {
  margin-top: auto;
}

@media screen and (max-width: 1024px) {
  .card-name {
    font-size: 16px;
  }
  .card-text {
    font-size: 16px;
  }
  .card-price .current {
    font-size: 16px;
  }
  .card-price .old {
    font-size: 14px;
  }
}
/***** COMPONENTS GLOBAL *****/
/*----header-----*/
.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px 0;
  margin-bottom: 65px;
  width: 100%;
  z-index: 500;
  transition: position 10s ease-in, background-color 0.3s ease-in;
}
.header.active {
  position: fixed;
  background: #000000;
}
.header .logo {
  flex-shrink: 0;
  width: 108px;
  margin-right: 48px;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-link {
  display: inline-block;
  flex-shrink: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: var(--global-color);
}
.header-link:hover {
  color: var(--font-color);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  margin-left: 56px;
}
.header-bar .btn-icon {
  margin-left: 10px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu > li {
  position: relative;
  padding: 6px 15px;
}
.nav-menu > li.menu-item-has-children > .icon-chevron {
  position: absolute;
  right: -3px;
  top: 45%;
  transform: translateY(-50%);
  font-size: 18px;
}
.nav-menu > li:hover .sub-menu {
  opacity: 100%;
  visibility: visible;
}
.nav-menu > li > a {
  display: inline-block;
  position: relative;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--font-color);
}
.nav-menu .sub-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  list-style: none;
  padding: 3px 5px;
  margin: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: #F5F6F7;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-menu .sub-menu li a {
  display: inline-block;
  padding: 7px 5px;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: var(--font-color);
}
.nav-menu .sub-menu li a:hover {
  color: var(--global-color);
}
.nav-menu .sub-menu li:not(:last-child) a {
  border-bottom: 1px solid var(--grey-color);
}

/* Lang */
.lang {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 16px;
}
.lang-item {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  cursor: pointer;
}
.lang-item img {
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border .3s ease;
}
.lang-item:hover img {
  border-color: var(--global-color);
}
.lang-item:not(:last-child) {
  margin-right: 14px;
}

.search-label {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
}
.search-input {
  position: absolute;
  top: -2px;
  right: -5px;
  box-sizing: border-box !important;
  padding: 9px 60px 9px 16px;
  width: 40px;
  height: 44px;
  opacity: 0;
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  color: var(--font-color);
  border-radius: 10px;
  outline: none;
  border: none;
  background: var(--lightGrey-color);
  transition: 0.3s ease;
  z-index: 10;
}
.search-input::placeholder {
  color: #838383;
}

.search-btn {
  position: absolute;
  top: 0;
  right: 0;
  transition: transform 0.3s ease;
  z-index: 11;
}

.search-label.active .search-input {
  width: 350px;
  opacity: 1;
}
.search-label.active .search-btn i {
  color: var(--black-color);
}

@media screen and (min-width: 1024px) {
  #toggleMenu {
    display: none;
  }
}
@media screen and (max-width: 1190px) {
  /*----header-----*/
  .header .logo {
    margin-right: 24px;
  }
  .header-link {
    font-size: 16px;
  }
  .header-bar {
    margin-left: 24px;
  }
  .nav-menu > li {
    padding: 6px 8px;
  }
  .nav-menu > li > a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    margin-bottom: 48px;
    padding: 10px 0;
  }
  .header .logo {
    width: 90px;
    margin-right: 12px;
  }
  .header__nav {
    position: fixed;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    top: 46px;
    right: -100%;
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 46px);
    max-height: calc(100vh - 46px);
    padding: 0 10px 20px 10px;
    background-color: var(--white-color);
    transition: right 0.4s;
  }
  .header__nav .lang {
    margin: 0;
    order: 1;
  }
  .header-link {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .header-bar {
    margin-left: 12px;
  }
  .search-label {
    width: 26px;
    height: 26px;
  }
  .search-input {
    right: 0;
    padding: 9px 48px 9px 12px;
    font-size: 16px;
  }
  .search-label.active {
    position: absolute;
    width: calc(100% - 30px);
  }
  .search-label.active .search-input {
    width: 100%;
  }
  .search-label.active .search-btn {
    top: 6px;
    right: 10px;
  }
  .nav-menu {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .nav-menu > li {
    position: relative;
    padding: 18px 0;
    border-bottom: 1px solid #E4E4E4;
    width: 100%;
  }
  .nav-menu > li.menu-item-has-children > .icon-chevron {
    position: absolute;
    right: 4px;
    top: 14px;
    transform: none;
    font-size: 28px;
  }
  .nav-menu > li.menu-item-has-children.open > a {
    margin-bottom: 10px;
  }
  .nav-menu > li.menu-item-has-children.open > .icon-chevron {
    transform: rotate(180deg);
  }
  .nav-menu > li:first-child {
    border-top: 1px solid #E4E4E4;
  }
  .nav-menu > li > a {
    width: calc(100% - 50px);
  }
  .nav-menu .sub-menu {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0;
    padding: 0 0 0 20px;
    width: 100%;
    border-radius: 0;
    background: none;
    box-shadow: none;
    opacity: 100;
    visibility: visible;
    overflow: hidden;
    height: 0;
    transition: all 0.25s ease;
  }
  .nav-menu .sub-menu li a {
    display: inline-block;
    padding: 10px 0;
    text-align: left;
    text-transform: uppercase;
  }
  .nav-menu .sub-menu li:not(:last-child) a {
    border-bottom: 0;
  }
}
@media screen and (max-width: 576px) {
  .header {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 390px) {
  .search-label.active {
    width: calc(100% - 20px);
  }
}
/* Show menu */
.header__nav.show {
  right: 0;
  z-index: 1000;
}

/*-----footer-----*/
.footer {
  position: relative;
  width: 100%;
}
.footer__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
.footer__container .col:nth-child(1) {
  width: calc(30% - 15px);
}
.footer__container .col:nth-child(2) {
  width: calc(20% - 15px);
}
.footer__container .col:nth-child(3) {
  width: calc(20% - 15px);
}
.footer__container .col:nth-child(4) {
  width: calc(20% - 15px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.footer__container .phone {
  margin-bottom: 26px;
  font-size: 28px;
}
.footer__container .phone:hover {
  color: var(--global-color);
}
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-nav li a {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--font-color);
}
.footer-nav li a:hover {
  color: var(--global-color);
}
.footer-title {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #c8c8c8;
}
.footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
}
.footer__bottom .col:nth-child(1) {
  margin-right: 20px;
  color: #c8c8c8;
}
.footer__bottom .col .group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer__bottom .col .group:not(:last-child) {
  margin-bottom: 24px;
}
.footer__bottom .col .group > a:not(:last-child) {
  margin-bottom: 10px;
}
.footer__bottom .col .group a:hover {
  color: var(--font-color);
}
.footer__bottom .col .group p {
  margin: 0;
}
.footer__bottom .col .group p:not(:last-child) {
  margin-bottom: 10px;
}
.footer__bottom .col .group p a {
  text-decoration: underline;
}
.footer__bottom .col:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.footer__bottom .col:nth-child(2) p {
  font-size: 15px;
  margin: 0;
}
.footer .certif-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer .certif-list img {
  width: auto;
  max-height: 50px;
}
.footer .certif-list img:not(:first-child) {
  margin-left: 20px;
}
.footer .logos-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 20px;
  row-gap: 14px;
}
.footer .logos-list img {
  width: auto;
  max-height: 30px;
}
.footer .logos-list img:not(:last-child) {
  margin-right: 30px;
}

.socials {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.socials a {
  display: inline-flex;
  align-items: center;
}
.socials a img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 15px;
}
.socials a span {
  font-size: 17px;
  color: var(--font-color);
  transition: color 0.3s ease;
}
.socials a:not(:last-child) {
  margin-bottom: 15px;
}
.socials a:hover span {
  color: var(--global-color);
}

@media screen and (max-width: 1024px) {
  /*-----footer-----*/
  .footer__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
  }
  .footer__container .col:nth-child(1) {
    width: calc(50% - 15px);
    margin-bottom: 44px;
  }
  .footer__container .col:nth-child(2) {
    width: calc(50% - 15px);
  }
  .footer__container .col:nth-child(3) {
    width: calc(50% - 15px);
  }
  .footer__container .col:nth-child(4) {
    width: calc(50% - 15px);
    align-items: flex-start;
    text-align: left;
    order: -1;
    margin-bottom: 44px;
  }
  .footer__bottom {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column-reverse;
    margin-top: 30px;
  }
  .footer__bottom .col:nth-child(1) {
    margin-right: 0;
    margin-top: 28px;
  }
  .footer__bottom .col:nth-child(2) {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer__bottom .col:nth-child(2) p {
    font-size: 12px;
  }
  .footer .certif-list {
    justify-content: flex-start;
  }
  .footer .certif-list img {
    max-height: 38px;
  }
  .footer .logos-list {
    justify-content: flex-start;
  }
  .footer .logos-list img {
    max-height: 30px;
  }
  .socials {
    align-items: flex-start;
  }
  .socials a span {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__container {
    justify-content: flex-start;
  }
  .footer__container .col:nth-child(1) {
    width: 100%;
    margin-bottom: 44px;
  }
  .footer__container .col:nth-child(2) {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer__container .col:nth-child(3) {
    width: 100%;
  }
  .footer__container .col:nth-child(4) {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer__container .col .phone {
    margin-bottom: 20px;
    font-size: 22px;
  }
}
/*-----breadcrumbs-----*/
.kama_breadcrumbs,
.woocommerce-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 4px;
  padding: 10px 0;
  margin-bottom: 36px;
  font-size: 15px;
  line-height: 18px;
  color: #858585;
}
.kama_breadcrumbs span,
.woocommerce-breadcrumb span {
  line-height: 18px;
}
.kama_breadcrumbs a,
.woocommerce-breadcrumb a {
  position: relative;
  line-height: 18px;
  color: var(--font-color);
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease-in;
}
.kama_breadcrumbs a:hover,
.woocommerce-breadcrumb a:hover {
  color: var(--global-color);
}
.kama_breadcrumbs .kb_sep,
.woocommerce-breadcrumb .kb_sep {
  display: inline-flex;
  vertical-align: middle;
}
.kama_breadcrumbs .kb_sep i,
.woocommerce-breadcrumb .kb_sep i {
  transform: rotate(-90deg);
  font-size: 24px;
  line-height: 24px !important;
  margin: 0 5px;
  color: var(--global-color);
}

@media screen and (max-width: 1024px) {
  /*-----breadcrumbs-----*/
  .kama_breadcrumbs,
.woocommerce-breadcrumb {
    row-gap: 2px;
    padding: 2px 0;
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 14px;
  }
  .kama_breadcrumbs span,
.woocommerce-breadcrumb span {
    line-height: 14px;
  }
  .kama_breadcrumbs a,
.woocommerce-breadcrumb a {
    line-height: 14px;
  }
  .kama_breadcrumbs .kb_sep i,
.woocommerce-breadcrumb .kb_sep i {
    font-size: 14px;
    line-height: 14px !important;
    margin: 0 2px;
  }
}
/*-----pagination-----*/
.screen-reader-text {
  display: none;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.pagination-info {
  font-size: 17px;
  color: #989898;
  margin-right: 16px;
}
.pagination > .page-numbers {
  list-style: none;
  padding: 0;
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.pagination > .page-numbers .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.15;
  text-align: center;
  color: #989898;
  transition: color 0.3s ease-in;
}
.pagination > .page-numbers .page-numbers:hover {
  color: var(--global-color);
}
.pagination > .page-numbers .page-numbers.current {
  color: var(--font-color) !important;
}

@media screen and (max-width: 1024px) {
  /*-----pagination-----*/
  .pagination-info {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  /*-----pagination-----*/
  .pagination {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .pagination-info {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .pagination > .page-numbers {
    margin: 0;
  }
  .pagination > .page-numbers .page-numbers {
    font-size: 12px;
  }
}
.tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tags li {
  margin: 0 5px 10px 5px;
}
.tags li a {
  display: inline-block;
  padding: 10px 24px;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: var(--font-color);
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
  background-color: #ededed;
  transition: color 0.3s ease-in, background-color 0.3s ease-in;
}
.tags li a:hover {
  color: var(--global-color);
}
.tags li a.active {
  font-weight: 500;
  color: var(--lightGrey-color);
  background-color: var(--global-color);
}

@media screen and (max-width: 1024px) {
  .tags {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .tags li {
    margin: 0 4px 7px 4px;
  }
  .tags li a {
    padding: 7px 12px;
    font-size: 12px;
    line-height: 12px;
    border-radius: 30px;
  }
}
@media screen and (max-width: 576px) {
  .tags li a {
    padding: 7px 7px;
    font-size: 10px;
    line-height: 10px;
    border-radius: 15px;
  }
}
.accordion-item {
  padding: 20px 8px 20px 0;
  border-bottom: 1px solid #8b8b8b;
}
.accordion-item:nth-child(1) {
  border-top: 1px solid #8b8b8b;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.accordion-title,
.accordion-title h3 {
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--font-color);
  transition: 0.3s;
}
.accordion-title:hover,
.accordion-title h3:hover {
  color: var(--global-color);
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 16px;
}
.accordion-button:before, .accordion-button:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background-color: var(--global-color);
  transition: 0.3s ease;
}
.accordion-button:after {
  transform: rotate(90deg);
}
.accordion-button:hover::before, .accordion-button:hover::after {
  opacity: 0.7;
}

.accordion-content {
  overflow: hidden;
  height: 0;
  transition: all 0.25s ease;
}
.accordion-content p {
  margin-top: 14px;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
}

.accordion-open .accordion-button:after {
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  .accordion-item {
    padding: 16px 8px 16px 0;
  }
  .accordion-title,
.accordion-title h3 {
    font-size: 16px;
  }
  .accordion-button {
    width: 20px;
    height: 20px;
    margin-left: 12px;
  }
  .accordion-button:before, .accordion-button:after {
    height: 2px;
  }
  .accordion-content p {
    margin-top: 10px;
    font-size: 16px;
  }
}
.tabs-style .tabs-nav {
  overflow: hidden;
  margin: 0 0 16px 0;
  padding: 0;
  flex-wrap: wrap;
}
.tabs-style .tabs-nav li {
  display: block;
  float: left;
  padding: 0;
  list-style: none;
  margin-top: 10px;
  margin-bottom: 10px;
}
.tabs-style .tabs-nav li:not(:last-child) {
  margin-right: 24px;
}
.tabs-style .tabs-nav a {
  display: block;
  position: relative;
  padding: 2px 0;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #989898;
  transition: color 0.3s ease;
}
.tabs-style .tabs-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #989898;
  transition: background-color 0.3s ease;
}
.tabs-style .tabs-nav a:hover, .tabs-style .tabs-nav a.active {
  color: var(--global-color);
}
.tabs-style .tabs-nav a:hover::before, .tabs-style .tabs-nav a.active::before {
  background-color: var(--global-color);
}
.tabs-style .tabs-item div p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
}
.tabs-style .tabs-item div p:not(:last-child) {
  margin-bottom: 1rem;
}

@media screen and (max-width: 576px) {
  .tabs-style .tabs-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .tabs-style .tabs-nav li {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .tabs-style .tabs-nav li:not(:last-child) {
    margin-right: 0;
  }
  .tabs-style .tabs-nav a {
    font-size: 15px;
  }
  .tabs-style .tabs-nav a::before {
    bottom: 0px;
  }
  .tabs-style .tabs-item div p {
    font-size: 16px;
  }
  .tabs-style .tabs-item div p:not(:last-child) {
    margin-bottom: 0.7rem;
  }
}
.swiper {
  max-width: 100%;
  width: 100%;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* swiper-bullets styling */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background-color: #C8C8C8;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  transform: scale(1.5);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-family: "icomoon" !important;
  font-size: 40px;
  line-height: 1;
  width: 40px;
  height: 40px;
  color: #C8C8C8;
  transition: color 0.3s ease;
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: var(--global-color);
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}

.swiper-button-prev::after {
  content: "\e901";
}

.swiper-button-next::after {
  content: "\e900";
}

.swiper-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
}
.swiper-bottom .swiper-pagination-fraction {
  position: relative;
  bottom: auto;
  left: auto;
  width: auto;
  text-align: left;
  font-family: Comfortaa;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  color: var(--font-color);
}

.default-wrapper-dark .swiper-bottom .swiper-pagination-fraction {
  color: var(--lightGrey-color);
}

.swiper-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row-reverse;
  gap: 20px;
  height: 44px;
}
.swiper-nav .swiper-button-prev,
.swiper-nav .swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  margin-top: 0;
  width: 40px;
  border-radius: 0;
  background-color: transparent;
}

@media screen and (max-width: 1024px) {
  .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    margin: 0 3px;
  }
  .swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 30px;
    width: 30px;
    height: 30px;
  }
  .swiper-bottom {
    margin-top: 20px;
  }
  .swiper-bottom .swiper-pagination-fraction {
    font-size: 16px;
  }
  .swiper-nav {
    gap: 10px;
  }
  .swiper-nav .swiper-button-prev,
.swiper-nav .swiper-button-next {
    width: 30px;
  }
}
/*-----form-----*/
.form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.form-item {
  margin-bottom: 24px;
}
.form-title {
  margin-top: 0;
  margin-bottom: 20px;
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--font-color);
}
.form-tooltext {
  margin-top: 4px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.2;
}
.form-group {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
}
.form-group .select2 {
  width: 100% !important;
}
.form-group a {
  font-size: 15px;
  text-decoration: underline;
}
.form-group a:hover {
  text-decoration: none;
}
.form label {
  display: block;
}
.form-label {
  position: relative;
}
.form-input {
  width: 100%;
  height: 50px;
  padding: 15px 20px;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: var(--font-color);
  box-sizing: border-box;
  border-radius: 10px;
  border: 0;
  outline: none;
  background: #ffffff;
  transition: 0.3s ease;
}

.form-input::placeholder {
  color: #b1b1b1;
}
/* 
@media screen and (min-width: 1025px) {
  .scroll-placeholder {
    position: relative;
    overflow: hidden;
  }
  .scroll-placeholder::placeholder,
  .scroll-placeholder::-webkit-input-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: visible;
    animation-play-state: paused;
  }
  .scroll-placeholder:hover::placeholder,
  .scroll-placeholder:hover::-webkit-input-placeholder {
    animation: scrollText 5s infinite linear;
  }

  .scroll-placeholder:hover::-webkit-input-placeholder {
    animation-play-state: paused;
  }
  @keyframes scrollText {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-20%);
    }
  }
} */



/* .scroll-placeholder::-webkit-input-placeholder {
  overflow: visible;
  white-space: nowrap;
} */

.form textarea {
  resize: vertical;
  max-width: 100%;
  width: 100%;
  min-height: 50px;
  max-height: 500px;
  height: 100px;
  padding: 15px 20px;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: var(--font-color);
  box-sizing: border-box;
  border-radius: 10px;
  border: 0;
  outline: none;
  background: #ffffff;
  transition: 0.3s ease;
}
.form textarea::placeholder {
  color: #b1b1b1;
}
.form .accept {
  margin: 10px 0 !important;
  width: 100%;
  font-size: 15px;
  line-height: 1.15;
  color: #6f6f6f;
}
.form .accept a {
  text-decoration: none;
}
.form .accept a:hover {
  color: var(--global-color);
  text-decoration: underline;
}
.form-item:not(:last-child) {
  margin-bottom: 50px;
}
.form-item .form-item {
  margin-top: 24px;
  margin-bottom: 24px;
}
.form-item .form-item .form-title {
  font-size: 17px;
}
.form .link, .form .link-input {
  margin-top: 12px;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip::before {
  width: 220px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--font-color);
  text-align: center;
  border-radius: 6px;
  padding: 8px 6px;
  background-color: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
  /* Position the tooltip */
  position: absolute;
  content: attr(data-tooltip);
  bottom: calc(100% + 4px);
  right: 50%;
  transform: translateX(50%);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.tooltip:hover::before {
  opacity: 100%;
  visibility: visible;
}

.form-subs .form-group {
  margin-bottom: 0;
}
.form-subs .accept {
  font-size: 10px;
  color: #c8c8c8;
}
.form-subs .link {
  margin-top: 10px;
  color: #989898;
}
.form-subs .link:before {
  background-color: #989898;
}
.form-subs .link:hover {
  color: var(--global-color);
}
.form-subs .link:hover:before {
  background-color: var(--global-color);
}

.form-login .form-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.form-login .form-group .form-input {
  width: calc(65% - 20px);
}
.form-login .form-group .forget-password {
  width: calc(35% - 20px);
  margin-left: 40px;
}

/* Checkbox */
.checkbox {
  display: block;
  margin: 0 0 12px 0;
  cursor: pointer;
  user-select: none;
  position: relative;
  /* Checked */
}
.checkbox input[type=checkbox],
.checkbox input[type=radio] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
}
.checkbox label > span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 30px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: var(--font-color);
}
.form-item-shipping-methods .checkbox label {
    width: 100%;
}
.form-item-shipping-methods .checkbox label > span {
    display: flex;
    justify-content: space-between;
}
.form-item-shipping-methods .woocommerce-Price-amount {
    font-size: 16px;
}
.checkbox label > span a {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: var(--font-color);
}
.checkbox label > span:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  border-radius: 2px;
  background-color: var(--grey-color);
}
.checkbox input[type=checkbox]:checked + span:before,
.checkbox input[type=radio]:checked + label span:before {
  background-color: var(--grey-color);
}
.checkbox input[type=checkbox]:checked + span:after,
.checkbox input[type=radio]:checked + label span:after {
  content: "\e903";
  position: absolute;
  left: 1px;
  top: 0px;
  width: 17px;
  height: 17px;
  font-family: "icomoon";
  font-size: 17px;
  color: var(--gold-color);
}

.s-checkbox {
  display: block;
  margin: 0 18px 14px 0;
  cursor: pointer;
  user-select: none;
  position: relative;
  /* Checked */
}
.s-checkbox-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 8px;
}
.s-checkbox input[type=checkbox] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}
.s-checkbox span {
  display: inline-block;
  position: relative;
  padding: 15px 28px;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: var(--font-color);
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  background: var(--white-color);
}
.s-checkbox input[type=checkbox]:checked + span {
  border-color: var(--font-color);
}

input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}

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

.select2 {
  width: auto !important;
  height: 50px;
}

.select2-selection__rendered,
.select2-container .select2-selection--single {
  padding-right: 40px;
  height: 50px;
  border: 0 !important;
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  border-radius: 10px;
  color: var(--font-color) !important;
  background: #E5E5E5;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 17px;
  color: var(--font-color) !important;
  background: #E5E5E5;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 18px;
  height: 18px;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.select2-container--default .select2-selection--single .select2-selection__arrow::before {
  content: "\e905";
  position: absolute;
  font-family: "icomoon";
  font-size: 18px;
  line-height: 1;
  color: #B1B1B1;
  transition: 0.3s;
}

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

.select2-dropdown {
  font-size: 17px !important;
  color: var(--font-color);
  background: #E5E5E5;
  border-radius: 0px 0px 8px 8px !important;
  border: 0 !important;
}

.select2-container--open .select2-dropdown--below {
  border-top: 0 !important;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single .select2-selection__arrow::before,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple .select2-selection__arrow::before {
  transform: rotate(-180deg);
}

.select2-results ::-webkit-scrollbar-thumb {
  height: auto !important;
}
.select2-results ::-webkit-scrollbar {
  background: #ffffff !important;
}
.select2-results__option {
  padding: 7px 7px;
}

.select2-container--default .select2-results__option--selected {
  background-color: #E5E5E5;
}

.woocommerce-ordering .select2 {
  min-width: auto;
  height: auto;
}
.woocommerce-ordering .select2-selection__rendered,
.woocommerce-ordering .select2-container .select2-selection--single {
  padding-right: 20px;
  height: auto;
  border: 0 !important;
  font-weight: 300;
  font-size: 17px;
  line-height: 20px;
  border-radius: 8px;
  color: #989898 !important;
}
.woocommerce-ordering .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 4px 7px;
  border-radius: 0;
  font-weight: 400;
  font-size: 17px;
  color: #989898 !important;
  background: none;
}
.woocommerce-ordering .select2-container .select2-selection--single {
  background: none;
  border: 0 !important;
}
.woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 0;
}
.woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__arrow::before {
  content: "\e905";
  color: #989898;
}

/* Стили по вордпресс и вукомерс */
[data-show].hide {
    display: none;
}
.woocommerce-checkout .row-2 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.woocommerce-checkout .row-2 .form-group {
  width: calc(50% - 10px);
}
.woocommerce-checkout .row-2 > .checkbox{
  margin-top: 10px;
  width: calc(100% - 10px)!important;
}
.woocommerce-checkout .row-2 .form-group:nth-child(odd) {
  margin-right: 20px;
}
.woocommerce-checkout .checkbox {
  display: inline-flex;
  margin-bottom: 18px;
  width: 100%;
}
.woocommerce-checkout .checkbox-info {
  margin-left: auto;
  font-weight: 400;
  text-align: right;
  padding-left: 10px;
}

.row-3 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.row-3 > .col {
  margin-right: 30px;
  width: calc(33.333% - 24px);
}
.row-3 > .col > .row-1:not(:last-child) {
  margin-bottom: 34px;
}
.row-3 > .col:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 1024px) {
  /* Стили по вордпресс и вукомерс */
  .woocommerce-checkout .row-2 {
    flex-direction: column;
  }
  .woocommerce-checkout .row-2 .form-group {
    width: 100%;
  }
  .woocommerce-checkout .row-2 .form-group:nth-child(odd) {
    margin-right: 0;
  }
  .row-3 {
    flex-direction: column;
  }
  .row-3 > .col {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
  .row-3 > .col > .row-1:not(:last-child) {
    margin-bottom: 16px;
  }
  .row-3 > .col:nth-child(3n) {
    margin-right: 0;
  }
  .row-3 > .col .link {
    margin-top: 14px;
    margin-bottom: 14px;
  }
  .woocommerce-ordering .select2-selection__rendered,
.woocommerce-ordering .select2-container .select2-selection--single {
    font-size: 12px;
    color: var(--font-color) !important;
    line-height: 14px;
    border-radius: 0px;
  }
  .woocommerce-ordering .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 12px;
    color: var(--font-color) !important;
  }
  .woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__arrow::before {
    color: var(--font-color);
  }
  .s-checkbox {
    margin: 0 10px 10px 0;
  }
  .s-checkbox span {
    padding: 12px 15px;
    font-size: 15px;
    line-height: 18px;
  }
}
@media screen and (max-width: 576px) {
  .form-title {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .form-tooltext {
    margin-top: 4px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.2;
  }
  .form-group {
    margin-bottom: 10px;
  }
  .form-group a {
    font-size: 12px;
  }
  .form-input {
    height: 44px;
    padding: 13px 20px;
    font-size: 15px;
    line-height: 18px;
  }
  .form textarea {
    min-height: 44px;
    height: 80px;
    padding: 13px 20px;
    font-size: 15px;
    line-height: 18px;
  }
  .form .accept {
    font-size: 12px;
  }
  .form-item .form-item .form-title {
    font-size: 16px;
  }
  .form-login .form-group {
    align-items: flex-start;
  }
  .form-login .form-group .form-input {
    width: 100%;
  }
  .form-login .form-group .forget-password {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
  .select2 {
    width: auto !important;
    height: 44px;
  }
  .select2-selection__rendered,
.select2-container .select2-selection--single {
    padding-right: 40px;
    height: 44px;
    font-size: 15px;
    line-height: 18px;
  }
  .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 13px 20px;
    font-size: 15px;
  }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 18px;
    height: 18px;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
  }
  .select2-container--default .select2-selection--single .select2-selection__arrow::before {
    font-size: 18px;
  }
  .select2-dropdown {
    font-size: 15px !important;
    border-radius: 0px 0px 8px 8px !important;
  }
  .select2-results__option {
    padding: 7px 7px;
  }
}
/*------ modal ------*/
.modal {
  padding: 60px 40px;
  border-radius: var(--border-radius);
  background: #f4f4f4;
  height: auto;
}
.modal-heading {
  margin-bottom: 40px;
}
.modal-title {
  margin-top: 0;
  margin-bottom: 0;
  color: #131313;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}
.modal-title:not(:last-child) {
  margin-bottom: 20px;
}
.modal .form-bottom {
  width: 100%;
  margin-top: 40px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--font-color);
}
.modal .form-bottom a {
  text-decoration: underline;
}
.modal .form-bottom a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  /*------ modal ------*/
  .modal {
    padding: 40px 24px;
  }
  .modal-heading {
    margin-bottom: 30px;
  }
  .modal-title {
    font-size: 26px;
  }
  .modal .form-bottom {
    font-size: 15px;
  }
}
@media screen and (max-width: 576px) {
  /*------ modal ------*/
  .modal {
    padding: 30px 10px;
  }
  .modal-title {
    font-size: 22px;
  }
  .modal-title:not(:last-child) {
    margin-bottom: 14px;
  }
  .modal .form-bottom {
    margin-top: 30px;
    font-size: 12px;
  }
}
.charact-tags {
  position: absolute;
  top: 4px;
  right: 7px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.charact-tags li {
  display: inline-flex;
  margin: 4px 0 4px 8px;
  padding: 7px 15px 5px 15px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #F5F6F7;
  border-radius: 10px;
  background: radial-gradient(133.33% 133.33% at 50% 50%, #515158 0%, rgba(81, 81, 88, 0) 100%), #292932;
}
.charact-tags li span {
  margin-right: 10px;
  text-decoration: line-through;
}

/*-----rating-----*/
.rating {
  display: flex;
}
.rating .stars {
  width: 75px;
  height: 15px;
  position: relative;
  background-image: url(../img/icons/star-off.svg);
  background-size: auto 100%;
  background-repeat: repeat-x;
}
.rating .stars .progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  background-image: url(../img/icons/star-on.svg);
  background-size: auto 100%;
  background-repeat: repeat-x;
}
.rating .rating-agregate {
  display: none;
}

.video {
  position: relative;
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}
.video > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video .btn-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.withit .default-wrapper,
.canlike .default-wrapper,
.recent .default-wrapper {
  align-items: flex-start;
  justify-content: flex-start;
}
.withit .title-1 span,
.canlike .title-1 span,
.recent .title-1 span {
  display: block;
}
.withitSwiper .swiper-nav,
.canlikeSwiper .swiper-nav,
.recentSwiper .swiper-nav {
  margin-bottom: 24px;
}
.withitSwiper .swiper-button-prev::after,
.withitSwiper .swiper-button-next::after,
.canlikeSwiper .swiper-button-prev::after,
.canlikeSwiper .swiper-button-next::after,
.recentSwiper .swiper-button-prev::after,
.recentSwiper .swiper-button-next::after {
  color: var(--font-color);
}
.withitSwiper .swiper-button-prev:hover::after,
.withitSwiper .swiper-button-next:hover::after,
.canlikeSwiper .swiper-button-prev:hover::after,
.canlikeSwiper .swiper-button-next:hover::after,
.recentSwiper .swiper-button-prev:hover::after,
.recentSwiper .swiper-button-next:hover::after {
  color: var(--global-color);
}

.withit .title-1 span {
  margin-left: 40px;
}

.canlike .title-1,
.recent .title-1 {
  margin-left: 40px;
}
.canlike .title-1 span,
.recent .title-1 span {
  margin-left: 60px;
}
.woocommerce-cart .canlike .title-1 {
  margin-left: 80px;
}

.canlike .default-wrapper .link-dark {
  margin-top: 24px;
}

@media screen and (min-width: 1190px) {
  .popularSwiper, .withitSwiper, .canlikeSwiper, .recentSwiper {
    width: calc(100% + 20px);
    max-width: calc(100% + 20px);
    margin-right: -20px;
    padding-right: 20px;
    min-height: 521px;
  }
  .popularSwiper .swiper-slide, .withitSwiper .swiper-slide, .canlikeSwiper .swiper-slide, .recentSwiper .swiper-slide {
    width: 300px;
    /* transition: all 0.5s ease; */
  }
  .popularSwiper .swiper-slide-next, .withitSwiper .swiper-slide-next, .canlikeSwiper .swiper-slide-next, .recentSwiper .swiper-slide-next {
    width: 390px;
    margin-top: -36px;
  }
  .popularSwiper .swiper-slide-next .card-img, .withitSwiper .swiper-slide-next .card-img, .canlikeSwiper .swiper-slide-next .card-img, .recentSwiper .swiper-slide-next .card-img {
    aspect-ratio: 37/26;
  }
}
/* изменение вида блока на странице корзины */
.woocommerce-cart .canlike .heading .title-1 span {
  margin-left: 0;
  display: inline;
}
.woocommerce-cart .canlike .heading .section-text {
  max-width: 360px;
  margin: 1rem 0 1rem 360px;
}
.woocommerce-cart .canlike .heading .link {
  margin-top: 20px;
}

.sticky {
  position: fixed;
  z-index: 101;
}

.stop {
  position: relative;
  z-index: 101;
}

.table-style,
.woocommerce-orders-table {
  width: 100%;
  border: none;
}
.table-style:not(:last-child),
.woocommerce-orders-table:not(:last-child) {
  margin-bottom: 20px;
}

.woocommerce-orders-table {
  margin-bottom: 96px;
}

.table-style thead th,
.woocommerce-orders-table thead th {
  padding: 15px 20px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  color: var(--font-color);
  border-bottom: 1px solid #131313;
}
.table-style thead th:nth-child(1),
.woocommerce-orders-table thead th:nth-child(1) {
  padding-left: 0;
}

.table-style tbody tr:not(:last-child) td,
.woocommerce-orders-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #A7A7A7;
}
.table-style tbody td,
.woocommerce-orders-table tbody td {
  padding: 26px 20px 24px 20px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  color: var(--font-color);
}
.table-style tbody td:nth-child(1),
.woocommerce-orders-table tbody td:nth-child(1) {
  padding-left: 0;
}

.table-style .table-title {
  margin-bottom: 10px;
  display: block;
  width: 100%;
  color: var(--darkGrey-color);
  text-transform: uppercase;
}

.orders-table thead th:nth-child(1), .orders-table thead th:nth-child(2), .orders-table thead th:nth-child(3),
.orders-table tbody td:nth-child(1),
.orders-table tbody td:nth-child(2),
.orders-table tbody td:nth-child(3) {
  width: 160px;
}
.orders-table thead th:nth-child(4), .orders-table thead th:nth-child(5),
.orders-table tbody td:nth-child(4),
.orders-table tbody td:nth-child(5) {
  text-align: right;
}
.orders-table thead th a,
.orders-table tbody td a {
  color: var(--font-color);
  text-decoration: none;
}
.orders-table thead th a:hover,
.orders-table tbody td a:hover {
  color: var(--global-color);
}
.orders-table thead th a img:not(:first-child),
.orders-table tbody td a img:not(:first-child) {
  margin-left: 14px;
}
.orders-table thead th a img:not(:last-child),
.orders-table tbody td a img:not(:last-child) {
  margin-right: 14px;
}

.order-table thead th:nth-child(3),
.order-table tbody td:nth-child(3) {
  text-align: right;
}

.soderjanie-itogo td .item:not(:last-child) {
  margin-bottom: 24px;
}

.soderjanie-itogo:last-child td {
  border-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .charact-tags li {
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 7px;
  }
  .video .btn-play {
    width: 70px;
    height: 70px;
  }
  .sticky, .stop {
    position: relative !important;
    top: auto !important;
  }
  .canlike .default-wrapper .link-dark {
    order: 1;
  }
  .woocommerce-cart .canlike .heading .section-text {
    margin-left: 120px;
  }
}
@media screen and (max-width: 576px) {
  .woocommerce-cart .canlike .heading .section-text {
    margin-left: 0px;
    max-width: 100%;
  }
  .woocommerce-cart .canlike .title-1,
  .canlike .title-1, .recent .title-1 {
    margin-left: 0px;
  }
}
/***** SECTIONS GLOBAL (Widgets) *****/
.hero__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  width: 100%;
}
.hero__heading-str {
  position: relative;
  font-family: var(--font-montserrat);
  font-size: 138px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  text-align: right;
  color: #3E3E3E;
}
.hero__heading-str:nth-child(1) .text-tag {
  position: absolute;
  left: 124px;
  top: -15px;
}
.hero__heading-str:nth-child(2) .text-tag {
  position: absolute;
  right: 110px;
  bottom: -15px;
}
.hero__heading .link {
  position: absolute;
  left: 0;
  bottom: 21%;
}
.hero__heading .text-tag {
  display: inline-flex;
  padding: 10px;
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 400;
  text-transform: none;
  border-radius: 15px;
  border: 0.5px solid #DAD3C6;
  background: rgba(239, 200, 128, 0.05);
  backdrop-filter: blur(2px);
}
.hero__img {
  margin-top: 60px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

@media screen and (min-width: 1190px) {
  .hero {
    min-height: 540px;
    height: 780px;
  }
  .hero__img {
    position: relative;
    width: 1160px !important;
    height: 540px !important;
    z-index: -1 !important;
    transition: transform 0.3s ease-out;
  }
}
.element-animation {
  opacity: 0;
}

.hero__heading-str:nth-child(1).element-animation {
  transform: translateY(20px);
}

.hero__heading-str:nth-child(2).element-animation {
  transform: translateY(50px);
}

.text-tag.element-animation.element-show,
.link.element-animation.element-show {
  transition: all 5s !important;
}

.element-animation.element-show {
  opacity: 1 !important;
  transition: all 1.5s !important;
  transform: translate(0%) !important;
}

@media screen and (max-width: 1190px) {
  .hero__heading {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .hero__heading-str {
    font-size: 60px;
    text-align: left;
  }
  .hero__heading-str:nth-child(1) .text-tag {
    left: 36px;
    top: -20px;
  }
  .hero__heading-str:nth-child(2) .text-tag {
    position: relative;
    right: auto;
    bottom: auto;
    font-family: var(--font-montserrat);
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    text-align: left;
    color: #3E3E3E;
    display: inline;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: none;
    backdrop-filter: none;
  }
  .hero__heading .link {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 24px;
  }
  .hero__heading .text-tag {
    padding: 6px 10px;
    font-size: 18px;
  }
  .hero__img {
    margin-top: 40px;
  }
  .element-animation {
    opacity: 1;
  }
  .hero__heading-str:nth-child(1).element-animation,
.hero__heading-str:nth-child(2).element-animation {
    transform: none;
  }
}
@media screen and (max-width: 1024px) {
  .hero__heading-str, .hero__heading-str:nth-child(2) .text-tag {
    font-size: 48px;
  }
}
@media screen and (max-width: 576px) {
  .hero .container {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
  }
  .hero__heading-str, .hero__heading-str:nth-child(2) .text-tag {
    font-size: 32px;
  }
  .hero__heading .text-tag {
    font-size: 16px;
  }
  .hero__img {
    margin-top: 0;
    margin-bottom: 36px;
  }
}
.recom-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.recom-left, .recom-right {
  width: calc(50% - 20px);
}
.recom-left {
  position: relative;
}
.recom-left img {
  width: 100%;
  border-radius: var(--border-radius);
}
.recom .charact-tags {
  top: 5px;
  right: 10px;
}
.recom .charact-tags li {
  margin: 5px 0 5px 10px;
  padding: 7px 18px 5px 18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #F5F6F7;
  border-radius: 15px;
  background: radial-gradient(133.33% 133.33% at 50% 50%, #515158 0%, rgba(81, 81, 88, 0) 100%), #292932;
}
.recom .charact-tags li span {
  margin-right: 10px;
  text-decoration: line-through;
}
.recom-right .title-1 {
  font-size: 30px;
  color: var(--global-color);
  margin-bottom: 50px;
}
.recom-right .text {
  font-size: 17px;
  color: var(--lightGrey-color);
}
.recom-right .link {
  margin-top: 50px;
}
.recom-right .link:hover {
  color: var(--lightGrey-color);
}
.recom-right .link:hover::before {
  background-color: var(--lightGrey-color);
}

@media screen and (max-width: 1024px) {
  .recom-left, .recom-right {
    width: calc(50% - 14px);
  }
  .recom .charact-tags {
    right: 5px;
  }
  .recom .charact-tags li {
    margin: 2px 0 2px 8px;
    padding: 5px 8px 4px 8px;
    font-size: 12px;
    border-radius: 8px;
  }
  .recom .charact-tags li span {
    margin-right: 8px;
  }
  .recom-right .title-1 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .recom-right .text {
    font-size: 16px;
  }
  .recom-right .link {
    margin-top: 24px;
  }
}
@media screen and (max-width: 768px) {
  .recom-item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .recom-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .recom-right {
    width: 100%;
  }
  .recom-right .title-1 {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .recom-right .link {
    margin-top: 18px;
  }
}
@media screen and (max-width: 576px) {
  .recom .default-wrapper-dark {
    padding-top: 10px;
  }
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
}
.benefits__grid .title-1 span {
  display: block;
  margin-left: 60px;
}

.benefit {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: var(--border-radius);
  background: var(--lightGrey-color);
}
.benefit-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  font-size: 20px;
  font-weight: 400;
}
.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 24px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--grey-color);
}
.benefit-text {
  font-size: 17px;
  margin-top: 20px !important;
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .benefits__grid {
    gap: 20px;
  }
  .benefits__grid .title-1 span {
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .benefits__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .benefits__grid .col:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 576px) {
  .benefit {
    padding: 20px 10px;
  }
  .benefit-head {
    font-size: 17px;
  }
  .benefit-icon {
    width: 30px;
    height: 30px;
    margin-right: 14px;
  }
  .benefit-text {
    font-size: 16px;
  }
}
.popular .default-wrapper {
  align-items: flex-start;
  justify-content: flex-start;
}
.popular .default-wrapper > .link-dark {
  margin-top: 28px;
}
.popular .heading .title-1 {
  margin-left: 80px;
}
.popular .heading .section-text {
  max-width: 370px;
  margin-left: 360px;
}
.popularSwiper .swiper-nav {
  margin-top: 0;
  margin-bottom: 24px;
}
.popularSwiper .swiper-nav .swiper-button-prev::after,
.popularSwiper .swiper-nav .swiper-button-next::after {
  color: #292932;
}

@media screen and (max-width: 1024px) {
  .popular .heading .section-text {
    margin-left: 120px;
  }
}
@media screen and (max-width: 576px) {
  .popular .default-wrapper > .link-dark {
    order: 1;
  }
  .popular .heading .title-1 {
    margin-left: 0;
  }
  .popular .heading .section-text {
    max-width: 100%;
    margin-left: 0;
  }
  .popularSwiper .swiper-nav {
    margin-bottom: 16px;
  }
}
.catbl .default-wrapper {
  align-items: flex-start;
  justify-content: flex-start;
}
.catbl .heading {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 24px;
  width: 100%;
}
.catbl .heading .title-1 {
  width: 100%;
}
.catbl .heading .section-text {
  width: 360px;
}
.catbl .link {
  margin: -40px 0 36px auto;
}
.catbl__cards {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 10px;
  grid-template-areas: "one two" "one three" "four five";
}
.catbl__cards .one {
  grid-area: one;
}
.catbl__cards .two {
  grid-area: two;
}
.catbl__cards .three {
  grid-area: three;
}
.catbl__cards .four {
  grid-area: four;
}
.catbl__cards .five {
  grid-area: five;
}

.catcard {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: var(--border-radius);
}
.catcard-name {
  position: absolute;
  top: 20px;
  left: 20px;
  max-width: calc(100% - 40px);
  display: flex;
  padding: 7px 15px 5px 15px;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #F5F6F7;
  border-radius: 12px;
  background-color: rgba(232, 131, 32, 0.8);
  backdrop-filter: blur(2px);
  z-index: 10;
  transition: background-color 0.3s ease;
}
.catcard-name i {
  margin-left: 10px;
  font-size: 24px;
  transform: rotate(-45deg);
}
.catcard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}
.catcard:hover .catcard-img {
  transform: scale(1.05);
}
.catcard:hover .catcard-name {
  background-color: rgb(232, 131, 32);
}

@media screen and (max-width: 1024px) {
  .catbl .link {
    margin: 28px 0 0 0;
    order: 1;
  }
  .catcard-name {
    top: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    padding: 6px 10px 5px 10px;
    font-size: 16px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 576px) {
  .catbl .default-wrapper {
    padding-bottom: 36px;
  }
  .catbl__cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    grid-template-areas: none;
  }
  .catbl__cards .one, .catbl__cards .two, .catbl__cards .three, .catbl__cards .four, .catbl__cards .five {
    grid-area: auto;
  }
  .catbl__cards .catcard {
    aspect-ratio: 28/14;
  }
  .catbl__cards .one .catcard {
    aspect-ratio: 1/1;
  }
}
.special__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.special__container .col:nth-child(1) {
  position: relative;
  width: calc(40% - 5px);
}
.special__container .col:nth-child(2) {
  position: relative;
  width: calc(60% - 5px);
}
.special__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}
.special__tooltip {
  position: absolute;
  bottom: 15px;
  left: 24px;
  display: flex;
  flex-direction: column;
  padding: 10px;
  width: calc(100% - 48px);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #131313;
  text-align: center;
  border-radius: var(--border-radius);
  background: rgba(245, 246, 247, 0.9);
  backdrop-filter: blur(2.5px);
}
.special .default-wrapper {
  align-items: flex-start;
  height: 100%;
}
.special .default-wrapper .title-1 {
  font-size: 26px;
}
.special .default-wrapper .title-1 span {
  display: block;
  margin-left: 48px;
}
.special .default-wrapper p {
  max-width: 560px;
}
.special .default-wrapper .link {
  margin-top: auto;
}
.special .default-wrapper-dark {
  align-items: flex-start;
  height: 100%;
  color: var(--lightGrey-color);
}
.special .default-wrapper-dark .title-1 {
  font-size: 26px;
  color: var(--lightGrey-color);
}
.special .default-wrapper-dark .title-1 span {
  display: block;
  margin-left: 48px;
}
.special .default-wrapper-dark p {
  max-width: 280px;
}
.special .default-wrapper-dark .link {
  margin-top: auto;
}

@media screen and (max-width: 1024px) {
  .special .default-wrapper .title-1,
.special .default-wrapper-dark .title-1 {
    font-size: 22px;
  }
  .special .default-wrapper .title-1 span,
.special .default-wrapper-dark .title-1 span {
    margin-left: 24px;
  }
}
@media screen and (max-width: 768px) {
  .special__container {
    justify-content: flex-start;
    flex-direction: column;
  }
  .special__container .col:nth-child(1) {
    width: 100%;
    margin-bottom: 10px;
  }
  .special__container .col:nth-child(2) {
    width: 100%;
  }
  .special__tooltip {
    bottom: 10px;
    left: 10px;
    padding: 5px;
    width: calc(100% - 20px);
  }
  .special .default-wrapper .title-1 span,
.special .default-wrapper-dark .title-1 span {
    display: inline;
    margin-left: 0;
  }
  .special .default-wrapper p,
.special .default-wrapper-dark p {
    margin-top: 0;
  }
}
@media screen and (max-width: 576px) {
  .mob-link-nounderline::before {
    display: none;
  }
}
.review {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding: 20px;
  border-radius: 15px;
  background: #F5F6F7;
}
.review:not(:last-child) {
  margin-bottom: 10px;
}
.reviews .page-heading {
  margin-bottom: 40px;
}
.reviews .page-heading .title-1 span {
  display: block;
  margin-left: 60px;
}
.reviews .heading {
  margin-bottom: 24px;
  width: 100%;
}
.reviews .heading .title-1 {
  width: 100%;
}
.reviews .heading .title-1 span {
  display: block;
  margin-left: 58px;
}
.reviews .heading .section-text {
  width: 460px;
  margin-left: 60px;
}
.reviews .link {
  display: flex;
  width: fit-content;
  margin: -40px 0 40px auto;
}
.reviews__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.reviews__container .col:nth-child(1) {
  width: calc(40% - 5px);
}
.reviews__container .col:nth-child(2) {
  width: calc(60% - 5px);
}
.reviewsSwiper {
  overflow: visible;
}
.reviewsSwiper .swiper-slide {
  width: 470px;
  flex-shrink: 0;
}
.review-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.review-avatar {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  aspect-ratio: 1/1;
  margin-right: 20px;
}
.review-info h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  color: #131313;
}
.review-info p {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.1;
  color: #989898;
}
.review .rating {
  position: absolute;
  top: 20px;
  right: 20px;
}
.review-text {
  margin-top: 28px;
}
.review-text p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  color: #131313;
}
.review-text p:not(:last-child) {
  margin-bottom: 1rem;
}

.review-form .default-wrapper {
  padding-top: 50px;
}
.review-form .heading {
  margin-bottom: 24px;
}
.review-form .heading p {
  max-width: 440px;
}
.review-form .form {
  width: 100%;
}
.review-form .form .row {
  display: flex;
  flex-wrap: wrap;
  width: 75%;
}
/* .review-form .form .row .form-group {
  width: calc(25% - 8px);
} */
/* .review-form .form .row .form-group:not(:last-child) {
  margin-right: 10px;
} */
.review-form .form .row .form-group {
  width: calc(50% - 8px);
}
/* .review-form .form .row .form-group:not(:last-child) {
  margin-right: auto;
} */
.review-form .form .row .form-group:nth-child(odd) {
  margin-right: 16px;
}
.review-form .form textarea {
  width: 75%;
}
.review-form .form-group-title {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 6px;
}

.rating-btns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.rating-btns img {
  opacity: 0.3;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.rating-btns img:hover {
  opacity: 1;
}
.rating-btns img.current {
  opacity: 1;
}

.reviews .desktop-hidden {
  display: none;
}

@media screen and (max-width: 1024px) {
  .reviews .container {
    display: flex;
    flex-direction: column;
  }
  .reviews .desktop-hidden {
    display: block;
  }
  .reviews .mob-hidden {
    display: none;
  }
  .reviews .page-heading {
    margin-bottom: 12px;
  }
  .reviews .page-heading .title-1 span {
    display: inline;
    margin-left: 0;
  }
  .reviews .heading {
    margin-bottom: 36px;
  }
  .reviews .heading .title-1 span {
    margin-left: 0px;
    display: inline;
  }
  .reviews .heading .section-text {
    margin-left: 0;
    width: 100%;
  }
  .reviews .link {
    display: inline-flex;
    margin: 28px 0 0 0;
    order: 1;
  }
  .reviewsSwiper {
    overflow: hidden;
  }
  .reviewsSwiper .swiper-slide {
    width: 100%;
  }
  .review-avatar {
    width: 60px !important;
    height: 60px !important;
  }
  .review-head {
    align-items: flex-start;
  }
  .review-info {
    padding-top: 6px;
  }
  .review-info h3 {
    font-size: 17px;
  }
  .review-info p {
    font-size: 16px;
  }
  .review .rating {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 8px;
  }
  .review-text {
    margin-top: 20px;
  }
  .review-text p {
    font-size: 16px;
  }
  .review-text p:not(:last-child) {
    margin-bottom: 0.7rem;
  }
  .review-form .default-wrapper {
    padding-top: 30px;
  }
  .review-form .form .row,
  .review-form .form textarea {
    width: 100%;
  }
  .review-form .form-group-title {
    font-size: 15px;
  }
}
@media screen and (max-width: 576px) {
  .review {
    padding: 17px 10px;
  }
  .review-avatar {
    width: 40px !important;
    height: 40px !important;
    margin-right: 10px;
  }
  .review-form .form .row .form-group {
    width: 100%;
  }
  .review-form .form .row .form-group:nth-child(odd) {
    margin-right: 0;
  }
}
.history .heading {
  margin-bottom: 40px;
}
.history .heading .title-1 span {
  display: block;
  margin-left: 160px;
}
.history-tabs {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.history-tabs .tabs-nav {
  margin: 0;
  padding: 10px 0 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 160px;
  flex-shrink: 0;
}
.history-tabs .tabs-nav li:not(:last-child) {
  margin-bottom: 40px;
}
.history-tabs .tabs-nav li a {
  display: block;
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #858585;
}
.history-tabs .tabs-nav li a::before {
  content: "";
  position: absolute;
  left: calc(100% + 10px);
  top: 45%;
  transform: translateY(-50%);
  width: 80px;
  height: 1px;
  background-color: var(--font-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.history-tabs .tabs-nav li a:hover {
  color: var(--font-color);
}
.history-tabs .tabs-nav li a.active {
  font-size: 28px;
  color: var(--font-color);
}
.history-tabs .tabs-nav li a.active::before {
  opacity: 1;
}
.history__item {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.history__item .default-wrapper {
  width: calc(60% - 5px);
}
.history__item .default-wrapper p {
  margin-top: 0;
  margin-bottom: 0;
}
.history__item .default-wrapper p:not(:last-child) {
  margin-bottom: 1rem;
}
.history__img {
  width: calc(40% - 5px);
  border-radius: var(--border-radius);
  object-fit: cover;
  height: 100%;
}
.history .link {
  margin-left: 160px;
  margin-top: 40px;
}

@media screen and (max-width: 1024px) {
  .history .heading .title-1 span {
    margin-left: 60px;
  }
  .history-tabs {
    flex-direction: column;
  }
  .history-tabs .tabs-nav {
    padding: 0;
    margin-bottom: 20px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
  }
  .history-tabs .tabs-nav::-webkit-scrollbar, .history-tabs .tabs-nav::-webkit-scrollbar-thumb {
    display: none;
  }
  .history-tabs .tabs-nav li:not(:last-child) {
    margin-bottom: 0;
    margin-right: 24px;
  }
  .history-tabs .tabs-nav li a {
    padding: 2px 0;
    font-size: 16px;
  }
  .history-tabs .tabs-nav li a::before {
    transform: none;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--font-color);
  }
  .history-tabs .tabs-nav li a.active {
    font-size: 24px;
  }
  .history .link {
    margin-left: 0;
    margin-top: 28px;
  }
}
@media screen and (max-width: 576px) {
  .history .heading .title-1 span {
    margin-left: 0;
    display: inline;
  }
  .history__item {
    justify-content: flex-start;
    flex-direction: column;
  }
  .history__item .default-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }
  .history__item .default-wrapper p:not(:last-child) {
    margin-bottom: 0.7rem;
  }
  .history__img {
    width: 100%;
  }
}
.gallery__grid {
  display: grid;
  grid-template-columns: 40% 1fr 1fr;
  grid-template-rows: 300px 100px 250px;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 10px 10px;
  grid-auto-flow: row;
  grid-template-areas: "one two three" "one five five" "four five five";
}
.gallery__grid .one {
  grid-area: one;
}
.gallery__grid .two {
  grid-area: two;
}
.gallery__grid .three {
  grid-area: three;
}
.gallery__grid .four {
  grid-area: four;
}
.gallery__grid .five {
  grid-area: five;
}
.gallery__grid a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

@media screen and (max-width: 576px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 230px 110px 170px 170px;
    grid-template-areas: "one one" "two three" "four four" "five five";
  }
}
.form-one .heading {
  margin-bottom: 60px;
}
.form-one .heading .title-1 {
  margin-bottom: 40px;
  color: var(--global-color);
}
.form-one .heading .title-1 span {
  display: block;
  margin-left: 220px;
}
.form-one .heading .section-text {
  margin-left: 220px;
  max-width: 400px;
  color: var(--lightGrey-color);
}
.form-one .form-group {
  width: calc(33.333% - 7px);
  margin-bottom: 0;
}
.form-one .form-group:nth-child(4) {
  width: 100%;
}
.form-one .form .link-input {
  margin-left: 40px;
}

@media screen and (max-width: 1024px) {
  .form-one .heading {
    margin-bottom: 40px;
  }
  .form-one .heading .title-1 {
    margin-bottom: 20px;
  }
  .form-one .heading .title-1 span {
    display: inline;
    margin-left: 0;
  }
  .form-one .heading .section-text {
    margin-left: 0;
  }
  .form-one .form-group {
    width: calc(50% - 7px);
    margin-bottom: 20px;
  }
  .form-one .form-group:nth-child(4) {
    width: 100%;
  }
  .form-one .form .link-input {
    margin-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .form-one .form-group {
    width: 100%;
    margin-bottom: 10px;
  }
  .form-one .form .link-input {
    margin-left: 0;
    margin-top: 10px;
  }
}
.catalog .page-heading .title-1 {
  text-align: center;
}
.catalog .tags {
  max-width: 900px;
  margin: 0 auto 24px auto;
}
.catalog__filters {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
}
.catalog__filters .prodcount {
  font-size: 15px;
  color: #989898;
  margin-right: 20px;
  order: -1;
}
.catalog__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.catalog__right {
  width: calc(100% - 220px - 20px);
}
.search-catalog .catalog__right {
    width: 100%;
}
.catalog__right .link-grey {
  margin-bottom: 24px;
}
.catalog__sidebar {
  display: flex;
  flex-direction: column;
  width: 220px;
  flex-shrink: 0;
}
.catalog__sidebar-btn, .catalog__sidebar-header {
  display: none;
}
.catalog__sidebar .filter-reset {
  display: none;
}
.catalog__sidebar-item {
  padding: 20px 10px;
  border-radius: var(--border-radius);
  background-color: var(--lightGrey-color);
}
.catalog__sidebar-item:not(:last-child),
.widget_price_filter .catalog__sidebar-item:first-child {
  margin-bottom: 16px;
}
.catalog__sidebar-title {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 20px;
  width: 100%;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.1;
  color: var(--font-color);
  cursor: pointer;
}
/*
.catalog__sidebar-title::before {
  content: "\e900";
  position: absolute;
  top: 0px;
  right: 0;
  width: 16px;
  height: 16px;
  font-family: "icomoon";
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: var(--font-color);
  transform: rotate(90deg);
  transition: 0.3s;
}
*/
.catalog__sidebar-item-open .catalog__sidebar-body {
  margin-top: 16px;
  overflow: visible;
}
.catalog__sidebar-item-open .catalog__sidebar-title::before {
  transform: rotate(-90deg);
}
.catalog__sidebar-body {
  /*
  overflow: hidden;
  height: 0;
  transition: all 0.25s ease;
  */
  margin-top: 16px;
}
.catalog__sidebar-body .checkbox {
  margin-bottom: 0;
}
.catalog__sidebar-body .checkbox:not(:last-child) {
  margin-bottom: 10px;
}
.catalog__sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.catalog__sidebar-list li:not(:last-child) {
  margin-bottom: 7px;
}
.catalog__sidebar-list li a {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.1;
  color: var(--font-color);
}
.catalog__sidebar-list li a:hover {
  color: var(--global-color);
}
.catalog__sidebar-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.catalog__sidebar-price::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 2px;
  background-color: var(--font-color);
}
.catalog__sidebar-price .form-group {
  width: calc(50% - 15px);
  margin-bottom: 0;
}
.catalog__sidebar-price .wallet {
  position: absolute;
  left: 5px;
  top: 1px;
}
.catalog__sidebar-price .form-input {
  padding: 5px 4px 5px 26px;
  height: 30px;
  font-size: 16px;
  text-align: right;
  border-radius: 5px;
  background: var(--grey-color);
  display: inline-block!important;
}
.catalog__catinfo {
  margin-bottom: 10px;
  padding: 20px;
  border-radius: 15px;
  background: #E5E5E5;
}
.catalog__catinfo h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--font-color);
}
.catalog__catinfo p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.2;
}
.catalog__catinfo p:not(:last-child) {
  margin-bottom: 1rem;
}
.catalog__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 50px;
}
.search-catalog .catalog__cards {
   grid-template-columns: repeat(4, 1fr); 
}
.sidebarPrice-wrapper {
  margin-top: 24px;
  width: 100%;
  height: 20px;
}

.ui-slider-horizontal {
  width: calc(100% - 20px);
  margin: 0 auto;
  height: 2px;
  background: #E1E1E1;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -10px;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 1px solid #292932;
  background: var(--grey-color);
  z-index: 2;
  cursor: pointer;
}
.ui-slider-horizontal .ui-slider-handle:hover {
  border-color: transparent;
}
.ui-slider-horizontal .ui-slider-handle:focus {
  outline: none;
}

@media screen and (max-width: 1024px) {
  .catalog .page-heading .title-1 {
    text-align: left;
  }
  .catalog .tags {
    max-width: 100%;
    margin: 0 0 14px 0;
  }
  .catalog__filters {
    justify-content: flex-start;
  }
  .catalog__filters .prodcount {
    font-size: 12px;
    margin-top: 10px;
    margin-right: 0;
    width: 100%;
    order: 1;
  }
  .catalog__container {
    justify-content: flex-start;
    flex-direction: column;
  }
  .catalog__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }
  .catalog__right .link-grey {
    margin-bottom: 20px;
  }
  .catalog__sidebar {
    position: fixed;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 300px;
    max-width: 300px;
    padding: 0 10px 24px 10px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: -5px 0px 15px 0px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 9999999;
    transition: right 0.4s;
  }
  .catalog__sidebar.active {
    right: 0;
  }
  .catalog__sidebar .filter-reset {
    display: inline-flex;
    margin-bottom: 20px;
  }
  .catalog__sidebar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 12px;
    line-height: 1.2;
    color: var(--font-color);
    margin-right: 24px;
    cursor: pointer;
  }
  .catalog__sidebar-btn i {
    margin-left: 4px;
    font-size: 18px;
  }
  .catalog__sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 10px 0;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
  }
  .catalog__sidebar-header #catSidebarClose {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
    color: var(--font-color);
  }
  .catalog__sidebar-item {
    width: 220px;
    max-width: 220px;
  }
  .catalog__sidebar-item:not(:last-child) {
    margin-bottom: 10px;
  }
  .catalog__catinfo {
    order: 1;
    margin-top: 36px;
    margin-bottom: 0;
    padding: 20px 10px;
  }
  .catalog__catinfo h2 {
    font-size: 16px;
  }
  .catalog__catinfo p {
    font-size: 16px;
  }
  .catalog__catinfo p:not(:last-child) {
    margin-bottom: 0.7rem;
  }
}
@media screen and (max-width: 800px) {
  .catalog__cards {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .catalog__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product {
  /* product block */
}
.product__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 100px;
}
.product__slider {
  width: calc(50% - 20px);
  display: flex;
  flex-direction: row-reverse;
  height: 560px;
}
.productSecond {
  width: 90px;
}
.productSecond .swiper-slide {
  width: 90px;
  height: 90px;
}
.productMain {
  width: calc(100% - 104px);
}
.productMain .swiper-slide, .productSecond .swiper-slide {
  border-radius: var(--border-radius);
  background: var(--lightGrey-color);
}
.productMain .swiper-slide img, .productSecond .swiper-slide img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}
.product__info {
  width: calc(50% - 20px);
}
.product__info .rating {
  display: flex;
  align-items: center;
  margin-top: -3px;
}
.product__info .rating .stars {
  margin-top: -2px;
  width: 125px;
  height: 25px;
}
.product__info .rating .stars .progress {
  height: 25px;
}
.product__info .rating .rating-agregate {
  display: block;
  font-size: 20px;
  margin-right: 14px;
}
.product__name {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: var(--font-color);
}
.product__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 30px;
}
.product__price {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-right: 16px;
}
.product__price .current {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  text-align: center;
  color: var(--font-color);
}
.product__price .old {
  margin-right: 16px;
  flex-shrink: 0;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  text-decoration: line-through;
  color: #858585;
}
.product__text {
  margin-bottom: 30px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #131313;
}
.product__text p {
  margin-top: 0;
  margin-bottom: 0;
}
.product__text p:not(:last-child) {
  margin-bottom: 18px;
}
.product__characts {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
  gap: 20px;
}
.product__characts .title {
  font-size: 15px;
  margin-bottom: 10px;
}
.product__characts .colors {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.product__characts .colors img {
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
}
.product__characts .colors img:not(:last-child) {
  margin-right: 10px;
}
.product__characts .colors img.current {
  border-color: var(--font-color);
}
.product__nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}
.product__payment {
  width: 294px;
  max-width: 100%;
  border-radius: 5px;
}
.product__block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.product__block .col {
  width: calc(50% - 5px);
}
.product__block .col > div:not(:last-child) {
  margin-bottom: 10px;
}
.product__benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 40px 20px;
  gap: 36px 16px;
  border-radius: var(--border-radius);
  background: var(--lightGrey-color);
}
.product__benefits .benefit-head {
  font-size: 17px;
}
.product__benefits .benefit-icon {
  margin-right: 15px;
}
.product__points {
  padding: 40px 20px;
  border-radius: var(--border-radius);
  background: var(--lightGrey-color);
}
.product__points .point:nth-child(1) {
  padding-top: 0;
}
.product__points .point:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.product__delivery .row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.product__delivery .row .delivery-card {
  width: calc(50% - 5px);
}
.product__delivery > div {
  margin-top: 10px;
}
.product__details {
  padding: 24px 20px 30px 20px;
  border-radius: var(--border-radius);
  background: var(--lightGrey-color);
}
.product__obzor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  padding-top: 90px;
  margin-bottom: 100px;
}
.product__obzor .col {
  width: 100%;
  height: 100%;
}
.product__obzor .col .default-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.product__obzor .col .default-wrapper .title-1 {
  margin-left: 20px;
}
.product__obzor .col .default-wrapper .title-1 span {
  display: block;
}
.product__obzor .col .default-wrapper .title-1 span:nth-child(2) {
  margin-left: -60px;
}
.product-about .tabs-style .tabs-nav {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 40px;
}
.product-about .tabs-style .tabs-nav a.active {
  font-size: 22px;
}
.product-about .tabs-item .title-1 {
  font-size: 30px;
  margin-bottom: 24px;
}
.product-about .tabs-item .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.product-about .tabs-item .row .benefit {
  background: var(--grey-color);
}
.product-about .tabs-item .row .benefit-icon {
  background: var(--lightGrey-color);
}
.product-about .tabs-item .heading-row {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 20px 40px;
  margin-bottom: 20px;
}
.product-about .tabs-item .heading-row div p {
  margin-top: 0;
  margin-bottom: 0;
}
.product-about .tabs-item .heading-row div p:not(:last-child) {
  margin-bottom: 14px;
}
.product .download-link {
  width: 100%;
}
.product .download-link:not(:last-child) {
  margin-bottom: 10px;
}

.loochs-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
  position: relative;
}
.loochs-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  width: 100%;
  height: 1px;
  background: #F5EFE5;
}
.loochs-list .item img {
  width: 120px;
  height: 80px;
}
.loochs-list .item h3 {
  margin-top: -25px;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--font-color);
}

.point {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 24px 0;
  border-bottom: 1px solid #8b8b8b;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  color: #131313;
}
.point .numb {
  font-size: 10px;
  width: 25px;
  flex-shrink: 0;
  margin-right: 10px;
}

.steps__cards {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.steps__cards:not(:last-child) {
  margin-bottom: 30px;
}

.stepcard {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 20px;
  border-radius: var(--border-radius);
  background: var(--grey-color);
}
.stepcard:not(:last-child) {
  margin-bottom: 10px;
}
.stepcard-numb {
  margin-right: 36px;
  width: calc(8% - 24px);
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--global-color);
}
.stepcard-title {
  margin: 0 36px 0 0;
  width: calc(32% - 24px);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--font-color);
}
.stepcard-text {
  margin: 0;
  width: calc(60% - 24px);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--font-color);
}
.stepcard-text p {
  margin-top: 0;
}

.prodconsult {
  justify-content: space-between;
  flex-direction: row;
  padding: 20px;
}
.prodconsult .col:nth-child(1) {
  width: calc(40% - 20px);
}
.prodconsult .col:nth-child(2) {
  width: calc(60% - 20px);
}
.prodconsult__img {
  width: 100%;
  border-radius: var(--border-radius);
  object-fit: cover;
}
.prodconsult .title-2 {
  color: var(--lightGrey-color);
}
.prodconsult p.accept {
  font-size: 12px !important;
}
.prodconsult .link-input {
  margin-bottom: 6px;
}

.form-consult .form-group {
  width: calc(50% - 5px);
  margin-bottom: 0;
}
.form-consult .link-input {
  margin-top: 10px;
}

.quantity {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  flex-shrink: 0;
  padding-right: 32px;
  width: fit-content;
  min-width: 80px;
}
.quantity input {
  padding: 10px 4px;
  width: 48px;
  height: 40px;
  font-size: 17px;
  line-height: 20px;
  text-align: center;
  color: var(--font-color);
  border: 0;
  outline: none;
  border-radius: 5px;
  background: var(--lightGrey-color);
}
.quantity-plus {
  position: absolute;
  right: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  font-size: 26px;
  color: var(--global-color);
}
.quantity-plus i {
  transform: rotate(180deg);
}
.quantity-minus {
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 22px;
  height: 22px;
  font-size: 26px;
  color: var(--global-color);
}

@media screen and (max-width: 1024px) {
  .product {
    /* product block */
  }
  .product__container {
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: 70px;
  }
  .product__slider {
    width: 100%;
    max-width: 500px;
    flex-direction: column;
    height: auto;
    margin-bottom: 20px;
  }
  .productSecond {
    width: 100%;
    height: 74px;
  }
  .productSecond .swiper-slide {
    width: 74px;
    height: 74px;
  }
  .productMain {
    width: 100%;
    margin-bottom: 10px;
  }
  .product__info {
    width: 100%;
  }
  .product__info .rating {
    margin-top: 0;
    align-items: flex-start;
  }
  .product__info .rating .stars {
    margin-top: 0;
    width: 75px;
    height: 15px;
  }
  .product__info .rating .stars .progress {
    height: 15px;
  }
  .product__info .rating .rating-agregate {
    font-size: 16px;
    margin-right: 5px;
  }
  .product__name {
    font-size: 22px;
  }
  .product__row {
    margin-bottom: 20px;
  }
  .product__price {
    margin-right: 0;
  }
  .product__price .current {
    font-size: 17px;
  }
  .product__price .old {
    margin-right: 10px;
    font-size: 12px;
  }
  .product__text {
    margin-bottom: 20px;
  }
  .product__text p:not(:last-child) {
    margin-bottom: 12px;
  }
  .product__characts {
    justify-content: flex-start;
    flex-direction: column;
  }
  .product__characts .colors img {
    width: 32px;
    height: 32px;
  }
  .product__characts .colors img:not(:last-child) {
    margin-right: 16px;
  }
  .product__nav {
    align-items: flex-start;
    flex-direction: column;
  }
  .product__block {
    justify-content: flex-start;
    flex-direction: column;
  }
  .product__block .col {
    width: 100%;
  }
  .product__block .col:not(:last-child) {
    margin-bottom: 10px;
  }
  .product__benefits {
    padding: 20px 10px;
    gap: 20px 10px;
  }
  .product__benefits .benefit-head {
    font-size: 16px;
  }
  .product__points {
    padding: 20px 10px;
  }
  .product__delivery .row {
    justify-content: flex-start;
    flex-direction: column;
  }
  .product__delivery .row .delivery-card {
    width: 100%;
  }
  .product__delivery .row .delivery-card:not(:last-child) {
    margin-bottom: 10px;
  }
  .product__details {
    padding: 20px 10px;
  }
  .product__obzor {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    padding-top: 70px;
    margin-bottom: 70px;
  }
  .product__obzor .col .default-wrapper .title-1 {
    margin: 0;
  }
  .product__obzor .col .default-wrapper .title-1 span {
    display: inline;
  }
  .product__obzor .col .default-wrapper .title-1 span:nth-child(2) {
    margin-left: 0;
  }
  .product-about .tabs-style .tabs-nav {
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
  .product-about .tabs-style .tabs-nav a.active {
    font-size: 17px;
  }
  .product-about .tabs-item .title-1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .product-about .tabs-item .row {
    grid-template-columns: repeat(1, 1fr);
  }
  .product-about .tabs-item .heading-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin-bottom: 20px;
  }
  .product-about .tabs-item .heading-row div p:not(:last-child) {
    margin-bottom: 10px;
  }
  .loochs-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .loochs-list::before {
    display: none;
  }
  .loochs-list .item img {
    width: 90px;
    height: 60px;
  }
  .loochs-list .item h3 {
    font-size: 16px;
  }
  .point {
    padding: 16px 0;
    font-size: 16px;
  }
  .steps__cards:not(:last-child) {
    margin-bottom: 20px;
  }
  .stepcard {
    flex-wrap: wrap;
    padding: 20px 10px;
  }
  .stepcard-numb {
    margin-right: 10px;
    width: 40px;
    font-size: 18px;
  }
  .stepcard-title {
    margin: 0;
    width: calc(100% - 50px);
    font-size: 18px;
  }
  .stepcard-text {
    margin-top: 20px;
    width: 100%;
    font-size: 16px;
  }
  .prodconsult {
    justify-content: flex-start;
    flex-direction: column;
    padding: 10px 10px 24px 10px;
  }
  .prodconsult .col:nth-child(1) {
    width: 100%;
    margin-bottom: 20px;
  }
  .prodconsult .col:nth-child(2) {
    width: 100%;
  }
  .form-consult .form-group {
    width: 100%;
    margin-bottom: 10px;
  }
  .quantity input {
    padding: 6px 4px;
    height: 36px;
    font-size: 15px;
    line-height: 18px;
  }
  .quantity-btns button {
    width: 20px;
    height: 20px;
    font-size: 22px;
  }
}
@media screen and (max-width: 576px) {
  .product__benefits {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .product-about .tabs-style .tabs-nav a.active {
    font-size: 15px;
  }
}
.contentbl__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.contentbl__container .col:nth-child(1) {
  position: relative;
  width: calc(40% - 5px);
}
.contentbl__container .col:nth-child(2) {
  position: relative;
  width: calc(60% - 5px);
}
.contentbl__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}
.contentbl__tooltip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  width: calc(100% - 40px);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #131313;
  text-align: center;
  border-radius: var(--border-radius);
  background: rgba(245, 246, 247, 0.9);
  backdrop-filter: blur(2.5px);
}
.contentbl .default-wrapper-dark {
  align-items: flex-start;
  height: 100%;
  color: var(--lightGrey-color);
}
.contentbl .default-wrapper-dark .title-1 {
  margin-bottom: 36px;
  font-size: 26px;
  color: var(--lightGrey-color);
}
.contentbl .default-wrapper-dark .title-1 span:nth-child(1) {
  display: block;
}
.contentbl .default-wrapper-dark .title-1 span:nth-child(2) {
  display: block;
  margin-left: 80px;
}
.contentbl .default-wrapper-dark p {
  margin-top: 0;
  margin-bottom: 0;
}
.contentbl .default-wrapper-dark p:not(:last-child) {
  margin-bottom: 1rem;
}
.contentbl__steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 20px;
  width: 100%;
  border-radius: var(--border-radius);
  background: var(--lightGrey-color);
}
.contentbl__steps:not(:first-child) {
  margin-top: 10px;
}
.contentbl__steps .step:not(:last-child) {
  margin-right: 16px;
}

.step {
  display: flex;
  flex-direction: column;
  width: fit-content;
}
.step .numb {
  margin-bottom: 16px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  color: var(--global-color);
}
.step h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}
.step p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
}

@media screen and (max-width: 1024px) {
  .contentbl__container {
    justify-content: flex-start;
    flex-direction: column-reverse;
  }
  .contentbl__container .col:nth-child(1) {
    width: 100%;
  }
  .contentbl__container .col:nth-child(2) {
    width: 100%;
    margin-bottom: 10px;
  }
  .contentbl__img {
    max-height: 300px;
  }
  .contentbl__tooltip {
    bottom: 10px;
    left: 10px;
    padding: 10px;
    width: calc(100% - 20px);
  }
  .contentbl .default-wrapper-dark .title-1 {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .contentbl .default-wrapper-dark .title-1 span:nth-child(1) {
    display: inline;
  }
  .contentbl .default-wrapper-dark .title-1 span:nth-child(2) {
    display: inline;
    margin-left: 0;
  }
  .contentbl .default-wrapper-dark p:not(:last-child) {
    margin-bottom: 0.7rem;
  }
  .contentbl__steps {
    justify-content: flex-start;
    flex-direction: column;
    padding: 30px 20px;
  }
  .contentbl__steps .step:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .step {
    width: 100%;
  }
  .step .numb {
    margin-bottom: 8px;
    font-size: 20px;
  }
  .step h3 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .step p {
    font-size: 16px;
  }
}
.faq .page-heading {
  margin-bottom: 50px;
  text-align: center;
}
.faq-form .default-wrapper {
  padding-top: 50px;
}
.faq-form .heading {
  margin-bottom: 24px;
}
.faq-form .heading .title-1 span:nth-child(1) {
  display: block;
  margin-left: 40px;
}
.faq-form .form {
  width: 100%;
}
.faq-form .form .row {
  display: flex;
  width: 100%;
}
.faq-form .form .row .form-group {
  width: calc(25% - 8px);
}
.faq-form .form .row .form-group:not(:last-child) {
  margin-right: 10px;
}
.faq-form .form textarea {
  width: 75%;
}

@media screen and (max-width: 1024px) {
  .faq .page-heading {
    margin-bottom: 30px;
    text-align: left;
  }
  .faq-form .default-wrapper {
    padding-top: 30px;
  }
  .faq-form .heading .title-1 span:nth-child(1) {
    display: inline;
    margin-left: 0;
  }
  .faq-form .form .row {
    display: flex;
  }
  .faq-form .form .row .form-group {
    width: 100%;
  }
  .faq-form .form .row .form-group:not(:last-child) {
    margin-right: 0;
  }
  .faq-form .form textarea {
    width: 100%;
  }
  .faq-form .form .link-input {
    margin-top: 0;
  }
}
.contacts .page-heading {
  margin-bottom: 50px;
}
.contacts__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  padding: 40px 0;
}
.contacts__container .map {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 200px);
  height: 480px;
  z-index: 0;
}
.contacts__wrapper {
  display: flex;
  flex-direction: column;
  padding: 50px 30px;
  width: 460px;
  color: var(--lightGrey-color);
  border-radius: var(--border-radius);
  background: radial-gradient(133.33% 133.33% at 50% 50%, #515158 0%, rgba(81, 81, 88, 0) 100%), #292932;
  z-index: 10;
}
.contacts__wrapper .title-2 {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 700;
  color: var(--lightGrey-color);
}
.contacts__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.contacts__list .row .contacts-item:not(:last-child) {
  margin-bottom: 0;
  margin-right: 60px;
}
.contacts__group {
  width: 100%;
}
.contacts__group:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #545462;
}
.contacts__group:nth-child(1) {
  text-transform: uppercase;
}
.contacts-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.contacts-item i {
  font-size: 24px;
  color: var(--global-color);
  margin-right: 10px;
  flex-shrink: 0;
}
.contacts-item img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  flex-shrink: 0;
}
.contacts-item p {
  margin: 0;
}
.contacts-item:not(:last-child) {
  margin-bottom: 20px;
}
.contacts a:hover {
  color: var(--global-color);
}

.map,
.ymaps-2-1-79-map,
.ymaps-2-1-79-inner-panes {
  border-radius: var(--border-radius);
}

.team .heading .title-1 {
  margin-bottom: 0;
}
.team .heading .title-1 span {
  display: block;
  margin-left: 70px;
}
.teamSwiper .swiper-nav {
  margin-bottom: 24px;
}
.teamSwiper .swiper-nav .swiper-button-prev::after, .teamSwiper .swiper-nav .swiper-button-next::after {
  color: var(--global-color);
}
.teamcard {
  display: flex;
  flex-direction: column;
}
.teamcard-img {
  width: 100%;
  aspect-ratio: 33/39;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}
.teamcard-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.teamcard-name {
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--font-color);
  margin-right: 16px;
}
.teamcard-post {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: #989898;
}

@media screen and (min-width: 1190px) {
  .teamSwiper .swiper-slide {
    transition: all 0.5s ease;
    padding: 40px 0;
  }
  .teamSwiper .swiper-slide-active {
    transform: scale(1.22);
  }
  .teamSwiper .swiper-slide-active .teamcard {
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .contacts .page-heading {
    margin-bottom: 30px;
  }
  .contacts__container {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column-reverse;
    padding: 0;
  }
  .contacts__container .map {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 400px;
    margin-top: 10px;
  }
  .contacts__wrapper {
    padding: 30px 20px;
    width: 100%;
  }
  .team .heading .title-1 span {
    display: inline;
    margin-left: 0;
  }
  .teamSwiper .swiper-nav {
    margin-bottom: 20px;
  }
  .teamcard-name {
    font-size: 16px;
  }
  .teamcard-post {
    font-size: 12px;
  }
}
@media screen and (max-width: 576px) {
  .contacts__container .map {
    height: 300px;
  }
  .contacts__wrapper {
    padding: 30px 10px;
  }
  .contacts__wrapper .title-2 {
    margin-bottom: 24px;
    font-size: 20px;
  }
  .contacts__list .row .contacts-item:not(:last-child) {
    margin-right: 40px;
  }
  .contacts__group:not(:last-child) {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .contacts-item i {
    font-size: 20px;
  }
  .contacts-item img {
    width: 20px;
    height: 20px;
  }
  .contacts-item:not(:last-child) {
    margin-bottom: 16px;
  }
}
.paymentbl .default-wrapper,
.deliverybl .default-wrapper,
.warrantybl .default-wrapper,
.orderbl .default-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #131313;
}
.paymentbl .default-wrapper .heading,
.deliverybl .default-wrapper .heading,
.warrantybl .default-wrapper .heading,
.orderbl .default-wrapper .heading {
  margin-bottom: 20px;
}
.paymentbl .default-wrapper .delivery-card,
.deliverybl .default-wrapper .delivery-card,
.warrantybl .default-wrapper .delivery-card,
.orderbl .default-wrapper .delivery-card {
  background: var(--grey-color);
}
.paymentbl .default-wrapper .link,
.deliverybl .default-wrapper .link,
.warrantybl .default-wrapper .link,
.orderbl .default-wrapper .link {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.paymentbl__container,
.warrantybl__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.paymentbl__container .col,
.warrantybl__container .col {
  width: calc(50% - 20px);
}
.paymentbl__container .col p,
.warrantybl__container .col p {
  margin-top: 0;
  margin-bottom: 0;
}
.paymentbl__container .col p:not(:last-child),
.warrantybl__container .col p:not(:last-child) {
  margin-bottom: 1rem;
}

.deliverybl__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 10px;
  width: 100%;
}
.deliverybl .delivery-card-head img:not(:last-child) {
  margin-right: auto;
}
.deliverybl .delivery-card-head p:not(:last-child) {
  margin-right: 30px;
}
.deliverybl .delivery-card-content {
  padding: 30px 20px;
}
.deliverybl .delivery-card-content p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  color: #131313;
}
.deliverybl .delivery-card-content p:not(:last-child) {
  margin-bottom: 12px;
}
.deliverybl .delivery-card a {
  text-decoration: underline;
}
.deliverybl .delivery-card a:hover {
  color: var(--global-color);
  text-decoration: none;
}

.orderbl .heading {
  width: calc(50% - 20px);
}
.orderbl__cards {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 46px;
  width: 100%;
}
.orderbl__cards .step {
  width: calc(50% - 20px);
}
.orderbl__cards .step:nth-child(odd) {
  margin-right: 40px;
}
.orderbl__cards .step:nth-child(1), .orderbl__cards .step:nth-child(2) {
  margin-right: 50px;
}
.orderbl__img {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% - 20px);
  aspect-ratio: 56/40;
  object-fit: cover;
  border-top-right-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
}

.payment-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
}
.payment-logos img {
  width: auto;
  height: 32px;
  margin: 0 20px 20px 20px;
}

.delivery-card {
  font-size: 17px;
  font-weight: 400;
  line-height: normal;
  border-radius: var(--border-radius);
  background: var(--lightGrey-color);
}
.delivery-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 30px 20px;
  min-height: 100px;
}
.delivery-card-head:not(:last-child):before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  width: calc(100% - 40px);
  height: 1px;
  background: #bfbfbf;
}
.delivery-card-head img:not(:last-child) {
  margin-right: 8px;
}
.delivery-card-head p {
  margin: 8px 0;
}
.delivery-card-head p:not(:last-child) {
  margin-right: 8px;
}
.delivery-card-content {
  padding: 30px 20px;
}
.delivery-card-content p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  color: #131313;
}
.delivery-card-content p:not(:last-child) {
  margin-bottom: 12px;
}
.delivery-card-content .row {
  row-gap: 8px;
}
.delivery-card-content .row p {
  margin: 0 12px 0 0 !important;
}
.delivery-card a {
  text-decoration: underline;
}
.delivery-card a:hover {
  color: var(--global-color);
  text-decoration: none;
}

.errorpage__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 860px;
  min-height: 360px;
  margin: 0 auto;
  z-index: 1;
}
.errorpage__container .imgs img:nth-child(1) {
  position: absolute;
  left: 0;
  top: 20px;
  width: 260px;
  height: 165px;
  border-radius: var(--border-radius);
  object-fit: cover;
  z-index: -1;
}
.errorpage__container .imgs img:nth-child(2) {
  position: absolute;
  right: 110px;
  bottom: 0;
  width: 140px;
  height: 165px;
  border-radius: var(--border-radius);
  object-fit: cover;
  z-index: -1;
}
.errorpage__container span {
  display: block;
  margin-bottom: 35px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: var(--global-color);
}
.errorpage__container .title-1 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

@media screen and (max-width: 1024px) {
  .paymentbl .default-wrapper,
.deliverybl .default-wrapper,
.warrantybl .default-wrapper,
.orderbl .default-wrapper {
    padding-top: 30px;
    padding-bottom: 20px;
    font-size: 16px;
  }
  .paymentbl .default-wrapper .heading,
.deliverybl .default-wrapper .heading,
.warrantybl .default-wrapper .heading,
.orderbl .default-wrapper .heading {
    margin-bottom: 20px;
  }
  .paymentbl .default-wrapper .heading .title-1,
.deliverybl .default-wrapper .heading .title-1,
.warrantybl .default-wrapper .heading .title-1,
.orderbl .default-wrapper .heading .title-1 {
    margin-bottom: 14px;
  }
  .paymentbl__container,
.warrantybl__container {
    justify-content: flex-start;
    flex-direction: column;
  }
  .paymentbl__container .col,
.warrantybl__container .col {
    width: 100%;
  }
  .paymentbl__container .col:nth-child(1),
.warrantybl__container .col:nth-child(1) {
    margin-bottom: 24px;
  }
  .paymentbl__container .col p:not(:last-child),
.warrantybl__container .col p:not(:last-child) {
    margin-bottom: 0.7rem;
  }
  .deliverybl__container {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .deliverybl .delivery-card-content {
    padding: 20px 10px;
  }
  .deliverybl .delivery-card-content p {
    font-size: 16px;
  }
  .orderbl .heading {
    width: 100%;
  }
  .orderbl__cards {
    row-gap: 28px;
  }
  .orderbl__cards .step {
    width: 100%;
  }
  .orderbl__cards .step:nth-child(odd) {
    margin-right: 0;
  }
  .orderbl__cards .step:nth-child(1), .orderbl__cards .step:nth-child(2) {
    margin-right: 0;
  }
  .orderbl__img {
    margin-top: 20px;
    position: relative;
    order: 1;
    top: auto;
    right: auto;
    width: 100%;
  }
  .payment-logos {
    max-width: 100%;
    margin: 0;
  }
  .payment-logos img {
    height: 28px;
    margin-left: 0;
    margin-right: 30px;
  }
  .delivery-card {
    font-size: 16px;
  }
  .delivery-card-head {
    padding: 20px 10px;
    min-height: 74px;
  }
  .delivery-card-head:not(:last-child):before {
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
  }
  .delivery-card-content {
    padding: 20px 10px;
  }
  .delivery-card-content p {
    font-size: 16px;
  }
  .errorpage__container {
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 860px;
    min-height: auto;
    margin: 0;
  }
  .errorpage__container .imgs {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 30px;
  }
  .errorpage__container .imgs img:nth-child(1) {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
  }
  .errorpage__container .imgs img:nth-child(2) {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
  }
  .errorpage__container span {
    margin-bottom: 20px;
    text-align: left;
  }
  .errorpage__container .title-1 {
    text-align: left;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  .errorpage__container .imgs img:nth-child(1), .errorpage__container .imgs img:nth-child(2) {
    height: 130px;
  }
  .errorpage__container span {
    font-size: 16px;
  }
  .errorpage__container .title-1 {
    font-size: 24px;
  }
}
.cartbar {
    display: none;
}
.cartbar.active {
    display: block;
}
.cartbar-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  padding-top: 56px;
  padding-bottom: 40px;
  width: 380px;
  max-width: 100%;
  height: 100vh;
  overflow-y: auto;
  color: var(--font-color);
  background: var(--white-color);
  z-index: 999999;
  transition: 0.5s ease;
}
.cartbar-group, .cartbar-head {
  width: 100%;
  padding: 20px 16px;
}
.cartbar-group:not(:last-child), .cartbar-head:not(:last-child) {
  border-bottom: 1px solid #d0d0d0;
}
.cartbar-group .row, .cartbar-head .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.cartbar-group .row:not(:last-child), .cartbar-head .row:not(:last-child) {
  margin-bottom: 10px;
}
.cartbar-group .row .col, .cartbar-head .row .col {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--font-color);
}
.cartbar-group .row .col:nth-child(2), .cartbar-head .row .col:nth-child(2) {
  text-align: right;
  margin-left: 12px;
}
.cartbar-head {
  padding-top: 0;
}
.cartbar .form-group {
  margin-bottom: 0;
}
.cartbar .form-input {
  background: var(--lightGrey-color);
}
.cartbar-card {
  position: relative;
  width: 100%;
  padding: 20px 16px;
  border-bottom: 1px solid #d0d0d0;
}
.cartbar-card-remove {
  position: absolute;
  top: 20px;
  right: 16px;
  width: 15px;
  height: 15px;
  font-size: 15px;
  line-height: 1;
  color: var(--font-color);
  cursor: pointer;
  transition: color 0.3s ease;
}
.cartbar-card-remove:hover {
  color: var(--global-color);
}
.cartbar-card-img {
  position: absolute;
  top: 20px;
  left: 16px;
  display: block;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: var(--border-radius);
  background: var(--lightGrey-color);
}
.cartbar-card-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: var(--border-radius);
}
.cartbar-card-info {
  padding-top: 4px;
  padding-left: 115px;
  width: 100%;
  min-height: 100px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
}
.cartbar-card-name {
  width: calc(100% - 20px);
  margin-bottom: 20px;
}
.cartbar-card-text p {
  margin: 0;
}
.cartbar-card-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
  font-size: 17px;
}
.cartbar-card-total .col:first-child {
  margin-right: 12px;
}
.cartbar-card-total .col:last-child {
  margin-left: 12px;
}
.cartbar-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 24px 16px 20px 16px;
}
.cartbar-btns .link-withicon:not(:last-child) {
  margin-bottom: 24px;
}
.cartbar-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  font-size: 30px;
  line-height: 1;
  color: var(--font-color);
  transition: color 0.3s ease;
  cursor: pointer;
}
.cartbar-close:before {
  font-family: "icomoon" !important;
  content: "\e907";
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cartbar-close:hover {
  color: var(--global-color);
}
.cartbar-shadow {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.5;
  z-index: 999998;
}

.promocode-form {
  position: relative;
}
.promocode-form .btn-reset {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #C8C8C8;
}
.promocode-form .btn-reset i {
  font-size: 16px;
}
.promocode-form .btn-reset:hover {
  color: var(--font-color);
}

@media screen and (max-width: 765px) {
  .cartbar-wrapper {
    padding-top: 48px;
    width: 310px;
  }
  .cartbar-group, .cartbar-head {
    padding: 18px 10px;
  }
  .cartbar-group .row .col, .cartbar-head .row .col {
    font-size: 16px;
  }
  .cartbar-head {
    padding-top: 0;
  }
  .cartbar-card {
    padding: 18px 10px;
  }
  .cartbar-card-remove {
    position: absolute;
    top: 18px;
    right: 10px;
  }
  .cartbar-card-img {
    top: 18px;
    left: 10px;
    width: 60px;
    height: 60px;
    border-radius: 5px;
  }
  .cartbar-card-info {
    padding-top: 0;
    padding-left: 70px;
    min-height: 60px;
    font-size: 13px;
  }
  .cartbar-card-name {
    margin-bottom: 10px;
  }
  .cartbar-card-total {
    margin-top: 14px;
    font-size: 16px;
  }
  .cartbar-card-total .col:first-child {
    margin-right: 8px;
  }
  .cartbar-card-total .col:last-child {
    margin-left: 8px;
  }
  .cartbar-btns {
    padding: 18px 10px 16px 10px;
  }
  .cartbar-btns .link-withicon:not(:last-child) {
    margin-bottom: 20px;
  }
  .cartbar-close {
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    font-size: 24px;
  }
}
.cart .default-wrapper {
  padding-top: 40px;
  padding-bottom: 50px;
}
.cart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 50px;
}
.cart-heading .title-1 {
  margin: 0;
}
.cart-heading .title-1:not(:last-child) {
  margin-bottom: 24px;
}
.cart-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.cart-container > .col:nth-child(1) {
  width: calc(66% - 10px);
}
.cart-container > .col:nth-child(2) {
  width: calc(34% - 10px);
}
.cart-container > .col > .link {
  margin-bottom: 36px;
}
.cart-cards {
  border-bottom: 1px solid #989898;
}
.cart-card {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}
.cart-card-remove {
  position: absolute;
  top: 8px;
  right: 0;
  display: inline-flex;
  align-items: flex-end;
  font-size: 16px;
  line-height: 1;
  color: var(--font-color);
  cursor: pointer;
  transition: color 0.3s ease;
}
.cart-card-remove i {
  font-size: 20px;
  color: var(--global-color);
  margin-right: 12px;
}
.cart-card-remove:hover {
  color: var(--global-color);
}
.cart-card-img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 260px;
  height: 260px;
  flex-shrink: 0;
  border-radius: var(--border-radius);
  background: var(--white-color);
}
.cart-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: var(--border-radius);
}
.cart-card-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding-top: 8px;
  padding-left: 300px;
  width: 100%;
  min-height: 260px;
}
.cart-card-head {
  width: calc(100% - 140px);
  margin-bottom: 20px;
}
.cart-card-name {
  margin-bottom: 20px;
  display: block;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}
.cart-card-text p {
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}
.cart-card-text p:not(:last-child) {
  margin-bottom: 14px;
}
.cart-card-total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
}
.cart-card-total .col.desktop-hidden {
  display: none;
}
.cart-card-total .col:first-child {
  margin-right: 12px;
}
.cart-card-total .col:last-child {
  margin-left: 12px;
}
.cart-card-total-price > span {
  display: block;
  text-align: right;
}
.cart-card-total-price > span:nth-child(1) {
  font-size: 17px;
  margin-bottom: 14px;
}
.cart-card-total-price > span:nth-child(2) {
  font-size: 24px;
}
.cart-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  width: 100%;
  padding-top: 40px;
}
.cart-bottom .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 360px;
  max-width: 360px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--font-color);
}
.cart-bottom .row:not(:last-child) {
  margin-bottom: 18px;
}
.cart-bottom .row.order-total {
  margin-top: 30px;
}
.cart-bottom .row .col:nth-child(2) {
  text-align: right;
  margin-left: 14px;
}
.cart-bottom-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.cart-bottom-container .back-link:not(:last-child),
.cart-bottom-container .link-withicon:not(:last-child) {
  margin-right: 40px;
}
.cart-bottom-text {
  margin-top: 28px;
  font-size: 15px;
}
.cart a.checkout-button.alt.wc-forward.link-withicon {
  margin: 40px 0 0 auto;
  display: flex;
  justify-content: flex-end;
  width: fit-content;
}
.cart-block:not(:last-child) {
  margin-bottom: 60px;
}
.cart-block .title-2 {
  max-width: 440px;
}
.cart-block .contacts__list {
  width: 400px;
  max-width: 100%;
}
.cart-block .contacts__group:not(:last-child) {
  border-bottom: 1px solid #d0d0d0;
}

@media screen and (max-width: 1024px) {
  .cart .default-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .cart-heading {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .cart-heading .title-1:not(:last-child) {
    margin-bottom: 14px;
  }
  .cart-container {
    justify-content: flex-start;
    flex-direction: column;
  }
  .cart-container > .col:nth-child(1) {
    width: 100%;
  }
  .cart-container > .col:nth-child(2) {
    margin-top: 24px;
    padding-top: 40px;
    border-top: 1px solid #131313;
    width: 100%;
  }
  .cart-card {
    margin-bottom: 30px;
  }
  .cart-card-img {
    width: 120px;
    height: 120px;
  }
  .cart-card-remove i {
    color: var(--font-color);
    margin-right: 0;
  }
  .cart-card-remove:hover {
    color: var(--global-color);
  }
  .cart-card-remove span {
    display: none;
  }
  .cart-card-info {
    padding-left: 140px;
    min-height: 120px;
  }
  .cart-card-head {
    width: calc(100% - 20px);
  }
  .cart-card-name {
    font-size: 20px;
  }
  .cart-card-total {
    margin-top: 14px;
    align-items: center;
  }
  .cart-card-total .col {
    font-size: 17px;
  }
  .cart-card-total .col.desktop-hidden {
    display: block;
  }
  .cart-card-total-price > span.mob-hidden {
    display: none;
  }
  .cart-card-total-price > span:nth-child(2) {
    font-size: 17px;
  }
  .cart-bottom {
    padding-top: 20px;
  }
  .cart-bottom .row {
    font-size: 18px;
  }
  .cart-bottom .row:not(:last-child) {
    margin-bottom: 12px;
  }
  .cart-bottom .row.order-total {
    margin-top: 20px;
  }
  .cart-bottom-container .back-link:not(:last-child),
.cart-bottom-container .link-withicon:not(:last-child) {
    margin-right: 30px;
  }
  .cart-bottom-text {
    margin-top: 20px;
    font-size: 14px;
  }
  .cart a.checkout-button.alt.wc-forward.link-withicon {
    margin: 30px 0 0 auto;
  }
  .cart-block {
    margin-bottom: 50px;
  }
  .cart-block:not(:last-child) {
    margin-bottom: 50px;
  }
  .cart-block .title-2 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
  }
  .cart-block .section-text {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 765px) {
  .cart .default-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .cart-heading {
    margin-bottom: 30px;
  }
  .cart_totals {
    max-width: 100%;
  }
  .cart-card {
    margin-bottom: 14px;
  }
  .cart-card-img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
  }
  .cart-card-remove {
    top: 0;
  }
  .cart-card-info {
    padding-left: 70px;
    min-height: 60px;
  }
  .cart-card-head {
    margin-bottom: 4px;
  }
  .cart-card-name {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .cart-card-text p {
    font-size: 13px;
  }
  .cart-card-total {
    margin-top: 8px;
    width: calc(100% + 70px);
    margin-left: -70px;
  }
  .cart-card-total .col {
    font-size: 16px;
  }
  .cart-card-total-price > span:nth-child(2) {
    font-size: 16px;
  }
  .cart-bottom {
    align-items: center;
    justify-content: center;
  }
  .cart-bottom .row {
    max-width: 100%;
    font-size: 16px;
  }
  .cart-bottom-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .cart-bottom-container .back-link:not(:last-child),
.cart-bottom-container .link-withicon:not(:last-child) {
    margin-right: 0;
  }
  .cart-bottom-container .back-link {
    order: 1;
    margin-top: 20px;
  }
  .cart-bottom-text {
    margin-top: 20px;
    font-size: 12px;
    text-align: center;
  }
  .cart a.checkout-button.alt.wc-forward.link-withicon {
    margin-right: auto;
    margin-left: auto;
  }
}
.lk-section:not(:last-child) {
  margin-bottom: 100px;
}
.lk-section .heading {
  margin-bottom: 20px;
}
.lk-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  width: 100%;
  gap: 24px;
}
.lk-title {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--font-color);
}
.lk-text {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
}
.lk-main-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
}
.lk-maincard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 30px;
  border-radius: 15px;
  min-height: 240px;
  background: var(--grey-color);
}
.lk-maincard-title {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 36px;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--font-color);
}
.lk-maincard-title img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: -2px;
  margin-right: 10px;
}
.lk-maincard-text {
  margin-bottom: 36px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--font-color);
}
.lk-maincard .link {
  margin-top: auto;
}
.lk .text-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
  width: 100%;
}
.lk .text-row .col {
  width: calc(50% - 14px);
}
.lk .text-row .col p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
}
.lk .logo-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  row-gap: 20px;
}
.lk .logo-row a:not(:last-child) {
  margin-right: 48px;
}
.lk .logo-row a img {
  transition: .3s ease;
}
.lk .logo-row a:hover img {
  transform: scale(1.05);
}
.lk__contacts {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.lk__contacts a:hover {
  text-decoration: underline;
  color: var(--global-color);
}
.lk__contacts .col {
  width: calc(50% - 20px);
}
.lk__contacts .col:nth-child(1) {
  text-transform: uppercase;
}
.lk__contacts .col .row {
  align-items: flex-start;
}
.lk__contacts .col .row .contacts-item:not(:last-child) {
  margin-right: 48px;
}
.lk-delivery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
.lk-deliverycard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border-radius: 15px;
  min-height: 150px;
  background: var(--grey-color);
}
.lk-deliverycard h4 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.15;
}
.lk-deliverycard p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
}
.lk-deliverycard p:not(:last-child) {
  margin-bottom: 12px;
}
.lk .form-title {
  font-size: 17px;
  margin-bottom: 16px;
}
.lk-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
}
.lk-bottom .link {
  margin-left: auto;
}
.lk-bottom .link-withicon,
.lk-bottom .download-link {
  margin-bottom: 28px;
}
.lk .desktop-hidden {
  display: none;
}

.orders__list {
  display: none;
  flex-direction: column;
  width: 100%;
}
.orders-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 20px;
}
.orders-item .row {
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--font-color);
}
.orders-item .row span {
  font-weight: 500;
  margin-right: 8px;
}
.orders-item .link-withicon,
.orders-item .download-link {
  margin-bottom: 18px;
}
.orders-item:not(:last-child) {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid #A7A7A7;
}

.order__info {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 36px;
}
.order__info-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #A7A7A7;
  width: 100%;
}
.order__info-item h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--font-color);
}
.order__info-item p {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--font-color);
}
.order__info .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-top: 8px;
}
.order__info .row:last-child .col {
  font-weight: 700;
}
.order__info .row .col {
  font-size: 14px;
  font-weight: 400;
}
.order__info .row .col:nth-child(2) {
  font-size: 16px;
  text-align: right;
  margin-left: 12px;
}

@media screen and (max-width: 1024px) {
  .lk .orders-table,
.lk .order-table {
    display: none;
  }
  .lk .orders__list,
.lk .order__info {
    display: flex;
  }
  .lk .desktop-hidden {
    display: flex;
  }
  .lk .mob-hidden {
    display: none;
  }
  .lk-section:not(:last-child) {
    margin-bottom: 70px;
  }
  .lk-head {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
    gap: 14px;
  }
  .lk-title {
    font-size: 30px;
  }
  .lk-text {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .lk-main-cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .lk-maincard {
    padding: 30px 20px;
    min-height: auto;
  }
  .lk-maincard-title {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 20px;
  }
  .lk-maincard-title img {
    width: 20px;
    height: 20px;
    margin-right: 6px;
  }
  .lk-maincard-text {
    margin-bottom: 28px;
    font-size: 16px;
  }
  .lk .text-row {
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .lk .text-row .col {
    width: 100%;
  }
  .lk .text-row .col:nth-child(1) {
    margin-bottom: 18px;
  }
  .lk .text-row .col p {
    font-size: 16px;
  }
  .lk .logo-row a:not(:last-child) {
    margin-right: 36px;
  }
  .lk__contacts {
    justify-content: flex-start;
    flex-direction: column;
  }
  .lk__contacts .col {
    width: 100%;
  }
  .lk__contacts .col:nth-child(1) {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #545462;
  }
  .lk__contacts .col:nth-child(2) > .contacts-item {
    padding-bottom: 18px;
    border-bottom: 1px solid #545462;
  }
  .lk__contacts .col .row .contacts-item:not(:last-child) {
    margin-right: 36px;
  }
  .lk-delivery-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .lk-deliverycard {
    padding: 30px 20px;
    min-height: auto;
  }
  .lk-deliverycard h4 {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .lk-deliverycard p {
    font-size: 16px;
  }
  .lk-deliverycard p:not(:last-child) {
    margin-bottom: 10px;
  }
  .lk .form-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 576px) {
  .lk-title {
    font-size: 24px;
  }
  .lk-text {
    margin-bottom: 16px;
    font-size: 16px;
  }
  .lk-maincard {
    padding: 20px 10px;
  }
  .lk-deliverycard {
    padding: 20px 10px;
  }
  .lk .logo-row img {
    max-height: 44px;
  }
}
@media screen and (max-width: 390px) {
  :root {
    --container-offset: 10px;
  }
}
/***** ICONS *****/
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-burger:before {
  content: "\e90f";
}

.icon-fliter:before {
  content: "\e910";
}

.icon-phone:before {
  content: "\e90b";
}

.icon-place:before {
  content: "\e90c";
}

.icon-postal:before {
  content: "\e90d";
}

.icon-tech:before {
  content: "\e90e";
}

.icon-arrow-next:before {
  content: "\e900";
}

.icon-arrow-prev:before {
  content: "\e901";
}

.icon-cart:before {
  content: "\e902";
}

.icon-checked:before {
  content: "\e903";
}

.icon-chevron:before {
  content: "\e904";
}

.icon-chevron-big:before {
  content: "\e905";
}

.icon-download:before {
  content: "\e906";
}

.icon-remove:before {
  content: "\e907";
}

.icon-search:before {
  content: "\e908";
}

.icon-user:before {
  content: "\e909";
}

.icon-wallet:before {
  content: "\e90a";
}


.entry-header,
.entry-content > .woocommerce > p:first-child,
.woocommerce-notices-wrapper,
.woocommerce-remove-coupon {
    display: none;
}
.woocommerce .woocommerce-ordering {
    margin: 0 0 5px 0;
}
.save-pass-notice {
    margin-bottom: 10px;
}
.woocommerce-password-strength {
    margin-top: 15px;
}

.woocommerce-error {
    background: #fdbebe;
    padding: 12px 20px;
    border-radius: 15px;
    list-style-type: none;
}


.form-message-success {
  font-size: 16px;
  line-height: 1.15;
  font-weight: 400;
}

.form-subs .form-message-success {
  margin-top: 16px;
  margin-bottom: 16px;
  width: 100%;
  font-size: 14px;
  color: rgba(19, 19, 19, 1);
}

.default-wrapper-dark .form-message-success {
  color: rgba(245, 246, 247, 1);
}
.form-one .default-wrapper-dark .form-message-success {
  margin-top: 16px;
  width: 100%;
}

#drugoySposobDostavki .form-message-success,
#stoimostDostavki .form-message-success {
  margin-bottom: 24px;
}