@charset "UTF-8";

/*Defaults*/
@font-face {
  font-family: "Oceanic Gothic";
  src:
    local("Oceanic Gothic Regular"),
    url("../fonts/OceanicGothic/Oceanic-Gothic-Regular.woff") format("woff"),
    url("../fonts/OceanicGothic/Oceanic-Gothic-Regular.woff2") format("woff2"),
    url("../fonts/OceanicGothic/Oceanic-Gothic-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Oceanic Gothic";
  src:
    local("Oceanic Gothic Light"),
    url("../fonts/OceanicGothic/Oceanic-Gothic-Light.woff") format("woff"),
    url("../fonts/OceanicGothic/Oceanic-Gothic-Light.woff2") format("woff2"),
    url("../fonts/OceanicGothic/Oceanic-Gothic-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Oceanic Text";
  src:
    local("Oceanic Text Regular"),
    url("../fonts/OceanicText/Oceanic-Text-Regular-Web.woff") format("woff"),
    url("../fonts/OceanicText/Oceanic-Text-Regular-Web.woff2") format("woff2"),
    url("../fonts/OceanicText/Oceanic-Text-Regular-Web.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/*$img: "Images/";*/
.autocomplete-suggestions {
  background: #ffffff;
  box-shadow: 0px 0px 16px rgba(35, 83, 255, 0.11);
  border-radius: 8px;
  padding: 20px;
  box-sizing: border-box;
  overflow: auto;
  min-width: 450px;
  left: unset !important;
  right: 40px;
}

@media (max-width: 991.98px) {
  .autocomplete-suggestions {
    min-width: 280px;
    padding: 10px;
    border-radius: 0;
    max-width: calc(100% - 74px);
    right: 37px;
    width: calc(100% - 74px) !important;
  }
}

.autocomplete-suggestions .autocomplete-suggestion .suggestion-data.goods-item {
  position: relative;
  padding: 0;
  box-shadow: none;
  display: flex;
  text-decoration: none;
  padding: 12px 0;
  align-items: flex-start;
  align-content: flex-start;
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .autocomplete-suggestions .autocomplete-suggestion .suggestion-data.goods-item {
    padding: 8px 0;
  }
}

.autocomplete-suggestions .autocomplete-suggestion .suggestion-data.goods-item:before {
  display: block;
  position: absolute;
  content: "";
  left: -20px;
  right: -20px;
  bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 991.98px) {
  .autocomplete-suggestions .autocomplete-suggestion .suggestion-data.goods-item:before {
    left: -10px;
    right: -10px;
  }
}

.autocomplete-suggestions .autocomplete-suggestion .suggestion-data.goods-item:after {
  display: block;
  position: absolute;
  content: "";
  left: -20px;
  right: -20px;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.06);
  opacity: 0;
  transition: all 0.25s ease;
}

@media (max-width: 991.98px) {
  .autocomplete-suggestions .autocomplete-suggestion .suggestion-data.goods-item:after {
    left: -10px;
    right: -10px;
  }
}

.autocomplete-suggestions .autocomplete-suggestion .suggestion-data.goods-item:hover:after {
  opacity: 1;
}

.autocomplete-suggestions .autocomplete-suggestion .suggestion-data__image {
  flex: 0 0 60px;
  margin-right: 10px;
}

@media (max-width: 991.98px) {
  .autocomplete-suggestions .autocomplete-suggestion .suggestion-data__image {
    flex: 0 0 40px;
  }
}

.autocomplete-suggestions .autocomplete-suggestion .suggestion-data__image img {
  max-width: 100%;
}

.autocomplete-suggestions .autocomplete-suggestion .suggestion-data__title {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  font-family: "Oceanic Gothic", sans-serif;
  text-transform: uppercase;
  color: #111111;
  margin: 0 0 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

@media (max-width: 991.98px) {
  .autocomplete-suggestions .autocomplete-suggestion .suggestion-data__title {
    margin: 0 0 5px;
  }
}

.autocomplete-suggestions .autocomplete-suggestion .suggestion-data__title strong {
  font-weight: 800;
  font-size: 14px;
  line-height: 18px;
  font-family: "Oceanic Gothic", sans-serif;
}

.autocomplete-suggestions .autocomplete-suggestion .suggestion-data__title:hover {
  text-decoration: underline;
  color: #111111;
}

.autocomplete-suggestions .autocomplete-suggestion .suggestion-data__props {
  flex: 1 1;
  display: flex;
  flex-wrap: wrap;
}

.autocomplete-suggestions .autocomplete-suggestion .suggestion-data__props .suggestion-data__title {
  width: 100%;
  margin: 0 0 15px;
  text-decoration: none;
  font-feature-settings:
    "pnum" on,
    "lnum" on;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  -ms-line-clamp: 1;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  display: -webkit-box;
  display: box;
  word-wrap: break-word;
  -webkit-box-orient: vertical;
  box-orient: vertical;
}

@media (max-width: 991.98px) {
  .autocomplete-suggestions .autocomplete-suggestion .suggestion-data__props .suggestion-data__title {
    margin: 0 0 5px;
  }
}

.autocomplete-suggestions .autocomplete-suggestion .suggestion-data__props .suggestion-data__title:hover {
  color: #111111;
  text-decoration: none;
}

.autocomplete-suggestions .autocomplete-suggestion .suggestion-data__price {
  justify-content: flex-end;
  margin-left: 6px;
}

.autocomplete-suggestions .autocomplete-suggestion .suggestion-data__price .old-price {
  display: block;
  text-align: right;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  font-family: "Oceanic Gothic", sans-serif;
  text-decoration: line-through;
  color: #111111;
}

.autocomplete-suggestions .autocomplete-suggestion .suggestion-data__price .old-price:after {
  font-family: "Oceanic Gothic", sans-serif !important;
  display: inline-block;
  text-transform: none !important;
  font-style: normal;
  margin-left: 2px;
  content: "сом";
}

.autocomplete-suggestions .autocomplete-suggestion .suggestion-data__price .price {
  display: block;
  text-align: right;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  font-family: "Oceanic Gothic", sans-serif;
  color: #111111;
}

.autocomplete-suggestions .autocomplete-suggestion .suggestion-data__price .price:after {
  font-family: "Oceanic Gothic", sans-serif !important;
  display: inline-block;
  text-transform: none !important;
  font-style: normal;
  margin-left: 2px;
  content: "сом";
}

*:hover,
*:active,
*:focus {
  outline: none;
  outline: 0;
}

/*$img: "Images/";*/
.jq-checkbox {
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid #e7e6e3;
  background: #faf8f4;
  vertical-align: middle;
  flex: 0 0 2rem;
  cursor: pointer;
  margin: 0 1rem 0 0;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.jq-checkbox.checked .jq-checkbox__div {
  width: 0.7rem;
  height: 0.7rem;
  background: #111111;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.jq-checkbox.checked {
  border-color: #111111;
}

.jq-checkbox.disabled {
  opacity: 0.55;
  filter: alpha(opacity=55);
}

.jq-radio {
  width: 2rem;
  height: 2rem;
  border: 1px solid #e7e6e3;
  background: #faf8f4;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  display: inline-block;
  flex: 0 0 2rem;
  margin: 0 1rem 0 0;
}

.jq-radio.checked .jq-radio__div {
  width: 0.7rem;
  height: 0.7rem;
  background: #111111;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.jq-radio.disabled {
  opacity: 0.55;
  filter: alpha(opacity=55);
}

.jq-file {
  display: block !important;
}

.jq-file input {
  cursor: pointer;
  height: auto;
  line-height: 1em;
}

.jq-file__name {
  display: block;
  border: 1px solid #e7e6e3;
  height: 50px;
  font-weight: 400;
  font-size: 14px;
  line-height: 48px;
  font-family: "Oceanic Gothic", sans-serif;
  color: #808080;
  padding: 0px 15px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.25s ease;
  margin: 0;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}

.jq-file__name:before {
  display: block;
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='24' viewBox='0 0 12 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.00008 24C3.12183 24 0.779785 21.6584 0.779785 18.7797V3.53221C0.779785 3.3745 0.823101 3.22689 0.898801 3.10114C1.3387 1.32263 2.94815 0 4.86039 0C7.11034 0 8.941 1.83066 8.941 4.08061V15.8089C8.941 17.4306 7.62173 18.7503 5.99966 18.7503C4.3776 18.7503 3.05833 17.4306 3.05833 15.8089V6.66069C3.05833 6.1964 3.43514 5.81958 3.89943 5.81958C4.36372 5.81958 4.74053 6.1964 4.74053 6.66069V15.8089C4.74053 16.5033 5.30533 17.0681 5.99966 17.0681C6.69357 17.0681 7.25879 16.5033 7.25879 15.8089V4.08061C7.25879 2.75797 6.1826 1.6822 4.86039 1.6822C3.53818 1.6822 2.46199 2.75839 2.46199 4.08061V18.7797C2.46199 20.7306 4.04915 22.3178 6.00008 22.3178C7.95144 22.3178 9.53818 20.7306 9.53818 18.7797V6.65984C9.53818 6.19556 9.91499 5.81874 10.3793 5.81874C10.8436 5.81874 11.2204 6.19556 11.2204 6.65984V18.7797C11.2204 21.6584 8.87876 24 6.00008 24Z' fill='%23808080'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 12px;
  height: 24px;
  top: calc(50% - 12px);
  right: 14px;
}

.focused .jq-file__name {
  border-color: #111111;
}

.jq-file__browse,
.field-info {
  margin: 4px 0 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  font-family: "Oceanic Gothic", sans-serif;
  color: #999;
  padding: 0px 0 0 15px;
  display: block;
}

.jq-file__browse {
  display: none;
}

.jq-file.disabled .jq-file__name {
  color: #888;
}

.files__list {
  font-weight: 400;
  font-size: 12px;
  line-height: 13px;
  font-family: "Oceanic Gothic", sans-serif;
  color: #3f3f3f;
  overflow: hidden;
}

.files__list__item {
  margin: 8px 0 0;
  position: relative;
  padding-right: 20px;
  float: left;
  clear: both;
}

.files__list__item .close,
.files__list__item .delete {
  display: block;
  cursor: pointer;
  position: absolute;
  width: 16px;
  height: 16px;
  right: 0;
  top: calc(50% - 8px);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.85062 12.1861L12.268 3.76917M3.75122 3.83263L12.1686 12.25L3.75122 3.83263Z' stroke='%23EA3D2F' stroke-width='0.767736' stroke-linecap='square'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
}

.files__list__item .close:hover,
.files__list__item .delete:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.85062 12.1861L12.268 3.76917M3.75122 3.83263L12.1686 12.25L3.75122 3.83263Z' stroke='%23000000' stroke-width='0.767736' stroke-linecap='square'/%3E%3C/svg%3E%0A");
}

.files-add {
  display: flex;
  align-items: center;
  align-content: center;
  cursor: pointer;
  color: #111111;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  font-family: "Oceanic Gothic", sans-serif;
  transition: all 0.25s ease;
  color: #111111;
}

.files-add.formField {
  margin: 20px 0;
}

.files-add:before {
  content: "";
  flex: 0 0 16px;
  margin: 0 5px 0 0;
  border-radius: 50%;
  height: 16px;
  background-color: #111111;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.79995 0.199951H4.19995V4.19995L0.199951 4.19995L0.199951 5.79995H4.19995V9.79995H5.79995V5.79995H9.79995V4.19995L5.79995 4.19995V0.199951Z' fill='white'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.25s ease;
}

.files-add:hover:before {
  background-color: #111111;
}

.jq-selectbox {
  cursor: pointer;
  display: block !important;
  margin: 0;
  z-index: 3 !important;
}

.jq-selectbox.opened {
  z-index: 5 !important;
}

.jq-selectbox.opened .jq-selectbox__select {
  border-color: #111111;
}

.jq-selectbox.opened .jq-selectbox__trigger-arrow:before {
  transform: translateY(-50%) rotate(0deg);
}

.jq-selectbox__select {
  height: 4.8rem;
  padding: 0 2.5rem 0 1.7rem;
  border: 1px solid #faf7f3;
  background: #faf7f3;
  line-height: 100%;
  font-size: 1.2rem;
  color: #111111;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

@media (max-width: 1399.98px) {
  .jq-selectbox__select {
    height: 48px;
    padding: 0 25px 0 17px;
    font-size: 12px;
  }
}

.jq-selectbox__select:hover {
  background: #faf7f3;
  color: #111111;
}

.jq-selectbox__select:active {
  color: #111111;
  border-color: #111111;
}

.jq-selectbox.changed {
  z-index: 2;
}

.jq-selectbox.disabled .jq-selectbox__select {
  border-color: #ccc;
  background: #f5f5f5;
  box-shadow: none;
  color: #888;
}

.jq-selectbox__select-text {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jq-selectbox__select-text:first-letter {
  text-transform: capitalize;
}

.jq-selectbox .placeholder {
  color: #888;
}

.jq-selectbox__trigger {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
}

.jq-selectbox__trigger-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.2rem;
  width: 0;
  height: 0;
  left: auto;
  overflow: hidden;
  width: 0.8rem;
  height: 0.8rem;
  background: none;
  transition: all 0.3s ease;
}

@media (max-width: 1399.98px) {
  .jq-selectbox__trigger-arrow {
    width: 8px;
    height: 8px;
    right: 12px;
  }
}

.jq-selectbox__trigger-arrow:before,
.jq-selectbox__trigger-arrow:after {
  width: 0.8rem;
  height: 0.1rem;
  display: block;
  position: absolute;
  content: "";
  background: #111111;
  left: 0;
  top: 50%;
  transition: all 0.3s ease;
  transform: translateY(-50%);
}

@media (max-width: 1399.98px) {

  .jq-selectbox__trigger-arrow:before,
  .jq-selectbox__trigger-arrow:after {
    width: 8px;
    height: 1px;
  }
}

.jq-selectbox__trigger-arrow:before {
  transform: translateY(-50%) rotate(90deg);
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow {
  opacity: 1;
}

.jq-selectbox.disabled .jq-selectbox__trigger-arrow {
  opacity: 0.5;
}

.jq-selectbox__dropdown {
  top: 5rem !important;
  width: 100% !important;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: #fff;
  font-size: 1.2rem;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1399.98px) {
  .jq-selectbox__dropdown {
    top: 50px !important;
    font-size: 12px;
  }
}

.jq-selectbox__dropdown ul {
  margin: 0 !important;
}

.jq-selectbox__search {
  margin: 5px;
  display: none;
}

.jq-selectbox__search input {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 5px 27px 6px 8px;
  outline: none;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==) no-repeat 100% 50%;
  box-shadow: inset 1px 1px #f1f1f1;
  color: #333;
  -webkit-appearance: textfield;
}

.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration {
  -webkit-appearance: none;
}

.jq-selectbox__not-found {
  margin: 5px;
  padding: 5px 8px 6px;
  background: #f0f0f0;
  font-size: 13px;
}

.jq-selectbox ul {
  margin: 0 !important;
  padding: 0 !important;
  background: #fff;
}

.jq-selectbox ul:before {
  display: none !important;
}

.jq-selectbox li {
  min-height: inherit !important;
  line-height: normal !important;
  padding: 1rem 1.5rem;
  color: #111111;
  margin: 0 !important;
  border-bottom: 1px solid #dcdcdc;
  transition: all 0.25s ease;
  font-size: 1.2rem;
  line-height: 110%;
  text-transform: none;
}

@media (max-width: 1399.98px) {
  .jq-selectbox li {
    font-size: 12px;
    padding: 10px 15px;
  }
}

.jq-selectbox li:first-letter {
  text-transform: capitalize;
}

.jq-selectbox li:before,
.jq-selectbox li:after {
  display: none !important;
}

.jq-selectbox li:last-child {
  border: none;
}

.jq-selectbox li.selected,
.jq-selectbox li.sel,
.jq-selectbox li.title {
  background-color: #f7f9fa;
  color: #808080;
}

.jq-selectbox li.selected,
.jq-selectbox li.sel {
  background-color: #faf7f3;
  color: #111111;
}

.jq-selectbox li:hover {
  background-color: #111111;
  color: #fff;
}

.jq-selectbox li.disabled {
  color: #aaa;
  display: none !important;
}

.jq-selectbox li.disabled:hover {
  background: none;
}

.jq-selectbox li.optgroup {
  font-weight: bold;
}

.jq-selectbox li.optgroup:hover {
  background: none;
  color: #231f20;
  cursor: default;
}

.jq-selectbox li.option {
  padding-left: 25px;
}

.jq-select-multiple {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1px;
  border: 1px solid #ccc;
  border-bottom-color: #b3b3b3;
  border-radius: 4px;
  box-shadow:
    inset 1px 1px #f1f1f1,
    0 1px 2px rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #333;
  font:
    14px/18px Arial,
    sans-serif;
  cursor: default;
}

.jq-select-multiple.focused {
  border: 1px solid #5794bf;
}

.jq-select-multiple.disabled {
  border-color: #ccc;
  background: #f5f5f5;
  box-shadow: none;
  color: #888;
}

.jq-select-multiple ul {
  margin: 0;
  padding: 0;
}

.jq-select-multiple li {
  padding: 3px 9px 4px;
  list-style: none;
}

.jq-select-multiple li:first-child {
  border-radius: 3px 3px 0 0;
}

.jq-select-multiple li:last-child {
  border-radius: 0 0 3px 3px;
}

.jq-select-multiple li.selected {
  background: #08c;
  color: #fff;
}

.jq-select-multiple li.disabled {
  color: #aaa;
}

.jq-select-multiple.disabled li.selected,
.jq-select-multiple li.selected.disabled {
  background: #ccc;
  color: #fff;
}

.jq-select-multiple li.optgroup {
  font-weight: bold;
}

.jq-select-multiple li.option {
  padding-left: 25px;
}

input[type="email"].styler,
input[type="number"].styler,
input[type="password"].styler,
input[type="search"].styler,
input[type="tel"].styler,
input[type="text"].styler,
input[type="url"].styler,
textarea.styler {
  padding: 7px 9px;
  border: 1px solid #ccc;
  border-bottom-color: #b3b3b3;
  border-radius: 4px;
  box-shadow:
    inset 1px 1px #f1f1f1,
    0 1px 2px rgba(0, 0, 0, 0.1);
  color: #333;
  font:
    14px Arial,
    sans-serif;
}

input[type="search"].styler {
  -webkit-appearance: none;
}

textarea.styler {
  overflow: auto;
}

input[type="email"].styler:hover,
input[type="number"].styler:hover,
input[type="password"].styler:hover,
input[type="search"].styler:hover,
input[type="tel"].styler:hover,
input[type="text"].styler:hover,
input[type="url"].styler:hover,
textarea.styler:hover {
  border-color: #b3b3b3;
}

input[type="email"].styler:focus,
input[type="number"].styler:focus,
input[type="password"].styler:focus,
input[type="search"].styler:focus,
input[type="tel"].styler:focus,
input[type="text"].styler:focus,
input[type="url"].styler:focus,
textarea.styler:focus {
  border-color: #ccc;
  border-top-color: #b3b3b3;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  outline: none;
}

button.styler,
input[type="button"].styler,
input[type="submit"].styler,
input[type="reset"].styler {
  overflow: visible;
  padding: 7px 11px;
  outline: none;
  border: 1px solid #ccc;
  border-bottom-color: #b3b3b3;
  border-radius: 4px;
  background: #f1f1f1 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAeCAIAAABi9+OQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABdJREFUeNpi+v//PxM2zMDAQEtxgAADAF2uTe9L4getAAAAAElFTkSuQmCC) repeat-x;
  box-shadow:
    inset 1px -1px #f1f1f1,
    inset -1px 0 #f1f1f1,
    0 1px 2px rgba(0, 0, 0, 0.1);
  color: #333;
  text-shadow: 1px 1px #fff;
  font:
    14px Arial,
    sans-serif;
  cursor: pointer;
}

button.styler::-moz-focus-inner,
input[type="button"].styler::-moz-focus-inner,
input[type="submit"].styler::-moz-focus-inner,
input[type="reset"].styler::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button.styler:after {
  content: "";
}

button.styler:not([disabled]):hover,
input[type="button"].styler:not([disabled]):hover,
input[type="submit"].styler:not([disabled]):hover,
input[type="reset"].styler:hover {
  background-color: #e6e6e6;
  background-position: 0 -10px;
}

button.styler:not([disabled]):active,
input[type="button"].styler:not([disabled]):active,
input[type="submit"].styler:not([disabled]):active,
input[type="reset"].styler:active {
  background: #f5f5f5;
  box-shadow: inset 1px 1px 3px #ddd;
}

button.styler[disabled],
input[type="button"].styler[disabled],
input[type="submit"].styler[disabled] {
  border-color: #ccc;
  background: #f5f5f5;
  box-shadow: none;
  color: #888;
}

/* old styles */
.empty_cart {
  padding-top: 43px;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 1px;
}

/*common*/
.activeWishlistBtn {
  background-color: #111111 !important;
  color: #ffffff !important;
}

body {
  font-family: "Oceanic Gothic", sans-serif;
  color: #111111;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.06rem;
  background-color: #fefdfa;
}

@media (max-width: 1399.98px) {
  body {
    font-size: 12px;
    letter-spacing: 0.6px;
  }
}

body * {
  outline: none;
}

body *:focus {
  outline: none;
}

.deliv,
.pay {
  display: none;
}

.btn-check:focus+.btn,
.btn:focus {
  box-shadow: none;
}

.color_list {
  margin-top: 20px;
}

@media (min-width: 1400px) {
  .color_list {
    margin-top: 2rem;
  }
}

.detail_text .choice_var.color_list li {
  margin-left: 15px;
  margin-bottom: 5px;
}

@media (min-width: 1400px) {
  .detail_text .choice_var.color_list li {
    margin-left: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

.detail_text .choice_var.color_list li a {
  text-decoration: none;
  position: relative;
}

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

@media (min-width: 1400px) {
  .container-fluid .container {
    padding: 0 4rem;
  }
}

.content_padding {
  padding-top: 26px;
  padding-bottom: 26px;
}

@media (min-width: 1400px) {
  .content_padding {
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
  }
}

.gx-5 {
  --bs-gutter-x: 40px;
}

@media (min-width: 1400px) {
  .gx-5 {
    --bs-gutter-x: 4rem;
  }
}

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 308;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}

.setting_site {
  display: flex;
  flex-wrap: nowrap;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.setting_site .setting_block {
  margin-right: 30px;
}

@media (min-width: 1400px) {
  .setting_site .setting_block {
    margin-right: 3rem;
  }
}

.setting_site .setting_block:last-of-type {
  margin-right: 0;
}

.setting_block {
  display: flex;
  flex-wrap: wrap;
}

.setting_block .name {
  margin-right: 8px;
  color: #fefdfa;
}

@media (min-width: 1400px) {
  .setting_block .name {
    margin-right: 0.8rem;
  }
}

.setting_block .select_block {
  position: relative;
  height: 18px;
}

@media (min-width: 1400px) {
  .setting_block .select_block {
    height: 1.8rem;
  }
}

.setting_block .select_block::before {
  left: 1px;
  bottom: -2px;
  right: 0;
  background-color: #fefdfa;
  height: 1px;
  content: "";
  position: absolute;
}

@media (min-width: 1400px) {
  .setting_block .select_block::before {
    left: 0.1rem;
    bottom: -0.2rem;
    right: 0;
    height: 0.1rem;
  }
}

.setting_block .select_block .select_ver {
  color: #fefdfa;
  width: 39px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: center;
  text-indent: 1px;
  height: 18px;
}

@media (min-width: 1400px) {
  .setting_block .select_block .select_ver {
    width: 3.9rem;
    text-indent: 0.1rem;
    height: 1.8rem;
  }
}

.setting_block .select_block .select_ver option {
  color: #111111;
}

.setting_block .select_block.active .select_list {
  display: block;
}

.setting_block .select_block .cur_select {
  position: relative;
  cursor: pointer;
}

.setting_block .select_block .cur_select::before {
  position: absolute;
  left: 0;
  bottom: -2px;
  right: 0;
  height: 1px;
  background-color: #fff;
  content: "";
}

@media (min-width: 1400px) {
  .setting_block .select_block .cur_select::before {
    bottom: -0.2rem;
    height: 0.1rem;
  }
}

.setting_block .select_list {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  left: -8px;
  width: auto;
  top: 100%;
  z-index: 2;
  padding: 8px;
  background-color: #111111;
  display: none;
}

@media (min-width: 1400px) {
  .setting_block .select_list {
    left: -0.8rem;
    padding: 0.8rem;
  }
}

.setting_block .select_list a {
  white-space: nowrap;
}

@-moz-document url-prefix() {
  .setting_block .select_block .select_ver {
    text-indent: -1px;
  }

  @media (min-width: 1400px) {
    .setting_block .select_block .select_ver {
      text-indent: -0.1rem;
    }
  }
}

.promo_line .text_promo {
  text-align: center;
  font-size: 10px;
}

@media (min-width: 1400px) {
  .promo_line .text_promo {
    font-size: 1rem;
  }
}

/*end promo_line*/
/*header_sec*/
/*end header_sec*/
/*start cart preview block*/
.body-active .overlay,
.menu-active .overlay {
  display: block;
}

.body-active,
.menu-active {
  overflow: hidden;
}

.cart_preview {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  position: fixed;
  top: 0;
  right: -100vw;
  width: 33.3333333333%;
  min-width: 460px;
  background-color: #fefdfa;
  z-index: 500;
  transition: all 0.5s ease;
  margin: 0;
}

@media (max-width: 991.98px) {
  .cart_preview {
    width: 100%;
    min-width: 100%;
  }
}

.cart_preview.active {
  right: 0;
}

.cart_preview .name_col {
  padding: 3rem 4rem 0;
  margin-bottom: 7.5rem;
  text-transform: capitalize;
}

@media (max-width: 1399.98px) {
  .cart_preview .name_col {
    padding: 30px 40px 0;
    margin-bottom: 75px;
  }
}

@media (max-width: 991.98px) {
  .cart_preview .name_col {
    padding: 20px 20px 0;
    margin-bottom: 50px;
  }
}

.cart_preview .body_block {
  overflow: hidden;
  height: calc(100vh - 33.4rem);
  padding: 0 4rem;
  position: relative;
}

@media (max-width: 1399.98px) {
  .cart_preview .body_block {
    padding: 0 40px;
  }
}

@media (max-width: 991.98px) {
  .cart_preview .body_block {
    padding: 0 20px;
    height: calc(100vh - 290px);
  }
}

.cart_preview .body_block .viewport {
  position: relative;
  height: 100%;
}

.cart_preview .body_block .viewport .overview {
  position: absolute;
  left: 0;
  right: 0;
}

.cart_preview .body_block .scrollbar {
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  width: 0.5rem;
  transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
  .cart_preview .body_block .scrollbar {
    right: 0;
  }
}

.cart_preview .body_block .scrollbar.disable {
  opacity: 0;
}

.cart_preview .body_block .scrollbar .track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.5rem;
}

.cart_preview .body_block .scrollbar .track .thumb {
  width: 0.2rem;
  background: #111111;
  position: absolute;
  right: 0;
  opacity: 0.5;
}

.cart_preview .down_block {
  padding: 3rem 4rem 3.5rem;
  margin-top: auto;
}

@media (max-width: 1399.98px) {
  .cart_preview .down_block {
    padding: 30px 40px 35px;
  }
}

@media (max-width: 991.98px) {
  .cart_preview .down_block {
    padding: 20px 20px 25px;
  }
}

.cart_preview .cart_block {
  padding-bottom: 0;
}

.cart_preview .cart_block .result_message {
  line-height: 2;
  font-weight: 300;
}

.cart_preview .cart_block .result_message a {
  font-weight: 400;
  position: relative;
  text-decoration: none;
}

.cart_preview .cart_block .result_message a:hover::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background-color: #111111;
}

@media (min-width: 1400px) {
  .cart_preview .cart_block .result_message a:hover::before {
    bottom: -0.4rem;
    height: 0.1rem;
  }
}

.cart_preview .cart_block .img:hover {
  opacity: 0.8;
  transition:
    opacity 0.5s,
    visibility 0s linear 0.5s;
}

.cart_preview .close_btn {
  margin-left: auto;
  text-transform: none;
  font-weight: 300;
  cursor: pointer;
  position: relative;
  display: inline-flex;
}

.cart_preview .close_btn:before {
  display: block;
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  height: 1px;
  width: 0;
  background-color: #111;
  transition: all 0.3s ease;
}

@media (min-width: 1400px) {
  .cart_preview .close_btn:before {
    bottom: -0.1rem;
    height: 0.1rem;
  }
}

@media (max-width: 991.98px) {
  .cart_preview .close_btn:hover:before {
    width: 100%;
  }
}

.cart_preview.cart_block {
  padding: 0;
}

.cart_preview.cart_block .td.td_name:first-child {
  width: 14rem;
  padding-top: 0.2rem;
  font-family: "Oceanic Text", sans-serif;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 1399.98px) {
  .cart_preview.cart_block .td.td_name:first-child {
    width: 140px;
    padding-top: 2px;
  }
}

.cart_preview.cart_block .td:nth-of-type(2) {
  padding-top: 2px;
  flex: 1 1;
}

@media (min-width: 1400px) {
  .cart_preview.cart_block .td:nth-of-type(2) {
    padding-top: 0.2rem;
  }
}

.cart_preview.cart_block .td:nth-of-type(3) {
  padding-right: 0;
  padding-top: 0.2rem;
}

@media (max-width: 1399.98px) {
  .cart_preview.cart_block .td:nth-of-type(3) {
    padding-top: 2px;
  }
}

.cart_preview.cart_block .img {
  padding-top: 149%;
}

.cart_preview.cart_block .cart_item {
  margin: 0 -2rem 3rem;
  display: flex;
}

@media (max-width: 1399.98px) {
  .cart_preview.cart_block .cart_item {
    margin: 0 -20px 30px;
  }
}

.cart_preview.cart_block .cart_item__image {
  flex: 0 0 14rem;
  padding: 0 2rem;
}

@media (max-width: 1399.98px) {
  .cart_preview.cart_block .cart_item__image {
    flex: 0 0 140px;
    padding: 0 20px;
  }
}

.cart_preview.cart_block .cart_item__text {
  flex: 1 1;
  padding: 0 2rem;
  display: flex;
  position: relative;
}

@media (max-width: 1399.98px) {
  .cart_preview.cart_block .cart_item__text {
    padding: 0 20px;
  }
}

@media (max-width: 1199.98px) {
  .cart_preview.cart_block .cart_item__text {
    flex-direction: column;
  }
}

.cart_preview.cart_block .cart_item__text a {
  text-decoration: none;
}

.cart_preview.cart_block .cart_item__text__item {
  flex: 1 1;
  padding-right: 4rem;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1199.98px) {
  .cart_preview.cart_block .cart_item__text__item {
    padding-right: 0;
  }
}

.cart_preview.cart_block .cart_item__text__item .remove {
  display: inline-flex;
  margin-top: auto;
  font-weight: 300;
  position: relative;
}

@media (max-width: 1199.98px) {
  .cart_preview.cart_block .cart_item__text__item .remove {
    position: absolute;
    right: 20px;
    bottom: 0;
    z-index: 2;
  }
}

.cart_preview.cart_block .cart_item__text__item .remove:before {
  display: block;
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  height: 1px;
  width: 0;
  background-color: #111;
  transition: all 0.3s ease;
}

@media (min-width: 1400px) {
  .cart_preview.cart_block .cart_item__text__item .remove:before {
    bottom: -0.1rem;
    height: 0.1rem;
  }
}

@media (max-width: 991.98px) {
  .cart_preview.cart_block .cart_item__text__item .remove:hover:before {
    width: 100%;
  }
}

.cart_preview.cart_block .cart_item__text__item .title {
  text-transform: uppercase;
}

.cart_preview.cart_block .cart_item__text__item .title a {
  display: inline-block;
  position: relative;
}

.cart_preview.cart_block .cart_item__text__item .title a:hover {
  text-decoration: underline;
}

.cart_preview.cart_block .cart_item__text__item .type {
  font-weight: 300;
  text-transform: uppercase;
  margin: 0;
}

.cart_preview.cart_block .cart_item__text__item .options {
  margin-top: 2rem;
}

@media (max-width: 1399.98px) {
  .cart_preview.cart_block .cart_item__text__item .options {
    margin-top: 20px;
    margin-bottom: 15px;
  }
}

.cart_preview.cart_block .cart_item__text__item .options__item {
  text-transform: capitalize;
}

.cart_preview.cart_block .cart_item__text__price {
  flex: 0 0 calc(18.6% - 0.1rem);
  text-align: right;
  font-weight: 300;
}

@media (max-width: 1199.98px) {
  .cart_preview.cart_block .cart_item__text__price {
    flex: 0 0 auto;
    text-align: left;
    margin-top: auto;
  }
}

.cart_preview.cart_block .cart_item__text__price .price_item {
  white-space: nowrap;
}

.cart_preview.cart_block .td {
  padding-top: 2px;
}

@media (min-width: 1400px) {
  .cart_preview.cart_block .td {
    padding-top: 0.2rem;
  }
}

.cart_preview.cart_block .td:first-of-type {
  width: 80px;
  margin-right: 40px;
}

@media (min-width: 1400px) {
  .cart_preview.cart_block .td:first-of-type {
    width: 8rem;
    margin-right: 4rem;
  }
}

.cart_preview.cart_block .td:nth-of-type(3) {
  width: calc(18.6% - 1px);
}

@media (min-width: 1400px) {
  .cart_preview.cart_block .td:nth-of-type(3) {
    width: calc(18.6% - 0.1rem);
  }
}

.cart_preview .cart_block .td:nth-of-type(2) span {
  display: inline-block;
  margin-top: 54px;
}

@media (min-width: 1400px) {
  .cart_preview .cart_block .td:nth-of-type(2) span {
    margin-top: 5.4rem;
  }
}

.cart_preview .down_block {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.cart_preview .down_block .btns_block {
  padding-bottom: 0;
  margin-top: 3rem;
}

@media (max-width: 1399.98px) {
  .cart_preview .down_block .btns_block {
    margin-top: 30px;
  }
}

.cart_preview .down_block .btns_block .btn {
  width: 100%;
  margin-top: 1.2rem;
}

@media (max-width: 1399.98px) {
  .cart_preview .down_block .btns_block .btn {
    margin-top: 1.2rem;
  }
}

.cart_preview .down_block .btns_block .btn:first-child {
  margin: 0;
}

.cart_preview .down_block .total_block {
  display: flex;
  justify-content: space-between;
}

.cart_preview .down_block .total_block .total {
  text-transform: uppercase;
}

.cart_preview .down_block .total_block .total_sum {
  font-weight: 300;
}

/*end cart preview block*/
/*title_sec*/
.title_sec {
  margin-bottom: 30px;
}

@media (min-width: 1400px) {
  .title_sec {
    margin-bottom: 3rem;
  }
}

.title_sec .title_pos {
  display: flex;
  width: 100%;
}

.title_sec .title {
  font-size: 12px;
  text-transform: uppercase;
  color: #111111;
  line-height: 20px;
  margin-right: 40px;
  font-family: "Oceanic Text", sans-serif;
  letter-spacing: 0.08em;
}

@media (min-width: 1400px) {
  .title_sec .title {
    font-size: 1.2rem;
    line-height: 2rem;
    margin-right: 4rem;
  }
}

.title_sec .arrow_link {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/arrow_r.svg");
  margin: auto;
  margin-right: 0;
  flex-shrink: 0;
}

@media (min-width: 1400px) {
  .title_sec .arrow_link {
    width: 2rem;
    height: 2rem;
  }
}

/*end title_sec*/
/*catalog_block*/
.section_menu .menu_list {
  justify-content: center;
  text-transform: none;
  margin-bottom: 6rem;
}

@media (max-width: 1399.98px) {
  .section_menu .menu_list {
    margin-bottom: 60px;
  }
}

.section_menu .menu_list li {
  margin: 0 1rem 0.6rem;
  padding: 0;
}

.section_menu .menu_list li a {
  font-weight: 300;
  display: inline-block;
  position: relative;
}

.section_menu .menu_list li a:before {
  display: block;
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0rem;
  height: 0.1rem;
  max-height: 1px;
  background-color: #111111;
  width: 0;
  transition: all 0.3s ease;
}

.section_menu .menu_list li a.active:before,
.section_menu .menu_list li a:hover:before {
  width: 100%;
}

.section_menu .menu_list li.active a:before {
  width: 100%;
}

@media (max-width: 767.98px) {
  .section_menu .section_select {
    margin-bottom: 30px;
  }
}

.section_menu .section_select .jq-selectbox__select {
  text-transform: uppercase;
  justify-content: center;
  padding: 0 2rem;
}

.section_menu .section_select .jq-selectbox__select .jq-selectbox__select-text {
  text-align: center;
}

.header_sec.scroll~.container-fluid:has(.section_menu) {
  position: fixed;
  z-index: 300;
  top: 61px;
  background: #fefdfa;
}

@media (min-width: 1400px) {
  .header_sec.scroll~.container-fluid:has(.section_menu) {
    top: 6.1rem;
  }
}

.content_padding .catalog_block {
  padding-top: 20px;
}

@media (min-width: 1400px) {
  .content_padding .catalog_block {
    padding-top: 2rem;
  }
}

/*category_sec*/
.category_sec {
  padding-top: 20px;
}

@media (min-width: 1400px) {
  .category_sec {
    padding-top: 2rem;
  }
}

.category_list--main {
  margin: 1.5rem 0 5rem;
}

@media (max-width: 1399.98px) {
  .category_list--main {
    margin: 15px 0 50px;
  }
}

.category_list>.row {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 1400px) {
  .category_list>.row {
    margin-left: 0;
    margin-right: 0;
  }
}

.category_list .category_item {
  padding: 0;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 40px;
  overflow: hidden;
}

@media (min-width: 1400px) {
  .category_list .category_item {
    margin-bottom: 4rem;
  }
}

.category_list .category_item:last-of-type,
.category_list .category_item:nth-of-type(2n-1):nth-last-of-type(2) {
  margin-bottom: 0;
}

.category_list .category_item a {
  color: inherit;
}

.category_list .category_item:hover .item_pos .image {
  transform: scale(1.1);
}

.category_list .category_item .item_pos {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  position: relative;
  height: 90vh;
  overflow: hidden;
  transition: all 0.6s ease;
}

@media (max-width: 767.98px) {
  .category_list .category_item .item_pos {
    max-height: 440px;
  }
}

.category_list .category_item .item_pos .image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all 0.6s ease;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 0;
}

.category_list .category_item .item_pos .video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
}

.category_list .category_item .text_block {
  max-width: 100%;
  bottom: 2.5rem;
  left: 4rem;
  position: absolute;
  z-index: 1;
}

@media (max-width: 1399.98px) {
  .category_list .category_item .text_block {
    left: 40px;
    bottom: 25px;
  }
}

@media (max-width: 991.98px) {
  .category_list .category_item .text_block {
    left: 20px;
    bottom: 20px;
  }
}

.category_list .category_item .text_block--dark {
  color: #111111;
}

.category_list .category_item .text_block--dark .link {
  color: #111111;
}

.category_list .category_item .text_block--dark .link:before {
  background-color: #111111;
}

.category_list .category_item .name {
  margin-bottom: 0;
  font-family: "Oceanic Text", sans-serif;
}

@media (max-width: 1399.98px) {
  .category_list .category_item .name {
    margin-bottom: 0;
  }
}

.category_list .category_item .link {
  display: inline-block;
  text-decoration: none;
  position: relative;
  font-weight: 300;
  text-transform: none;
  margin-top: 1.5rem;
}

@media (max-width: 1399.98px) {
  .category_list .category_item .link {
    margin-bottom: 15px;
  }
}

.category_list .category_item .link:before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: 1px;
  bottom: -3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

@media (min-width: 1400px) {
  .category_list .category_item .link:before {
    height: 0.1rem;
    bottom: -0.3rem;
  }
}

.category_list .category_item .link:hover:before {
  width: 0;
}

/*end category_sec*/
/*instagram_block*/
.instagram_block {
  padding-top: 20px;
  padding-bottom: 29px;
}

@media (min-width: 1400px) {
  .instagram_block {
    padding-top: 2rem;
    padding-bottom: 2.9rem;
  }
}

.instagram_list>.row {
  margin-left: -20px;
  margin-right: -20px;
}

@media (min-width: 1400px) {
  .instagram_list>.row {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}

.instagram_list .instagram_item {
  padding: 0 20px;
  width: 20%;
  margin-bottom: 40px;
}

@media (min-width: 1400px) {
  .instagram_list .instagram_item {
    margin-bottom: 4rem;
    padding: 0 2rem;
  }
}

.instagram_list .instagram_item .pos_item {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  padding-top: 100%;
}

/*end instagram_block*/
/*footer_sec*/
/*end footer_sec*/
/*filter*/
.filter_block {
  margin-bottom: 7px;
  position: relative;
}

@media (min-width: 1400px) {
  .filter_block {
    margin-bottom: 0.7rem;
  }
}

.filter_block .filter_line {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 26px;
}

@media (min-width: 1400px) {
  .filter_block .filter_line {
    padding-top: 2.6rem;
  }
}

.filter_block .filter_show {
  display: none;
  width: calc(100% + 62px);
  padding-top: 99px;
  padding-right: 40px;
  padding-bottom: 72px;
  padding-left: 40px;
  background-color: black;
  margin-top: -23px;
  margin-left: -31px;
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
}

@media (min-width: 1400px) {
  .filter_block .filter_show {
    width: calc(100% + 6.2rem);
    padding-top: 9.9rem;
    padding-right: 4rem;
    padding-bottom: 7.2rem;
    padding-left: 4rem;
    background-color: black;
    margin-top: -2.3rem;
    margin-left: -3.1rem;
  }
}

.search_setting .filter_block .filter_show {
  width: calc(100% + 40px);
  margin-left: -20px;
}

@media (min-width: 1400px) {
  .search_setting .filter_block .filter_show {
    width: calc(100% + 4rem);
    margin-left: -2rem;
  }
}

.search_setting .shop_block {
  padding: 0 20px;
}

@media (min-width: 1400px) {
  .search_setting .shop_block {
    padding: 0 2rem;
  }
}

.search_setting .search_message {
  padding: 0 20px;
  padding-top: 22px;
  font-weight: 300;
  color: #111111;
  text-transform: uppercase;
  line-height: 2;
}

@media (min-width: 1400px) {
  .search_setting .search_message {
    padding: 0 2rem;
    padding-top: 2.2rem;
  }
}

.search_setting .search_message a {
  text-decoration: none;
  font-weight: 400;
  position: relative;
}

.search_setting .search_message a:hover::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background-color: #111111;
}

@media (min-width: 1400px) {
  .search_setting .search_message a:hover::before {
    bottom: -0.4rem;
    height: 0.1rem;
  }
}

.sort_block {
  margin: auto;
  margin-right: 0;
  display: flex;
}

.filter_block .filter_line .filter_btn {
  display: flex;
  margin: auto;
  margin-left: 0;
  position: relative;
  color: #111111;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1.12px;
  cursor: pointer;
  text-transform: uppercase;
}

@media (min-width: 1400px) {
  .filter_block .filter_line .filter_btn {
    font-size: 1.2rem;
    letter-spacing: 0.112rem;
  }
}

.filter_block .filter_line .filter_btn .name_btn {
  position: relative;
  padding-bottom: 7px;
}

@media (min-width: 1400px) {
  .filter_block .filter_line .filter_btn .name_btn {
    padding-bottom: 0.7rem;
  }
}

.filter_block .filter_line .filter_btn .name_btn::before {
  content: "";
  right: -20px;
  top: calc(50% - 8px);
  width: 9px;
  height: 9px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/plus.svg");
}

@media (min-width: 1400px) {
  .filter_block .filter_line .filter_btn .name_btn::before {
    right: -2rem;
    top: calc(50% - 0.8rem);
    width: 0.9rem;
    height: 0.9rem;
  }
}

.filter_block .filter_line .filter_btn.show {
  color: #ffffff;
  z-index: 6;
}

.filter_block .filter_line .filter_btn.show .name_btn::before {
  background-image: url("../img/minus.svg");
}

.filter_block .filter_line .filter_btn.show+.sort_block {
  display: none;
}

.sort_block .text {
  color: #111111;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1.12px;
  margin: auto 0;
  margin-right: 0;
  text-transform: uppercase;
  padding-bottom: 6px;
}

@media (min-width: 1400px) {
  .sort_block .text {
    font-size: 1.2rem;
    letter-spacing: 0.112rem;
    padding-bottom: 0.6rem;
  }
}

.sort_block .select {
  position: relative;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1px;
  font-weight: 300;
  text-transform: uppercase;
}

@media (min-width: 1400px) {
  .sort_block .select {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
  }
}

.sort_block select option {
  font-size: 12px;
  color: #111111;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: unset;
  font-weight: 300;
  letter-spacing: 1px;
  padding-bottom: 5px;
  border: none;
  background-color: #fefdfa;
}

@media (min-width: 1400px) {
  .sort_block select option {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    padding-bottom: 0.5rem;
  }
}

.sort_block .select .choice {
  position: relative;
  cursor: pointer;
  width: fit-content;
  padding: 1px 0 0 0;
  margin-left: 8px;
  margin-right: 0;
  padding-right: 15px;
  padding-bottom: 5px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid black;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: right 3px;
  background-size: 7px auto;
  background-image: url(../img/arrow_d.svg);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  font-size: 12px;
  color: #111111;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: unset;
  font-weight: 300;
  letter-spacing: 1px;
}

@media (min-width: 1400px) {
  .sort_block .select .choice {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    padding: 1px 0 0 0;
    margin-left: 0.8rem;
    padding-right: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 0.1rem solid black;
    background-position: right 0.3rem;
    background-size: 0.7rem auto;
  }
}

/*.sort_block .choice:focus {
background-size: 7px auto;
background-repeat: no-repeat;
background-position: right 3px;
background-image: url('../img/arrow_up.svg');
 }*/
.filter_block .filter_show .title {
  color: #ffffff;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.2;
  width: 120px;
  text-transform: uppercase;
  padding-top: 11px;
}

@media (min-width: 1400px) {
  .filter_block .filter_show .title {
    letter-spacing: 0.1rem;
    font-size: 1.2rem;
    width: 12rem;
    padding-top: 1.1rem;
  }
}

.filter_block .filter_show .col_b {
  display: flex;
  width: 24.7%;
}

.filter_block .filter_show .col_b.title_hide {
  width: calc(24.7% - 120px);
}

@media (min-width: 1400px) {
  .filter_block .filter_show .col_b.title_hide {
    width: calc(24.7% - 12rem);
  }
}

.filter_block .filter_show .col_b.title_hide .title {
  display: none;
}

.filter_block .filter_show input {
  display: none;
}

.filter_block .filter_show .check_list {
  display: flex;
  flex-direction: column;
}

.filter_block .filter_show label {
  display: inline-block;
}

.filter_block .filter_show span {
  position: relative;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 1px;
  font-size: 12px;
  line-height: 36px;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

@media (min-width: 1400px) {
  .filter_block .filter_show span {
    letter-spacing: 0.1rem;
    font-size: 1.2rem;
    line-height: 3.6rem;
  }
}

.filter_block .filter_show input:checked+span::before {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  bottom: -5px;
  border-bottom: 1px solid #ffffff;
}

@media (min-width: 1400px) {
  .filter_block .filter_show input:checked+span::before {
    bottom: -0.5rem;
    border-bottom: 0.1rem solid #ffffff;
  }
}

.filter_block .filter_btn.show .col_link {
  display: flex;
  flex-wrap: wrap;
}

.filter_block .filter_btn.show .col_link .link {
  cursor: pointer;
  margin-right: 30px;
  display: block;
}

@media (min-width: 1400px) {
  .filter_block .filter_btn.show .col_link .link {
    margin-right: 3rem;
  }
}

.filter_block .filter_btn.show .col_link .link:last-child {
  margin-right: 0;
}

.filter_block .link {
  margin-left: auto;
  margin-bottom: auto;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  color: #ffffff;
  line-height: 1.2;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.8px;
  margin-right: 25px;
}

@media (min-width: 1400px) {
  .filter_block .link {
    letter-spacing: 0.08rem;
    margin-right: 2.5rem;
  }
}

.filter_block .col_link {
  position: absolute;
  top: 47px;
  right: 40px;
  width: auto;
  padding: 0;
}

@media (min-width: 1400px) {
  .filter_block .col_link {
    top: 4.7rem;
    right: 4rem;
  }
}

.filter_block .link:last-child {
  margin-right: 0;
}

.filter_block .link:hover {
  color: #ffffff;
}

.filter_block .link:hover::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background-color: #fff;
}

@media (min-width: 1400px) {
  .filter_block .link:hover::before {
    bottom: -0.3rem;
    height: 0.1rem;
  }
}

.shop_page {
  margin-top: 68px;
  margin-bottom: 35px;
}

@media (min-width: 1400px) {
  .shop_page {
    margin-top: 6.8rem;
    margin-bottom: 3.5rem;
  }
}

/*end filter*/
/*shop_page*/
.shop_block .catalog_item {
  padding-bottom: 54px;
}

@media (min-width: 1400px) {
  .shop_block .catalog_item {
    padding-bottom: 5.4rem;
  }
}

.shop_block .catalog_item .text_block {
  padding-bottom: 0;
}

/*end shop_page*/
/*start garment page*/
.garment {
  display: flex;
  margin: 0 -0.5rem;
  padding-bottom: 9rem;
  width: calc(100% + 1rem);
}

@media (max-width: 1399.98px) {
  .garment {
    width: calc(100% + 10px);
    padding-bottom: 70px;
    margin: 0 -5px;
  }
}

@media (max-width: 1199.98px) {
  .garment {
    padding-bottom: 50px;
  }
}

@media (max-width: 991.98px) {
  .garment {
    padding-bottom: 30px;
  }
}

.gallery_view {
  display: none;
}

.gar_foto {
  width: 66.6666666667%;
}

.gar_foto .detail_slider {
  margin: 0 -0.5rem;
}

@media (max-width: 1399.98px) {
  .gar_foto .detail_slider {
    margin: 0 -5px;
  }
}

@media (max-width: 767.98px) {
  .gar_foto .detail_slider {
    overflow: visible;
    width: calc(100% - 20px);
    margin: 0;
  }
}

.gar_foto .gar_items {
  width: 50%;
  padding: 0 0.5rem;
  box-sizing: border-box;
  margin: 0 0 2.5rem;
}

@media (max-width: 1399.98px) {
  .gar_foto .gar_items {
    padding: 0 5px;
    margin: 0 0px 25px;
  }
}

@media (max-width: 767.98px) {
  .gar_foto .gar_items {
    margin-bottom: 17px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding-right: 10px;
    box-sizing: border-box;
  }
}

.garment .swiper-wrapper {
  height: auto;
  flex-wrap: wrap;
}

.garment .swiper-pagination-progressbar {
  top: auto;
  bottom: 0;
  background-color: #fff;
  height: 1px;
  right: -20px;
}

@media (min-width: 768px) {
  .garment .swiper-pagination-progressbar {
    display: none;
  }
}

.garment .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #111111;
}

.garment .swiper-button-next,
.garment .swiper-button-prev {
  display: none;
}

.garment .img {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 147.6%;
  overflow: hidden;
  position: relative;
}

.garment .img .video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
}

@media (max-width: 767.98px) {
  .gar_foto {
    margin-bottom: 30px;
  }
}

.gar_info {
  width: 33.3333333333%;
  padding: 0 0.5rem;
}

@media (min-width: 1400px) {
  .gar_info {
    padding: 0 5px;
  }
}

.shop_detail .detail_text {
  width: 33.3333333333%;
  padding: 0 0.5rem;
}

@media (min-width: 1400px) {
  .shop_detail .detail_text {
    padding: 0 5px;
  }
}

.detail_text .title_block {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #111111;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.12px;
  margin-bottom: 29px;
  margin-top: 5px;
}

@media (min-width: 1400px) {
  .detail_text .title_block {
    font-size: 1.2rem;
    letter-spacing: 0.112rem;
    margin-bottom: 2.9rem;
    margin-top: 0.5rem;
  }
}

.detail_text .title_block .price {
  margin-bottom: auto;
  color: #111111;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.96px;
}

@media (min-width: 1400px) {
  .detail_text .title_block .price {
    font-size: 1.2rem;
    letter-spacing: 0.096rem;
  }
}

.detail_text .title_block .price_box {
  margin-top: 2rem;
  display: flex;
  align-items: center;
}

.detail_text .title_block .price_old {
  text-decoration: line-through;
  color: #bababa;
  margin-right: 10px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

@media (min-width: 1400px) {
  .detail_text .title_block .price_old {
    margin-right: 1rem;
  }
}

.detail_text .title_block .type {
  font-weight: 300;
  margin-top: 3px;
}

@media (min-width: 1400px) {
  .detail_text .title_block .type {
    margin-top: 0.3rem;
  }
}

.detail_text .text {
  margin-bottom: 0;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  line-height: 2;
  font-weight: 300;
  padding-bottom: 1.5rem;
}

@media (max-width: 1399.98px) {
  .detail_text .text {
    font-size: 12px;
    letter-spacing: 1px;
    padding-bottom: 45px;
  }
}

@media (max-width: 991.98px) {
  .detail_text .text__mob {
    display: none;
  }
}

.detail_text .text .structure {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  color: #111111;
}

@media (max-width: 1399.98px) {
  .detail_text .text .structure {
    margin-top: 15px;
    font-size: 12px;
    letter-spacing: 1px;
  }
}

.detail_text .tabs_text {
  margin-top: 3.5rem;
  border-top: 0.1rem solid #e7e6e3;
}

@media (max-width: 1399.98px) {
  .detail_text .tabs_text {
    margin-top: 35px;
    border-top: 1px solid #e7e6e3;
  }
}

.detail_text .tabs_text .filter__item {
  padding: 1.2rem 1.7rem;
}

@media (max-width: 991.98px) {
  .detail_text .tabs_text .filter__item {
    padding: 12px 0;
  }
}

@media (min-width: 992px) {
  .detail_text .tabs_text .filter__item__mob {
    display: none;
  }
}

.detail_text .tabs_text .filter__item .title {
  text-transform: none;
  font-weight: 300;
}

.detail_text .tabs_text .filter__item .desc {
  font-weight: 300;
}

.detail_text .btns_block {
  margin-top: 2.5rem;
}

@media (max-width: 1399.98px) {
  .detail_text .btns_block {
    margin-top: 25px;
  }
}

.detail_text .btns_block .btn {
  width: 100%;
  margin-bottom: 1.2rem;
}

@media (max-width: 1399.98px) {
  .detail_text .btns_block .btn {
    margin-bottom: 12px;
  }
}

.detail_text .btns_block .btn:last-child {
  margin: 0;
}

.detail_text .btns_block a {
  text-decoration: none;
}

.detail_text .choice_block {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
}

@media (max-width: 1399.98px) {
  .detail_text .choice_block {
    margin-top: 15px;
    grid-gap: 10px;
  }
}

.detail_text .choice_block .jq-selectbox {
  width: 100%;
}

.detail_text .table_block {
  text-align: right;
  font-weight: 300;
}

.detail_text .table_block a {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.detail_text .table_block a:before {
  display: block;
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  height: 1px;
  width: 0;
  background-color: #111;
  transition: all 0.3s ease;
}

@media (min-width: 1400px) {
  .detail_text .table_block a:before {
    bottom: -0.2rem;
    height: 0.1rem;
  }
}

.detail_text .table_block a:hover:before {
  width: 100%;
}

.detail_text .btn .incart_name {
  display: none;
}

.detail_text .btn.active .incart_name {
  display: inline;
}

.detail_text .btn.active .btn_name {
  display: none;
}

.btn:hover {
  background-color: #fefdfa;
  color: #111111;
}

.end_text .social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  font-weight: 300;
}

@media (max-width: 1399.98px) {
  .end_text .social {
    margin-top: 15px;
  }
}

.end_text .icon_box {
  display: flex;
  align-items: center;
}

.end_text .icon_box a:hover {
  text-decoration: none;
}

.end_text .icon_soc {
  position: relative;
  font-weight: 300;
  margin-left: 2.4rem;
}

@media (max-width: 1399.98px) {
  .end_text .icon_soc {
    margin-left: 24px;
  }
}

@media (max-width: 991.98px) {
  .end_text .icon_soc {
    margin-left: 20px;
  }
}

.end_text .icon_soc:first-child {
  margin-left: 0;
}

.end_text .icon_soc:before {
  display: block;
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  height: 1px;
  width: 0;
  background-color: #111;
  transition: all 0.3s ease;
}

@media (min-width: 1400px) {
  .end_text .icon_soc:before {
    bottom: -0.2rem;
    height: 0.1rem;
  }
}

.end_text .icon_soc:focus {
  color: #111111;
  text-decoration: none;
}

.end_text .icon_soc:hover:before {
  width: 100%;
}

.end_text .share {
  color: #111111;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1.12px;
  position: relative;
  padding-left: 19px;
  margin-top: 47px;
  display: inline-block;
}

@media (min-width: 1400px) {
  .end_text .share {
    font-size: 1.4rem;
    letter-spacing: 0.112rem;
    padding-left: 1.9rem;
    margin-top: 4.7rem;
  }
}

.share::before {
  position: absolute;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  top: calc(50% - 3px);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../img/plus.svg");
}

@media (min-width: 1400px) {
  .share::before {
    width: 0.9rem;
    height: 0.9rem;
    top: calc(50% - 0.3rem);
  }
}

.back_btn {
  display: inline-block;
  color: #111111;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 1.12px;
  font-weight: 300;
  position: relative;
  padding-left: 20px;
}

@media (min-width: 1400px) {
  .back_btn {
    font-size: 1.4rem;
    letter-spacing: 0.112rem;
    padding-left: 2rem;
  }
}

.shop_detail .back_btn {
  top: -73px;
  left: 0;
  position: absolute;
}

@media (min-width: 1400px) {
  .shop_detail .back_btn {
    top: -7.3rem;
  }
}

.back_btn::before {
  width: 10px;
  height: 7px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../img/arrow_l.svg");
  position: absolute;
  content: "";
  left: 0;
  top: calc(50% - 4px);
}

@media (min-width: 1400px) {
  .back_btn::before {
    width: 1rem;
    height: 0.7rem;
    top: calc(50% - 0.4rem);
  }
}

.sec_title {
  color: #111111;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1.12px;
  padding: 0;
  padding-bottom: 60px;
}

@media (min-width: 1400px) {
  .sec_title {
    font-size: 1.4rem;
    letter-spacing: 0.112rem;
    padding-bottom: 6rem;
  }
}

.tabs_block .tabs_item {
  border-bottom: 1px solid #111111;
  text-transform: uppercase;
}

@media (min-width: 1400px) {
  .tabs_block .tabs_item {
    border-width: 0.1rem;
  }
}

.tabs_block .tabs_item .title {
  display: block;
  cursor: pointer;
  color: #111111;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1.12px;
  padding-top: 13px;
  padding-bottom: 14px;
}

@media (min-width: 1400px) {
  .tabs_block .tabs_item .title {
    font-size: 1.4rem;
    letter-spacing: 0.12rem;
    padding-top: 1.3rem;
    padding-bottom: 1.4rem;
  }
}

.tabs_block .tabs_item .title span {
  font-size: 12px;
  display: inline-block;
  position: relative;
}

@media (min-width: 1400px) {
  .tabs_block .tabs_item .title span {
    font-size: 1.2rem;
  }
}

.tabs_block .tabs_item .title span::before {
  content: "";
  position: absolute;
  right: -15px;
  width: 9px;
  height: 9px;
  top: calc(50% - 5px);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/plus.svg);
}

@media (min-width: 1400px) {
  .tabs_block .tabs_item .title span::before {
    right: -1.5rem;
    width: 0.9rem;
    height: 0.9rem;
    top: calc(50% - 0.5rem);
  }
}

.tabs_block .tabs_item .content_tab {
  display: none;
  padding-top: 16px;
  padding-bottom: 24px;
  line-height: 1.7;
  color: #aaaaaa;
}

@media (min-width: 1400px) {
  .tabs_block .tabs_item .content_tab {
    padding-top: 1.6rem;
    padding-bottom: 2.4rem;
  }
}

.tabs_block .tabs_item:first-child {
  border-top: 1px solid #111111;
}

@media (min-width: 1400px) {
  .tabs_block .tabs_item:first-child {
    border-width: 0.1rem;
  }
}

.tabs_block .tabs_item .content_tab p {
  margin-bottom: 30px;
  text-transform: none;
  letter-spacing: 1px;
  line-height: 2;
}

@media (min-width: 1400px) {
  .tabs_block .tabs_item .content_tab p {
    margin-bottom: 3rem;
    letter-spacing: 0.1rem;
  }
}

.tabs_block .tabs_item .title.show span::before {
  background-image: url(../img/minus_black.svg);
}

.tabs_block .tabs_item .content_tab ul {
  padding-left: 0;
  margin-bottom: 0;
  text-transform: none;
}

.tabs_block .tabs_item .share_list {
  padding-left: 20px;
}

@media (min-width: 1400px) {
  .tabs_block .tabs_item .share_list {
    padding-left: 2rem;
  }
}

.tabs_block .tabs_item .content_tab .ya-share2__title {
  color: #aaaaaa;
}

/*end garment page*/
/*fancybox*/
.f_text {
  display: none;
}

.fancybox-bg {
  background-color: #ffffff;
}

.fancybox-is-open .fancybox-bg {
  opacity: 1;
}

.fancybox-caption {
  background: none;
  color: #111111;
  line-height: 1.2;
  letter-spacing: 1.12px;
  font-size: 12px;
  font-weight: 300;
  text-align: left;
  position: absolute;
  padding: 0;
  left: 40px;
  top: 20px;
  bottom: auto;
  max-width: 30%;
  margin-bottom: 0;
  margin-top: 0;
}

@media (min-width: 1400px) {
  .fancybox-caption {
    letter-spacing: 0.112rem;
    font-size: 1.2rem;
    left: 4rem;
    top: 2rem;
  }
}

.fancybox-caption .descr {
  font-weight: 300;
  min-height: 14px;
}

@media (min-width: 1400px) {
  .fancybox-caption .descr {
    min-height: 1.4rem;
  }
}

@media (max-width: 991.98px) {
  .fancybox-button--zoom {
    display: none;
  }
}

.fancybox-caption__body {
  overflow: hidden;
  text-transform: uppercase;
  font-size: 12px;
}

@media (min-width: 1400px) {
  .fancybox-caption__body {
    font-size: 1.2rem;
  }
}

.fancybox-caption__body .name {
  margin-bottom: 5px;
}

@media (min-width: 1400px) {
  .fancybox-caption__body .name {
    margin-bottom: 0.5rem;
  }
}

.fancybox-slide--image {
  padding: 0;
}

.fancybox-stage {
  background-color: #fefdfa;
}

.fancybox-slide {
  padding: 0 123px;
  text-align: left;
}

@media (min-width: 1400px) {
  .fancybox-slide {
    padding: 0 12.3rem;
  }
}

.view_item .fancybox-content {
  width: 100% !important;
  height: 100% !important;
  transform: translate(-50%, -50%) !important;
  left: 50% !important;
  top: 50%;
  text-align: center;
  opacity: 0;
  position: relative;
}

.fancybox-image {
  width: auto;
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
}

.width_image .fancybox-image {
  width: 100%;
  height: auto;
}

.fancybox-infobar {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: 0.96px;
  top: auto;
  height: auto;
  padding: 0;
  mix-blend-mode: normal;
  min-width: 0;
  right: 40px;
  left: auto;
  bottom: 28px;
  color: #111111;
}

@media (min-width: 1400px) {
  .fancybox-infobar {
    font-size: 1.2rem;
    letter-spacing: 0.096rem;
    right: 4rem;
    bottom: 2.8rem;
  }
}

.fancybox-button {
  background-color: transparent;
}

.fancybox-button:link,
.fancybox-button:visited {
  background-color: transparent;
}

.fancybox-button.fancybox-button--close {
  background-size: 9px auto;
}

@media (min-width: 1400px) {
  .fancybox-button.fancybox-button--close {
    background-size: 0.9rem auto;
  }
}

.fancybox-button.fancybox-button--close svg {
  display: none;
}

.fancybox-navigation svg {
  display: none;
}

.fancybox-button {
  color: rgb(99, 98, 98);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer !important;
}

.fancybox-navigation .fancybox-button {
  width: 86px;
}

@media (min-width: 1400px) {
  .fancybox-navigation .fancybox-button {
    width: 8.6rem;
  }
}

.fancybox-button:hover {
  color: #aaaaaa;
}

.fancybox-show-nav .fancybox-navigation .fancybox-button[disabled] {
  opacity: 0.3;
}

.fancybox-button--close {
  background-size: 9px auto;
  background-image: url("../img/close.svg");
}

@media (min-width: 1400px) {
  .fancybox-button--close {
    background-size: 0.9rem auto;
  }
}

.fancybox-navigation .fancybox-button--arrow_left {
  background-size: 19px auto;
  background-image: url("../img/arrow_l.svg");
  left: 6px;
}

@media (min-width: 1400px) {
  .fancybox-navigation .fancybox-button--arrow_left {
    background-size: 1.9rem auto;
    left: 0.6rem;
  }
}

.fancybox-navigation .fancybox-button--arrow_right {
  background-size: 19px auto;
  background-image: url("../img/arrow_r.svg");
  right: 6px;
}

@media (min-width: 1400px) {
  .fancybox-navigation .fancybox-button--arrow_right {
    background-size: 1.9rem auto;
    right: 0.6rem;
  }
}

.fancybox-toolbar {
  top: 8px;
  right: 23px;
}

@media (min-width: 1400px) {
  .fancybox-toolbar {
    top: 0.8rem;
    right: 2.3rem;
  }
}

.scroll .pre_head {
  padding-bottom: 85px;
}

@media (min-width: 1400px) {
  .scroll .pre_head {
    padding-bottom: 8.5rem;
  }
}

.scroll .header_block {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 500;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 1400px) {
  .scroll .header_block {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/*end fancybox*/
/*account_change*/
.account_change {
  text-transform: uppercase;
}

.account_change .end_block {
  border: none;
  margin-top: 20px;
}

@media (min-width: 1400px) {
  .account_change .end_block {
    margin-top: 2rem;
  }
}

.btn.white_b {
  background-color: #fefdfa;
  color: #111111;
}

.btn.white_b:hover {
  color: #ffffff;
  background-color: #111111;
}

.end_block .btn+.btn {
  margin-left: 20px;
}

@media (min-width: 1400px) {
  .end_block .btn+.btn {
    margin-left: 2rem;
  }
}

.table_r {
  width: 100%;
  text-align: center;
  border-top: 1px solid #111111;
  margin-bottom: 11px;
  font-weight: 300;
}

@media (min-width: 1400px) {
  .table_r {
    margin-bottom: 1.1rem;
    border-width: 0.1rem;
  }
}

.table_r tr {
  height: 71px;
  border-bottom: 1px solid #111111;
}

@media (min-width: 1400px) {
  .table_r tr {
    height: 7.1rem;
    border-width: 0.1rem;
  }
}

.table_r tr.hide td {
  color: #bababa;
}

.table_r td:first-of-type {
  text-align: left;
}

.table_r td:last-of-type {
  text-align: right;
}

.order_list .title_b {
  padding-top: 28px;
}

@media (min-width: 1400px) {
  .order_list .title_b {
    padding-top: 2.8rem;
  }
}

.order_list .info_message {
  color: #bababa;
  line-height: 1.2;
  padding-top: 28px;
  padding-bottom: 72px;
}

@media (min-width: 1400px) {
  .order_list .info_message {
    padding-top: 2.8rem;
    padding-bottom: 7.2rem;
  }
}

.account_change .form_block .form_sec {
  margin-bottom: 14px;
}

@media (min-width: 1400px) {
  .account_change .form_block .form_sec {
    margin-bottom: 1.4rem;
  }
}

.account_change .title_b+.form_block .form_sec:first-of-type {
  margin-top: 0;
}

.login_page.account_change .btn {
  max-width: 100%;
}

.account_change .und_inp {
  display: block;
  margin-bottom: 40px;
  text-align: right;
  margin-top: 15px;
}

@media (min-width: 1400px) {
  .account_change .und_inp {
    margin-bottom: 4rem;
    margin-top: 1.5rem;
  }
}

.account_change .und_inp a {
  text-transform: none;
  color: #aaaaaa;
  position: relative;
  text-decoration: none;
}

.account_change .und_inp a:hover::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background-color: #aaaaaa;
}

@media (min-width: 1400px) {
  .account_change .und_inp a:hover::before {
    bottom: -0.5rem;
    height: 0.1rem;
  }
}

.account_change .wishlist {
  display: flex;
  margin-bottom: 79px;
}

@media (min-width: 1400px) {
  .account_change .wishlist {
    margin-bottom: 7.9rem;
  }
}

.account_change .wishlist .w_title {
  width: 160px;
  flex-shrink: 0;
}

@media (min-width: 1400px) {
  .account_change .wishlist .w_title {
    width: 16rem;
  }
}

.account_change .wishlist li {
  margin-right: 5px;
  flex-shrink: 0;
}

@media (min-width: 1400px) {
  .account_change .wishlist li {
    margin-right: 0.5rem;
  }
}

.account_change .wishlist ul {
  margin: 0;
  margin-bottom: 70px;
}

@media (min-width: 1400px) {
  .account_change .wishlist ul {
    margin-bottom: 7rem;
  }
}

.account_change .wishlist_menu a {
  position: relative;
  text-decoration: none;
}

.account_change .wishlist_menu a::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background-color: #111111;
}

@media (min-width: 1400px) {
  .account_change .wishlist_menu a::before {
    bottom: -0.5rem;
    height: 0.1rem;
  }
}

.account_change .wishlist_menu a:hover::before {
  content: none;
}

.account_change .wishlist_menu span {
  font-weight: 300;
  line-height: 24px;
}

@media (min-width: 1400px) {
  .account_change .wishlist_menu span {
    line-height: 2.4rem;
  }
}

.account_change .form_block .end_block {
  width: 100%;
  margin-top: 0;
}

/*end account_change*/
/*cart_page*/
.summary_block {
  width: 38rem;
  position: absolute;
  top: 0;
  right: 4rem;
  padding: 0;
}

@media (max-width: 1399.98px) {
  .summary_block {
    width: 380px;
    right: 40px;
  }
}

.summary_block.fixed {
  position: fixed;
  top: 85px;
}

@media (min-width: 1400px) {
  .summary_block.fixed {
    top: 8.5rem;
  }
}

.summary_block.end {
  top: auto;
  bottom: 0;
  position: absolute;
}

.cart_page {
  width: calc(100% - 44rem);
  padding-bottom: 0 0 3rem 0;
  text-transform: uppercase;
}

@media (max-width: 1399.98px) {
  .cart_page {
    width: calc(100% - 440px);
    padding-bottom: 0 0 30px 0;
  }
}

@media (max-width: 1199.98px) {
  .cart_page {
    width: 100%;
  }
}

.cart_page.account_change {
  max-width: 100%;
}

.cart_pos {
  position: relative;
  margin-bottom: 90px;
}

@media (min-width: 1400px) {
  .cart_pos {
    margin-bottom: 9rem;
  }
}

.summary_block .text {
  color: #111111;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1px;
}

@media (min-width: 1400px) {
  .summary_block .text {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
  }
}

.summary_block .sum_block {
  margin-bottom: 60px;
}

@media (min-width: 1400px) {
  .summary_block .sum_block {
    margin-bottom: 6rem;
  }
}

.summary_block .sum_line {
  display: flex;
  flex-wrap: wrap;
}

.summary_block .sum_line:first-child {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

@media (min-width: 1400px) {
  .summary_block .sum_line:first-child {
    margin-bottom: 3rem;
  }
}

.cart_page .price {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: #111111;
}

@media (min-width: 1400px) {
  .cart_page .price {
    font-size: 1.2rem;
    letter-spacing: 0.096rem;
  }
}

.summary_block .text {
  width: 50%;
}

.summary_block .sum_line .price {
  text-align: right;
  width: 50%;
}

.summary_block .btns_block {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 0;
  margin-top: -25px;
}

@media (min-width: 1400px) {
  .summary_block .btns_block {
    margin-top: -2.5rem;
  }
}

.summary_block .btns_block .btn {
  text-transform: uppercase;
  font-weight: 300;
  width: 100%;
  margin-right: 0;
}

.summary_block .btns_block .btn.disabled {
  background-color: #fefdfa;
  color: #111111;
}

.sum_block .link_line {
  font-size: 12px;
  color: #aaaaaa;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-top: 7px;
}

@media (min-width: 1400px) {
  .sum_block .link_line {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    margin-top: 0.7rem;
  }
}

.summary_block .btns_block .link {
  margin: auto;
  margin-left: 0;
}

.cart_block {
  padding-bottom: 31px;
}

@media (min-width: 1400px) {
  .cart_block {
    padding-bottom: 3.1rem;
  }
}

.cart_page .title_b {
  line-height: 1.2;
  color: #111111;
  font-size: 1.2rem;
  letter-spacing: 0.112px;
  font-size: 12px;
  letter-spacing: 1.12px;
  margin-bottom: 3rem;
}

@media (max-width: 1399.98px) {
  .cart_page .title_b {
    font-size: 12px;
    letter-spacing: 1.12px;
    margin-bottom: 30px;
  }
}

.cart_block .name_col,
.cart_block .cart_item {
  display: flex;
}

.cart_block .td {
  padding-top: 4px;
  width: calc(18.6% - 74px);
}

@media (min-width: 1400px) {
  .cart_block .td {
    padding-top: 0.4rem;
    width: calc(18.6% - 7.4rem);
  }
}

.cart_block .td:first-of-type {
  margin-top: -4px;
  width: 120px;
  margin-right: 40px;
  flex-shrink: 0;
}

@media (min-width: 1400px) {
  .cart_block .td:first-of-type {
    margin-top: -0.4rem;
    width: 12rem;
    margin-right: 4rem;
  }
}

.cart_block .td:nth-of-type(2) {
  padding-top: 4px;
  width: calc(100% + 120px);
  padding-right: 0;
}

@media (min-width: 1400px) {
  .cart_block .td:nth-of-type(2) {
    padding-top: 0.4rem;
    width: calc(100% + 12rem);
  }
}

.cart_block .td_name:first-child {
  padding-top: 4px;
  margin-top: 0;
}

@media (min-width: 1400px) {
  .cart_block .td_name:first-child {
    padding-top: 0.4rem;
  }
}

.cart_block .td:last-of-type {
  width: 100%;
  text-align: right;
}

.cart_block .td:nth-of-type(4) {
  text-align: left;
  padding-top: 0;
  width: 100px;
  flex-shrink: 0;
}

@media (min-width: 1400px) {
  .cart_block .td:nth-of-type(4) {
    width: 10rem;
  }
}

.cart_block .td_name:nth-of-type(4) {
  padding-top: 4px;
}

@media (min-width: 1400px) {
  .cart_block .td_name:nth-of-type(4) {
    padding-top: 0.4rem;
  }
}

.cart_block .td:nth-of-type(3) {
  width: 140px;
  text-align: right;
  padding-right: 80px;
  flex-shrink: 0;
}

@media (min-width: 1400px) {
  .cart_block .td:nth-of-type(3) {
    width: 14rem;
    text-align: right;
    padding-right: 8rem;
  }
}

.shop_page .img {
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 149%;
}

.cart_block .img {
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 149%;
}

.cart_block .td {
  color: #111111;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1.12px;
}

@media (min-width: 1400px) {
  .cart_block .td {
    font-size: 1.2rem;
    letter-spacing: 0.112rem;
  }
}

.amount_block {
  position: relative;
  white-space: nowrap;
  border-bottom: 1px solid black;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

@media (min-width: 1400px) {
  .amount_block {
    border-width: 0.1rem;
  }
}

.amount_block .amount {
  padding: 0;
  padding: 0;
  text-align: center;
  width: calc(100% - 40px);
  background-color: transparent;
  border-radius: 0;
  border: none;
  color: #111111;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.96px;
  font-weight: 300;
}

@media (min-width: 1400px) {
  .amount_block .amount {
    width: calc(100% - 4rem);
    font-size: 1.2rem;
    letter-spacing: 0.096rem;
  }
}

.amount_block a {
  text-decoration: none;
  font-size: 16px;
  width: 20px;
  display: inline-block;
  padding: 0;
  outline: none;
}

@media (min-width: 1400px) {
  .amount_block a {
    font-size: 1.6rem;
    width: 2rem;
  }
}

.amount_block .plus {
  text-align: right;
}

.form_sec {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  margin-bottom: 23px;
}

@media (min-width: 1400px) {
  .form_sec {
    margin-bottom: 2.3rem;
  }
}

.form_sec:last-of-type {
  margin-bottom: 0;
}

.form_sec .title_b {
  width: 160px;
  color: #111111;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1.12px;
  flex-shrink: 0;
  font-family: "Oceanic Text", sans-serif;
}

@media (min-width: 1400px) {
  .form_sec .title_b {
    width: 16rem;
    font-size: 1.2rem;
    letter-spacing: 0.112rem;
  }
}

.form_sec .form_content {
  width: calc(100% - 160px);
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (min-width: 1400px) {
  .form_sec .form_content {
    width: calc(100% - 16rem);
  }
}

.form_sec .form_content .half_right {
  width: calc(50% - 40px);
}

@media (min-width: 1400px) {
  .form_sec .form_content .half_right {
    width: calc(50% - 4rem);
  }
}

.form_sec .form_content .half_line {
  width: calc(50% - 40px);
  margin-right: 80px;
}

@media (min-width: 1400px) {
  .form_sec .form_content .half_line {
    width: calc(50% - 4rem);
    margin-right: 8rem;
  }
}

.form_sec .form_content .mr_line {
  margin-bottom: 54px;
}

@media (min-width: 1400px) {
  .form_sec .form_content .mr_line {
    margin-bottom: 5.4rem;
  }
}

.form_sec .form_content .wide_line {
  width: 100%;
}

.form_sec .form_content .mr_line_end {
  margin-top: 58px;
  margin-bottom: 100px;
}

@media (min-width: 1400px) {
  .form_sec .form_content .mr_line_end {
    margin-top: 5.8rem;
    margin-bottom: 10rem;
  }
}

.form_sec .form_content .line {
  width: 100%;
  margin-bottom: 52px;
}

@media (min-width: 1400px) {
  .form_sec .form_content .line {
    margin-bottom: 5.2rem;
  }
}

.form_sec .form_content .text_block.line {
  line-height: 2;
  margin-top: -4px;
}

@media (min-width: 1400px) {
  .form_sec .form_content .text_block.line {
    margin-top: -0.4rem;
  }
}

.form_sec .form_content .line p {
  margin-bottom: 33px;
}

@media (min-width: 1400px) {
  .form_sec .form_content .line p {
    margin-bottom: 3.3rem;
  }
}

.form_sec .form_content .text_block ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.form_sec .form_content .title {
  color: #202020;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1.12px;
  margin-bottom: 23px;
}

@media (min-width: 1400px) {
  .form_sec .form_content .title {
    font-size: 1.2rem;
    letter-spacing: 0.112rem;
    margin-bottom: 2.3rem;
  }
}

.auth_error {
  display: none;
  color: red !important;
}

.reg_error,
.upd_pass_error {
  color: red;
}

.form_sec .form_content .margin_end {
  margin-bottom: 88px;
}

@media (min-width: 1400px) {
  .form_sec .form_content .margin_end {
    margin-bottom: 8.8rem;
  }
}

.form_sec .form_content .end_line {
  padding-top: 16px;
}

@media (min-width: 1400px) {
  .form_sec .form_content .end_line {
    padding-top: 1.6rem;
  }
}

.form_sec .list_pos {
  width: 100%;
  position: relative;
}

.form_sec .list_pos .pop_list {
  display: none;
}

.form_sec .list_pos.active .pop_list {
  display: block;
}

.form_sec .pop_list {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  z-index: 10;
  overflow: auto;
  background-color: #fefdfa;
  max-height: 300px;
  padding-top: 10px;
}

@media (min-width: 1400px) {
  .form_sec .pop_list {
    max-height: 30rem;
    padding-top: 1rem;
  }
}

.form_sec .pop_list li {
  margin-bottom: 8px;
  cursor: pointer;
}

@media (min-width: 1400px) {
  .form_sec .pop_list li {
    margin-bottom: 0.8rem;
  }
}

.cart_page .select {
  width: 100%;
  border: none;
  border-radius: 0;
  background-color: transparent;
  border-bottom: 1px solid #181818;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 7px auto;
  background-image: url("../img/arrow_d.svg");
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  color: #111111;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.96px;
  font-weight: 300;
  padding: 15px 0;
}

@media (min-width: 1400px) {
  .cart_page .select {
    border-width: 0.1rem;
    background-size: 0.7rem auto;
    font-size: 1.2rem;
    letter-spacing: 0.096rem;
    padding: 1.5rem 0;
  }
}

.select option {
  padding: 0;
}

.form_block .end_block {
  width: calc(100% - 170px);
  display: flex;
}

@media (min-width: 1400px) {
  .form_block .end_block {
    width: calc(100% - 17rem);
  }
}

.half_line .check_block {
  max-width: 100%;
  margin-left: 0;
  margin-top: 70px;
}

@media (min-width: 1400px) {
  .half_line .check_block {
    margin-top: 7rem;
  }
}

.half_line .check_block.w {
  margin-top: 0;
  margin-bottom: 17px;
}

@media (min-width: 1400px) {
  .half_line .check_block.w {
    margin-bottom: 1.7rem;
  }
}

.end_block .btn {
  margin: auto;
  margin-right: 0;
}

/*end cart_page*/
/*start Wishlist_page*/
.Wishlist_page .title_b {
  padding-top: 50px;
  padding-bottom: 6px;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.2;
  color: #111111;
  font-weight: 300;
  text-transform: uppercase;
}

@media (min-width: 1400px) {
  .Wishlist_page .title_b {
    padding-top: 5rem;
    padding-bottom: 0.6rem;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
  }
}

/*end Wishlist_page*/
/*start legal_page about_page*/
.image_content {
  margin-top: 49px;
}

@media (min-width: 1400px) {
  .image_content {
    margin-top: 4.9rem;
  }
}

.image_content img {
  width: 100%;
  height: auto;
}

.legal_page {
  margin-bottom: 60px;
  letter-spacing: 1px;
  color: #111111;
  font-weight: 300;
}

@media (min-width: 1400px) {
  .legal_page {
    margin-bottom: 6rem;
    letter-spacing: 0.1rem;
  }
}

.about {
  margin-bottom: -25px;
}

@media (min-width: 1400px) {
  .about {
    margin-bottom: -2.5rem;
  }
}

.legal_page .text_block {
  max-width: 50%;
  margin: 0 auto;
  font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}

@media (max-width: 1399.98px) {
  .legal_page .text_block {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 300;
  }
}

@media (max-width: 1199.98px) {
  .legal_page .text_block {
    max-width: 100%;
  }
}

.legal_page .text_block p {
  margin: 0 0 1.5rem;
}

@media (max-width: 1399.98px) {
  .legal_page .text_block p {
    margin-bottom: 15px;
  }
}

.legal_page .text_block ul,
.legal_page .text_block ol {
  margin-bottom: 15px;
}

@media (max-width: 1399.98px) {

  .legal_page .text_block ul,
  .legal_page .text_block ol {
    margin-bottom: 15px;
  }
}

.legal_page .text_block ul li,
.legal_page .text_block ol li {
  margin-bottom: 0.5rem;
}

@media (max-width: 1399.98px) {

  .legal_page .text_block ul li,
  .legal_page .text_block ol li {
    margin-bottom: 5px;
  }
}

.legal_page .text_block ul {
  padding: 0;
  list-style: none;
}

.legal_page .text_block ul li {
  padding-left: 2.4rem;
  position: relative;
}

.legal_page .text_block ul li:before {
  display: block;
  position: absolute;
  content: "";
  left: 0.5rem;
  width: 1.2rem;
  height: 0.1rem;
  background: #111111;
  top: 1rem;
}

@media (max-width: 1399.98px) {
  .legal_page .text_block ul li:before {
    left: 5px;
    width: 12px;
    height: 1px;
    top: 10px;
  }
}

.legal_page .text_block a {
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
  .legal_page .text_block a {
    text-decoration: underline;
  }
}

.legal_page .text_block a:hover {
  text-decoration: underline;
}

.legal_page .text_block a[href^="tel:"] {
  color: #111111;
  text-decoration: none;
  font-weight: 400;
}

.legal_page .text_block a[href$=".docx"],
.legal_page .text_block a[href$=".doc"],
.legal_page .text_block a[href$=".pdf"] {
  color: #d22222;
}

.legal_page .text_block strong {
  font-weight: 400;
}

.legal_page .text_block h2,
.legal_page .text_block h3,
.legal_page .text_block h4,
.legal_page .text_block h5,
.legal_page .text_block h6 {
  font-size: 1.4rem !important;
  text-transform: none;
  font-weight: 400;
  margin: 3rem 0 1.5rem !important;
}

@media (max-width: 1399.98px) {

  .legal_page .text_block h2,
  .legal_page .text_block h3,
  .legal_page .text_block h4,
  .legal_page .text_block h5,
  .legal_page .text_block h6 {
    font-size: 14px !important;
    margin: 30px 0 15px !important;
  }
}

.legal_page .text_block h2:first-child,
.legal_page .text_block h3:first-child,
.legal_page .text_block h4:first-child,
.legal_page .text_block h5:first-child,
.legal_page .text_block h6:first-child {
  margin-top: 0;
}

.legal_page .text_block h2 {
  text-transform: uppercase;
}

.about_img {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 59%;
  margin-top: 49px;
  margin-bottom: 23px;
}

@media (min-width: 1400px) {
  .about_img {
    margin-top: 4.9rem;
    margin-bottom: 2.3rem;
  }
}

/*end legal_page about_page*/
/*page not found, order confirmation*/
.mess_error {
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 1px;
  margin-top: 43px;
  text-transform: uppercase;
}

@media (min-width: 1400px) {
  .mess_error {
    line-height: 2.4rem;
    letter-spacing: 0.1rem;
    margin-top: 4.3rem;
  }
}

.order_confir p {
  margin-bottom: 23px;
}

@media (min-width: 1400px) {
  .order_confir p {
    margin-bottom: 2.3rem;
  }
}

.mess_error a {
  position: relative;
  text-decoration: none;
  display: inline-block;
}

.mess_error a:hover::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background-color: #111111;
}

@media (min-width: 1400px) {
  .mess_error a:hover::before {
    bottom: 0.1rem;
    height: 0.1rem;
  }
}

.info_message {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 300;
  color: #111111;
  line-height: 2;
}

@media (min-width: 1400px) {
  .info_message {
    font-size: 1.2rem;
  }
}

.info_message a {
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.info_message a:hover::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background-color: #111111;
}

@media (min-width: 1400px) {
  .info_message a:hover::before {
    bottom: -0.4rem;
    height: 0.1rem;
  }
}

.fixed_message {
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  position: fixed;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  line-height: 1.1;
  background-color: #111111;
  display: none;
  z-index: 100;
  padding: 10px 15px;
}

@media (min-width: 1400px) {
  .fixed_message {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
  }
}

.fixed_message.active {
  display: block;
}

.js-slider-catalog {
  overflow: hidden;
}

.js-slider-catalog .swiper-pagination {
  text-align: right;
  padding-right: 5px;
  bottom: 5px;
}

@media (min-width: 1400px) {
  .js-slider-catalog .swiper-pagination {
    padding-right: 0.5rem;
    bottom: 0.5rem;
  }
}

.js-slider-catalog .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  height: 2px;
  opacity: 0.1;
  margin: 0 3px;
  transition: all 0.25s ease;
}

@media (min-width: 1400px) {
  .js-slider-catalog .swiper-pagination .swiper-pagination-bullet {
    height: 0.2rem;
    margin: 0 0.3rem;
  }
}

.js-slider-catalog .swiper-pagination .swiper-pagination-bullet-active {
  background: #000;
  opacity: 0.4;
}

@media (max-width: 767px) {
  .filter_block .filter_show {
    top: 60px !important;
    margin-top: 0px !important;
    padding-top: 75px;
    padding-bottom: 43px;
    margin-left: -8px;
    position: fixed;
  }
}

@media (max-width: 767px) and (min-width: 1400px) {
  .filter_block .filter_show {
    padding-top: 7.5rem;
    padding-bottom: 4.3rem;
    margin-left: -0.8rem;
  }
}

@media (max-width: 767px) {
  .filter_block .filter_show .filter_form {
    overflow: hidden;
    overflow-y: auto;
    overflow-y: scroll;
    height: calc(100vh - 130px);
    display: block;
  }
}

@media (max-width: 767px) and (min-width: 1400px) {
  .filter_block .filter_show .filter_form {
    height: calc(100vh - 13rem);
  }
}

@media (max-width: 767px) {
  .filter_block .filter_show .title {
    width: 90px !important;
  }
}

@media (max-width: 767px) and (min-width: 1400px) {
  .filter_block .filter_show .title {
    width: 9rem !important;
  }
}

@media (max-width: 767px) {
  .filter_block .filter_show .check_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: inherit;
    flex: 1 1;
  }

  .filter_block .filter_show label {
    padding: 0 5px;
    margin: 0 5px;
  }
}

@media (max-width: 767px) and (min-width: 1400px) {
  .filter_block .filter_show label {
    padding: 0 0.5rem;
    margin: 0 0.5rem;
  }
}

@media (max-width: 767px) {
  .filter_block .filter_line .filter_btn.show {
    color: #ffffff;
    z-index: 6;
    position: fixed;
    top: 87px;
  }
}

@media (max-width: 767px) and (min-width: 1400px) {
  .filter_block .filter_line .filter_btn.show {
    top: 8.7rem;
  }
}

@media (max-width: 1199px) {
  .form_sec .title_b {
    width: 127px;
  }

  .form_sec .form_content {
    width: calc(100% - 127px);
  }

  .form_sec .form_content .half_line {
    width: calc(50% - 20px);
    margin-right: 40px;
  }

  .form_sec .form_content .half_right {
    width: calc(50% - 20px);
  }

  .gar_foto {
    padding-right: 0;
  }

  .cart_block .td:nth-of-type(3) {
    width: calc(19.6% - 26px);
    width: 80px;
    padding-right: 40px;
  }

  .cart_block .td:nth-of-type(2) {
    width: 100%;
  }

  .cart_block .td:first-of-type {
    margin-right: 20px;
    width: 107px;
  }

  .filter_block .filter_show .col_b.title_hide {
    width: calc(24.7% - 80px);
  }
}

@media (max-width: 991px) {
  .book_item {
    margin-bottom: 25px;
  }

  .container-fluid .container {
    padding: 0 20px;
  }

  .menu_list li {
    margin-right: 15px;
  }

  .instagram_list .instagram_item {
    width: 25%;
  }

  .instagram_list .instagram_item:nth-of-type(n + 5) {
    display: none;
  }

  .instagram_list .instagram_item {
    margin-bottom: 0;
  }

  .footer_sec .footer_line {
    padding-top: 0px;
  }

  .header_col:first-of-type .menu_list {
    display: none;
  }

  .header_col .menu_list li:not(.mob_show) {
    display: none;
  }

  .header_sec .cart_btn span:not(.count) {
    display: none;
  }

  /*----shop----*/
  .gx-5 {
    --bs-gutter-x: 20px;
  }

  .filter_block .filter_line {
    padding-top: 25px;
  }

  .filter_block .filter_show {
    width: calc(100% + 22px);
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 0;
    padding-top: 75px;
    margin-left: -11px;
  }

  .search_setting .filter_block .filter_show {
    margin-left: -10px;
    width: calc(100% + 20px);
  }

  .search_setting .shop_block,
  .search_setting .search_message {
    padding: 0 9px;
    padding-top: 29px;
    padding-bottom: 18px;
  }

  /*-----Cart page-----*/
  .summary_block.fixed {
    position: relative;
    bottom: 0;
    left: 30%;
  }

  .summary_block {
    position: static;
  }

  .cart_page {
    width: 100%;
    max-width: 100%;
  }

  .form_sec .form_content {
    width: calc(100% - 134px);
  }

  .form_sec .title_b {
    width: 127px;
  }

  /*-----Garment----*/
  .detail_text .title_block .price {
    white-space: nowrap;
  }

  /*mobile_menu*/
  .mobile_menu {
    position: absolute;
    left: -100vw;
    top: 109px;
    width: calc(100% - 37px);
    max-width: 338px;
    height: calc(100% - 109px);
    overflow: auto;
    z-index: 500;
    display: block;
    background-color: #fbfbf6;
    -webkit-transition: left 0.5s ease;
    -moz-transition: left 0.5s ease;
    -o-transition: left 0.5s ease;
    transition: left 0.5s ease;
  }

  .mobile_menu .position {
    padding: 25px 37px;
    padding-bottom: 35px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }

  .mobile_menu .und_menu {
    margin-top: auto;
  }

  .mobile_menu .menu_list {
    display: block;
    margin-bottom: 30px;
  }

  .mobile_menu .menu_list li {
    margin: 0;
    margin-bottom: 18px;
  }

  .mobile_menu .setting_block {
    line-height: 1.5;
    margin-bottom: 3px;
  }

  .mobile_menu .setting_block .name {
    color: #111;
    text-transform: uppercase;
  }

  .mobile_menu .setting_block .select_block .select_ver {
    color: #111;
  }

  .mobile_menu .setting_block .select_list {
    background-color: #fbfbf6;
  }

  .mobile_menu .setting_block .select_block::before {
    background-color: #111;
  }

  .menu-active .mobile_menu {
    left: 0;
  }

  .scroll~.mobile_menu {
    position: fixed;
    top: 0;
    height: 100%;
  }

  .menu-active .header_sec,
  .menu-active .promo_line {
    z-index: 501;
  }

  .catalog_list .catalog_item .img {
    padding-top: 148.8%;
  }

  /*end mobile_menu*/
  .fancybox-caption {
    left: 20px;
  }

  .fancybox-navigation .fancybox-button {
    width: 61px;
  }

  .fancybox-toolbar {
    right: 5px;
  }

  .filter_block .col_link {
    top: 23px;
    right: 20px;
  }

  .fancybox-infobar {
    right: 20px;
  }

  .search_setting>.row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .search_setting .search_line,
  .search_setting .search_inf,
  .search_setting .filter_inf {
    padding: 0 10px;
  }

  .filter_block .filter_show .col_b.title_hide {
    width: calc(24.7% - 50px);
  }

  .banner_slider .slide .video {
    width: auto;
    min-width: 100%;
    max-width: none;
    max-height: 100%;
  }
}

@media (max-width: 767px) {
  .container-fluid .container {
    padding: 0 17px;
  }

  .promo_line.mob_hide {
    display: none;
  }

  .promo_line.mob_hide~.mobile_menu {
    height: 100%;
    top: 0;
  }

  .header_sec.scroll~.mobile_menu {
    height: 100%;
    top: 0;
  }

  .header_sec .header_col {
    width: auto;
    max-width: calc(100% - 100px);
    margin: auto 0;
  }

  .header_sec .header_col:nth-of-type(3n-1) {
    margin: auto;
  }

  .catalog_list .catalog_item .offer_list {
    display: none;
  }

  .content_padding {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .catalog_slider .swiper-wrapper {
    flex-wrap: wrap;
  }

  .catalog_list .catalog_item .price {
    margin-left: 0;
  }

  .catalog_list .catalog_item .name {
    margin-right: auto;
  }

  .catalog_list .catalog_item {
    margin-bottom: 8px;
  }

  .category_list .category_item {
    margin-bottom: 10px;
    padding: 0 17px;
  }

  .category_list .category_item:nth-of-type(2n-1):nth-last-of-type(2) {
    margin-bottom: 10px;
  }

  .instagram_list .instagram_item {
    width: 50%;
    padding: 0 10px;
  }

  .instagram_list>.row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .instagram_list .instagram_item:nth-of-type(n + 3) {
    display: none;
  }

  .footer_sec .setting_site {
    flex-direction: column;
    margin-bottom: auto;
  }

  .footer_sec .setting_site .setting_block {
    margin-right: 0;
    margin-left: auto;
    line-height: 2;
  }

  .category_list>.row {
    margin-left: -17px;
    margin-right: -17px;
  }

  .setting_block .select_block .cur_select::before {
    bottom: 0;
  }

  .footer_sec .footer_line:last-of-type {
    padding-top: 0;
  }

  .footer_sec .footer_line:last-of-type .footer_col:first-of-type {
    order: 1;
  }

  .footer_sec .footer_line .footer_col {
    width: auto;
  }

  .footer_sec .footer_line:first-of-type .footer_col:first-of-type {
    width: auto;
    max-width: 57%;
  }

  .footer_sec .setting_site {
    margin-left: auto;
    max-width: 43%;
  }

  .footer_col .menu_list {
    width: 100%;
    display: block;
    text-align: left;
  }

  .footer_col .menu_list li {
    margin-right: 0;
  }

  .footer_sec .copyright {
    line-height: 2;
    margin-top: 25px;
  }

  .footer_sec .copyright a {
    display: inline-block;
  }

  .footer_sec .footer_line:last-of-type .menu_list li:last-of-type {
    margin-top: 23px;
  }

  .content_padding .catalog_block {
    padding-top: 8px;
  }

  .catalog_list .catalog_item .text_block {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .catalog_list .catalog_item:nth-of-type(2n-1):nth-last-of-type(2),
  .catalog_list .catalog_item:last-of-type {
    margin-bottom: 0;
  }

  .catalog_list .catalog_item:nth-of-type(2n-1):nth-last-of-type(2) .text_block,
  .catalog_list .catalog_item:last-of-type .text_block {
    padding-bottom: 10px;
  }

  .category_sec {
    padding-top: 0;
  }

  .catalog_list.catalog_slider {
    padding-bottom: 0;
  }

  .instagram_block {
    padding-top: 8px;
    padding-bottom: 22px;
  }

  .instagram_list .instagram_item .pos_item {
    padding-top: 97%;
  }

  .footer_sec .setting_block .select_block .cur_select::before {
    bottom: 1px;
  }

  .mobile_menu .menu_list li a {
    font-weight: 300;
  }

  .mobile_menu .menu_list li a.active {
    font-weight: 400;
  }

  /*----shop----*/
  .gx-5 {
    --bs-gutter-x: 20px;
  }

  .filter_block .filter_line {
    padding-top: 28px;
  }

  form.row {
    flex-direction: column;
  }

  .filter_block .filter_show {
    top: 43px;
    width: calc(100% + 16px);
    margin-top: -43px;
    padding-top: 75px;
    padding-bottom: 43px;
    margin-left: -8px;
  }

  .search_setting .filter_block .filter_show {
    width: calc(100% + 14px);
    margin-left: -7px;
  }

  .filter_block .filter_show .col_b,
  .filter_block .filter_show .col_b.title_hide {
    width: 100%;
  }

  .filter_block .filter_show .col_b.title_hide .title {
    display: block;
    opacity: 0;
  }

  .filter_block .col_link {
    top: 26px;
    right: 18px;
  }

  .filter_block .link {
    margin-right: 0;
  }

  .filter_block .link:last-child {
    margin-left: 45px;
  }

  .filter_block .filter_show .check_list {
    width: 48%;
    margin-bottom: 25px;
  }

  .filter_block .filter_show .title {
    width: 52%;
    max-width: 180px;
  }

  .filter_block .filter_btn.show .col_link .link {
    margin-right: 10px;
  }

  .filter_block .filter_line .filter_btn::before {
    left: 65px;
  }

  .catalog_list .catalog_item .price_box {
    margin-left: 0;
    margin-right: auto;
    flex-direction: row;
  }

  .catalog_list .catalog_item .price {
    margin-right: 10px;
  }

  /*-----Look Book-----*/
  .box-sort {
    display: flex;
    width: 100%;
    margin-bottom: 33px;
    margin-top: 28px;
  }

  .box-sort .sort_block .select .choice {
    padding-right: 14px;
  }

  .book_album {
    padding-bottom: 18px;
  }

  .book_item .img_2 {
    padding-top: 70.1%;
  }

  /*----Cart page----*/
  .summary_block.fixed {
    position: static;
    bottom: 0;
    width: 100%;
    top: auto;
  }

  .form_sec {
    flex-direction: column;
    margin-bottom: 12px;
  }

  .form_sec .form_content {
    width: 100%;
    flex-direction: column;
  }

  .form_sec .form_content .half_line {
    width: 100%;
    margin-right: 0;
  }

  .form_sec .form_content .half_right {
    width: 100%;
  }

  .cart_page .title_b {
    margin-bottom: 33px;
    width: 100%;
  }

  .form_sec.order_list .title_b {
    margin-bottom: 33px;
  }

  .form_sec .form_content .mr_line {
    margin-bottom: 42px;
  }

  .half_line .check_block.w {
    margin-bottom: 0;
  }

  .cart_pos {
    margin-bottom: 43px;
  }

  .shop_page .img,
  .cart_block.mobile .img {
    padding-top: 150%;
    margin-right: 0;
  }

  /*-----shop items------*/
  .garment {
    flex-direction: column;
  }

  .garment .gar_foto {
    width: 100%;
  }

  .shop_detail .detail_text {
    width: 100%;
  }

  .gar_foto {
    width: 100%;
  }

  .garment .swiper-wrapper {
    height: 100%;
    flex-wrap: nowrap;
  }

  .gar_foto .gar_items .mob_show {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }

  .garment .swiper-button-prev {
    left: 0;
  }

  .garment .swiper-button-next {
    right: 0;
  }

  .garment .swiper-button-prev:after {
    position: absolute;
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../img/arrow_l.svg");
    width: 19px;
    height: 9px;
    left: 0;
    bottom: 25px;
  }

  .garment .swiper-button-next:after {
    position: absolute;
    content: "";
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../img/arrow_r.svg");
    width: 19px;
    height: 9px;
    right: 21px;
    bottom: 25px;
  }

  .garment .swiper-button-next,
  .garment .swiper-button-prev {
    top: 100%;
  }

  .detail_text .link {
    padding-top: 4px;
  }

  .title_det {
    margin-top: 23px;
    margin-bottom: 8px;
  }

  /*----.gallery_view-----*/
  .gallery_view {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 600;
    overflow: auto;
    padding-top: 25px;
    background-color: #fbfbf6;
    padding-left: 17px;
    padding-right: 17px;
    width: 100%;
    height: 100%;
  }

  .gallery_view__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-weight: 300;
    flex: 1 1;
  }

  .gallery_view__header .name {
    font-weight: 400;
    text-transform: uppercase;
  }

  .gallery_view .close_view {
    flex: 0 0 auto;
    margin-left: 15px;
    cursor: pointer;
    position: relative;
  }

  .gallery_view.active {
    display: block;
  }

  .gallery_view .box_view {
    margin-bottom: 16px;
  }

  .gallery_view .item_view {
    padding-bottom: 25px;
  }

  .gallery_view .item_view img {
    width: 100%;
  }

  .gallery_view .item_view video {
    width: 100%;
  }

  /*-----cart_preview----- */
  .cart_preview .cart_block .img {
    padding-right: 0;
    margin-right: 0;
  }

  .cart_preview .cart_item>.td:first-of-type {
    margin-right: 30px;
    width: 70px;
  }

  .cart_block .cart_item .td_box {
    width: calc(100% - 100px);
  }

  .cart_block .td:nth-of-type(3) {
    width: 100%;
    padding-right: 0;
  }

  .cart_preview .cart_block .td:nth-of-type(3) {
    width: calc(30.6% - 1px);
  }

  .cart_block .td:first-of-type {
    margin-right: 0;
  }

  .cart_block .cart_item .title {
    position: relative;
    z-index: 1;
  }

  .cart_preview .cart_block .td.td_name:first-child {
    width: 70px;
    flex-shrink: 1;
  }

  .cart_preview .cart_block .td:first-of-type {
    margin-right: 30px;
  }

  /*-----Wishlist------*/
  .Wishlist_page .title_b {
    padding-top: 31px;
  }

  /*----Account-----*/
  .account_change .wishlist {
    flex-direction: column;
    margin-bottom: 50px;
  }

  .account_change .wishlist .w_title {
    margin-bottom: 15px;
  }

  .account_change .form_block .end_block.w {
    margin-top: 0;
  }

  .order_list .title_b {
    padding-top: 0;
  }

  .order_list .info_message {
    padding-top: 0;
    padding-bottom: 40px;
    margin-top: -10px;
  }

  .form_sec .form_content .line {
    margin-bottom: 30px;
  }

  /*----login register------*/
  .form_sec .form_content .margin_end {
    margin-bottom: 26px;
  }

  .account_change .wishlist_menu a::before {
    display: none;
  }

  .account_change .wishlist_menu span {
    line-height: 24px;
  }

  /*-----About-----*/
  .about_img {
    margin-top: 31px;
  }

  .image_content {
    margin-top: 31px;
    margin-bottom: 23px;
  }

  .fancybox-caption {
    max-width: 100%;
  }

  .fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
  }

  .fancybox-navigation .fancybox-button--arrow_right {
    right: 0;
  }

  .catalog_list .catalog_item .remove_btn {
    margin-left: 0;
  }

  .fancybox-slide {
    padding: 0 50px;
  }

  .search_setting .search_line {
    margin-bottom: 10px;
  }

  .search_setting .filter_inf {
    position: relative;
    padding-top: 28px;
  }

  .section_menu .menu_list {
    display: none;
  }

  .section_select .selected_section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    height: 49px;
    font-size: 1rem;
    letter-spacing: 0.8px;
    font-weight: 300;
    text-transform: uppercase;
    color: #111;
    border: 1px solid #111111;
    margin: 0;
    padding: 0;
  }

  .section_select .selected_section .name {
    margin: auto;
  }

  .section_select {
    position: relative;
  }

  .section_select .select {
    background-color: transparent;
    border: 1px solid #111111;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: -webkit-center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #111;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.8px;
    height: 49px;
    border-radius: 0;
    opacity: 0;
    left: 0;
    top: 0;
    position: absolute;
  }

  .section_select .select option {
    text-align: center;
    text-align-last: center;
    -moz-text-align-last: center;
    text-align: -webkit-center;
  }

  .sort_block .text {
    display: none;
  }

  .sort_block .select .choice {
    width: 140px;
  }

  @-moz-document url-prefix() {
    .sort_block .select .choice {
      text-indent: -1px;
    }
  }
}

@media (max-width: 374px) {
  .sort_block .select .choice {
    width: calc(100vw - 142px);
  }
}

.preload-wrapper .logo {
  background-image: url("/logo-dark.png");
}

html {
  font-size: 0.5208334vw;
}

@media (max-width: 1600px) {
  html {
    font-size: 0.699vw;
  }
}

@media (max-width: 1399.98px) {
  html {
    font-size: 12px;
  }
}

.page_pos {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

.page_pos .footer_sec {
  margin-top: auto;
}

a {
  color: #111111;
  text-decoration: none;
}

a:hover {
  color: #111111;
  text-decoration: underline;
}

#body {
  overflow: hidden;
  padding-top: 5rem;
}

@media (max-width: 1399.98px) {
  #body {
    padding-top: 50px;
  }
}

@media (max-width: 991.98px) {
  #body {
    padding-top: 40px;
  }
}

#body.body__main {
  padding-top: 0;
}

#body h1,
#body .h1 {
  color: #111111;
  font-size: 1.2rem;
  letter-spacing: 0.112rem;
  font-family: "Oceanic Text", sans-serif;
  text-transform: uppercase;
  margin: 0 0 3rem;
}

@media (max-width: 1399.98px) {

  #body h1,
  #body .h1 {
    font-size: 12px;
    letter-spacing: 1.12px;
    margin: 0 0 30px;
  }
}

#body h2,
#body .h2 {
  color: #111111;
  font-size: 1.2rem;
  letter-spacing: 0.112rem;
  text-transform: uppercase;
  margin: 0 0 3rem;
}

@media (max-width: 1399.98px) {

  #body h2,
  #body .h2 {
    font-size: 12px;
    letter-spacing: 1.12px;
    margin: 0 0 30px;
  }
}

@media (max-width: 767px) {
  .sort_block .select .choice {
    text-indent: 0px !important;
  }
}

@media (max-width: 991.98px) {
  .header_sec .search_block {
    top: 97px;
    left: 0;
    right: auto;
    z-index: 52;
    background: #fff;
    padding: 20px 37px;
    width: 100vw;
    box-sizing: border-box;
  }
}

@media (max-width: 991.98px) {
  .header_sec .search_block input[type="text"] {
    box-sizing: border-box;
  }
}

@media (max-width: 991.98px) {
  .header_sec .search_block.active {
    top: 97px !important;
    display: flex !important;
    left: 0 !important;
    right: auto !important;
    width: 100vw !important;
    position: fixed;
  }
}

@media (max-width: 991.98px) {
  .header_sec.scroll .search_block {
    top: 61px;
  }
}

@media (max-width: 991.98px) {
  .header_sec.scroll .search_block.active {
    top: 61px !important;
  }
}

/* top*/
.ico {
  display: flex;
  position: relative;
}

.ico.ico-menu {
  width: 20px;
  height: 20px;
}

.ico.ico-menu:before {
  display: block;
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='3' y1='5.5' x2='17' y2='5.5' stroke='white'/%3E%3Cline x1='3' y1='9.5' x2='17' y2='9.5' stroke='white'/%3E%3Cline x1='3' y1='13.5' x2='17' y2='13.5' stroke='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.ico.ico-menu:after {
  display: block;
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='4.69625' y1='15.0175' x2='15.4384' y2='4.27535' stroke='white'/%3E%3Cline x1='4.60355' y1='4.31905' x2='15.3021' y2='15.0176' stroke='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: 0;
}

.fa-menu {
  width: 2rem;
  height: 0.9rem;
}

@media (max-width: 1399.98px) {
  .fa-menu {
    width: 20px;
    height: 9px;
  }
}

.fa-menu:before {
  display: flex;
  content: "";
  width: 2rem;
  height: 0.9rem;
  transition: all 0.25s ease;
  background-image: url(../img/icons/menu.svg);
  background-repeat: no-repeat;
}

@media (max-width: 1399.98px) {
  .fa-menu:before {
    width: 20px;
    height: 9px;
  }
}

.fi-phone-top {
  width: 16px;
  height: 16px;
  position: relative;
  transition: all 0.25s ease;
}

.fi-phone-top:before {
  display: block;
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.6667 11.28V13.28C14.6674 13.4657 14.6294 13.6494 14.555 13.8196C14.4806 13.9897 14.3716 14.1424 14.2347 14.2679C14.0979 14.3934 13.9364 14.489 13.7605 14.5485C13.5846 14.608 13.3983 14.63 13.2134 14.6133C11.1619 14.3904 9.19135 13.6894 7.46002 12.5667C5.84924 11.5431 4.48358 10.1774 3.46002 8.56667C2.33334 6.82747 1.63218 4.84733 1.41335 2.78667C1.3967 2.60231 1.4186 2.41651 1.47769 2.24108C1.53677 2.06566 1.63174 1.90446 1.75653 1.76775C1.88133 1.63103 2.03322 1.5218 2.20255 1.44701C2.37187 1.37222 2.55492 1.33351 2.74002 1.33333H4.74002C5.06356 1.33015 5.37722 1.44472 5.62253 1.65569C5.86784 1.86666 6.02807 2.15963 6.07335 2.48C6.15777 3.12004 6.31432 3.74848 6.54002 4.35333C6.62972 4.59195 6.64913 4.85127 6.59596 5.10059C6.54279 5.3499 6.41926 5.57874 6.24002 5.76L5.39336 6.60666C6.34239 8.2757 7.72432 9.65763 9.39336 10.6067L10.24 9.76C10.4213 9.58076 10.6501 9.45723 10.8994 9.40406C11.1487 9.35089 11.4081 9.3703 11.6467 9.46C12.2515 9.6857 12.88 9.84225 13.52 9.92667C13.8439 9.97235 14.1396 10.1355 14.351 10.385C14.5625 10.6345 14.6748 10.953 14.6667 11.28Z' stroke='%239BB4C4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.fi-help-circle {
  width: 16px;
  height: 16px;
  position: relative;
  transition: all 0.25s ease;
}

.fi-help-circle:before {
  display: block;
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00016 14.6666C11.6821 14.6666 14.6668 11.6818 14.6668 7.99992C14.6668 4.31802 11.6821 1.33325 8.00016 1.33325C4.31826 1.33325 1.3335 4.31802 1.3335 7.99992C1.3335 11.6818 4.31826 14.6666 8.00016 14.6666Z' stroke='%2383B4FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 11.3333H8.00667' stroke='%2383B4FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.06006 5.99989C6.21679 5.55434 6.52616 5.17863 6.93336 4.93931C7.34056 4.7 7.81932 4.61252 8.28484 4.69237C8.75036 4.77222 9.1726 5.01424 9.47678 5.37558C9.78095 5.73691 9.94743 6.19424 9.94672 6.66656C9.94672 7.99989 7.94672 8.66656 7.94672 8.66656' stroke='%2383B4FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fi-help-grey {
  width: 16px;
  height: 16px;
  position: relative;
  transition: all 0.25s ease;
}

.fi-help-grey:before {
  display: block;
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00001 14.6666C11.6819 14.6666 14.6667 11.6819 14.6667 7.99998C14.6667 4.31808 11.6819 1.33331 8.00001 1.33331C4.31811 1.33331 1.33334 4.31808 1.33334 7.99998C1.33334 11.6819 4.31811 14.6666 8.00001 14.6666Z' fill='white' stroke='%23708999' stroke-width='0.666667' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 11.3333H8.00667' stroke='%23708999' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.06 6.00001C6.21673 5.55446 6.5261 5.17875 6.9333 4.93944C7.3405 4.70012 7.81926 4.61264 8.28478 4.69249C8.7503 4.77234 9.17254 5.01436 9.47672 5.3757C9.78089 5.73703 9.94737 6.19436 9.94666 6.66668C9.94666 8.00001 7.94666 8.66668 7.94666 8.66668' stroke='%23708999' stroke-width='0.666667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fi-arrow-white {
  width: 13px;
  height: 13px;
  position: relative;
  transition: all 0.25s ease;
}

.fi-arrow-white:before {
  display: block;
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00001 14.6666C11.6819 14.6666 14.6667 11.6819 14.6667 7.99998C14.6667 4.31808 11.6819 1.33331 8.00001 1.33331C4.31811 1.33331 1.33334 4.31808 1.33334 7.99998C1.33334 11.6819 4.31811 14.6666 8.00001 14.6666Z' fill='white' stroke='%23708999' stroke-width='0.666667' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 11.3333H8.00667' stroke='%23708999' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.06 6.00001C6.21673 5.55446 6.5261 5.17875 6.9333 4.93944C7.3405 4.70012 7.81926 4.61264 8.28478 4.69249C8.7503 4.77234 9.17254 5.01436 9.47672 5.3757C9.78089 5.73703 9.94737 6.19436 9.94666 6.66668C9.94666 8.00001 7.94666 8.66668 7.94666 8.66668' stroke='%23708999' stroke-width='0.666667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* up */
.fi-upp:before {
  content: "";
  width: 24px;
  height: 56px;
  background-repeat: no-repeat;
  display: inline-flex;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='56' viewBox='0 0 24 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 12L12 5M12 5L5 12M12 5V54.5' stroke='%236F7482' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.fi-up:before {
  content: "";
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  display: inline-flex;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath id='Union' fill-rule='evenodd' clip-rule='evenodd' d='M11.6172 4.07588C11.4993 4.12468 11.3888 4.19702 11.2929 4.29289L7.29289 8.29289C6.90237 8.68342 6.90237 9.31658 7.29289 9.70711C7.68342 10.0976 8.31658 10.0976 8.70711 9.70711L11 7.41421V19C11 19.5523 11.4477 20 12 20C12.5523 20 13 19.5523 13 19V7.41421L15.2929 9.70711C15.6834 10.0976 16.3166 10.0976 16.7071 9.70711C17.0976 9.31658 17.0976 8.68342 16.7071 8.29289L12.7075 4.29329L12.7071 4.29289M12.705 4.29078C12.5242 4.11106 12.2751 4 12 4C11.8644 4 11.7351 4.02699 11.6172 4.07588' fill='%2315AC4E'/%3E%3C/svg%3E");
}

.fi-down:before {
  content: "";
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  display: inline-flex;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath id='Union' fill-rule='evenodd' clip-rule='evenodd' d='M12.3828 19.9241C12.5007 19.8753 12.6112 19.803 12.7071 19.7071L16.7071 15.7071C17.0976 15.3166 17.0976 14.6834 16.7071 14.2929C16.3166 13.9024 15.6834 13.9024 15.2929 14.2929L13 16.5858L13 5C13 4.44772 12.5523 4 12 4C11.4477 4 11 4.44772 11 5L11 16.5858L8.70711 14.2929C8.31658 13.9024 7.68342 13.9024 7.29289 14.2929C6.90237 14.6834 6.90237 15.3166 7.29289 15.7071L11.2925 19.7067L11.2929 19.7071M11.295 19.7092C11.4758 19.8889 11.7249 20 12 20C12.1356 20 12.2649 19.973 12.3828 19.9241' fill='%23EC0000'/%3E%3C/svg%3E");
}

.fi-zero:before {
  content: "";
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  display: inline-flex;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath id='Union' d='M6 13C5.44772 13 5 12.5523 5 12C5 11.4477 5.44772 11 6 11L18 11C18.5523 11 19 11.4477 19 12C19 12.5523 18.5523 13 18 13L6 13Z' fill='%236B6285'/%3E%3C/svg%3E");
}

/* other */
.fi-arrow:before {
  content: "";
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  display: inline-flex;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.99996 12.6667L12.6666 8.00002M12.6666 8.00002L7.99996 3.33335M12.6666 8.00002L3.33329 8.00002' stroke='%2328B289' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fi-arrow-grey:before {
  content: "";
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  display: inline-flex;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.99996 12.6667L12.6666 8.00002M12.6666 8.00002L7.99996 3.33335M12.6666 8.00002L3.33329 8.00002' stroke='%238B8B8B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fi-copy:before {
  content: "";
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  display: inline-flex;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.2422 15H5.27344C4.30408 15 3.51562 14.2115 3.51562 13.2422V5.27344C3.51562 4.30408 4.30408 3.51562 5.27344 3.51562H13.2422C14.2115 3.51562 15 4.30408 15 5.27344V13.2422C15 14.2115 14.2115 15 13.2422 15ZM5.27344 4.6875C4.95035 4.6875 4.6875 4.95035 4.6875 5.27344V13.2422C4.6875 13.5653 4.95035 13.8281 5.27344 13.8281H13.2422C13.5653 13.8281 13.8281 13.5653 13.8281 13.2422V5.27344C13.8281 4.95035 13.5653 4.6875 13.2422 4.6875H5.27344ZM2.34375 10.3125H1.75781C1.43472 10.3125 1.17188 10.0497 1.17188 9.72656V1.75781C1.17188 1.43472 1.43472 1.17188 1.75781 1.17188H9.72656C10.0497 1.17188 10.3125 1.43472 10.3125 1.75781V2.31445H11.4844V1.75781C11.4844 0.788452 10.6959 0 9.72656 0H1.75781C0.788452 0 0 0.788452 0 1.75781V9.72656C0 10.6959 0.788452 11.4844 1.75781 11.4844H2.34375V10.3125Z' fill='%236F7482'/%3E%3C/svg%3E");
}

.fi-like:before {
  content: "";
  width: 21px;
  height: 20px;
  background-repeat: no-repeat;
  display: inline-flex;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath id='icon' fill-rule='evenodd' clip-rule='evenodd' d='M10.8699 1.12832C10.2061 0.796431 9.40104 1.11258 9.14047 1.80745L7.00575 7.50003L3.83325 7.50003C2.45254 7.50003 1.33325 8.61931 1.33325 10V16.6667C1.33325 18.0474 2.45254 19.1667 3.83325 19.1667H15.8114C16.9955 19.1667 18.0173 18.3359 18.2588 17.1766L19.6477 10.5099C19.9711 8.95746 18.786 7.50003 17.2002 7.50003H12.9061L13.5215 5.65385C14.0461 4.08015 13.3336 2.36019 11.8499 1.61834L10.8699 1.12832ZM8.5663 8.08523L10.5385 2.82601L11.1046 3.10905C11.8464 3.47998 12.2026 4.33995 11.9404 5.12681L11.325 6.97298C10.9652 8.0522 11.7685 9.16669 12.9061 9.16669H17.2002C17.7288 9.16669 18.1239 9.6525 18.0161 10.17L17.8779 10.8334H14.6666C14.2063 10.8334 13.8333 11.2064 13.8333 11.6667C13.8333 12.1269 14.2063 12.5 14.6666 12.5H17.5306L17.1834 14.1667H14.6666C14.2063 14.1667 13.8333 14.5398 13.8333 15C13.8333 15.4603 14.2063 15.8334 14.6666 15.8334H16.8362L16.6272 16.8367C16.5467 17.2231 16.2061 17.5 15.8114 17.5H7.16658V9.15895C7.79505 9.09824 8.34136 8.68508 8.5663 8.08523ZM5.49992 9.16669H3.83325C3.37301 9.16669 2.99992 9.53979 2.99992 10V16.6667C2.99992 17.1269 3.37301 17.5 3.83325 17.5H5.49992V9.16669Z' fill='%230973F0'/%3E%3C/svg%3E");
}

.fi-dislike:before {
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  display: inline-flex;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath id='icon' fill-rule='evenodd' clip-rule='evenodd' d='M9.63009 18.8717C10.2939 19.2036 11.0989 18.8874 11.3595 18.1926L13.4942 12.5L16.6667 12.5C18.0474 12.5 19.1667 11.3807 19.1667 9.99998L19.1667 3.33331C19.1667 1.9526 18.0474 0.833313 16.6667 0.833313L4.68863 0.833314C3.50444 0.833314 2.4827 1.66413 2.24118 2.82343L0.852288 9.4901C0.52886 11.0426 1.71396 12.5 3.29974 12.5H7.59388L6.97849 14.3462C6.45392 15.9199 7.16635 17.6398 8.65005 18.3817L9.63009 18.8717ZM11.9337 11.9148L9.96148 17.174L9.39541 16.891C8.65355 16.52 8.29734 15.6601 8.55962 14.8732L9.17502 13.027C9.53475 11.9478 8.73147 10.8333 7.59388 10.8333H3.29974C2.77114 10.8333 2.37611 10.3475 2.48392 9.83002L2.62212 9.16665H5.8334C6.29363 9.16665 6.66673 8.79356 6.66673 8.33332C6.66673 7.87308 6.29363 7.49999 5.8334 7.49999L2.96934 7.49999L3.31657 5.83332L5.8334 5.83332C6.29363 5.83332 6.66673 5.46022 6.66673 4.99999C6.66673 4.53975 6.29363 4.16665 5.8334 4.16665L3.66379 4.16665L3.87281 3.16335C3.95332 2.77692 4.2939 2.49998 4.68863 2.49998L13.3334 2.49998L13.3334 10.8411C12.7049 10.9018 12.1586 11.3149 11.9337 11.9148ZM15.0001 10.8333H16.6667C17.127 10.8333 17.5001 10.4602 17.5001 9.99998V3.33331C17.5001 2.87308 17.127 2.49998 16.6667 2.49998L15.0001 2.49998L15.0001 10.8333Z' fill='%23F00940'/%3E%3C/svg%3E");
}

.fi-like-grey:before {
  content: "";
  width: 24px;
  height: 25px;
  background-repeat: no-repeat;
  display: inline-flex;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.444 1.85396C11.6474 1.45569 10.6814 1.83507 10.3687 2.66892L7.807 9.50001L4 9.50001C2.34315 9.50001 1 10.8432 1 12.5V20.5C1 22.1569 2.34315 23.5 4 23.5H18.3737C19.7948 23.5 21.0208 22.503 21.3107 21.1119L22.9773 13.1119C23.3654 11.2489 21.9433 9.50001 20.0404 9.50001H14.8874L15.6259 7.2846C16.2554 5.39615 15.4005 3.3322 13.62 2.44198L12.444 1.85396ZM9.67966 10.2023L12.0463 3.89119L12.7256 4.23083C13.6158 4.67595 14.0433 5.70792 13.7285 6.65215L12.9901 8.86755C12.5584 10.1626 13.5223 11.5 14.8874 11.5H20.0404C20.6747 11.5 21.1487 12.083 21.0194 12.704L20.8535 13.5H17C16.4477 13.5 16 13.9477 16 14.5C16 15.0523 16.4477 15.5 17 15.5H20.4369L20.0202 17.5H17C16.4477 17.5 16 17.9477 16 18.5C16 19.0523 16.4477 19.5 17 19.5H19.6035L19.3527 20.704C19.2561 21.1677 18.8474 21.5 18.3737 21.5H8V11.4907C8.75416 11.4179 9.40973 10.9221 9.67966 10.2023ZM6 11.5H4C3.44772 11.5 3 11.9477 3 12.5V20.5C3 21.0523 3.44772 21.5 4 21.5H6V11.5Z' fill='%236B6285'/%3E%3C/svg%3E");
}

.fi-dislike-grey:before {
  content: "";
  width: 24px;
  height: 25px;
  background-repeat: no-repeat;
  display: inline-flex;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.444 23.146C11.6474 23.5443 10.6814 23.1649 10.3687 22.3311L7.807 15.5L4 15.5C2.34315 15.5 1 14.1568 1 12.5V4.49999C1 2.84314 2.34315 1.49999 4 1.49999H18.3737C19.7948 1.49999 21.0208 2.49697 21.3107 3.88813L22.9773 11.8881C23.3654 13.7511 21.9433 15.5 20.0404 15.5H14.8874L15.6259 17.7154C16.2554 19.6038 15.4005 21.6678 13.62 22.558L12.444 23.146ZM9.67966 14.7977L12.0463 21.1088L12.7256 20.7692C13.6158 20.3241 14.0433 19.2921 13.7285 18.3479L12.9901 16.1324C12.5584 14.8374 13.5223 13.5 14.8874 13.5H20.0404C20.6747 13.5 21.1487 12.917 21.0194 12.296L20.8535 11.5H17C16.4477 11.5 16 11.0523 16 10.5C16 9.94772 16.4477 9.5 17 9.5H20.4369L20.0202 7.5H17C16.4477 7.5 16 7.05228 16 6.5C16 5.94772 16.4477 5.5 17 5.5H19.6035L19.3527 4.29604C19.2561 3.83232 18.8474 3.49999 18.3737 3.49999H8V13.5093C8.75416 13.5821 9.40973 14.0779 9.67966 14.7977ZM6 13.5H4C3.44772 13.5 3 13.0523 3 12.5V4.49999C3 3.94771 3.44772 3.49999 4 3.49999H6V13.5Z' fill='%236B6285'/%3E%3C/svg%3E");
}

/* menu__list */
.fa-search {
  width: 13px;
  height: 13px;
  position: relative;
}

@media (min-width: 1400px) {
  .fa-search {
    width: 1.3rem;
    height: 1.3rem;
  }
}

.fa-search:before {
  display: block;
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  background: url(../img/icons/search.svg) no-repeat;
  background-size: 100%;
  transition: all 0.25s ease;
  left: 0;
  top: 0;
  text-indent: -9999px;
  overflow: hidden;
}

@media (min-width: 1400px) {
  .fa-search:before {
    width: 1.3rem;
    height: 1.3rem;
    background-size: contain;
  }
}

.fa-profile {
  width: 12px;
  height: 14px;
  position: relative;
}

@media (min-width: 1400px) {
  .fa-profile {
    width: 1.2rem;
    height: 1.4rem;
  }
}

.fa-profile:before {
  display: block;
  position: absolute;
  content: "";
  width: 1.2rem;
  height: 1.4rem;
  background: url(../img/icons/profile.svg) no-repeat;
  background-size: 100%;
  transition: all 0.25s ease;
  left: 0;
  top: 0;
  text-indent: -9999px;
  overflow: hidden;
}

@media (max-width: 1399.98px) {
  .fa-profile:before {
    width: 12px;
    height: 14px;
  }
}

.fa-wishlist {
  width: 0.9rem;
  height: 1.3rem;
  position: relative;
}

@media (max-width: 1399.98px) {
  .fa-wishlist {
    width: 9px;
    height: 13px;
  }
}

.fa-wishlist:before {
  content: "";
  background: url(../img/icons/fav.svg) no-repeat;
  transition: all 0.25s ease;
  overflow: hidden;
  width: 0.9rem;
  height: 1.3rem;
}

@media (max-width: 1399.98px) {
  .fa-wishlist:before {
    width: 9px;
    height: 13px;
  }
}

.fa-history {
  width: 16px;
  height: 20px;
  position: relative;
}

.fa-history:before {
  display: block;
  position: absolute;
  content: "";
  width: 16px;
  height: 20px;
  background: url(../img/icons/history.png) no-repeat;
  transition: all 0.25s ease;
  left: 0;
  top: 0;
  text-indent: -9999px;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .fa-history:before {
    background: url(../img/icons/list.svg) no-repeat;
  }
}

.fa-data {
  width: 20px;
  height: 17px;
  position: relative;
}

.fa-data:before {
  display: block;
  position: absolute;
  content: "";
  width: 20px;
  height: 17px;
  background: url(../img/icons/data.png) no-repeat;
  transition: all 0.25s ease;
  left: 0;
  top: 0;
  text-indent: -9999px;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .fa-data:before {
    background: url(../img/icons/personal.svg) no-repeat;
  }
}

.fa-exit {
  width: 17px;
  height: 20px;
  position: relative;
}

.fa-exit:before {
  display: block;
  position: absolute;
  content: "";
  width: 17px;
  height: 20px;
  background: url(../img/icons/exit.png) no-repeat;
  transition: all 0.25s ease;
  left: 0;
  top: 0;
  text-indent: -9999px;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .fa-exit:before {
    background: url(../img/icons/exit.svg) no-repeat;
  }
}

/* order */
.fa-bow {
  position: relative;
}

.fa-bow:before {
  content: "";
  display: inline-flex;
  width: 22px;
  height: 16px;
  background: url(../img/icons/bow.png) no-repeat;
}

@media (max-width: 991.98px) {
  .fa-bow:before {
    background: url(../img/icons/bow.svg) no-repeat;
  }
}

.fa-auto01 {
  position: relative;
}

.fa-auto01:before {
  content: "";
  display: inline-flex;
  width: 24px;
  height: 16px;
  background: url(../img/icons/auto01.png) no-repeat;
}

@media (max-width: 991.98px) {
  .fa-auto01:before {
    background: url(../img/icons/scooter.svg) no-repeat;
  }
}

.fa-auto02 {
  position: relative;
}

.fa-auto02:before {
  content: "";
  display: inline-flex;
  width: 26px;
  height: 15px;
  background: url(../img/icons/auto02.png) no-repeat;
}

@media (max-width: 991.98px) {
  .fa-auto02:before {
    background: url(../img/icons/car.svg) no-repeat;
  }
}

.fa-auto03 {
  position: relative;
}

.fa-auto03:before {
  content: "";
  display: inline-flex;
  width: 22px;
  height: 19px;
  background: url(../img/icons/auto03.png) no-repeat;
}

@media (max-width: 991.98px) {
  .fa-auto03:before {
    background: url(../img/icons/truck.svg) no-repeat;
  }
}

.fa-auto04 {
  position: relative;
}

.fa-auto04:before {
  content: "";
  display: inline-flex;
  width: 22px;
  height: 21px;
  background: url(../img/icons/auto04.png) no-repeat;
}

@media (max-width: 991.98px) {
  .fa-auto04:before {
    background: url(../img/icons/plane.svg) no-repeat;
  }
}

.fa-auto05 {
  position: relative;
}

.fa-auto05:before {
  content: "";
  display: inline-flex;
  width: 19px;
  height: 19px;
  background: url(../img/icons/auto05.png) no-repeat;
}

@media (max-width: 991.98px) {
  .fa-auto05:before {
    background: url(../img/icons/world.svg) no-repeat;
  }
}

.fa-money {
  position: relative;
}

.fa-money:before {
  content: "";
  display: inline-flex;
  width: 22px;
  height: 16px;
  background: url(../img/icons/money.png) no-repeat;
}

@media (max-width: 991.98px) {
  .fa-money:before {
    background: url(../img/icons/money.svg) no-repeat;
  }
}

.fa-card {
  position: relative;
}

.fa-card:before {
  content: "";
  display: inline-flex;
  width: 22px;
  height: 17px;
  background: url(../img/icons/card.png) no-repeat;
}

@media (max-width: 991.98px) {
  .fa-card:before {
    background: url(../img/icons/card.svg) no-repeat;
  }
}

.active .fa-profile:before {
  background: url(../img/icons/profile-act.png) no-repeat;
}

.fi-filter {
  width: 1.2rem;
  height: 1.2rem;
  position: relative;
  border-top: 0.1rem solid #111111;
}

.fi-filter:before {
  display: block;
  position: absolute;
  content: "";
  top: 0.3rem;
  width: 0.8rem;
  height: 0.1rem;
  background: #111111;
  left: 50%;
  transform: translateX(-50%);
}

.fi-filter:after {
  display: block;
  position: absolute;
  content: "";
  top: 0.7rem;
  width: 0.4rem;
  height: 0.1rem;
  background: #111111;
  left: 50%;
  transform: translateX(-50%);
}

.fa-basket {
  width: 13px;
  height: 13px;
  position: relative;
}

@media (min-width: 1400px) {
  .fa-basket {
    width: 1.3rem;
    height: 1.3rem;
  }
}

.fa-basket:before {
  display: block;
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  background: url(../img/icons/cart.svg) no-repeat;
  background-size: 100%;
  transition: all 0.25s ease;
  left: 0;
  top: 0;
  text-indent: -9999px;
  overflow: hidden;
}

@media (min-width: 1400px) {
  .fa-basket:before {
    width: 1.3rem;
    height: 1.3rem;
    background-size: contain;
  }
}

/* variable */
.fa-ico {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.fa-circle {
  background: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
  position: relative;
}

.fa-circle:after {
  display: block;
  position: absolute;
  content: "";
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 4px solid #d7f4eb;
  transition: all 0.25s ease;
  opacity: 0;
  border-radius: 50%;
}

.fa-circle-grey {
  background: #f3f3f3;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
  position: relative;
}

.fa-circle-grey:after {
  display: block;
  position: absolute;
  content: "";
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 4px solid #d7f4eb;
  transition: all 0.25s ease;
  opacity: 0;
  border-radius: 50%;
}

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

.arrow .fa-circle,
.arrow .fa-circle-grey {
  margin-left: 8px;
}

.arrow:hover .fa-circle,
.arrow:hover .fa-circle-grey {
  background: #111111;
}

.arrow:hover .fa-circle:after,
.arrow:hover .fa-circle-grey:after {
  opacity: 1;
}

.arrow:hover .fa-circle.fi-arrow:before,
.arrow:hover .fa-circle.fi-arrow-grey:before,
.arrow:hover .fa-circle-grey.fi-arrow:before,
.arrow:hover .fa-circle-grey.fi-arrow-grey:before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.99996 12.6667L12.6666 8.00002M12.6666 8.00002L7.99996 3.33335M12.6666 8.00002L3.33329 8.00002' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* mobmenu */
.fi-home {
  width: 19px;
  height: 18px;
  position: relative;
  transition: all 0.25s ease;
}

.fi-home:before {
  display: block;
  position: absolute;
  content: "";
  width: 19px;
  height: 18px;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.47816C3 7.86098 3.28495 7.27837 3.77212 6.89945L9.27212 2.62167C9.99434 2.05995 11.0057 2.05995 11.7279 2.62168L17.2279 6.89945C17.7151 7.27837 18 7.86098 18 8.47816V16.6667C18 17.1087 17.8244 17.5326 17.5118 17.8452C17.1993 18.1577 16.7754 18.3333 16.3333 18.3333H4.66667C4.22464 18.3333 3.80072 18.1577 3.48816 17.8452C3.17559 17.5326 3 17.1087 3 16.6667V8.47816Z' stroke='%23111111' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 100%;
}

.fi-phone {
  width: 20px;
  height: 20px;
  position: relative;
  transition: all 0.25s ease;
}

.fi-phone:before {
  display: block;
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.3333 14.1V16.6C18.3343 16.8321 18.2867 17.0618 18.1938 17.2745C18.1008 17.4871 17.9644 17.678 17.7934 17.8349C17.6224 17.9918 17.4205 18.1112 17.2006 18.1856C16.9808 18.2599 16.7478 18.2876 16.5167 18.2667C13.9524 17.988 11.4892 17.1118 9.32501 15.7083C7.31153 14.4289 5.60445 12.7218 4.32501 10.7083C2.91666 8.53435 2.04021 6.05917 1.76667 3.48334C1.74585 3.2529 1.77324 3.02064 1.84709 2.80136C1.92095 2.58208 2.03965 2.38058 2.19565 2.20969C2.35164 2.0388 2.54151 1.90227 2.75317 1.80878C2.96482 1.71529 3.19362 1.66689 3.42501 1.66668H5.92501C6.32943 1.6627 6.7215 1.80591 7.02814 2.06962C7.33478 2.33333 7.53507 2.69955 7.59167 3.10001C7.69719 3.90006 7.89288 4.68562 8.17501 5.44168C8.28713 5.73995 8.31139 6.0641 8.24493 6.37574C8.17847 6.68738 8.02406 6.97343 7.80001 7.20001L6.74167 8.25834C7.92797 10.3446 9.65539 12.072 11.7417 13.2583L12.8 12.2C13.0266 11.976 13.3126 11.8215 13.6243 11.7551C13.9359 11.6886 14.2601 11.7129 14.5583 11.825C15.3144 12.1071 16.1 12.3028 16.9 12.4083C17.3048 12.4655 17.6745 12.6693 17.9388 12.9813C18.2031 13.2932 18.3435 13.6913 18.3333 14.1Z' stroke='%239E9E9E' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.fi-phone:after {
  display: block;
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  transition: all 0.25s ease;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.3333 14.1V16.6C18.3343 16.8321 18.2867 17.0618 18.1938 17.2745C18.1008 17.4871 17.9644 17.678 17.7934 17.8349C17.6224 17.9918 17.4205 18.1112 17.2006 18.1856C16.9808 18.2599 16.7478 18.2876 16.5167 18.2667C13.9524 17.988 11.4892 17.1118 9.32501 15.7083C7.31153 14.4289 5.60445 12.7218 4.32501 10.7083C2.91666 8.53435 2.04021 6.05917 1.76667 3.48334C1.74585 3.2529 1.77324 3.02064 1.84709 2.80136C1.92095 2.58208 2.03965 2.38058 2.19565 2.20969C2.35164 2.0388 2.54151 1.90227 2.75317 1.80878C2.96482 1.71529 3.19362 1.66689 3.42501 1.66668H5.92501C6.32943 1.6627 6.7215 1.80591 7.02814 2.06962C7.33478 2.33333 7.53507 2.69955 7.59167 3.10001C7.69719 3.90006 7.89288 4.68562 8.17501 5.44168C8.28713 5.73995 8.31139 6.0641 8.24493 6.37574C8.17847 6.68738 8.02406 6.97343 7.80001 7.20001L6.74167 8.25834C7.92797 10.3446 9.65539 12.072 11.7417 13.2583L12.8 12.2C13.0266 11.976 13.3126 11.8215 13.6243 11.7551C13.9359 11.6886 14.2601 11.7129 14.5583 11.825C15.3144 12.1071 16.1 12.3028 16.9 12.4083C17.3048 12.4655 17.6745 12.6693 17.9388 12.9813C18.2031 13.2932 18.3435 13.6913 18.3333 14.1Z' stroke='%232353FF' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.fi-shopping-cart {
  width: 21px;
  height: 20px;
  position: relative;
  transition: all 0.25s ease;
}

.fi-shopping-cart:before {
  display: block;
  position: absolute;
  content: "";
  width: 21px;
  height: 20px;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_22_932)'%3E%3Cpath d='M17.1667 18.8333C17.903 18.8333 18.5 18.2364 18.5 17.5C18.5 16.7636 17.903 16.1667 17.1667 16.1667C16.4303 16.1667 15.8333 16.7636 15.8333 17.5C15.8333 18.2364 16.4303 18.8333 17.1667 18.8333Z' stroke='%239E9E9E' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 18.8333C8.73638 18.8333 9.33333 18.2364 9.33333 17.5C9.33333 16.7636 8.73638 16.1667 8 16.1667C7.26362 16.1667 6.66667 16.7636 6.66667 17.5C6.66667 18.2364 7.26362 18.8333 8 18.8333Z' stroke='%239E9E9E' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M1.33333 0.833344H4.66667L6.9 11.9917C6.9762 12.3753 7.18492 12.72 7.48962 12.9653C7.79432 13.2105 8.17558 13.3408 8.56666 13.3333H16.6667C17.0577 13.3408 17.439 13.2105 17.7437 12.9653C18.0484 12.72 18.2571 12.3753 18.3333 11.9917L19.6667 5.00001H5.5' stroke='%239E9E9E' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_22_932'%3E%3Crect width='20' height='20' fill='white' transform='translate(0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.fi-catalog {
  width: 18px;
  height: 18px;
  position: relative;
  transition: all 0.25s ease;
}

.fi-catalog:before {
  display: block;
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.6667 1.66666H5C4.55797 1.66666 4.13405 1.84225 3.82149 2.15481C3.50893 2.46737 3.33334 2.8913 3.33334 3.33332V16.6667C3.33334 17.1087 3.50893 17.5326 3.82149 17.8452C4.13405 18.1577 4.55797 18.3333 5 18.3333H15C15.442 18.3333 15.866 18.1577 16.1785 17.8452C16.4911 17.5326 16.6667 17.1087 16.6667 16.6667V6.66666L11.6667 1.66666Z' stroke='%23111111' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.3333 14.1667H6.66666' stroke='%23111111' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.3333 10.8333H6.66666' stroke='%23111111' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.33333 7.5H7.5H6.66666' stroke='%23111111' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.6667 1.66666V6.66666H16.6667' stroke='%23111111' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 100%;
}

.fi-catalog:after {
  display: block;
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  transition: all 0.25s ease;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.6667 1.66666H5C4.55797 1.66666 4.13405 1.84225 3.82149 2.15481C3.50893 2.46737 3.33334 2.8913 3.33334 3.33332V16.6667C3.33334 17.1087 3.50893 17.5326 3.82149 17.8452C4.13405 18.1577 4.55797 18.3333 5 18.3333H15C15.442 18.3333 15.866 18.1577 16.1785 17.8452C16.4911 17.5326 16.6667 17.1087 16.6667 16.6667V6.66666L11.6667 1.66666Z' stroke='%232353FF' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.3333 14.1667H6.66666' stroke='%232353FF' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.3333 10.8333H6.66666' stroke='%232353FF' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.33333 7.5H7.5H6.66666' stroke='%232353FF' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.6667 1.66666V6.66666H16.6667' stroke='%232353FF' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fi-user {
  width: 21px;
  height: 20px;
  position: relative;
  transition: all 0.25s ease;
}

.fi-user:before {
  display: block;
  position: absolute;
  content: "";
  width: 21px;
  height: 20px;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.1667 17.5V15.8333C17.1667 14.9493 16.8155 14.1014 16.1904 13.4763C15.5652 12.8512 14.7174 12.5 13.8333 12.5H7.16667C6.28261 12.5 5.43477 12.8512 4.80964 13.4763C4.18452 14.1014 3.83333 14.9493 3.83333 15.8333V17.5' stroke='%239E9E9E' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.5 9.16667C12.341 9.16667 13.8333 7.67428 13.8333 5.83333C13.8333 3.99238 12.341 2.5 10.5 2.5C8.65905 2.5 7.16667 3.99238 7.16667 5.83333C7.16667 7.67428 8.65905 9.16667 10.5 9.16667Z' stroke='%239E9E9E' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.fi-user:after {
  display: block;
  position: absolute;
  content: "";
  width: 21px;
  height: 20px;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  transition: all 0.25s ease;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.1667 17.5V15.8333C17.1667 14.9493 16.8155 14.1014 16.1904 13.4763C15.5652 12.8512 14.7174 12.5 13.8333 12.5H7.16667C6.28261 12.5 5.43477 12.8512 4.80964 13.4763C4.18452 14.1014 3.83333 14.9493 3.83333 15.8333V17.5' stroke='%232353FF' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.5 9.16667C12.341 9.16667 13.8333 7.67428 13.8333 5.83333C13.8333 3.99238 12.341 2.5 10.5 2.5C8.65905 2.5 7.16667 3.99238 7.16667 5.83333C7.16667 7.67428 8.65905 9.16667 10.5 9.16667Z' stroke='%232353FF' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.fa-info {
  position: relative;
  width: 20px;
  height: 20px;
}

.fa-info:before {
  content: "";
  display: inline-flex;
  width: 12px;
  height: 12px;
  background: url(../img/icons/info.png) no-repeat;
  transition: all 0.25s ease;
}

@media (max-width: 991.98px) {
  .fa-info:before {
    background: url(../img/icons/i.svg) no-repeat;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

.header_sec {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
  /*promo_line*/
}

.header_sec__inner {
  transition: all 0.3s ease;
  background-color: #fefdfa;
  box-sizing: border-box;
  padding: 0 4rem;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 1399.98px) {
  .header_sec__inner {
    padding: 0 40px;
  }
}

@media (max-width: 991.98px) {
  .header_sec__inner {
    padding: 0 17px;
  }
}

.header_sec__inner .row {
  height: 7rem;
  align-items: center;
}

@media (max-width: 1399.98px) {
  .header_sec__inner .row {
    height: 70px;
  }
}

.header_sec .promo_line {
  background-color: #111111;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1rem;
  height: 2.5rem;
  overflow: hidden;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
}

@media (max-width: 1399.98px) {
  .header_sec .promo_line {
    font-size: 10px;
    height: 25px;
  }
}

.header_sec .promo_line .scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}

.header_sec .promo_line .scrollbar .track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}

.header_sec .promo_line .scrollbar .track .thumb {
  height: 1px;
}

.header_sec .promo_line .viewport {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.header_sec .promo_line .viewport .overview {
  position: relative;
  height: 2.5rem;
  display: flex;
  align-items: center;
}

@media (max-width: 1399.98px) {
  .header_sec .promo_line .viewport .overview {
    height: 25px;
  }
}

.header_sec .promo_line .viewport .overview div {
  text-align: center;
  white-space: nowrap;
}

.header_sec .promo_line .viewport .overview div.container {
  width: auto;
  max-width: inherit;
  box-sizing: border-box;
}

.header_sec .promo_line .container {
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .header_sec .promo_line .container {
    animation: slideIn 20s infinite linear;
  }
}

.header_sec .promo_line a {
  color: inherit;
}

.header_sec .promo_line a:hover {
  color: inherit;
}

.header_sec.body__main {
  position: absolute;
  z-index: 5;
}

.header_sec.body__main .header_sec__inner {
  background-color: transparent;
  transition: all 0.6s ease;
}

.header_sec.body__main:hover .header_sec__inner {
  background-color: #fefdfa;
}

.header_sec.body__main:hover .header_sec__inner .logo,
.header_sec.body__main:hover .header_sec__inner .menu_list li>a,
.header_sec.body__main:hover .header_sec__inner .menu_list li>.fa-ico,
.header_sec.body__main:hover .header_sec__inner .menu_btn {
  filter: invert(0);
  transition: all 0.4s ease;
}

.header_sec.body__main:not(.scroll):not(:hover) {
  background-color: transparent;
}

.header_sec.body__main:not(.scroll):not(:hover) .header_sec__inner .logo,
.header_sec.body__main:not(.scroll):not(:hover) .header_sec__inner .menu_list li>a,
.header_sec.body__main:not(.scroll):not(:hover) .header_sec__inner .menu_list li>.fa-ico,
.header_sec.body__main:not(.scroll):not(:hover) .header_sec__inner .menu_btn {
  filter: invert(100%) sepia(7%) saturate(23%) hue-rotate(236deg) brightness(106%) contrast(153%);
  transition: all 0.4s ease;
}

.header_sec.body__main+.header_pos {
  display: none;
}

.header_sec.scroll {
  position: fixed;
  z-index: 300;
  transform: translateY(-2.5rem);
}

@media (max-width: 1399.98px) {
  .header_sec.scroll {
    transform: translateY(-25px);
  }
}

.header_sec.scroll .header_sec__inner {
  z-index: 2;
  background-color: #fefdfa;
}

.header_sec.scroll+.header_pos {
  height: 95px;
}

@media (min-width: 1400px) {
  .header_sec.scroll+.header_pos {
    height: 9.5rem;
  }
}

.header_sec .logo_block {
  margin: auto;
  max-width: 100%;
}

.header_sec .logo {
  width: 19.9rem;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-image: url("/logo-dark.png");
  display: block;
  max-width: 100%;
}

@media (max-width: 1399.98px) {
  .header_sec .logo {
    width: 199px;
    height: 40px;
  }
}

.header_sec .header_col {
  margin: auto 0;
  display: flex;
  flex-wrap: wrap;
}

.header_sec .header_col:nth-of-type(3n) {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  box-shadow: 0px -2px 59px rgba(0, 0, 0, 0.05);
  z-index: 20;
  display: none;
  overflow: hidden;
  padding: 0 20px;
}

@media (max-width: 991.98px) {
  .mobile-bar {
    display: flex;
    align-content: center;
    align-items: center;
  }
}

.mobile-bar__list {
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 56px;
}

.mobile-bar__list .mobile-bar__item .bar-title {
  color: #111111;
  font-weight: 300;
  font-size: 10px;
  line-height: 15px;
  font-family: "Oceanic Gothic", sans-serif;
  display: block;
  cursor: pointer;
  text-align: center;
}

.mobile-bar__item {
  display: flex;
  align-content: center;
  align-items: center;
  box-sizing: border-box;
  color: #9e9e9e;
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  font-family: "Oceanic Gothic", sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.mobile-bar__item .active {
  color: #111111;
}

.mobile-bar__item .active .fi-phone:before {
  opacity: 0;
}

.mobile-bar__item .active .fi-phone:after {
  opacity: 1;
}

.mobile-bar__item .active .fa-ico:before {
  opacity: 0;
}

.mobile-bar__item .active .fa-ico:after {
  opacity: 1;
}

.mobile-bar__item .fa-ico {
  display: block;
  margin: 0 auto;
  position: relative;
}

.mobile-bar__item .fa-ico .counts {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 14px;
  background-color: #111111;
  color: #fff;
  padding: 0px 4px;
  border-radius: 10px;
  position: absolute;
  top: -2px;
  right: -50%;
  font-weight: 400;
  font-size: 9px;
  line-height: 13px;
  font-family: "Oceanic Gothic", sans-serif;
}

.mobile-bar__item:hover {
  color: #111111;
  text-decoration: none;
}

.footer_sec {
  padding-top: 25px;
  text-transform: uppercase;
}

@media (min-width: 1400px) {
  .footer_sec {
    padding-top: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .footer_sec.container-fluid {
    padding: 0;
  }
}

.footer_sec .footer_line {
  padding-top: 20px;
  padding-bottom: 24px;
}

@media (min-width: 1400px) {
  .footer_sec .footer_line {
    padding-top: 2rem;
    padding-bottom: 2.4rem;
  }
}

@media (max-width: 991.98px) {
  .footer_sec .footer_line {
    padding-top: 0px;
  }
}

.footer_sec .footer_line:first-of-type {
  padding-top: 15px;
}

@media (min-width: 1400px) {
  .footer_sec .footer_line:first-of-type {
    padding-top: 1.5rem;
  }
}

.footer_sec .footer_line .menu_list li {
  margin: 0 0 3px;
  font-weight: 400;
}

@media (min-width: 1400px) {
  .footer_sec .footer_line .menu_list li {
    margin-bottom: 0.3rem;
  }
}

@media (min-width: 992px) {
  .footer_sec .footer_line .menu_list li a:hover {
    text-decoration: underline;
  }
}

.footer_sec .footer_line.languages {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-top: -3px;
  padding-top: 0;
}

@media (min-width: 1400px) {
  .footer_sec .footer_line.languages {
    margin-top: -0.3rem;
  }
}

@media (min-width: 350px) {
  .footer_sec .footer_line.languages {
    order: 5;
    justify-content: flex-end;
  }
}

@media (max-width: 350px) {
  .footer_sec .footer_line.languages {
    width: 100%;
  }
}

.footer_sec .footer_line.languages span {
  width: 20px;
  text-align: center;
}

.footer_sec .footer_line.languages span:before {
  content: "/";
}

.footer_sec .footer_line.languages a {
  text-decoration: none;
  display: inline-flex;
  cursor: pointer;
  position: relative;
}

.footer_sec .footer_line.languages a:before {
  display: block;
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  height: 1px;
  width: 0;
  background-color: #111;
  transition: all 0.3s ease;
}

@media (min-width: 1400px) {
  .footer_sec .footer_line.languages a:before {
    bottom: -0.2rem;
    height: 0.1rem;
  }
}

.footer_sec .footer_line.languages a.active:before,
.footer_sec .footer_line.languages a:hover:before {
  width: 100%;
}

.footer_sec .footer_line .footer_col {
  display: flex;
  flex-wrap: wrap;
}

.footer_sec .footer_line.copyright {
  line-height: 1.2;
  position: relative;
  margin-top: -3px;
  padding-top: 0;
}

@media (min-width: 1400px) {
  .footer_sec .footer_line.copyright {
    margin-top: -0.3rem;
  }
}

@media (max-width: 350px) {
  .footer_sec .footer_line.copyright {
    width: 100%;
  }
}

.footer_sec .footer_line.copyright a {
  text-decoration: none;
  position: relative;
}

.footer_sec .footer_line.copyright a:hover::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background-color: #111;
}

@media (min-width: 1400px) {
  .footer_sec .footer_line.copyright a:hover::before {
    bottom: -0.4rem;
    height: 0.1rem;
  }
}

.footer_sec .footer_line .footer_col .copy_symbol {
  font-size: 21px;
  line-height: 18px;
  position: relative;
  bottom: -6px;
}

@media (min-width: 1400px) {
  .footer_sec .footer_line .footer_col .copy_symbol {
    font-size: 2.1rem;
    line-height: 1.8rem;
    bottom: -0.6rem;
  }
}

.footer_sec .footer_line .footer_col:nth-of-type(2n) {
  text-align: right;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer_sec .setting_block .select_block,
.footer_sec .setting_block .name {
  color: #111;
}

.footer_sec .setting_block .select_block .select_ver {
  color: #111;
}

.footer_sec .setting_block .select_block::before {
  background-color: #111;
}

.footer_sec .setting_block .select_list {
  background-color: #fefdfa;
}

.footer_sec .setting_block .select_block .cur_select::before {
  background-color: #111;
}

.footer_sec {
  position: relative;
  background-color: #fefdfa;
}

.footer_sec .footer_line.footer_logo .logo {
  width: 120px;
  height: 73px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("/logo-dark.png");
  display: block;
}

@media (min-width: 1400px) {
  .footer_sec .footer_line.footer_logo .logo {
    width: 5rem;
    height: 7.3rem;
  }
}

@media (max-width: 760px) {
  .footer_sec .footer_line .row {
    justify-content: space-between;
  }
}

@media (max-width: 760px) and (max-width: 480px) {
  .footer_sec .footer_line .row .col-12 {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.subscribe_block {
  position: relative;
}

.subscribe_block.active .sub_show {
  opacity: 0;
  visibility: hidden;
}

.subscribe_block.active .sub_block {
  display: block;
}

.sub_form .formField {
  position: relative;
}

.sub_form .formField .title {
  margin-bottom: 15px;
}

@media (min-width: 1400px) {
  .sub_form .formField .title {
    margin-bottom: 1.5rem;
  }
}

.sub_form .formField button {
  padding: 0;
  margin: 0;
  background: none;
  color: #111;
  text-transform: uppercase;
  border: none;
  position: absolute;
  right: 0;
  top: 0;
}

.sub_form input {
  width: 100%;
  padding: 0;
  height: 35px;
  border: none;
  border-color: #faf8f4;
  background-color: #faf8f4;
  color: #111;
  text-transform: uppercase;
  font-size: 12px;
  padding: 0 15px;
}

@media (min-width: 1400px) {
  .sub_form input {
    height: 3.5rem;
    font-size: 1.2rem;
    padding: 0 1.5rem;
  }
}

.sub_form input::-webkit-input-placeholder,
.sub_form input::-moz-placeholder,
.sub_form input:-ms-input-placeholder,
.sub_form input:-moz-placeholder {
  color: #111;
}

.subscribe_block .message_show {
  display: none;
}

.subscribe_block.closed .message_show {
  display: block;
  text-align: center;
}

.subscribe_block.closed .sub_form {
  display: none;
}

.menu_list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-size: 12px;
}

@media (min-width: 1400px) {
  .menu_list {
    font-size: 1.2rem;
  }
}

.menu_list li {
  margin-right: 30px;
  font-weight: 400;
}

@media (max-width: 1199.98px) {
  .menu_list li {
    margin-right: 20px;
  }
}

@media (min-width: 1400px) {
  .menu_list li {
    margin-right: 3rem;
  }
}

.menu_list .active {
  font-weight: 400;
}

.menu_list li a {
  text-decoration: none;
  display: inline-block;
  position: relative;
}

/* deckstop */
@media (min-width: 1200px) {
  .menu-main__links .menu_list li:first-child a:after {
    display: block;
    position: absolute;
    content: "";
    right: 0;
    left: -2.5rem;
    bottom: 0;
    top: 0;
  }
}

.menu-main__links .menu_list li a {
  cursor: pointer;
}

.menu-main__links .menu_list li a:before {
  display: block;
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  height: 1px;
  width: 0;
  background-color: #111;
  transition: all 0.3s ease;
}

@media (min-width: 1400px) {
  .menu-main__links .menu_list li a:before {
    bottom: -0.2rem;
    height: 0.1rem;
  }
}

.menu-main__links .menu_list li .fa-ico {
  margin-right: 1rem;
}

@media (max-width: 1199.98px) {
  .menu-main__links .menu_list li .fa-ico {
    display: none;
  }
}

@media (min-width: 992px) {

  .menu-main__links .menu_list li:hover a:before,
  .menu-main__links .menu_list li .active a:before,
  .menu-main__links .menu_list li .act a:before {
    width: 100%;
  }
}

.menu_list li:last-of-type {
  margin-right: 0;
}

#bx-panel {
  height: 147px;
}

@media (min-width: 1400px) {
  #bx-panel {
    height: 14.7rem;
  }
}

#bx-panel.bx-panel-folded {
  height: 39px;
}

@media (min-width: 1400px) {
  #bx-panel.bx-panel-folded {
    height: 3.9rem;
  }
}

@media (max-width: 991.98px) {
  .menu-active .mobile_menu {
    transform: translate3d(0px, 0px, 0px);
  }
}

.menu-active .mobile_menu .menu-main__link {
  opacity: 1;
}

.menu-active .mobile_menu .menu-main__link:nth-of-type(1) {
  transition: all 1s ease 0.3s;
}

.menu-active .mobile_menu .menu-main__link:nth-of-type(2) {
  transition: all 1s ease 0.4s;
}

.menu-active .mobile_menu .menu-main__link:nth-of-type(3) {
  transition: all 1s ease 0.5s;
}

.menu-active .mobile_menu .menu-main__link:nth-of-type(4) {
  transition: all 1s ease 0.6s;
}

.menu-active .mobile_menu .menu-main__link:nth-of-type(5) {
  transition: all 1s ease 0.7s;
}

.menu-active .mobile_menu .menu-main__link:nth-of-type(6) {
  transition: all 1s ease 0.8s;
}

.menu-active .mobile_menu .menu-main__link:nth-of-type(7) {
  transition: all 1s ease 0.9s;
}

.menu-active .mobile_menu .menu-main__link:nth-of-type(8) {
  transition: all 1s ease 1s;
}

.menu-active .mobile_menu .menu-main__link:nth-of-type(9) {
  transition: all 1s ease 1.1s;
}

.menu-active .mobile_menu .menu-main__link:nth-of-type(10) {
  transition: all 1s ease 1.2s;
}

.menu-active .mobile_menu .menu-main__link:nth-of-type(11) {
  transition: all 1s ease 1.3s;
}

.menu-active .mobile_menu .menu-main__link:nth-of-type(12) {
  transition: all 1s ease 1.4s;
}

.menu-active .mobile_menu .menu-main__link:nth-of-type(13) {
  transition: all 1s ease 1.5s;
}

.menu-active .mobile_menu .menu-main__link:nth-of-type(14) {
  transition: all 1s ease 1.6s;
}

.menu-active .mobile_menu .menu-main__link:nth-of-type(15) {
  transition: all 1s ease 1.7s;
}

@media (max-width: 991.98px) {
  .menu-active .mobile_menu .position {
    padding: 0 !important;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
  }
}

@media (max-width: 991.98px) {
  .menu-active .mobile_menu .position .menu-main__links {
    padding: 15px 0px 25px;
    padding-bottom: 35px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }
}

.menu_btn {
  cursor: pointer;
  display: block;
  width: 22px;
  height: 22px;
  position: relative;
}

@media (min-width: 992px) {
  .menu_btn {
    display: none;
  }
}

.menu_btn:before {
  display: block;
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 20px;
  height: 9px;
  background: url(../img/icons/menu.svg) no-repeat;
  background-size: 100%;
}

.menu.mobile_menu {
  display: none;
}

@media (max-width: 991.98px) {
  .menu.mobile_menu {
    background: #fefdfa;
    display: block !important;
  }
}

@media (min-width: 992px) {
  .menu .position {
    display: none;
  }
}

.menu-sub {
  position: fixed;
  top: 101px;
  left: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-shrink: 0;
  flex-grow: 1;
  width: 100%;
  min-height: 40rem;
  background-color: #fefdfa;
  visibility: hidden;
  z-index: 400;
  padding: 3rem 4rem 5rem;
  transform: translate3d(0, -20px, 0);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0s ease 0.4s;
}

.menu-sub:before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  top: 100%;
  right: 0;
  height: 100vh;
  position: fixed;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

@media (min-width: 992px) {
  .menu-sub {
    display: none;
  }
}

@media (max-width: 1399.98px) {
  .menu-sub {
    top: 101px;
    min-height: 400px;
    justify-content: flex-start;
    flex-direction: column;
    padding: 0;
  }
}

@media (max-width: 991.98px) {
  .menu-sub {
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    width: 100%;
    position: absolute;
    padding-top: 0;
    top: 0 !important;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.8s ease;
    border: none;
    overflow: hidden;
    box-shadow: none;
  }
}

.menu-sub.visible {
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .menu-sub.visible {
    transition: all 0.8s ease;
    opacity: 1;
    z-index: 503;
    transform: translateX(0);
  }
}

.menu-sub.visible .menu-sub__links.visible .menu-sub__link {
  opacity: 1;
  transform: translate3d(0%, 0, 0);
}

.menu-sub.visible .menu-sub__links.visible .menu-sub__link:nth-child(n) {
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
    opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.menu-sub .menu-sub__header {
  display: none;
}

@media (max-width: 991.98px) {
  .menu-sub .menu-sub__header {
    display: flex;
    flex: 0 0 100%;
    height: 48px;
    align-items: center;
    align-content: center;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
  }
}

.menu-sub .menu-sub__header__back {
  display: flex;
  flex: 0 0 auto;
  height: 48px;
  align-items: center;
  align-content: center;
  padding: 0 10px 0 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

@media (min-width: 1400px) {
  .menu-sub .menu-sub__header__back {
    height: 4.8rem;
    padding: 0 1rem 0 1.2rem;
    border-right: 0.1rem solid rgba(0, 0, 0, 0.1);
  }
}

.menu-sub .menu-sub__header__back:before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-flex;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 19L8 12L15 5' stroke='%23111111' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: 100%;
}

@media (min-width: 1400px) {
  .menu-sub .menu-sub__header__back:before {
    width: 2.4rem;
    height: 2.4rem;
  }
}

.menu-sub .menu-sub__header__title {
  font-family: "Oceanic Text", sans-serif;
  font-weight: 400;
  color: #111;
  justify-content: center;
  text-transform: uppercase;
  flex: 1 1;
  display: flex;
}

@media (max-width: 991.98px) {
  .menu-sub .menu-sub__header__title {
    padding-right: 48px;
  }
}

.menu-sub .menu-sub__header__title a {
  display: block;
  text-align: center;
  color: #111;
}

.menu-sub .menu-sub__header__title a span {
  flex: 1 1;
}

@media (max-width: 991.98px) {
  .menu-sub .menu-sub__header__title a span {
    text-transform: uppercase;
  }
}

.menu-sub .menu-sub__header__title a span.stock {
  flex: 0 0 auto;
  margin-left: 15px;
  font-size: 11px;
  line-height: 13px;
  color: #ff8e8e;
  position: relative;
  display: inline-flex;
  align-items: center;
  align-content: center;
}

@media (min-width: 1400px) {
  .menu-sub .menu-sub__header__title a span.stock {
    margin-left: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.3rem;
  }
}

@media (max-width: 991.98px) {
  .menu-sub .menu-sub__header__title a span.stock {
    text-transform: none;
  }
}

.menu-sub .menu-sub__header__title a span.stock:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #ff8e8e;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.menu-sub .menu-sub__links {
  position: absolute;
  top: 3rem;
  left: 0%;
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translate3d(-100%, 0, 0);
  pointer-events: none;
  visibility: hidden;
}

@media (min-width: 992px) {
  .menu-sub .menu-sub__links {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .menu-sub .menu-sub__links {
    top: 48px;
    padding-right: 0;
    transform: translate3d(0, 0, 0);
    left: auto;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 48px);
    overflow: hidden;
    overflow-y: auto;
    width: 100%;
  }
}

.menu-sub .menu-sub__links .menu-sub__link {
  opacity: 0;
  transform: translate3d(0, -10px, 0);
  opacity: 0;
  transition:
    transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 991.98px) {
  .menu-sub .menu-sub__links .menu-sub__link {
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 992px) {
  .menu-sub .menu-sub__links.js-tinyscrollbar {
    height: calc(100% - 18.8rem);
  }
}

.menu-sub .menu-sub__links.js-tinyscrollbar .scrollbar {
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  border-radius: 5px;
  transition: all 0.25s ease;
  z-index: 2;
}

@media (min-width: 1400px) {
  .menu-sub .menu-sub__links.js-tinyscrollbar .scrollbar {
    width: 0.5rem;
    border-radius: 0.5rem;
  }
}

.menu-sub .menu-sub__links.js-tinyscrollbar .scrollbar .track {
  height: 100%;
  width: 5px;
  position: relative;
  transition: all 0.25s ease;
}

@media (min-width: 1400px) {
  .menu-sub .menu-sub__links.js-tinyscrollbar .scrollbar .track {
    width: 0.5rem;
  }
}

.menu-sub .menu-sub__links.js-tinyscrollbar .scrollbar .track .thumb {
  background: #2a2567;
  opacity: 0.2;
  height: 20px;
  width: 5px;
  cursor: pointer;
  overflow: hidden;
  position: absolute;
  top: 0;
  border-radius: 5px;
  left: -5px;
  transition: all 0.25s ease;
}

@media (min-width: 992px) {
  .menu-sub .menu-sub__links.js-tinyscrollbar .viewport {
    position: relative;
    height: 100%;
    transition: all 0.25s ease;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .menu-sub .menu-sub__links.js-tinyscrollbar .viewport .overview {
    list-style: none;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    padding: 0;
    margin: 0;
    transition: all 0.25s ease;
  }
}

.menu-sub .menu-sub__links .scrollbar {
  position: absolute;
  opacity: 0;
  right: 0;
}

@media (max-width: 991.98px) {
  .menu-sub .menu-sub__links .scrollbar {
    display: none;
  }
}

.menu-sub .menu-sub__links.visible {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.menu-sub .menu-sub__links.visible .menu-sub__link {
  transform: translateZ(0);
  opacity: 1;
}

.menu-sub .menu-sub__links.visible .menu-sub__link:nth-of-type(1n) {
  transition:
    transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms,
    opacity 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 100ms;
}

.menu-sub .menu-sub__links.visible .menu-sub__link:nth-of-type(2n) {
  transition:
    transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 200ms,
    opacity 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 200ms;
}

.menu-sub .menu-sub__links.visible .menu-sub__link:nth-of-type(3n) {
  transition:
    transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 300ms,
    opacity 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 300ms;
}

.menu-sub .menu-sub__links.visible .menu-sub__link:nth-of-type(4n) {
  transition:
    transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 400ms,
    opacity 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 400ms;
}

.menu-sub .menu-sub__links.visible .menu-sub__link:nth-of-type(5n) {
  transition:
    transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms,
    opacity 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms;
}

.menu-sub .menu-sub__links.visible .menu-sub__link:nth-of-type(6n) {
  transition:
    transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 600ms,
    opacity 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 600ms;
}

.menu-sub .menu-sub__links.visible .menu-sub__link:nth-of-type(7n) {
  transition:
    transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 700ms,
    opacity 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 700ms;
}

.menu-sub .menu-sub__links.visible .menu-sub__link:nth-of-type(8n) {
  transition:
    transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 800ms,
    opacity 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 800ms;
}

.menu-sub .menu-sub__links.visible .menu-sub__link:nth-of-type(9n) {
  transition:
    transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 900ms,
    opacity 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 900ms;
}

.menu-sub .menu-sub__links.visible .menu-sub__link:nth-of-type(10n) {
  transition:
    transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 1000ms,
    opacity 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 1000ms;
}

.menu-sub .menu-sub__link_ul {
  display: none;
}

@media (max-width: 991.98px) {
  .menu-sub .menu-sub__link_ul {
    min-height: 100%;
    padding-top: 0;
    background: rgb(251, 251, 246);
    position: absolute;
    top: -68px;
    display: block !important;
    width: 100%;
    left: 0;
    transform: translateX(-100%);
    transition: all 0.8s ease;
  }
}

@media (max-width: 991.98px) {
  .menu-sub .menu-sub__link_ul.active {
    transform: translateX(0);
    transition: all 0.8s ease;
    z-index: 504;
  }
}

.menu-sub .menu-sub__link_ul ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  height: calc(100vh - 68px - 48px - 20px);
  overflow: hidden;
  overflow-y: auto;
}

.menu-sub .menu-sub__link_ul ul li {
  margin: 0;
}

.menu-sub .menu-sub__link_ul ul li a {
  display: flex;
  width: 100%;
  color: #111111;
  text-transform: uppercase;
  padding: 10px 17px;
  position: relative;
  text-decoration: none;
  border-bottom: 1px solid #e7e6e3;
}

.menu-sub .menu-sub__link_ul ul li a:before {
  display: none;
}

.menu-sub .menu-sub__link_ul ul li a:after {
  display: block;
  position: absolute;
  content: "";
  right: 17px;
  top: 50%;
  height: 9px;
  width: 9px;
  background-image: url(../img/arrow_d.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%) rotate(-90deg);
}

.menu-sub .menu-sub__link {
  position: relative;
  width: 100%;
  font-size: 12px;
  text-transform: uppercase;
  color: #111111;
  opacity: 0;
  transition:
    transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .menu-sub .menu-sub__link {
    padding: 0;
    position: static;
  }
}

.menu-sub .menu-sub__link a {
  color: #111111;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 17px;
  position: relative;
  text-decoration: none;
  border-bottom: 1px solid #e7e6e3;
}

.menu-sub .menu-sub__link a:before {
  display: none;
}

.menu-sub .menu-sub__link a:after {
  display: block;
  position: absolute;
  content: "";
  right: 17px;
  top: 50%;
  height: 9px;
  width: 9px;
  background-image: url(../img/arrow_d.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%) rotate(-90deg);
}

@media (max-width: 991.98px) {
  .menu-sub .menu-sub__link a.clicked+.menu-sub__link_ul {
    transform: translate3d(0, 0, 0);
    z-index: 5;
  }
}

.menu-sub .menu-sub__link a.sub {
  position: relative;
}

.menu-sub .menu-sub__link a.sub.clicked {
  color: #111;
}

.menu-sub .menu-sub__link.active a {
  background: #111;
  color: #fff;
}

#bx-panel~.page_pos .menu .menu-sub {
  top: 24.7rem;
}

@media (max-width: 1399.98px) {
  #bx-panel~.page_pos .menu .menu-sub {
    top: 247px;
  }
}

@media (max-width: 991.98px) {
  #bx-panel~.page_pos .menu .menu-sub {
    top: 0;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
  }
}

#bx-panel.bx-panel-folded~.page_pos .menu .menu-sub {
  top: 14.6rem;
}

@media (max-width: 1399.98px) {
  #bx-panel.bx-panel-folded~.page_pos .menu .menu-sub {
    top: 146px;
  }
}

@media (max-width: 991.98px) {
  #bx-panel.bx-panel-folded~.page_pos .menu .menu-sub {
    top: 0;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
  }
}

#bx-panel.bx-panel-folded~.page_pos header.scroll~.menu .menu-sub {
  top: 6rem;
}

@media (max-width: 1660px) {
  #bx-panel.bx-panel-folded~.page_pos header.scroll~.menu .menu-sub {
    top: 75px;
  }
}

@media (max-width: xxl) {
  #bx-panel.bx-panel-folded~.page_pos header.scroll~.menu .menu-sub {
    top: 61px;
  }
}

@media (max-width: 991.98px) {
  #bx-panel.bx-panel-folded~.page_pos header.scroll~.menu .menu-sub {
    top: 0;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
  }
}

.menu_list li {
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .menu_list li span {
    display: none;
  }
}

.menu_list li.mob_show .fa-ico {
  margin: 0;
}

@media (max-width: 1199.98px) {
  .menu_list li.mob_show .fa-ico {
    display: flex;
  }
}

@media (max-width: 991.98px) {
  .menu_list li.mob_show .fa-ico {
    display: flex;
  }
}

.menu_list li a {
  position: relative;
}

.menu_list li:hover a {
  z-index: 16;
}

.menu_list li:hover a:before {
  width: 100%;
}

.menu_list li:hover .submenu {
  overflow: visible;
  visibility: visible;
  z-index: 15;
}

.menu_list li:hover .submenu__list {
  opacity: 1;
  transform: translateY(0);
}

.menu_list li:hover .submenu__list:before {
  left: 0;
}

.menu_list li:hover .submenu ul li a:before {
  width: 0;
}

.menu_list li:hover .submenu ul li a:hover:before {
  width: 100%;
}

.menu_list .cart_btn {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.menu_list .cart_btn .count {
  display: flex;
  flex: 0 0 auto;
  color: #111111;
  font-size: 1.2rem;
  line-height: 100%;
  margin-left: 0.5rem;
  transform: translateY(0.2rem);
}

@media (max-width: 1399.98px) {
  .menu_list .cart_btn .count {
    font-size: 12px;
    margin-left: 5px;
    transform: translateY(2px);
  }
}

.submenu {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

@media (max-width: 991.98px) {
  .submenu {
    display: none;
  }
}

.submenu__list {
  position: absolute;
  background-color: #fefdfa;
  padding: 2.5rem 4rem 5rem;
  display: flex;
  justify-content: flex-end;
  top: 0;
  z-index: 2;
  width: 100%;
  left: 0;
  transition: all 0.4s ease;
  transform: translateY(-2rem);
  opacity: 0;
}

@media (max-width: 1399.98px) {
  .submenu__list {
    padding: 25px 40px 50px;
  }
}

.submenu__list:before {
  display: block;
  position: absolute;
  content: "";
  top: -2.6rem;
  left: -9999px;
  width: 13.5rem;
  height: 4rem;
}

.submenu .title {
  font-family: "Oceanic Text", sans-serif;
  margin-bottom: 2.4rem;
}

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

.submenu ul li {
  margin: 0;
  margin-bottom: 0.8rem;
  font-weight: 300;
}

.submenu ul li a:before {
  width: 0;
}

.submenu .top_banner {
  flex: 0 0 20%;
  width: 20%;
  z-index: 1;
}

.submenu .top_banner .category_item .image a:before {
  display: none;
}

.submenu .top_banner .category_item .image img {
  max-width: 100%;
}

.submenu .top_banner .category_item .text_block {
  position: relative;
  margin-top: 1.5rem;
  left: auto;
  top: auto;
}

.submenu .top_banner .category_item .text_block .name {
  font-family: "Oceanic Text", sans-serif;
}

.submenu .top_banner .category_item .text_block .link {
  display: inline-block;
  margin-top: 1.5rem;
  text-transform: none;
  font-weight: 300;
}

.submenu .top_banner .category_item .text_block .link:before {
  width: 100%;
  opacity: 1;
}

.submenu .top_banner .category_item .text_block .link:hover:before {
  width: 0;
}

.submenu__inner {
  flex: 0 0 80%;
  width: 80%;
  display: flex;
}

.submenu__inner__item {
  width: 25%;
  display: flex;
  flex-direction: column;
}

.submenu__inner__footer {
  margin-top: auto;
}

.submenu__inner__footer a {
  font-weight: 300;
  text-transform: none;
}

.submenu__inner__footer a:before {
  width: 100% !important;
}

.submenu__inner__footer a:hover:before {
  width: 0 !important;
}

/*mobile_menu*/
.mobile_menu {
  position: absolute;
  left: -100vw;
  top: 0 !important;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 500;
  display: none;
  background-color: #fefdfa;
  transition: left 0.5s ease;
}

@media (max-width: 991.98px) {
  .mobile_menu {
    display: block;
  }
}

.mobile_menu__header {
  padding: 0 17px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 300;
  margin-bottom: 40px;
}

.mobile_menu__header .title {
  font-family: "Oceanic Text", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}

.mobile_menu__header .close {
  cursor: pointer;
  position: relative;
  z-index: 5000;
}

.mobile_menu__header+.menu_list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e7e6e3;
}

.mobile_menu .menu_list {
  margin: 0;
}

.mobile_menu .menu_list li {
  margin: 0;
}

.mobile_menu .menu_list li a {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 15px 17px;
  border-bottom: 1px solid #e7e6e3;
  width: 100%;
}

.mobile_menu .menu_list li a:before {
  display: none;
}

.mobile_menu .menu_list li a:after {
  display: block;
  position: absolute;
  content: "";
  right: 17px;
  top: 50%;
  height: 9px;
  width: 9px;
  background-image: url(../img/arrow_d.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%) rotate(-90deg);
}

.mobile_menu .menu_list li a:empty {
  display: none;
}

@media (max-width: 991.98px) {
  .mobile_menu .menu_list li.mob_show .fa-ico {
    display: none;
  }
}

.mobile_menu .menu_list li.mob_show .count {
  transform: translateY(0px);
}

.mobile_menu .menu_list li.mob_show .count:before {
  content: "(";
}

.mobile_menu .menu_list li.mob_show .count:after {
  content: ")";
}

.mobile_menu__footer {
  margin-top: auto;
}

.mobile_menu__footer .menu_list {
  margin: 0 0 50px;
}

.mobile_menu__footer .menu_list li a {
  padding: 10px 17px;
  border: none;
}

.mobile_menu__footer .menu_list li a:after {
  display: none;
}

.mobile_menu__footer .languages {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0 17px;
}

.mobile_menu__footer .languages span {
  width: 20px;
  text-align: center;
}

.mobile_menu__footer .languages span:before {
  content: "/";
}

.mobile_menu__footer .languages a {
  text-decoration: none;
  display: inline-flex;
  cursor: pointer;
  position: relative;
}

.mobile_menu__footer .languages a:before {
  display: block;
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  height: 1px;
  width: 0;
  background-color: #111;
  transition: all 0.3s ease;
}

.mobile_menu__footer .languages a.active:before {
  width: 100%;
}

.mobile_menu .position {
  padding: 17px 0px;
  padding-bottom: 35px;
  display: flex;
  flex-direction: column;
}

.menu-active .mobile_menu {
  left: 0;
  z-index: 1000;
}

.menu-active .header_sec,
.menu-active .promo_line {
  z-index: 501;
}

.catalog_list .catalog_item .img {
  padding-top: 148.8%;
}

/*end mobile_menu*/
.navigator {
  position: relative;
  margin-bottom: 2.5rem;
  margin-top: -5rem;
  font-weight: 300;
}

@media (max-width: 1399.98px) {
  .navigator {
    margin-top: -50px;
    margin-bottom: 25px;
  }
}

@media (max-width: 991.98px) {
  .navigator {
    display: none;
  }
}

.navigator a {
  text-decoration: none;
  color: #111111;
}

.navigator a:hover {
  color: #111111;
}

.navigator i {
  display: inline-flex;
  width: 1.2rem;
  justify-content: center;
  text-align: center;
  font-style: normal;
}

@media (max-width: 1399.98px) {
  .navigator i {
    width: 12px;
  }
}

.navigator i:before {
  content: "/";
}

.back {
  margin: 0 0 2.5rem;
  font-weight: 300;
}

@media (max-width: 1399.98px) {
  .back {
    margin: 0 0 25px;
  }
}

.back a {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.back a:before {
  display: block;
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  height: 1px;
  width: 0;
  background-color: #111;
  transition: all 0.3s ease;
}

@media (min-width: 1400px) {
  .back a:before {
    bottom: -0.2rem;
    height: 0.1rem;
  }
}

.back a:hover:before {
  width: 100%;
}

input[type="text"]:required.invalid,
input[type="password"]:required.invalid,
input[type="phone"]:required.invalid,
input[type="tel"]:required.invalid,
input[type="email"]:required.invalid,
input[type="checkbox"]:required.invalid,
input[type="radio"]:required.invalid,
textarea:required.invalid {
  border-color: #d22222 !important;
}

.check_block label:has(.invalid)::before {
  border-color: #d22222 !important;
}

.orderPage .formField.country:has(.invalid) .title .city-info {
  color: #d22222 !important;
}

.formField .title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.formField .error {
  display: none;
  font-weight: 300;
  text-align: right;
  color: #d22222;
}

.formField.check_block .text {
  line-height: normal;
}

.formField:has(.invalid) .error {
  display: flex;
}

:root {
  --grey: #2b62a8;
}

@-webkit-keyframes border-transform {

  0%,
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }

  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }

  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }

  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }

  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }

  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

@keyframes border-transform {

  0%,
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }

  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }

  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }

  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }

  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }

  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

.progress-wrap {
  position: fixed;
  left: 0px;
  bottom: 0px;
  height: 2px;
  width: 100vw;
  cursor: pointer;
  display: block;
  z-index: 100;
  -webkit-transition: all 200ms linear;
  transition: opacity 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
}

.progress-wrap div {
  position: relative;
  z-index: 1;
  height: 2px;
  width: 0;
  overflow: hidden;
  background: #851622;
  box-sizing: border-box;
  transition: all 200ms linear;
}

.btn,
.formButton button,
.pay-box button {
  min-width: 160px;
  padding: 0 15px;
  text-align: center;
  height: 49px;
  line-height: 49px;
  border: none;
  border-radius: 0;
  background-color: #111111;
  font-size: 12px;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.96px;
  border: 1px solid #111111;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

@media (min-width: 1400px) {

  .btn,
  .formButton button,
  .pay-box button {
    min-width: 16rem;
    padding: 0 1.5rem;
    height: 4.9rem;
    line-height: 4.9rem;
    font-size: 1.2rem;
    letter-spacing: 0.096rem;
  }
}

.btn.btn-grey,
.formButton button.btn-grey,
.pay-box button.btn-grey {
  color: #111111;
  background-color: #faf7f3;
  border-color: #faf7f3;
}

.btn.btn-grey:hover,
.formButton button.btn-grey:hover,
.pay-box button.btn-grey:hover {
  background-color: #fefdfa;
  border-color: #111111;
}

.btn.btn-grey-light,
.formButton button.btn-grey-light,
.pay-box button.btn-grey-light {
  color: #111111;
  background-color: #fefdfa;
  border-color: #fefdfa;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991.98px) {

  .btn.btn-grey-light,
  .formButton button.btn-grey-light,
  .pay-box button.btn-grey-light {
    background-color: #faf7f3;
    border-color: #faf7f3;
  }
}

.btn.btn-grey-light:hover,
.formButton button.btn-grey-light:hover,
.pay-box button.btn-grey-light:hover {
  background-color: #faf7f3;
  border-color: #111111;
}

.formField input[type="text"],
.formField input[type="password"],
.formField input[type="phone"],
.formField input[type="tel"],
.formField input[type="email"],
.formField textarea,
.search_block input[type="text"],
.search_block input[type="password"],
.search_block input[type="phone"],
.search_block input[type="tel"],
.search_block input[type="email"],
.search_block textarea {
  padding: 0 2rem;
  height: 3.6rem;
  background-color: #faf7f3;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: normal;
  color: #111111;
  border: 0.1rem solid #faf7f3;
  width: 100%;
  letter-spacing: 0.08rem;
  box-sizing: border-box;
}

@media (max-width: 1399.98px) {

  .formField input[type="text"],
  .formField input[type="password"],
  .formField input[type="phone"],
  .formField input[type="tel"],
  .formField input[type="email"],
  .formField textarea,
  .search_block input[type="text"],
  .search_block input[type="password"],
  .search_block input[type="phone"],
  .search_block input[type="tel"],
  .search_block input[type="email"],
  .search_block textarea {
    padding: 0 20px;
    height: 36px;
    font-size: 12px;
    letter-spacing: 0.8px;
  }
}

.formField input[type="text"]::-webkit-input-placeholder,
.formField input[type="text"]::-moz-placeholder,
.formField input[type="text"]:-ms-input-placeholder,
.formField input[type="text"]:-moz-placeholder,
.formField input[type="password"]::-webkit-input-placeholder,
.formField input[type="password"]::-moz-placeholder,
.formField input[type="password"]:-ms-input-placeholder,
.formField input[type="password"]:-moz-placeholder,
.formField input[type="phone"]::-webkit-input-placeholder,
.formField input[type="phone"]::-moz-placeholder,
.formField input[type="phone"]:-ms-input-placeholder,
.formField input[type="phone"]:-moz-placeholder,
.formField input[type="tel"]::-webkit-input-placeholder,
.formField input[type="tel"]::-moz-placeholder,
.formField input[type="tel"]:-ms-input-placeholder,
.formField input[type="tel"]:-moz-placeholder,
.formField input[type="email"]::-webkit-input-placeholder,
.formField input[type="email"]::-moz-placeholder,
.formField input[type="email"]:-ms-input-placeholder,
.formField input[type="email"]:-moz-placeholder,
.formField textarea::-webkit-input-placeholder,
.formField textarea::-moz-placeholder,
.formField textarea:-ms-input-placeholder,
.formField textarea:-moz-placeholder,
.search_block input[type="text"]::-webkit-input-placeholder,
.search_block input[type="text"]::-moz-placeholder,
.search_block input[type="text"]:-ms-input-placeholder,
.search_block input[type="text"]:-moz-placeholder,
.search_block input[type="password"]::-webkit-input-placeholder,
.search_block input[type="password"]::-moz-placeholder,
.search_block input[type="password"]:-ms-input-placeholder,
.search_block input[type="password"]:-moz-placeholder,
.search_block input[type="phone"]::-webkit-input-placeholder,
.search_block input[type="phone"]::-moz-placeholder,
.search_block input[type="phone"]:-ms-input-placeholder,
.search_block input[type="phone"]:-moz-placeholder,
.search_block input[type="tel"]::-webkit-input-placeholder,
.search_block input[type="tel"]::-moz-placeholder,
.search_block input[type="tel"]:-ms-input-placeholder,
.search_block input[type="tel"]:-moz-placeholder,
.search_block input[type="email"]::-webkit-input-placeholder,
.search_block input[type="email"]::-moz-placeholder,
.search_block input[type="email"]:-ms-input-placeholder,
.search_block input[type="email"]:-moz-placeholder,
.search_block textarea::-webkit-input-placeholder,
.search_block textarea::-moz-placeholder,
.search_block textarea:-ms-input-placeholder,
.search_block textarea:-moz-placeholder {
  opacity: 1;
}

.formField textarea,
.search_block textarea {
  height: 10.8rem;
  padding: 1rem 2rem;
}

@media (max-width: 1399.98px) {

  .formField textarea,
  .search_block textarea {
    padding: 10px 20px;
    height: 108px;
  }
}

.formField {
  margin-bottom: 2rem;
}

@media (max-width: 1399.98px) {
  .formField {
    margin-bottom: 20px;
  }
}

.formField label {
  display: flex;
  align-items: center;
}

.formField.align-right {
  text-align: right;
  text-transform: none;
  font-weight: 300;
}

.formField.check_block label {
  display: flex;
  align-items: center;
}

.formField.check_block .jq-checkbox {
  width: 3.6rem;
  height: 3.6rem;
  flex: 0 0 3.6rem;
  margin-right: 2rem;
  border-color: #faf7f3;
}

@media (max-width: 1399.98px) {
  .formField.check_block .jq-checkbox {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    margin-right: 20px;
  }
}

.formField.check_block .jq-checkbox.checked {
  border-color: #111111;
}

.formField.check_block .jq-checkbox__div {
  width: 0.9rem;
  height: 0.9rem;
}

@media (max-width: 1399.98px) {
  .formField.check_block .jq-checkbox__div {
    width: 9px;
    height: 9px;
  }
}

.formButton .btn {
  width: 100%;
}

.about__image {
  margin-bottom: 8.5rem;
}

@media (min-width: 576px) {
  .about__image {
    order: 0;
  }
}

@media (max-width: 1199.98px) {
  .about__image {
    margin: 0 0 50px;
  }
}

.about__image img {
  display: block;
  width: 100%;
}

.about__text {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 6rem;
}

@media (max-width: 1399.98px) {
  .about__text {
    font-size: 14px;
    margin-bottom: 60px;
  }
}

@media (max-width: 991.98px) {
  .about__text {
    margin-bottom: 50px;
  }
}

@media (min-width: 576px) {
  .about__text {
    order: 2;
  }
}

.about__text p {
  margin: 0 0 1.5rem;
}

@media (max-width: 1399.98px) {
  .about__text p {
    margin: 0 0 15px;
  }
}

.about__text.text02 {
  font-size: 2rem;
  font-family: "Oceanic Text", sans-serif;
  font-weight: 400;
}

@media (max-width: 1399.98px) {
  .about__text.text02 {
    font-size: 20px;
  }
}

@media (max-width: 991.98px) {
  .about__text.text02 {
    font-size: 18px;
  }
}

/*start book page*/
.book_menu .h1 {
  display: none;
}

@media (max-width: 767.98px) {
  .book_menu .h1 {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .book_menu h1 {
    display: none;
  }
}

.box-sort {
  display: none;
}

.book_album {
  padding-bottom: 48px;
}

@media (min-width: 1400px) {
  .book_album {
    padding-bottom: 4.8rem;
  }
}

.book_item {
  margin-bottom: 1.5rem;
}

@media (max-width: 1399.98px) {
  .book_item {
    margin-bottom: 15px;
  }
}

.book_item .text {
  font-size: 1.2rem;
  line-height: 1.2;
}

@media (max-width: 1399.98px) {
  .book_item .text {
    font-size: 12px;
  }
}

.book_item .pos_b {
  width: 100%;
  text-decoration: none;
}

.book_item .img {
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 138%;
}

.book_item .img_2 {
  width: 100%;
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 68.2%;
}

@media (max-width: 991.98px) {
  .book_item .img_2 {
    padding-top: 67.5%;
  }
}

/*end book page*/
.catalog_list.catalog_slider {
  padding-bottom: 8px;
}

@media (min-width: 1400px) {
  .catalog_list.catalog_slider {
    padding-bottom: 0.8rem;
  }
}

.catalog_list .catalog_item .item_pos {
  width: 100%;
}

.catalog_list .catalog_item .item_pos:hover .img {
  opacity: 0.8;
  transition:
    opacity 0.5s,
    visibility 0s linear 0.5s;
}

.catalog_list .catalog_item .item_pos:hover .text_block .und_item {
  opacity: 1;
}

.catalog_list .catalog_item .img {
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 146%;
  height: 0;
}

.catalog_list .catalog_item .text_block {
  text-transform: uppercase;
  padding-top: 1.7rem;
  position: relative;
  color: #111;
}

.catalog_list .catalog_item .text_block a {
  font-weight: 300;
}

.catalog_list .catalog_item .text_block .und_item {
  width: 100%;
  display: flex;
  z-index: 1;
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .catalog_list .catalog_item .text_block .und_item {
    position: absolute;
    opacity: 0;
    left: 0;
    bottom: 0;
    background: #fff;
  }
}

.catalog_list .catalog_item .name {
  text-decoration: none;
}

.catalog_list .catalog_item .main_inf {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.catalog_list .catalog_item .remove_btn {
  padding: 0;
  margin-top: auto;
  margin-left: auto;
  background-color: transparent;
  border: none;
  text-transform: uppercase;
  position: relative;
  color: #bababa;
  line-height: 18px;
}

@media (min-width: 1400px) {
  .catalog_list .catalog_item .remove_btn {
    line-height: 1.8rem;
  }
}

.catalog_list .catalog_item .remove_btn:hover::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background-color: #bababa;
}

@media (min-width: 1400px) {
  .catalog_list .catalog_item .remove_btn:hover::before {
    bottom: -0.2rem;
    height: 0.1rem;
  }
}

.catalog_list .catalog_item .price_box {
  display: flex;
  margin-bottom: auto;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 300;
}

.catalog_list .catalog_item .price_old {
  flex-shrink: 0;
  text-decoration: line-through;
  color: #bababa;
  margin-left: 1rem;
}

.catalog_list .catalog_item .price {
  flex-shrink: 0;
}

.catalog_list .catalog_item .offer_list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  font-weight: 300;
}

@media (max-width: 991.98px) {
  .catalog_list .catalog_item .offer_list {
    margin-top: 6px;
  }
}

.catalog_list .catalog_item .offer_list li {
  margin-right: 1.5rem;
}

.catalog_list .catalog_item .offer_list li:last-of-type {
  margin-right: 0;
}

.catalog_slider.swiper-container-horizontal>.swiper-scrollbar {
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: #bababa;
}

@media (min-width: 1400px) {
  .catalog_slider.swiper-container-horizontal>.swiper-scrollbar {
    height: 0.1rem;
  }
}

.catalog_slider .swiper-scrollbar-drag {
  background-color: #111111;
}

/*end catalog_block*/
.catalog_list .catalog_item .item_pos {
  position: relative;
}

.catalog_list .catalog_item__wishlist {
  top: 10px;
  right: 10px;
  position: absolute;
  z-index: 2;
  cursor: pointer;
}

.catalog_list .catalog_item__wishlist--active .fa-wishlist:before,
.catalog_list .catalog_item__wishlist:hover .fa-wishlist:before {
  opacity: 0;
}

.catalog_list .catalog_item__wishlist--active .fa-wishlist:after,
.catalog_list .catalog_item__wishlist:hover .fa-wishlist:after {
  opacity: 1;
}

.catalog_list .catalog_item__wishlist--active:hover .fa-wishlist:before,
.catalog_list .catalog_item__wishlist:hover:hover .fa-wishlist:before {
  opacity: 1;
}

.catalog_list .catalog_item__wishlist--active:hover .fa-wishlist:after,
.catalog_list .catalog_item__wishlist:hover:hover .fa-wishlist:after {
  opacity: 0;
}

.detail_text .btns_block .bg_white {
  display: flex;
  align-items: center;
  line-height: normal;
  justify-content: center;
}

.detail_text .btns_block .bg_white .fa-ico {
  margin-right: 10px;
}

.detail_text .btns_block .bg_white:hover .fa-ico {
  filter: invert(91%) sepia(52%) saturate(2%) hue-rotate(62deg) brightness(110%) contrast(101%);
}

.detail_text .btns_block .bg_white.activeWishlistBtn .fa-ico {
  filter: invert(91%) sepia(52%) saturate(2%) hue-rotate(62deg) brightness(110%) contrast(101%);
}

.detail_text .btns_block .bg_white.activeWishlistBtn .fa-ico:before {
  opacity: 0;
}

.detail_text .btns_block .bg_white.activeWishlistBtn .fa-ico:after {
  opacity: 1;
}

.detail_text .btns_block .bg_white.activeWishlistBtn:hover .fa-ico:before {
  opacity: 1;
}

.detail_text .btns_block .bg_white.activeWishlistBtn:hover .fa-ico:after {
  opacity: 0;
}

.filter_catalog {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

@media (max-width: 991.98px) {
  .filter_catalog--search .filter_catalog__quantity {
    display: flex;
  }
}

.filter_catalog h1 {
  margin: 0 !important;
}

@media (min-width: 992px) {
  .filter_catalog h1 {
    display: none;
  }
}

.filter_catalog__quantity {
  font-weight: 300;
}

@media (max-width: 991.98px) {
  .filter_catalog__quantity {
    display: none;
  }
}

.filter_catalog__grid {
  justify-content: center;
  display: flex;
}

@media (max-width: 1199.98px) {
  .filter_catalog__grid {
    display: none;
  }
}

.filter_catalog__grid__item {
  font-weight: 300;
  margin: 0 0.8rem;
  cursor: pointer;
  position: relative;
}

.filter_catalog__grid__item.active {
  font-weight: 400;
}

.filter_catalog__grid__item:before {
  display: block;
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.2rem;
  height: 0.1rem;
  width: 0;
  background-color: #111111;
  transition: all 0.3s ease;
}

@media (min-width: 992px) {

  .filter_catalog__grid__item:hover:before,
  .filter_catalog__grid__item.active:before {
    width: 100%;
  }
}

.filter_catalog__btn {
  margin: 0;
}

.filter_catalog__btn .filter_btn {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.filter_catalog__btn .filter_btn span {
  margin-left: 0.5rem;
}

@media (max-width: 991.98px) {
  .filter_catalog__btn .filter_btn span {
    display: none;
  }
}

.filter_catalog__btn .filter_btn .fa-ico {
  margin-left: 1.5rem;
}

.filter_catalog__btn .filter_btn:before {
  display: block;
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.2rem;
  height: 0.1rem;
  width: 0;
  background-color: #111111;
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .filter_catalog__btn .filter_btn:hover:before {
    width: 100%;
  }
}

.grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}

.grid .catalog_item {
  padding: 0 0.5rem;
  margin-bottom: 3rem;
  width: 33.3333333333%;
}

@media (max-width: 1399.98px) {
  .grid .catalog_item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .grid .catalog_item {
    width: 50%;
  }
}

.grid.grid-4 .catalog_item {
  width: 25%;
}

@media (max-width: 991.98px) {
  .grid.grid-4 .catalog_item {
    width: 33.3333%;
  }
}

@media (max-width: 767.98px) {
  .grid.grid-4 .catalog_item {
    width: 50%;
  }
}

.grid.grid-5 .catalog_item {
  width: 20%;
}

@media (max-width: 1199.98px) {
  .grid.grid-5 .catalog_item {
    width: 25%;
  }
}

@media (max-width: 991.98px) {
  .grid.grid-5 .catalog_item {
    width: 33.3333%;
  }
}

@media (max-width: 767.98px) {
  .grid.grid-5 .catalog_item {
    width: 50%;
  }
}

.filter {
  position: fixed;
  transform: translateX(100%);
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  width: 33.3333333333vw;
  transition: all 0.6s ease;
  box-shadow: 0 0.3rem 0.3rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

@media (max-width: 991.98px) {
  .filter {
    width: 100%;
  }
}

.filter__header {
  padding: 0 4rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991.98px) {
  .filter__header {
    padding: 0px 17px;
  }
}

.filter__header .close {
  cursor: pointer;
  font-weight: 300;
}

.filter__header .title {
  color: #111111;
  font-size: 1.2rem;
  letter-spacing: 0.112rem;
  font-family: "Oceanic Text", sans-serif;
  text-transform: uppercase;
}

.filter form {
  display: flex;
  flex-direction: column;
  height: calc(100% - 8rem);
}

.filter__body {
  height: calc(100% - 10rem);
  padding: 0 4rem;
  overflow: hidden;
  position: relative;
}

@media (max-width: 991.98px) {
  .filter__body {
    padding: 0;
  }
}

.filter__body .viewport {
  position: relative;
  height: 100%;
}

.filter__body .viewport .overview {
  position: absolute;
  left: 0;
  right: 0;
}

.filter__body .scrollbar {
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  width: 0.5rem;
  transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
  .filter__body .scrollbar {
    right: 0;
  }
}

.filter__body .scrollbar.disable {
  opacity: 0;
}

.filter__body .scrollbar .track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.5rem;
}

.filter__body .scrollbar .track .thumb {
  width: 0.2rem;
  background: #111111;
  position: absolute;
  right: 0;
  opacity: 0.5;
}

.filter__footer {
  padding: 3rem 3.5rem 4rem;
  display: flex;
  margin-top: auto;
}

@media (max-width: 991.98px) {
  .filter__footer {
    padding: 25px 17px;
  }
}

.filter__footer .link,
.filter__footer .btn {
  width: calc(50% - 1rem);
  margin: 0 0.5rem;
}

.filter.nav-active,
.filter.active {
  transform: translateX(0%);
  z-index: 310;
}

.filter__item {
  padding: 2rem;
  border-bottom: 0.1rem solid #e7e6e3;
}

@media (max-width: 991.98px) {
  .filter__item {
    padding: 15px 17px;
  }
}

.filter__item .title {
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
}

.filter__item .title:after {
  display: block;
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-size: auto 100%;
  background-image: url(../img/arrow_d.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 0.7rem;
  height: 0.9rem;
  transition: all 0.3s ease;
}

.filter__item .desc {
  margin: 3rem 0 1rem;
  display: none;
}

@media (max-width: 991.98px) {
  .filter__item .desc {
    margin: 30px 0 10px;
  }
}

.filter__item.active .title:after {
  transform: translateY(-50%) rotate(180deg);
}

.filter__item.active .desc {
  display: block;
}

.filter .formField label {
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.filter .formField label:last-child {
  margin: 0;
}

.catalogItem {
  margin-bottom: 5rem;
}

@media (max-width: 1399.98px) {
  .catalogItem {
    margin-bottom: 50px;
  }
}

@media (max-width: 991.98px) {
  .catalogItem {
    margin-bottom: 20px;
  }
}

@media (max-width: 1199.98px) {
  .catalogItem.shop_block .catalog_item:nth-of-type(5) {
    display: none;
  }
}

.account_change,
.account_inner {
  margin: 0;
  margin-bottom: 6rem;
}

@media (max-width: 1399.98px) {

  .account_change,
  .account_inner {
    margin: 0;
    margin-bottom: 60px;
  }
}

@media (max-width: 1199.98px) {

  .account_change,
  .account_inner {
    margin: 0;
    margin-bottom: 40px;
  }
}

.account_change .title_account,
.account_inner .title_account {
  margin-bottom: 5.5rem;
  display: flex;
  align-items: center;
}

@media (max-width: 1399.98px) {

  .account_change .title_account,
  .account_inner .title_account {
    margin-bottom: 55px;
  }
}

@media (max-width: 1199.98px) {

  .account_change .title_account,
  .account_inner .title_account {
    margin-bottom: 30px;
  }
}

.account_change .title_account .h1,
.account_inner .title_account .h1 {
  margin: 0 !important;
  width: 34rem;
}

@media (max-width: 1399.98px) {

  .account_change .title_account .h1,
  .account_inner .title_account .h1 {
    width: 340px;
  }
}

@media (max-width: 1199.98px) {

  .account_change .title_account .h1,
  .account_inner .title_account .h1 {
    width: 200px;
  }
}

@media (max-width: 991.98px) {

  .account_change .title_account .h1,
  .account_inner .title_account .h1 {
    width: 100%;
  }
}

.account_change .title_account .h2,
.account_inner .title_account .h2 {
  margin: 0 !important;
}

@media (max-width: 991.98px) {

  .account_change .title_account .h2,
  .account_inner .title_account .h2 {
    display: none;
  }
}

.account_change .title_account .exit,
.account_inner .title_account .exit {
  font-weight: 300;
  margin-left: auto;
}

.account_change .title_account .exit a,
.account_inner .title_account .exit a {
  position: relative;
  display: inline-block;
}

.account_change .title_account .exit a:before,
.account_inner .title_account .exit a:before {
  display: block;
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  height: 1px;
  width: 0;
  background-color: #111;
  transition: all 0.3s ease;
}

@media (min-width: 1400px) {

  .account_change .title_account .exit a:before,
  .account_inner .title_account .exit a:before {
    bottom: -0.2rem;
    height: 0.1rem;
  }
}

.account_change .title_account .exit a:hover,
.account_inner .title_account .exit a:hover {
  text-decoration: none !important;
}

.account_change .title_account .exit a:hover:before,
.account_inner .title_account .exit a:hover:before {
  width: 100%;
}

.account_change__item,
.account_inner__item {
  margin: 0 -4rem;
  display: flex;
}

@media (max-width: 1399.98px) {

  .account_change__item,
  .account_inner__item {
    margin: 0 -40px;
  }
}

@media (max-width: 1390px) {

  .account_change__item,
  .account_inner__item {
    margin: 0 -20px;
  }
}

@media (max-width: 575.98px) {

  .account_change__item,
  .account_inner__item {
    flex-direction: column;
  }
}

.account_change__item .form_block,
.account_inner__item .form_block {
  padding: 0 4rem;
  width: 42rem;
  box-sizing: border-box;
}

@media (max-width: 1399.98px) {

  .account_change__item .form_block,
  .account_inner__item .form_block {
    padding: 0 40px;
    width: 420px;
  }
}

@media (max-width: 1390px) {

  .account_change__item .form_block,
  .account_inner__item .form_block {
    padding: 0 20px;
    width: 33.3333333333%;
  }
}

@media (max-width: 991.98px) {

  .account_change__item .form_block,
  .account_inner__item .form_block {
    width: 50%;
  }
}

@media (max-width: 575.98px) {

  .account_change__item .form_block,
  .account_inner__item .form_block {
    width: 100%;
    margin-bottom: 50px;
  }
}

@media (max-width: 575.98px) {

  .account_change__item .form_block:last-child,
  .account_inner__item .form_block:last-child {
    margin-bottom: 30px;
  }
}

.account_change .form_block .form_sec .form_content,
.account_change .account_inner__page__content .form_sec .form_content,
.account_inner .form_block .form_sec .form_content,
.account_inner .account_inner__page__content .form_sec .form_content {
  display: flex;
  align-items: flex-end;
  position: relative;
}

.account_change .form_block .form_sec .form_content__item,
.account_change .account_inner__page__content .form_sec .form_content__item,
.account_inner .form_block .form_sec .form_content__item,
.account_inner .account_inner__page__content .form_sec .form_content__item {
  display: flex;
  width: 100%;
  align-items: flex-end;
}

@media (max-width: 991.98px) {

  .account_change .form_block .form_sec .form_content__item,
  .account_change .account_inner__page__content .form_sec .form_content__item,
  .account_inner .form_block .form_sec .form_content__item,
  .account_inner .account_inner__page__content .form_sec .form_content__item {
    flex-direction: column;
  }
}

.account_change .form_block .form_sec .form_content__text,
.account_change .account_inner__page__content .form_sec .form_content__text,
.account_inner .form_block .form_sec .form_content__text,
.account_inner .account_inner__page__content .form_sec .form_content__text {
  text-transform: none;
  color: #818181;
}

.account_change .form_block .form_sec .form_content__text p,
.account_change .account_inner__page__content .form_sec .form_content__text p,
.account_inner .form_block .form_sec .form_content__text p,
.account_inner .account_inner__page__content .form_sec .form_content__text p {
  margin: 0 0 5px;
}

.account_change .form_block .form_sec .form_content__text ul,
.account_change .account_inner__page__content .form_sec .form_content__text ul,
.account_inner .form_block .form_sec .form_content__text ul,
.account_inner .account_inner__page__content .form_sec .form_content__text ul {
  list-style: none;
  margin: 0 0 15px;
  padding: 0;
}

.account_change .form_block .form_sec .form_content__text ul li:before,
.account_change .account_inner__page__content .form_sec .form_content__text ul li:before,
.account_inner .form_block .form_sec .form_content__text ul li:before,
.account_inner .account_inner__page__content .form_sec .form_content__text ul li:before {
  display: inline-block;
  margin-right: 5px;
  content: "—";
}

.account_change .form_block .form_sec .form_content__reg .form_content__item,
.account_change .account_inner__page__content .form_sec .form_content__reg .form_content__item,
.account_inner .form_block .form_sec .form_content__reg .form_content__item,
.account_inner .account_inner__page__content .form_sec .form_content__reg .form_content__item {
  display: none;
}

.account_change .form_block .form_sec .form_content__reg .form_content__text,
.account_change .account_inner__page__content .form_sec .form_content__reg .form_content__text,
.account_inner .form_block .form_sec .form_content__reg .form_content__text,
.account_inner .account_inner__page__content .form_sec .form_content__reg .form_content__text {
  position: relative;
  right: auto;
  top: auto;
}

@media (max-width: 991.98px) {

  .account_change .form_block .form_sec .form_content__reg .form_content__text,
  .account_change .account_inner__page__content .form_sec .form_content__reg .form_content__text,
  .account_inner .form_block .form_sec .form_content__reg .form_content__text,
  .account_inner .account_inner__page__content .form_sec .form_content__reg .form_content__text {
    position: relative;
    top: auto;
    right: auto;
  }
}

.account_change .form_block .form_sec .form_content__reg .form_content__reg__btn,
.account_change .account_inner__page__content .form_sec .form_content__reg .form_content__reg__btn,
.account_inner .form_block .form_sec .form_content__reg .form_content__reg__btn,
.account_inner .account_inner__page__content .form_sec .form_content__reg .form_content__reg__btn {
  position: absolute;
  right: 0;
  top: 5px;
  cursor: pointer;
  max-width: inherit;
}

@media (max-width: 991.98px) {

  .account_change .form_block .form_sec .form_content__reg .form_content__reg__btn,
  .account_change .account_inner__page__content .form_sec .form_content__reg .form_content__reg__btn,
  .account_inner .form_block .form_sec .form_content__reg .form_content__reg__btn,
  .account_inner .account_inner__page__content .form_sec .form_content__reg .form_content__reg__btn {
    position: relative;
    right: auto;
    top: auto;
  }
}

.account_change .form_block .form_sec .form_content__reg.active .form_content__reg__btn,
.account_change .account_inner__page__content .form_sec .form_content__reg.active .form_content__reg__btn,
.account_inner .form_block .form_sec .form_content__reg.active .form_content__reg__btn,
.account_inner .account_inner__page__content .form_sec .form_content__reg.active .form_content__reg__btn {
  display: none;
}

.account_change .form_block .form_sec .form_content__reg.active .form_content__item,
.account_change .account_inner__page__content .form_sec .form_content__reg.active .form_content__item,
.account_inner .form_block .form_sec .form_content__reg.active .form_content__item,
.account_inner .account_inner__page__content .form_sec .form_content__reg.active .form_content__item {
  display: flex;
}

.account_change .form_block .form_sec .form_content__reg.active .form_content__text,
.account_change .account_inner__page__content .form_sec .form_content__reg.active .form_content__text,
.account_inner .form_block .form_sec .form_content__reg.active .form_content__text,
.account_inner .account_inner__page__content .form_sec .form_content__reg.active .form_content__text {
  position: absolute;
  right: 0;
  top: 15px;
}

@media (max-width: 991.98px) {

  .account_change .form_block .form_sec .form_content__reg.active .form_content__text,
  .account_change .account_inner__page__content .form_sec .form_content__reg.active .form_content__text,
  .account_inner .form_block .form_sec .form_content__reg.active .form_content__text,
  .account_inner .account_inner__page__content .form_sec .form_content__reg.active .form_content__text {
    position: relative;
    top: auto;
    right: auto;
  }
}

.account_change .form_block .form_sec .form_content .mr_line,
.account_change .account_inner__page__content .form_sec .form_content .mr_line,
.account_inner .form_block .form_sec .form_content .mr_line,
.account_inner .account_inner__page__content .form_sec .form_content .mr_line {
  margin-bottom: 25px;
}

.account_change .form_block .form_sec .form_content .formField,
.account_change .account_inner__page__content .form_sec .form_content .formField,
.account_inner .form_block .form_sec .form_content .formField,
.account_inner .account_inner__page__content .form_sec .form_content .formField {
  position: relative;
}

.account_change .form_block .form_sec .form_content .formField .auth_error,
.account_change .account_inner__page__content .form_sec .form_content .formField .auth_error,
.account_inner .form_block .form_sec .form_content .formField .auth_error,
.account_inner .account_inner__page__content .form_sec .form_content .formField .auth_error {
  position: absolute;
  right: 0;
  bottom: 40px;
  text-transform: none;
  font-size: 0.9rem;
  font-weight: 400;
  color: #b22222;
  letter-spacing: 0.05em;
}

.account_change .form_block .form_sec .form_content .formField,
.account_change .account_inner__page__content .form_sec .form_content .formField,
.account_inner .form_block .form_sec .form_content .formField,
.account_inner .account_inner__page__content .form_sec .form_content .formField {
  margin-bottom: 20px;
}

.account_change .form_block .form_sec .form_content .formField .title,
.account_change .account_inner__page__content .form_sec .form_content .formField .title,
.account_inner .form_block .form_sec .form_content .formField .title,
.account_inner .account_inner__page__content .form_sec .form_content .formField .title {
  margin-bottom: 5px;
}

.account_change .form_block .form_sec .form_content .formField input[type="text"],
.account_change .form_block .form_sec .form_content .formField input[type="password"],
.account_change .form_block .form_sec .form_content .formField input[type="phone"],
.account_change .form_block .form_sec .form_content .formField input[type="tel"],
.account_change .form_block .form_sec .form_content .formField input[type="email"],
.account_change .form_block .form_sec .form_content .formField textarea,
.account_change .form_block .form_sec .form_content .formField .input,
.account_change .account_inner__page__content .form_sec .form_content .formField input[type="text"],
.account_change .account_inner__page__content .form_sec .form_content .formField input[type="password"],
.account_change .account_inner__page__content .form_sec .form_content .formField input[type="phone"],
.account_change .account_inner__page__content .form_sec .form_content .formField input[type="tel"],
.account_change .account_inner__page__content .form_sec .form_content .formField input[type="email"],
.account_change .account_inner__page__content .form_sec .form_content .formField textarea,
.account_change .account_inner__page__content .form_sec .form_content .formField .input,
.account_inner .form_block .form_sec .form_content .formField input[type="text"],
.account_inner .form_block .form_sec .form_content .formField input[type="password"],
.account_inner .form_block .form_sec .form_content .formField input[type="phone"],
.account_inner .form_block .form_sec .form_content .formField input[type="tel"],
.account_inner .form_block .form_sec .form_content .formField input[type="email"],
.account_inner .form_block .form_sec .form_content .formField textarea,
.account_inner .form_block .form_sec .form_content .formField .input,
.account_inner .account_inner__page__content .form_sec .form_content .formField input[type="text"],
.account_inner .account_inner__page__content .form_sec .form_content .formField input[type="password"],
.account_inner .account_inner__page__content .form_sec .form_content .formField input[type="phone"],
.account_inner .account_inner__page__content .form_sec .form_content .formField input[type="tel"],
.account_inner .account_inner__page__content .form_sec .form_content .formField input[type="email"],
.account_inner .account_inner__page__content .form_sec .form_content .formField textarea,
.account_inner .account_inner__page__content .form_sec .form_content .formField .input {
  padding: 0 15px;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid #181818;
}

.account_change .form_block .form_sec .form_content .formField.check_block .text,
.account_change .account_inner__page__content .form_sec .form_content .formField.check_block .text,
.account_inner .form_block .form_sec .form_content .formField.check_block .text,
.account_inner .account_inner__page__content .form_sec .form_content .formField.check_block .text {
  line-height: 1;
}

.account_change .form_block .form_sec .form_content .formButton,
.account_change .account_inner__page__content .form_sec .form_content .formButton,
.account_inner .form_block .form_sec .form_content .formButton,
.account_inner .account_inner__page__content .form_sec .form_content .formButton {
  margin-bottom: 20px;
}

.account_change .form_block .form_sec .form_content .formButton .btn,
.account_change .account_inner__page__content .form_sec .form_content .formButton .btn,
.account_inner .form_block .form_sec .form_content .formButton .btn,
.account_inner .account_inner__page__content .form_sec .form_content .formButton .btn {
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

@media (max-width: 992px) {

  .account_change .form_sec .form_content .half_right,
  .account_change .form_sec .form_content .half_line {
    width: 100%;
    margin-right: 0;
  }

  .account_change .form_block .form_sec .form_content .mr_line {
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) {
  .account_change .form_block .form_sec .form_content {
    display: flex;
    align-items: flex-end;
    position: relative;
  }

  .account_change .form_block .form_sec .form_content__text {
    position: absolute;
    right: 0;
    top: 15px;
  }
}

.account_inner .form_sec {
  align-items: flex-start;
}

.account_inner .form_sec .title_b {
  width: 160px;
}

.account_inner__page {
  display: flex;
  align-items: flex-start;
  margin: 0 -0.5rem;
}

@media (max-width: 991.98px) {
  .account_inner__page {
    margin: 0 -5px;
  }
}

@media (max-width: 991.98px) {
  .account_inner__page {
    flex-direction: column;
  }
}

.account_inner__page .h1-mob {
  margin: 0 0 30px;
  font-size: 1rem;
  font-weight: 400;
  padding: 0 5px;
  display: none;
}

@media (min-width: 992px) {
  .account_inner__page .h1-mob {
    display: none;
  }
}

.account_inner__page .account_inner__menu {
  width: 34rem;
  flex: 0 0 34rem;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

@media (max-width: 1399.98px) {
  .account_inner__page .account_inner__menu {
    width: 340px;
    padding: 0 5px;
    flex: 0 0 340px;
  }
}

@media (max-width: 1199.98px) {
  .account_inner__page .account_inner__menu {
    width: 200px;
    flex: 0 0 200px;
  }
}

@media (max-width: 991.98px) {
  .account_inner__page .account_inner__menu {
    width: 100%;
    margin-bottom: 20px;
    flex: 0 0 100%;
  }
}

.account_inner__page__content {
  padding: 0 0.5rem;
  flex: 1 1;
}

@media (max-width: 1399.98px) {
  .account_inner__page__content {
    padding: 0 5px;
  }
}

@media (max-width: 991.98px) {
  .account_inner__page__content {
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
}

.account_inner__page__content h6 {
  margin-bottom: 20px;
}

.account_inner__page__content .form_sec .form_content {
  width: 100%;
}

.account_inner__page__content .form_sec .form_content .mr_line {
  margin-bottom: 0 !important;
}

.account_inner__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.account_inner__list__item {
  padding: 0 15px;
  margin: 0 0 25px;
  flex: 0 0 50%;
  box-sizing: border-box;
}

.account_inner__list__item a {
  display: flex;
  align-items: center;
  height: 60px;
  border: 1px solid #111111;
  color: #111111;
  padding: 0 20px 0 57px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.account_inner__list__item a .fa-ico {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.account_inner__list__item:hover a {
  background: #111111;
  color: #fff;
  text-decoration: none;
}

.account_inner__list__item:hover a .fa-ico {
  filter: invert(91%) sepia(52%) saturate(2%) hue-rotate(62deg) brightness(110%) contrast(101%);
}

.account_inner__menu {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.account_inner__menu__item {
  height: 5rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #111111;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 0 1.7rem;
  background-color: #faf7f3;
  margin-bottom: 2rem;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 1399.98px) {
  .account_inner__menu__item {
    height: 50px;
    padding: 0 17px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991.98px) {
  .account_inner__menu__item {
    width: auto;
    text-align: center;
    margin-right: 30px;
    display: none;
  }
}

.account_inner__menu__item:before {
  display: block;
  position: absolute;
  content: "";
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  border: 1px solid #111111;
  opacity: 0;
  transition: all 0.3s ease;
}

.account_inner__menu__item:hover,
.account_inner__menu__item.active {
  text-decoration: none;
}

@media (min-width: 992px) {

  .account_inner__menu__item:hover:before,
  .account_inner__menu__item.active:before {
    opacity: 1;
  }
}

.account_inner .table_order {
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  border: none;
  font-size: 1.2rem;
  line-height: normal;
  width: 100%;
}

@media (max-width: 1399.98px) {
  .account_inner .table_order {
    font-size: 12px;
  }
}

@media (max-width: 991.98px) {
  .account_inner .table_order {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .account_inner .table_order thead {
    display: none;
  }
}

.account_inner .table_order thead tr th {
  text-transform: uppercase;
  padding: 0 1.5rem;
  height: 3.5rem;
  vertical-align: center;
  font-weight: 300;
}

@media (max-width: 1399.98px) {
  .account_inner .table_order thead tr th {
    font-size: 12px;
    padding: 0 15px;
    height: 35px;
  }
}

@media (max-width: 991.98px) {
  .account_inner .table_order tbody {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .account_inner .table_order tr {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #bbb;
    padding: 0px 0 5px;
    margin-bottom: 15px;
  }
}

.account_inner .table_order tr td {
  padding: 12px 15px;
  border-bottom: 1px solid #bbb;
  color: #111111;
  transition: all 0.25s ease;
}

@media (max-width: 991.98px) {
  .account_inner .table_order tr td {
    width: 50%;
    padding: 0;
    margin-bottom: 6px;
    border: none;
  }
}

@media (max-width: 991.98px) {
  .account_inner .table_order tr td:first-child {
    width: 100%;
  }
}

.account_inner .table_order tr td a {
  text-decoration: none;
  transition: all 0.25s ease;
}

@media (max-width: 991.98px) {
  .account_inner .table_order tr td a {
    text-decoration: underline;
  }
}

@media (min-width: 992px) {
  .account_inner .table_order tr:hover td {
    color: #fff;
    background: #111111;
  }
}

@media (min-width: 992px) {
  .account_inner .table_order tr:hover td a {
    color: #fff;
  }
}

.account_inner__table {
  width: calc(100% - 38rem);
}

@media (max-width: 1399.98px) {
  .account_inner__table {
    width: calc(100% - 380px);
  }
}

@media (max-width: 1270px) {
  .account_inner .order {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

@media (max-width: 1270px) {
  .account_inner .order__detail {
    width: 100%;
  }
}

.account_inner .order__detail .cart_block {
  padding-bottom: 0;
}

.account_inner .order__detail .cart_block .cart_item,
.account_inner .order__detail .cart_block .name_col {
  display: flex;
  position: relative;
  margin: 0 -1.5rem 3rem;
  justify-content: space-between;
}

@media (max-width: 1399.98px) {

  .account_inner .order__detail .cart_block .cart_item,
  .account_inner .order__detail .cart_block .name_col {
    flex-wrap: wrap;
    margin: 0 -1.5px 30px;
  }
}

@media (max-width: 1390px) {

  .account_inner .order__detail .cart_block .cart_item,
  .account_inner .order__detail .cart_block .name_col {
    margin: 0 -15px 30px;
  }
}

.account_inner .order__detail .cart_block .cart_item .img,
.account_inner .order__detail .cart_block .name_col .img {
  width: 9rem;
  flex: 0 0 9rem;
  height: 12rem;
  padding: 0;
  margin-right: 1.5rem;
  background-position: center;
  background-size: contain;
}

@media (max-width: 1399.98px) {

  .account_inner .order__detail .cart_block .cart_item .img,
  .account_inner .order__detail .cart_block .name_col .img {
    width: 90px;
    flex: 0 0 90px;
    height: 120px;
    margin-right: 15px;
  }
}

.account_inner .order__detail .cart_block .cart_item .td,
.account_inner .order__detail .cart_block .name_col .td {
  padding: 0 1.5rem;
  box-sizing: border-box;
  margin: 0;
  color: #000;
  text-transform: none;
}

@media (max-width: 1399.98px) {

  .account_inner .order__detail .cart_block .cart_item .td,
  .account_inner .order__detail .cart_block .name_col .td {
    padding: 0 15px;
  }
}

.account_inner .order__detail .cart_block .cart_item .td.good,
.account_inner .order__detail .cart_block .name_col .td.good {
  width: 52%;
  max-width: 560px;
  display: flex;
}

@media (max-width: 767.98px) {

  .account_inner .order__detail .cart_block .cart_item .td.good,
  .account_inner .order__detail .cart_block .name_col .td.good {
    width: 100%;
    max-width: inherit;
    position: relative;
    padding-left: 120px;
  }
}

@media (max-width: 767.98px) and (max-width: 400px) {

  .account_inner .order__detail .cart_block .cart_item .td.good,
  .account_inner .order__detail .cart_block .name_col .td.good {
    padding-left: 15px;
    position: static;
  }
}

@media (max-width: 767.98px) {

  .account_inner .order__detail .cart_block .cart_item .td.good .img,
  .account_inner .order__detail .cart_block .name_col .td.good .img {
    position: absolute;
    left: 15px;
    top: 0;
  }
}

@media (max-width: 400px) {

  .account_inner .order__detail .cart_block .cart_item .td.good .img,
  .account_inner .order__detail .cart_block .name_col .td.good .img {
    position: relative;
    left: auto;
    top: auto;
  }
}

.account_inner .order__detail .cart_block .cart_item .td.good .good__text,
.account_inner .order__detail .cart_block .name_col .td.good .good__text {
  display: flex;
  flex-direction: column;
  text-transform: none;
}

@media (max-width: 767.98px) {

  .account_inner .order__detail .cart_block .cart_item .td.good .good__text,
  .account_inner .order__detail .cart_block .name_col .td.good .good__text {
    line-height: 18px;
  }
}

.account_inner .order__detail .cart_block .cart_item .td.good .good__text .title,
.account_inner .order__detail .cart_block .name_col .td.good .good__text .title {
  margin: 0 !important;
  text-transform: uppercase;
  font-weight: 400;
}

.account_inner .order__detail .cart_block .cart_item .td.good .good__text .type,
.account_inner .order__detail .cart_block .name_col .td.good .good__text .type {
  font-weight: 300;
}

.account_inner .order__detail .cart_block .cart_item .td.good .good__text .options,
.account_inner .order__detail .cart_block .name_col .td.good .good__text .options {
  font-weight: 300;
  line-height: 130%;
}

@media (max-width: 767.98px) {

  .account_inner .order__detail .cart_block .cart_item .td.good .good__text .options,
  .account_inner .order__detail .cart_block .name_col .td.good .good__text .options {
    margin-top: 0px;
    margin-bottom: 10px;
  }
}

.account_inner .order__detail .cart_block .cart_item .td:nth-of-type(2),
.account_inner .order__detail .cart_block .cart_item .td:nth-of-type(3),
.account_inner .order__detail .cart_block .cart_item .td:nth-of-type(4),
.account_inner .order__detail .cart_block .name_col .td:nth-of-type(2),
.account_inner .order__detail .cart_block .name_col .td:nth-of-type(3),
.account_inner .order__detail .cart_block .name_col .td:nth-of-type(4) {
  width: 20%;
}

@media (max-width: 991.98px) {

  .account_inner .order__detail .cart_block .cart_item .td:nth-of-type(2),
  .account_inner .order__detail .cart_block .cart_item .td:nth-of-type(3),
  .account_inner .order__detail .cart_block .cart_item .td:nth-of-type(4),
  .account_inner .order__detail .cart_block .name_col .td:nth-of-type(2),
  .account_inner .order__detail .cart_block .name_col .td:nth-of-type(3),
  .account_inner .order__detail .cart_block .name_col .td:nth-of-type(4) {
    width: auto;
  }
}

@media (max-width: 767.98px) {

  .account_inner .order__detail .cart_block .cart_item .td:nth-of-type(2),
  .account_inner .order__detail .cart_block .cart_item .td:nth-of-type(3),
  .account_inner .order__detail .cart_block .cart_item .td:nth-of-type(4),
  .account_inner .order__detail .cart_block .name_col .td:nth-of-type(2),
  .account_inner .order__detail .cart_block .name_col .td:nth-of-type(3),
  .account_inner .order__detail .cart_block .name_col .td:nth-of-type(4) {
    margin-top: 10px;
  }
}

.account_inner .order__detail .cart_block .cart_item .td:nth-of-type(3),
.account_inner .order__detail .cart_block .name_col .td:nth-of-type(3) {
  text-align: right;
}

.account_inner .order__detail .cart_block .cart_item .td:nth-of-type(2),
.account_inner .order__detail .cart_block .name_col .td:nth-of-type(2) {
  text-align: center;
}

@media (max-width: 767.98px) {

  .account_inner .order__detail .cart_block .cart_item .td:nth-of-type(2),
  .account_inner .order__detail .cart_block .name_col .td:nth-of-type(2) {
    margin-left: 105px;
  }
}

@media (max-width: 400px) {

  .account_inner .order__detail .cart_block .cart_item .td:nth-of-type(2),
  .account_inner .order__detail .cart_block .name_col .td:nth-of-type(2) {
    margin-left: 0;
  }
}

.account_inner .order__detail .cart_block .cart_item .td.kolvo:before,
.account_inner .order__detail .cart_block .name_col .td.kolvo:before {
  content: "";
  display: none;
}

@media (max-width: 767.98px) {

  .account_inner .order__detail .cart_block .cart_item .td.kolvo:before,
  .account_inner .order__detail .cart_block .name_col .td.kolvo:before {
    display: inline;
  }
}

.account_inner .order__detail .cart_block .name_col {
  margin-bottom: 2rem;
  height: 3.5rem;
  align-items: center;
}

@media (max-width: 1399.98px) {
  .account_inner .order__detail .cart_block .name_col {
    margin-bottom: 20px;
    height: 35px;
  }
}

@media (max-width: 767.98px) {
  .account_inner .order__detail .cart_block .name_col {
    display: none;
  }
}

.account_inner .order__detail .cart_block .name_col .td.good {
  min-height: inherit;
  align-items: center;
}

@media (max-width: 767.98px) {
  .account_inner .order__detail .cart_block .name_col .td.good {
    width: 100%;
    padding-left: 15px;
  }
}

@media (max-width: 767.98px) {

  .account_inner .order__detail .cart_block .name_col .td:nth-of-type(2),
  .account_inner .order__detail .cart_block .name_col .td:nth-of-type(3) {
    display: none;
  }
}

.account_inner .order__total {
  width: 38rem !important;
  background: none !important;
  position: absolute;
  right: 0;
}

@media (max-width: 1399.98px) {
  .account_inner .order__total {
    width: 380px !important;
  }
}

@media (max-width: 1270px) {
  .account_inner .order__total {
    order: 3;
    position: relative;
    right: auto;
    margin-right: 160px;
    display: flex;
    flex-direction: column;
    width: 440px;
    padding-top: 30px;
    background: none;
  }
}

@media (max-width: 991.98px) {
  .account_inner .order__total {
    margin-right: 0;
    width: 100% !important;
  }
}

.account_inner .order__total:before {
  display: none !important;
}

.account_inner .order__total__inner {
  padding: 0 2rem;
}

@media (max-width: 1399.98px) {
  .account_inner .order__total__inner {
    padding: 0 20px;
  }
}

@media (max-width: 991.98px) {
  .account_inner .order__total__inner {
    padding: 0 !important;
  }
}

.account_inner .order__total__item {
  display: flex;
  justify-content: space-between;
  margin: 0 0 2rem;
}

@media (max-width: 1399.98px) {
  .account_inner .order__total__item {
    margin: 0 0 20px;
  }
}

.account_inner .order__total__item:first-child {
  height: 3.5rem;
  align-items: center;
}

@media (max-width: 1399.98px) {
  .account_inner .order__total__item:first-child {
    height: 35px;
  }
}

.account_inner .order__total__item:first-child .formField {
  margin: 0 0 0 1.5rem;
}

@media (max-width: 1399.98px) {
  .account_inner .order__total__item:first-child .formField {
    margin-left: 15px;
  }
}

.account_inner .order__total__item i {
  display: block;
  color: #777;
  font-weight: 300;
  text-transform: none;
  font-size: 0.9rem;
  font-style: normal;
  letter-spacing: 0.1em;
}

.account_inner .order__total__item.promo {
  flex-direction: column;
}

.account_inner .order__total__item.promo .title {
  margin-bottom: 5px;
}

.account_inner .order__total__item.promo .formField {
  margin: 0;
  display: flex;
}

.account_inner .order__total__item.promo .formField input[type="text"] {
  flex: 1 1;
  padding: 0 15px;
  background-color: #faf7f3;
}

.account_inner .order__total__item.promo .formField .btn {
  flex: 0 0 auto;
  background: transparent;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  color: #000;
  min-width: inherit;
}

.account_inner .order__total__item.promo .formField .btn:hover {
  text-decoration: underline;
}

.account_inner .order__total__item.promo .promo__text {
  display: block;
  color: #777;
  text-transform: none;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.account_inner .order__total__status {
  background: #faf7f3;
  padding: 20px 20px 5px;
}

@media (max-width: 991.98px) {
  .account_inner .order__total__status {
    padding: 20px 1.5rem 5px !important;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

.account_inner .order__total__status__item {
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px;
}

.account_inner .order__total .back {
  padding: 20px;
  text-align: right;
}

@media (max-width: 991.98px) {
  .account_inner .order__total .back {
    padding: 20px 0rem 0 !important;
  }
}

.account_inner .order__total .title {
  text-transform: uppercase;
}

.account_inner .order__total .formButton {
  width: 100%;
}

.account_inner .order__total .formButton button {
  width: 100%;
  max-width: 100%;
  top: auto;
  left: auto;
  position: relative;
  transform: none;
  background-color: #111111;
  color: #fff;
  padding: 0 15px;
  text-align: center;
}

.account_inner .order__total .formButton button:hover {
  background-color: #faf7f3;
  border-color: #111111;
  color: #111111;
}

.account_inner .summary_block .sum_block {
  margin-bottom: 30px;
  color: #000;
}

.account_inner .summary_block .sum_block .sum_line.promo {
  flex-direction: column;
}

.account_inner .summary_block .sum_block .sum_line.promo .formField {
  margin: 0;
  display: flex;
}

.account_inner .summary_block .sum_block .sum_line.promo .formField input[type="text"] {
  flex: 1 1;
  padding: 0 15px;
}

.account_inner .summary_block .sum_block .sum_line.promo .formField .btn {
  flex: 0 0 auto;
  background: transparent;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  color: #000;
  min-width: inherit;
}

.account_inner .summary_block .sum_block .sum_line.promo .formField .btn:hover {
  text-decoration: underline;
}

.account_inner .summary_block .sum_block .sum_line.promo .promo__text,
.account_inner .summary_block .sum_block .sum_line.promo .promo-line {
  display: block;
  color: #777;
  text-transform: none;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.account_inner .summary_block .sum_block .price,
.account_inner .summary_block .sum_block .text {
  color: #000;
}

.account_inner .summary_block .btns_block {
  margin-top: 0;
}

.account_inner .summary_block .clear {
  padding: 30px;
  text-align: center;
  color: #777;
}

@media (max-width: 480px) {
  .account_inner__list__item {
    flex: 0 0 100%;
  }
}

.pay-box {
  padding: 3rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100vh;
  justify-content: center;
  box-sizing: border-box;
}

@media (max-width: 1390px) {
  .cart_page .order {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.cart_page .order__detail {
  width: 100%;
}

.cart_page .order__detail .cart_block {
  padding-bottom: 0;
}

.cart_page .order__detail .cart_block .cart_item,
.cart_page .order__detail .cart_block .name_col {
  display: flex;
  position: relative;
  margin: 0 -4rem 3rem;
  justify-content: space-between;
}

@media (max-width: 1399.98px) {

  .cart_page .order__detail .cart_block .cart_item,
  .cart_page .order__detail .cart_block .name_col {
    flex-wrap: wrap;
    margin: 0 -40px 30px;
  }
}

@media (max-width: 1390px) {

  .cart_page .order__detail .cart_block .cart_item,
  .cart_page .order__detail .cart_block .name_col {
    margin: 0 -20px 30px;
  }
}

.cart_page .order__detail .cart_block .cart_item .remove,
.cart_page .order__detail .cart_block .name_col .remove {
  text-decoration: none;
  display: block;
  margin-top: auto;
}

@media (max-width: 767.98px) {

  .cart_page .order__detail .cart_block .cart_item .remove,
  .cart_page .order__detail .cart_block .name_col .remove {
    text-indent: -9999px;
    height: 12px;
    width: 12px;
    position: absolute;
    bottom: 5px;
    right: 20px;
    left: auto;
  }
}

@media (max-width: 400px) {

  .cart_page .order__detail .cart_block .cart_item .remove,
  .cart_page .order__detail .cart_block .name_col .remove {
    bottom: 2px;
  }
}

@media (max-width: 767.98px) {

  .cart_page .order__detail .cart_block .cart_item .remove:before,
  .cart_page .order__detail .cart_block .name_col .remove:before {
    display: block;
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 0;
    top: 0;
    opacity: 1;
    transition: all 0.25s ease;
    background: url(../img/icons/delete.png) no-repeat;
    background-size: 100%;
  }
}

.cart_page .order__detail .cart_block .cart_item .remove:hover:before,
.cart_page .order__detail .cart_block .name_col .remove:hover:before {
  opacity: 1;
}

.cart_page .order__detail .cart_block .cart_item .img,
.cart_page .order__detail .cart_block .name_col .img {
  width: 12rem;
  flex: 0 0 12rem;
  height: 14rem;
  padding: 0;
  margin-right: 4rem;
  background-position: center;
  background-size: contain;
}

@media (max-width: 1399.98px) {

  .cart_page .order__detail .cart_block .cart_item .img,
  .cart_page .order__detail .cart_block .name_col .img {
    width: 120px;
    flex: 0 0 120px;
    height: 140px;
    margin-right: 40px;
  }
}

@media (max-width: 1390px) {

  .cart_page .order__detail .cart_block .cart_item .img,
  .cart_page .order__detail .cart_block .name_col .img {
    margin-right: 20px;
  }
}

.cart_page .order__detail .cart_block .cart_item .td,
.cart_page .order__detail .cart_block .name_col .td {
  padding: 0 4rem;
  box-sizing: border-box;
  margin: 0;
  color: #000;
  text-transform: none;
}

@media (max-width: 1399.98px) {

  .cart_page .order__detail .cart_block .cart_item .td,
  .cart_page .order__detail .cart_block .name_col .td {
    padding: 0 40px;
  }
}

@media (max-width: 1390px) {

  .cart_page .order__detail .cart_block .cart_item .td,
  .cart_page .order__detail .cart_block .name_col .td {
    padding: 0 20px;
  }
}

.cart_page .order__detail .cart_block .cart_item .td .price,
.cart_page .order__detail .cart_block .name_col .td .price {
  line-height: 20px;
}

.cart_page .order__detail .cart_block .cart_item .td.good,
.cart_page .order__detail .cart_block .name_col .td.good {
  width: 43%;
  display: flex;
  position: static;
  min-height: 14rem;
}

@media (max-width: 1399.98px) {

  .cart_page .order__detail .cart_block .cart_item .td.good,
  .cart_page .order__detail .cart_block .name_col .td.good {
    min-height: 140px;
  }
}

@media (max-width: 991.98px) {

  .cart_page .order__detail .cart_block .cart_item .td.good,
  .cart_page .order__detail .cart_block .name_col .td.good {
    position: relative;
  }
}

.cart_page .order__detail .cart_block .cart_item .td.good .h1,
.cart_page .order__detail .cart_block .name_col .td.good .h1 {
  margin: 0 4rem 0 0 !important;
  flex: 0 0 12rem;
}

@media (max-width: 1399.98px) {

  .cart_page .order__detail .cart_block .cart_item .td.good .h1,
  .cart_page .order__detail .cart_block .name_col .td.good .h1 {
    margin-right: 40px !important;
    flex: 0 0 120px;
  }
}

@media (max-width: 1390px) {

  .cart_page .order__detail .cart_block .cart_item .td.good .h1,
  .cart_page .order__detail .cart_block .name_col .td.good .h1 {
    margin-right: 20px !important;
  }
}

.cart_page .order__detail .cart_block .cart_item .td.good .good__text,
.cart_page .order__detail .cart_block .name_col .td.good .good__text {
  display: flex;
  flex-direction: column;
}

@media (max-width: 767.98px) {

  .cart_page .order__detail .cart_block .cart_item .td.good .good__text,
  .cart_page .order__detail .cart_block .name_col .td.good .good__text {
    line-height: 18px;
  }
}

.cart_page .order__detail .cart_block .cart_item .td.good .good__text .title,
.cart_page .order__detail .cart_block .name_col .td.good .good__text .title {
  margin: 0 !important;
  text-transform: uppercase;
  font-weight: 400;
}

@media (min-width: 1390px) {

  .cart_page .order__detail .cart_block .cart_item .td.good .good__text .size,
  .cart_page .order__detail .cart_block .name_col .td.good .good__text .size {
    display: none;
  }
}

.cart_page .order__detail .cart_block .cart_item .td.good .good__text .type,
.cart_page .order__detail .cart_block .name_col .td.good .good__text .type {
  font-weight: 300;
}

.cart_page .order__detail .cart_block .cart_item .td.good .good__text .options,
.cart_page .order__detail .cart_block .name_col .td.good .good__text .options {
  margin-top: 2rem;
  font-weight: 300;
}

@media (max-width: 1399.98px) {

  .cart_page .order__detail .cart_block .cart_item .td.good .good__text .options,
  .cart_page .order__detail .cart_block .name_col .td.good .good__text .options {
    margin-top: 20px;
  }
}

@media (max-width: 767.98px) {

  .cart_page .order__detail .cart_block .cart_item .td.good .good__text .options,
  .cart_page .order__detail .cart_block .name_col .td.good .good__text .options {
    margin-top: 0px;
    margin-bottom: 10px;
  }
}

.cart_page .order__detail .cart_block .cart_item .td.good .good__text .options .color,
.cart_page .order__detail .cart_block .name_col .td.good .good__text .options .color {
  text-transform: capitalize;
}

.cart_page .order__detail .cart_block .cart_item .td.good .good__text .remove,
.cart_page .order__detail .cart_block .name_col .td.good .good__text .remove {
  font-weight: 300;
  margin-top: auto;
}

.cart_page .order__detail .cart_block .cart_item .td:nth-of-type(2),
.cart_page .order__detail .cart_block .cart_item .td:nth-of-type(3),
.cart_page .order__detail .cart_block .cart_item .td:nth-of-type(4),
.cart_page .order__detail .cart_block .name_col .td:nth-of-type(2),
.cart_page .order__detail .cart_block .name_col .td:nth-of-type(3),
.cart_page .order__detail .cart_block .name_col .td:nth-of-type(4) {
  width: 20%;
}

@media (max-width: 991.98px) {

  .cart_page .order__detail .cart_block .cart_item .td:nth-of-type(2),
  .cart_page .order__detail .cart_block .cart_item .td:nth-of-type(3),
  .cart_page .order__detail .cart_block .cart_item .td:nth-of-type(4),
  .cart_page .order__detail .cart_block .name_col .td:nth-of-type(2),
  .cart_page .order__detail .cart_block .name_col .td:nth-of-type(3),
  .cart_page .order__detail .cart_block .name_col .td:nth-of-type(4) {
    width: auto;
  }
}

.cart_page .order__detail .cart_block .cart_item .td:nth-of-type(3),
.cart_page .order__detail .cart_block .name_col .td:nth-of-type(3) {
  text-align: left;
  flex: 0 0 16.8rem;
}

@media (max-width: 1399.98px) {

  .cart_page .order__detail .cart_block .cart_item .td:nth-of-type(3),
  .cart_page .order__detail .cart_block .name_col .td:nth-of-type(3) {
    flex: 0 0 168px;
  }
}

@media (max-width: 1390px) {

  .cart_page .order__detail .cart_block .cart_item .td:nth-of-type(3),
  .cart_page .order__detail .cart_block .name_col .td:nth-of-type(3) {
    flex: 0 0 128px;
  }
}

.cart_page .order__detail .cart_block .cart_item .td:nth-of-type(2),
.cart_page .order__detail .cart_block .cart_item .td:nth-of-type(4),
.cart_page .order__detail .cart_block .name_col .td:nth-of-type(2),
.cart_page .order__detail .cart_block .name_col .td:nth-of-type(4) {
  text-align: right;
}

@media (max-width: 1390px) {

  .cart_page .order__detail .cart_block .cart_item .td:nth-of-type(2),
  .cart_page .order__detail .cart_block .name_col .td:nth-of-type(2) {
    display: none;
  }
}

.cart_page .order__detail .cart_block .cart_item .td .amount_block,
.cart_page .order__detail .cart_block .name_col .td .amount_block {
  width: 8.8rem;
  position: relative;
  border: none;
}

@media (max-width: 1399.98px) {

  .cart_page .order__detail .cart_block .cart_item .td .amount_block,
  .cart_page .order__detail .cart_block .name_col .td .amount_block {
    width: 88px;
  }
}

.cart_page .order__detail .cart_block .cart_item .td .amount_block .amount,
.cart_page .order__detail .cart_block .name_col .td .amount_block .amount {
  width: 100%;
  text-align: center;
  height: 2rem;
  border: none;
  font-style: normal;
  padding: 0;
  font-weight: 400;
  color: #000;
}

@media (max-width: 1399.98px) {

  .cart_page .order__detail .cart_block .cart_item .td .amount_block .amount,
  .cart_page .order__detail .cart_block .name_col .td .amount_block .amount {
    height: 20px;
  }
}

.cart_page .order__detail .cart_block .cart_item .td .amount_block a,
.cart_page .order__detail .cart_block .name_col .td .amount_block a {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  opacity: 0.8;
  text-indent: -9999px;
  overflow: hidden;
  transition: all 0.25s ease;
}

@media (max-width: 1399.98px) {

  .cart_page .order__detail .cart_block .cart_item .td .amount_block a,
  .cart_page .order__detail .cart_block .name_col .td .amount_block a {
    height: 20px;
    width: 20px;
  }
}

.cart_page .order__detail .cart_block .cart_item .td .amount_block a:before,
.cart_page .order__detail .cart_block .name_col .td .amount_block a:before {
  display: block;
  position: absolute;
  content: "";
  width: 2rem;
  height: 2rem;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1399.98px) {

  .cart_page .order__detail .cart_block .cart_item .td .amount_block a:before,
  .cart_page .order__detail .cart_block .name_col .td .amount_block a:before {
    height: 20px;
    width: 20px;
  }
}

.cart_page .order__detail .cart_block .cart_item .td .amount_block a.min,
.cart_page .order__detail .cart_block .name_col .td .amount_block a.min {
  left: 0;
}

.cart_page .order__detail .cart_block .cart_item .td .amount_block a.min:before,
.cart_page .order__detail .cart_block .name_col .td .amount_block a.min:before {
  background-image: url(../img/icons/minus.svg);
}

.cart_page .order__detail .cart_block .cart_item .td .amount_block a.plus,
.cart_page .order__detail .cart_block .name_col .td .amount_block a.plus {
  right: 0;
}

.cart_page .order__detail .cart_block .cart_item .td .amount_block a.plus:before,
.cart_page .order__detail .cart_block .name_col .td .amount_block a.plus:before {
  background-image: url(../img/icons/plus.svg);
}

.cart_page .order__detail .cart_block .cart_item .td .amount_block a:hover,
.cart_page .order__detail .cart_block .name_col .td .amount_block a:hover {
  opacity: 1;
}

.cart_page .order__detail .cart_block .name_col {
  margin-bottom: 6rem;
}

@media (max-width: 1399.98px) {
  .cart_page .order__detail .cart_block .name_col {
    margin-bottom: 60px;
  }
}

@media (max-width: 767.98px) {
  .cart_page .order__detail .cart_block .name_col {
    margin-bottom: 30px;
  }
}

.cart_page .order__detail .cart_block .name_col .td.good {
  min-height: inherit;
}

@media (max-width: 767.98px) {
  .cart_page .order__detail .cart_block .name_col .td.good {
    width: 100%;
  }
}

@media (max-width: 767.98px) {

  .cart_page .order__detail .cart_block .name_col .td:nth-of-type(3),
  .cart_page .order__detail .cart_block .name_col .td:nth-of-type(4) {
    display: none;
  }
}

.cart_page .order__total {
  width: 30.9%;
  background: #fff;
  position: absolute;
  right: 0;
}

@media (max-width: 1270px) {
  .cart_page .order__total {
    order: 3;
    position: relative;
    right: auto;
    display: flex;
    flex-direction: column;
    width: 400px;
  }
}

@media (max-width: 575.98px) {
  .cart_page .order__total {
    width: 100%;
  }
}

.cart_page .order__total:before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0px;
  bottom: 0;
  z-index: -1;
  background: #fff;
}

@media (max-width: 1270px) {
  .cart_page .order__total:before {
    top: -30px;
  }
}

@media (max-width: 575.98px) {
  .cart_page .order__total:before {
    left: -20px;
    right: -20px;
  }
}

.cart_page .order__total__inner {
  padding: 0 30px;
}

@media (max-width: 575.98px) {
  .cart_page .order__total__inner {
    padding: 0;
  }
}

.cart_page .order__total__item {
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px;
}

.cart_page .order__total__item i {
  display: block;
  color: #777;
  font-weight: 300;
  text-transform: none;
  font-size: 0.9rem;
  font-style: normal;
  letter-spacing: 0.1em;
}

.cart_page .order__total__item.promo {
  flex-direction: column;
}

.cart_page .order__total__item.promo .title {
  margin-bottom: 5px;
}

.cart_page .order__total__item.promo #promocode_error {
  text-transform: none;
  color: #b22222;
}

.cart_page .order__total__item.promo .formField {
  margin: 0;
  display: flex;
}

.cart_page .order__total__item.promo .formField input[type="text"] {
  flex: 1 1;
  padding: 0 1.5rem;
}

.cart_page .order__total__item.promo .formField .btn {
  flex: 0 0 auto;
  background: transparent;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  color: #000;
  min-width: inherit;
}

.cart_page .order__total__item.promo .formField .btn:hover {
  text-decoration: underline;
}

.cart_page .order__total__item.promo .promo__text {
  display: block;
  color: #777;
  text-transform: none;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.cart_page .order__total__status {
  color: #fff;
  background: #111111;
  padding: 30px 30px 5px;
}

.cart_page .order__total__status__item {
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px;
}

.cart_page .order__total .back {
  padding: 30px;
  text-align: right;
}

.cart_page .order .form_block {
  margin-left: 16rem;
}

@media (max-width: 1399.98px) {
  .cart_page .order .form_block {
    margin-left: 160px;
  }
}

@media (max-width: 1390px) {
  .cart_page .order .form_block {
    margin-left: 0;
  }
}

.cart_page .order .form_block .row {
  margin: 0 -4rem;
}

@media (max-width: 1399.98px) {
  .cart_page .order .form_block .row {
    margin: 0 -40px;
  }
}

@media (max-width: 1390px) {
  .cart_page .order .form_block .row {
    margin: 0 -20px;
  }
}

.cart_page .order .form_block .row .col-12 {
  padding: 0 4rem;
}

@media (max-width: 1399.98px) {
  .cart_page .order .form_block .row .col-12 {
    padding: 0 40px;
  }
}

@media (max-width: 1390px) {
  .cart_page .order .form_block .row .col-12 {
    padding: 0 20px;
  }
}

.cart_page .order .form_block .form_sec {
  flex-direction: column;
}

.cart_page .order .form_block .form_sec .title_b {
  width: 100%;
  margin: 0 0 3rem;
}

@media (max-width: 1399.98px) {
  .cart_page .order .form_block .form_sec .title_b {
    margin-bottom: 30px;
  }
}

.cart_page .order .form_block .form_sec .form_content {
  width: 100%;
}

.cart_page .order .form_block .form_sec .title_b {
  letter-spacing: 0;
}

.cart_page .order .form_block .form_sec .form_content {
  position: relative;
}

.cart_page .order .form_block .form_sec .form_content__text {
  text-transform: none;
  color: #818181;
}

.cart_page .order .form_block .form_sec .form_content__text p {
  margin: 0 0 5px;
}

.cart_page .order .form_block .form_sec .form_content__text ul {
  list-style: none;
  margin: 0 0 15px;
  padding: 0;
}

.cart_page .order .form_block .form_sec .form_content__text ul li:before {
  display: inline-block;
  margin-right: 5px;
  content: "—";
}

.cart_page .order .form_block .form_sec .form_content .mr_line {
  margin-bottom: 25px;
}

.cart_page .order .form_block .form_sec .form_content .h6,
.cart_page .order .form_block .form_sec .form_content h6 {
  margin-top: 10px;
  display: block;
  width: 100%;
  text-align: left;
}

.cart_page .order .form_block .form_sec .form_content .h6:first-child,
.cart_page .order .form_block .form_sec .form_content h6:first-child {
  margin-top: 0;
}

.cart_page .order .form_block .form_sec .form_content .h6 .info,
.cart_page .order .form_block .form_sec .form_content h6 .info {
  right: -3px;
}

.cart_page .order .form_block .form_sec .form_content .formField {
  margin-bottom: 2rem;
  width: 100%;
  position: relative;
}

@media (max-width: 1399.98px) {
  .cart_page .order .form_block .form_sec .form_content .formField {
    margin-bottom: 20px;
  }
}

.cart_page .order .form_block .form_sec .form_content .formField .title {
  margin-bottom: 5px;
}

.cart_page .order .form_block .form_sec .form_content .formField.check_block .text {
  line-height: 1;
}

.cart_page .order .form_block .form_sec .form_content .formField.radio label {
  position: relative;
  display: block;
  width: 100%;
}

.cart_page .order .form_block .form_sec .form_content .formField.radio label .info {
  right: 5px;
}

.cart_page .order .form_block .form_sec .form_content .formField.radio label .info__item {
  left: 35px;
}

@media (max-width: 1399.98px) {
  .cart_page .order .form_block .form_sec .form_content .formField.radio label .info__item {
    right: 26px;
    left: auto;
  }
}

.cart_page .order .form_block .form_sec .form_content .formField.radio label input[type="radio"],
.cart_page .order .form_block .form_sec .form_content .formField.radio label input[type="checkbox"],
.cart_page .order .form_block .form_sec .form_content .formField.radio label .jq-radio,
.cart_page .order .form_block .form_sec .form_content .formField.radio label .jq-checkbox {
  position: absolute !important;
  opacity: 0;
}

.cart_page .order .form_block .form_sec .form_content .formField.radio label input[type="radio"].checked+.radio__text,
.cart_page .order .form_block .form_sec .form_content .formField.radio label input[type="checkbox"].checked+.radio__text,
.cart_page .order .form_block .form_sec .form_content .formField.radio label .jq-radio.checked+.radio__text,
.cart_page .order .form_block .form_sec .form_content .formField.radio label .jq-checkbox.checked+.radio__text {
  border-color: #111111;
}

.cart_page .order .form_block .form_sec .form_content .formField.radio label input[type="radio"]:disabled+.radio__text,
.cart_page .order .form_block .form_sec .form_content .formField.radio label input[type="radio"].disabled+.radio__text,
.cart_page .order .form_block .form_sec .form_content .formField.radio label input[type="checkbox"]:disabled+.radio__text,
.cart_page .order .form_block .form_sec .form_content .formField.radio label input[type="checkbox"].disabled+.radio__text,
.cart_page .order .form_block .form_sec .form_content .formField.radio label .jq-radio:disabled+.radio__text,
.cart_page .order .form_block .form_sec .form_content .formField.radio label .jq-radio.disabled+.radio__text,
.cart_page .order .form_block .form_sec .form_content .formField.radio label .jq-checkbox:disabled+.radio__text,
.cart_page .order .form_block .form_sec .form_content .formField.radio label .jq-checkbox.disabled+.radio__text {
  background: none;
  color: #111111;
  opacity: 0.4;
  cursor: auto;
}

.cart_page .order .form_block .form_sec .form_content .formField.radio label input[type="radio"]:disabled+.radio__text:hover,
.cart_page .order .form_block .form_sec .form_content .formField.radio label input[type="radio"].disabled+.radio__text:hover,
.cart_page .order .form_block .form_sec .form_content .formField.radio label input[type="checkbox"]:disabled+.radio__text:hover,
.cart_page .order .form_block .form_sec .form_content .formField.radio label input[type="checkbox"].disabled+.radio__text:hover,
.cart_page .order .form_block .form_sec .form_content .formField.radio label .jq-radio:disabled+.radio__text:hover,
.cart_page .order .form_block .form_sec .form_content .formField.radio label .jq-radio.disabled+.radio__text:hover,
.cart_page .order .form_block .form_sec .form_content .formField.radio label .jq-checkbox:disabled+.radio__text:hover,
.cart_page .order .form_block .form_sec .form_content .formField.radio label .jq-checkbox.disabled+.radio__text:hover {
  border-color: #faf7f3;
  opacity: 0.4;
}

.cart_page .order .form_block .form_sec .form_content .formField.radio .radio__text {
  display: flex;
  border: 1px solid #faf7f3;
  height: 60px;
  align-items: center;
  padding: 0 2rem;
  background-color: #faf7f3;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (max-width: 1399.98px) {
  .cart_page .order .form_block .form_sec .form_content .formField.radio .radio__text {
    padding: 0 20px;
  }
}

.cart_page .order .form_block .form_sec .form_content .formField.radio .radio__text__item {
  text-transform: none;
  color: #111111;
  font-size: 300;
  flex: 1 1;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.cart_page .order .form_block .form_sec .form_content .formField.radio .radio__text__item strong {
  color: #111111;
  display: block;
  text-transform: uppercase;
  font-weight: 400;
}

.cart_page .order .form_block .form_sec .form_content .formField.radio .radio__text .fa-ico {
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  display: none;
}

.cart_page .order .form_block .form_sec .form_content .formField.radio .radio__text .fa-ico:before {
  position: relative;
  left: auto;
  top: auto;
}

.cart_page .order .form_block .form_sec .form_content .formField.radio .radio__text__price {
  flex: 0 0 60px;
  text-align: right;
}

.cart_page .order .form_block .form_sec .form_content .formField.radio .radio__text:hover {
  border-color: #111111;
}

.cart_page .order .form_block .form_sec .form_content .formField.radio .radio__text:hover .fa-ico {
  filter: invert(91%) sepia(52%) saturate(2%) hue-rotate(62deg) brightness(110%) contrast(101%);
}

.cart_page .order .form_block .form_sec .form_content .formButton {
  margin-bottom: 20px;
}

.cart_page .order .form_block .form_sec .form_content .formButton .btn {
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

.cart_page .summary_block .sum_block {
  margin-bottom: 2.5rem;
  color: #111111;
}

@media (max-width: 1399.98px) {
  .cart_page .summary_block .sum_block {
    margin-bottom: 25px;
  }
}

.cart_page .summary_block .sum_block .sum_line.promo {
  flex-direction: column;
}

.cart_page .summary_block .sum_block .sum_line.promo .text {
  margin-bottom: 5px;
}

.cart_page .summary_block .sum_block .sum_line.promo #promocode_error {
  text-transform: none;
  color: #b22222;
}

.cart_page .summary_block .sum_block .sum_line.promo .formField {
  margin: 0;
  display: flex;
}

.cart_page .summary_block .sum_block .sum_line.promo .formField input[type="text"] {
  flex: 1 1;
  border: 1px solid transparent;
  box-sizing: border-box;
  background-color: #fefdfa;
}

@media (max-width: 991.98px) {
  .cart_page .summary_block .sum_block .sum_line.promo .formField input[type="text"] {
    background-color: #faf7f3;
  }
}

.cart_page .summary_block .sum_block .sum_line.promo .formField .btn {
  flex: 0 0 auto;
  background: transparent;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  color: #000;
  min-width: inherit;
  height: 40px;
  line-height: normal;
  align-items: center;
  padding: 0;
  margin-left: 3rem;
  justify-content: right;
}

.cart_page .summary_block .sum_block .sum_line.promo .formField .btn:hover {
  text-decoration: underline;
}

.cart_page .summary_block .sum_block .sum_line.promo .promo__text,
.cart_page .summary_block .sum_block .sum_line.promo .promo-line {
  display: block;
  color: #777;
  text-transform: none;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.cart_page .summary_block .sum_block .price,
.cart_page .summary_block .sum_block .text {
  color: #000;
}

.cart_page .summary_block .sum_block .price {
  font-weight: 400;
}

.cart_page .summary_block .btns_block {
  margin-top: 0;
}

.cart_page .summary_block .clear {
  margin-top: 1.5rem;
  cursor: pointer;
}

@media (max-width: 1399.98px) {
  .cart_page .summary_block .clear {
    margin-top: 15px;
  }
}

.cart_page .relative {
  position: relative;
}

.cart_page .info {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  z-index: 50;
}

.cart_page .info__ico {
  opacity: 0.5;
}

.cart_page .info__item {
  background: #fbfbf6;
  padding: 1.5rem;
  color: #818181;
  font-size: 1rem;
  line-height: 100%;
  text-align: left;
  text-transform: none;
  font-weight: 400;
  border: 1px solid #ece8e8;
  position: absolute;
  left: 26px;
  top: -15px;
  transition: all 0.6s ease;
  opacity: 0;
  width: 166px;
}

@media (max-width: 1399.98px) {
  .cart_page .info__item {
    right: 26px;
    left: auto;
  }
}

.cart_page .info__item p {
  margin: 0 0 0.5rem;
}

.cart_page .info__item p:last-child {
  margin: 0;
}

.cart_page .info:hover {
  overflow: visible;
}

.cart_page .info:hover .fa-ico {
  opacity: 1;
}

.cart_page .info:hover .info__item {
  opacity: 1;
  z-index: 10;
}

@media (max-width: 1199.98px) {
  .orderPage {
    margin-bottom: 0;
  }
}

.orderPage .cart_page {
  width: calc(100% - 44rem);
}

@media (max-width: 1399.98px) {
  .orderPage .cart_page {
    width: calc(100% - 440px);
  }
}

@media (max-width: 1199.98px) {
  .orderPage .cart_page {
    width: 100%;
  }
}

.orderPage .cart_page .order {
  overflow: visible;
}

@media (max-width: 1199.98px) {
  .orderPage .cart_page .order {
    overflow: visible;
  }
}

@media (max-width: 991.98px) {
  .orderPage .cart_page .order__item {
    margin-bottom: 30px;
    position: relative;
  }
}

.orderPage .cart_page .order__item .form_content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 1900px) {
  .orderPage .cart_page .order__item .form_content {
    width: 100%;
  }
}

.orderPage .cart_page .order__item .form_content .name_col .td {
  width: 18%;
}

.orderPage .cart_page .order__item .form_content .name_col .td.good {
  width: 52%;
  max-width: 560px;
}

@media (max-width: 767.98px) {
  .orderPage .cart_page .order__item .form_content .name_col .td.good {
    width: 100%;
  }
}

.orderPage .cart_page .order__item .form_content .name_col .td.good .good__size {
  text-transform: capitalize;
}

.orderPage .cart_page .order__item .form_content .cart_item {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767.98px) {
  .orderPage .cart_page .order__item .form_content .cart_item {
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 140px;
    align-items: center;
  }
}

.orderPage .cart_page .order__item .form_content .cart_item .td {
  width: 18%;
}

.orderPage .cart_page .order__item .form_content .cart_item .td.good {
  width: 52%;
  max-width: 560px;
}

@media (max-width: 767.98px) {
  .orderPage .cart_page .order__item .form_content .cart_item .td.good {
    width: 100%;
    max-width: inherit;
    position: relative;
    padding-left: 160px;
  }
}

@media (max-width: 767.98px) and (max-width: 400px) {
  .orderPage .cart_page .order__item .form_content .cart_item .td.good {
    padding-left: 20px;
    position: static;
  }
}

@media (max-width: 767.98px) {
  .orderPage .cart_page .order__item .form_content .cart_item .td.good .img {
    position: absolute;
    left: 20px;
    top: 0;
  }
}

@media (max-width: 400px) {
  .orderPage .cart_page .order__item .form_content .cart_item .td.good .img {
    position: relative;
    left: auto;
    top: auto;
  }
}

@media (max-width: 767.98px) {
  .orderPage .cart_page .order__item .form_content .cart_item .td:nth-of-type(3) {
    margin-left: 140px;
    margin-top: -20px;
  }
}

@media (max-width: 400px) {
  .orderPage .cart_page .order__item .form_content .cart_item .td:nth-of-type(3) {
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .orderPage .cart_page .order__item .form_content .cart_item .td:nth-of-type(4) {
    margin-top: -20px;
    margin-right: 25px;
    width: auto;
  }
}

.orderPage .form_sec .pop_list {
  background: #fff;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
}

.orderPage .summary_block {
  width: 38rem;
  padding: 2.5rem 2rem 4.8rem;
  margin: -2.5rem 0 0;
  box-sizing: border-box;
  z-index: 2;
  background-color: #faf7f3;
}

@media (max-width: 1399.98px) {
  .orderPage .summary_block {
    width: 380px !important;
    padding: 25px 20px 45px;
    margin-top: -25px;
  }
}

@media (max-width: 1199.98px) {
  .orderPage .summary_block {
    position: relative !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    top: auto !important;
    width: 380px !important;
    margin: 0 auto;
    margin-top: 30px;
    padding: 25px 20px 45px !important;
  }
}

@media (max-width: 991.98px) {
  .orderPage .summary_block {
    width: 100% !important;
    background: none;
    padding: 25px 0px 45px !important;
  }
}

.orderPage .formField.country .title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.orderPage .formField.country .title .city-info {
  font-weight: 300;
  text-align: right;
  color: #818181;
}

.orderPage .formField .title {
  position: relative;
  letter-spacing: 0.05em;
}

/*main_banner*/
.main_banner {
  margin-bottom: 2.6rem;
  height: calc(var(--vh, 1vh) * 100 - 2.5rem);
  min-height: 65rem;
  position: relative;
}

@media (max-width: 1399.98px) {
  .main_banner {
    margin-bottom: 26px;
    height: calc(var(--vh, 1vh) * 100 - 25px);
    min-height: 650px;
  }
}

.main_banner .banner_slider {
  height: 100%;
}

.main_banner:before {
  display: block;
  position: absolute;
  content: "";
  height: 2.5rem;
  left: 0;
  right: 0;
  bottom: 100%;
  background: #111111;
}

@media (max-width: 1399.98px) {
  .main_banner:before {
    height: 25px;
  }
}

.banner_slider .slide {
  height: 100%;
  padding: 5rem 4.5rem;
  display: flex;
  flex-wrap: wrap;
  background-color: #fefdfa;
  overflow: hidden;
}

@media (max-width: 1399.98px) {
  .banner_slider .slide {
    padding: 50px 45px;
  }
}

@media (max-width: 991.98px) {
  .banner_slider .slide {
    padding: 25px 18px;
  }
}

.banner_slider .slide .slider_img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.banner_slider .slide .video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  max-width: 100%;
  min-height: 100%;
}

.banner_slider .slide .text_block {
  margin: auto 0 0;
  margin-bottom: 0;
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

@media (max-width: 1399.98px) {
  .banner_slider .slide .text_block {
    font-size: 12px;
  }
}

.banner_slider .slide .text_block--dark {
  color: #111111;
}

.banner_slider .slide .text_block--dark .link {
  color: #111111;
}

.banner_slider .slide .text_block--dark .link:before {
  background-color: #111111;
}

.banner_slider .slide .text_block a,
.banner_slider .slide .text_block .link {
  color: inherit;
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-weight: 300;
  text-transform: none;
  margin-top: 1.5rem;
}

@media (max-width: 1399.98px) {

  .banner_slider .slide .text_block a,
  .banner_slider .slide .text_block .link {
    margin-top: 15px;
  }
}

.banner_slider .slide .text_block a:before,
.banner_slider .slide .text_block .link:before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: 1px;
  bottom: -3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

@media (min-width: 1400px) {

  .banner_slider .slide .text_block a:before,
  .banner_slider .slide .text_block .link:before {
    height: 0.1rem;
    bottom: -0.3rem;
  }
}

.banner_slider .slide .text_block a:hover:before,
.banner_slider .slide .text_block .link:hover:before {
  width: 0;
}

.banner_slider .slide .text_block .name {
  margin-bottom: 0;
  font-family: "Oceanic Text", sans-serif;
}

@media (max-width: 1399.98px) {
  .banner_slider .slide .text_block .name {
    margin-bottom: 0;
  }
}

/*end main_banner*/
/*search*/
.search_block .search {
  width: 100%;
  position: relative;
}

.search_block .search .inp {
  padding-right: 4rem;
}

@media (max-width: 1399.98px) {
  .search_block .search .inp {
    padding-right: 40px;
  }
}

.search_block .search .sub_btn {
  position: absolute;
  z-index: 1;
  border: none;
  padding: 0;
  margin: 0;
  right: 2rem;
  top: 0;
  bottom: 0;
  width: 2rem;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/arrow_r.svg");
}

@media (max-width: 1399.98px) {
  .search_block .search .sub_btn {
    width: 20px;
    right: 20px;
  }
}

.search_setting .filter_block .filter_line {
  display: block;
}

.search_setting .filter_inf {
  display: flex;
  flex-wrap: wrap;
}

.search_inf .search_result {
  color: #111111;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.2;
}

@media (min-width: 1400px) {
  .search_inf .search_result {
    font-size: 1.2rem;
  }
}

.search_setting .search_line {
  margin-bottom: 27px;
}

@media (min-width: 1400px) {
  .search_setting .search_line {
    margin-bottom: 2.7rem;
  }
}

.header_sec .menu_pos {
  position: relative;
}

.header_sec .menu_pos .menu_list {
  align-items: center;
}

.header_sec .search_block {
  position: absolute;
  left: 0;
  top: -2px;
  right: 0;
  display: none;
}

@media (min-width: 1400px) {
  .header_sec .search_block {
    top: -0.2rem;
  }
}

.header_sec .search_block.active {
  display: block;
  z-index: 2;
}

.header_sec .search_block.active+.menu_list {
  opacity: 0;
  visibility: hidden;
}

.header_sec .search_block .search .inp {
  height: 23px;
}

@media (min-width: 1400px) {
  .header_sec .search_block .search .inp {
    height: 2.3rem;
  }
}

/*end search*/

/*# sourceMappingURL=css-idm.css.map */