@charset "UTF-8";

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

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

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

@font-face {
  font-family: "Gilroy";
  font-display: swap;
  src: url("../fonts/Gilroy-SemiBold.woff") format("woff"), url("../fonts/Gilroy-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

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

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

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "Gilroy";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Gilroy";
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  color: #1F2933;
  font-size: 14px;
  /*background: #F9F9F9;*/
  background: #FFF;
}

body._white {
  background: #fff;
}

body._slim .page {
  padding-top: 80px;
}

body._menus {
  overflow: hidden;
}

body._lock {
  overflow: hidden;
}

body._lock::after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  background: rgba(0, 0, 0, 0.3);
  z-index: 20;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0px 20px;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0px 0px;
}

.btn._fw {
  width: 100%;
}

.select {
  position: relative;
}

.select__item {
  position: relative;
}

.select__title {
  color: #000;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  height: 30px;
  padding: 0px 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.select__value span {
  height: 1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.select__value:before {
  content: "";
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 11px;
  height: 7px;
  background: url("../img/icons/select.svg") center/100% no-repeat;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  display: none;
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}

.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}

.select._active {
  z-index: 5;
}

.select._active .select__value:before {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select._active .select__options {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
}

textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.checkbox__input:checked + .checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
  opacity: 1;
}

.checkbox__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: calc(20 / 16);
  cursor: pointer;
}

.checkbox__text:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 14px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
span.checkbox__text.no_active:before {
  height: 18px;
  width: 18px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18px;
  flex: 0 0 18px;
  background: #df1010;
  border-radius: 2px;
  border: none;
  margin-right: 0;
}

.checkbox a {
  color: #000000;
  text-decoration: underline;
}

.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.options__item {
  position: relative;
  cursor: pointer;
}

.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}

.options__input:checked + .options__text:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.options__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: calc(20 / 16);
}

.options__text:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 14px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}

.options__text:after {
  content: "";
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating-block {
  display: table;
  font-size: 0;
}

.rating {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.rating.edit .star {
  cursor: pointer;
}

.rating .star {
  width: 17px;
  height: 14px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

.rating__line {
  position: absolute;
  width: 85px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating.svg") 0 0 no-repeat;
  z-index: 1;
  background-size: 85px 100%;
}

.rating__activeline {
  position: absolute;
  width: 0px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating_active.svg") 0 0 no-repeat;
  z-index: 2;
  background-size: 85px 100%;
}

.rating__value {
  display: inline-block;
  color: #1b3139;
  font-size: 14px;
  line-height: 13px;
  vertical-align: middle;
}

.quantity {
  width: 88px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}

.quantity__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}

.quantity__button::before,
.quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}

.quantity__button_plus::before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.quantity__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

._title {
  font-weight: 800;
  font-size: 36px;
  line-height: 45px;
  color: #1F2933;
}

input._dated[type=date]:not(._value),
input._timed[type=time]:not(._value) {
  position: relative;
}

input._dated[type=date],
input._timed[type=time] {
  color: #fff;
  font-size: 0;
}

input._dated[type=date]:not(._value)::before,
input._timed[type=time]:not(._value)::before {
  content: attr(placeholder) "";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #2E2E2E;
  max-width: calc(100% - 36px - 50px);
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

input._dated[type=date]._value,
input._timed[type=time]._value {
  color: #2E2E2E;
  font-size: 14px;
}

input._dated[type=date]:focus,
input._timed[type=time]:focus {
  color: #2E2E2E;
  font-size: 14px;
}

input._dated[type=date]:focus::before,
input._timed[type=time]:focus::before {
  content: "";
  display: none;
}

.row:after {
  display: block;
  content: "";
  clear: both;
}

.rub:after {
  content: "₽";
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}

ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}

ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

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

.es {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}

.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}

._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}

.video video,
.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

.moretext {
  overflow: hidden;
}

.moretext__more {
  cursor: pointer;
}

.moretext__more span {
  font-style: normal;
}

.moretext__more span:first-child {
  display: block;
}

.moretext__more span:last-child {
  display: none;
}

.moretext__more.active span {
  font-style: normal;
}

.moretext__more.active span:first-child {
  display: none;
}

.moretext__more.active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper {
  overflow: hidden;
}

._swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

._swiper.swiper-container-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._swiper.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

.slick-slider {
  position: relative;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slick-slider .slick-track {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-slider .slick-slide {
  position: relative;
}

.tab__item {
  display: none;
}

.tab__item.active {
  display: block;
}

._tabs-block {
  display: none;
}

._tabs-block._active {
  display: block;
}

.mirror {
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

.gm-style-iw-t {
  opacity: 0;
}

.baloon {
  opacity: 1;
  right: -7px !important;
  bottom: 80px !important;
}

.baloon button {
  display: none !important;
}

.baloon:after {
  display: none !important;
}

.baloon-style {
  display: none;
}

.baloon-content.gm-style-iw {
  opacity: 1;
  border-radius: 0px !important;
  max-width: 300px !important;
  padding: 0 !important;
  left: 0 !important;
  width: 100% !important;
  overflow: visible !important;
}

.baloon-content.gm-style-iw > .gm-style-iw-d {
  overflow: hidden !important;
  max-width: none !important;
}

.baloon-content.gm-style-iw:after {
  display: none !important;
}

.baloon-close {
  top: 18px !important;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}

._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

.qs-datepicker-container {
  font-size: 1rem;
  font-family: sans-serif;
  color: #1f2933;
  position: absolute;
  width: 15.625em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 9001;
  margin-top: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  background: #fff;
  padding: 5px;
  border: 1px solid #e2e2e2;
}

.qs-datepicker-container:before {
  top: 0;
}

.qs-datepicker-container:after {
  bottom: 0;
}

.qs-datepicker-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.qs-datepicker-container.qs-centered {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.qs-datepicker-container.qs-hidden {
  display: none;
}

.qs-datepicker .qs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.75);
  color: #1f2933;
  width: 100%;
  height: 100%;
  padding: 0.5em;
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.qs-datepicker .qs-overlay.qs-hidden {
  opacity: 0;
  z-index: -1;
}

.qs-datepicker .qs-overlay .qs-overlay-year {
  background: rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #1f2933;
  font-size: 0.875em;
  padding: 0.25em 0;
  width: 80%;
  text-align: center;
  margin: 0 auto;
  display: block;
}

.qs-datepicker .qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.qs-datepicker .qs-overlay .qs-close {
  padding: 0.5em;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

.qs-datepicker .qs-overlay .qs-submit {
  display: none;
  border: 1px solid #fff;
  border-radius: 0.26392em;
  padding: 0.5em;
  margin: 0 auto auto;
  cursor: pointer;
  background: rgba(128, 128, 128, 0.4);
}

.qs-datepicker .qs-overlay .qs-submit.qs-disabled {
  color: grey;
  border-color: grey;
  cursor: not-allowed;
}

.qs-datepicker .qs-overlay .qs-overlay-month-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.qs-datepicker .qs-overlay .qs-overlay-month {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 33.33333%;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s;
  -o-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

.qs-datepicker .qs-overlay .qs-overlay-month.active,
.qs-datepicker .qs-overlay .qs-overlay-month:hover {
  opacity: 1;
}

.qs-datepicker .qs-controls {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #fff;
  color: #1f2933;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  -o-transition: filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.qs-datepicker .qs-controls.qs-blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.qs-datepicker .qs-arrow {
  height: 1.5625em;
  width: 1.5625em;
  position: relative;
  cursor: pointer;
  border-radius: 0.26392em;
  -webkit-transition: background 0.15s;
  -o-transition: background 0.15s;
  transition: background 0.15s;
}

.qs-datepicker .qs-arrow:hover {
  background: rgba(0, 0, 0, 0.1);
}

.qs-datepicker .qs-arrow:hover.qs-left:after {
  border-right-color: #1f2933;
}

.qs-datepicker .qs-arrow:hover.qs-right:after {
  border-left-color: #1f2933;
}

.qs-datepicker .qs-arrow:after {
  content: "";
  border: 0.39062em solid rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
}

.qs-datepicker .qs-arrow.qs-left:after {
  border-right-color: grey;
  right: 50%;
  -webkit-transform: translate(25%, -50%);
  -ms-transform: translate(25%, -50%);
  transform: translate(25%, -50%);
}

.qs-datepicker .qs-arrow.qs-right:after {
  border-left-color: grey;
  left: 50%;
  -webkit-transform: translate(-25%, -50%);
  -ms-transform: translate(-25%, -50%);
  transform: translate(-25%, -50%);
}

.qs-datepicker .qs-month-year {
  font-weight: 700;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  cursor: pointer;
}

.qs-datepicker .qs-month-year:hover {
  border-bottom: 1px solid grey;
}

.qs-datepicker .qs-month-year:active:focus,
.qs-datepicker .qs-month-year:focus {
  outline: none;
}

.qs-datepicker .qs-month {
  padding-right: 0.5ex;
}

.qs-datepicker .qs-year {
  padding-left: 0.5ex;
}

.qs-datepicker .qs-squares {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #1f2933;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.3125em;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  -o-transition: filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.qs-datepicker .qs-squares.qs-blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.qs-datepicker .qs-square {
  width: 14.28571%;
  height: 1.5625em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: background 0.1s;
  -o-transition: background 0.1s;
  transition: background 0.1s;
  border-radius: 0.26392em;
}

.qs-datepicker .qs-square.qs-current {
  font-weight: 700;
}

.qs-datepicker .qs-square.qs-current span {
  text-decoration: underline;
}

.qs-datepicker .qs-square.qs-active {
  background: #fff;
  color: #1f2933;
}

.qs-datepicker .qs-square.qs-range-date-start:not(.qs-range-date-6) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-middle {
  background: #d4ebf2;
}

.qs-datepicker .qs-square.qs-range-date-middle:not(.qs-range-date-0):not(.qs-range-date-6) {
  border-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-middle.qs-range-date-0 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-end:not(.qs-range-date-0),
.qs-datepicker .qs-square.qs-range-date-middle.qs-range-date-6 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.qs-datepicker .qs-square.qs-disabled span {
  opacity: 0.2;
}

.qs-datepicker .qs-square.qs-empty {
  cursor: default;
}

.qs-datepicker .qs-square.qs-disabled {
  cursor: not-allowed;
}

.qs-datepicker .qs-square.qs-day {
  cursor: default;
  font-weight: 700;
  color: grey;
}

.qs-datepicker .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
  background: #f62559;
  color: #fff;
  font-weight: 600;
}

.qs-datepicker .qs-event {
  position: relative;
}

.qs-datepicker .qs-event:after {
  content: "";
  position: absolute;
  width: 0.46875em;
  height: 0.46875em;
  border-radius: 50%;
  background: #07f;
  bottom: 0;
  right: 0;
}

.qs-datepicker .qs-event.qs-disabled:after,
.qs-datepicker .qs-event.qs-empty:after {
  background: #cce4ff;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}

.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
}

.popup.show {
  visibility: visible;
  overflow: auto;
}

.popup.show::before {
  opacity: 1;
}

.popup.show .popup__body {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup._active {
  overflow: auto;
  visibility: visible;
}

.popup._active::before {
  opacity: 1;
}

.popup._active .popup__body {
  -webkit-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.2s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__body {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 50px;
  width: 100%;
  max-width: 800px;
}

.popup__close {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") 0 0 no-repeat;
}

.header {
  background: #FFFFFF;
  /*-webkit-box-shadow: 0px 6px 8px -6px rgba(24, 39, 75, 0.12), 0px 8px 16px -6px rgba(24, 39, 75, 0.08);
          box-shadow: 0px 6px 8px -6px rgba(24, 39, 75, 0.12), 0px 8px 16px -6px rgba(24, 39, 75, 0.08);*/
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.header._lock::after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9;
}

.header__top {
  background: #F9F9F9;
}

.top-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-header__navigation {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.top-header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}

.navigation-top-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
}

.navigation-top-header__link {
  font-weight: 500;
  font-size: 16px;
  line-height: 17px;
  color: #1F2933;
}

.contacts-top-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.contacts-top-header__item {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #1F2933;
}

.contacts-top-header__icon {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.language-top-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.language-top-header__item {
  padding: 0px 8px;
}

.language-top-header__item:not(:last-child) {
  border-right: 1px solid #D0D0D0;
}

.language-top-header__item._active .language-top-header__link {
  color: #1F2933;
}

.language-top-header__item:first-child {
  padding-left: 0;
}

.language-top-header__item:last-child {
  padding-right: 0;
}

.language-top-header__link {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #D0D0D0;
}

.main-header {
  background: #fff;
}

.main-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0px;
  border-bottom: 1px solid #DDE5EA;
}

.main-header__menu-icon {
  margin-right: auto;
}

.main-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 170px;
          flex: 0 0 170px;
}

.main-header__logo img {
  width: 100%;
  max-width: 100%;
}

.main-header__search-btn {
  display: none;
}

.main-header__search {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 768px;
          flex: 0 0 768px;
  background: #F4F4F4;
  border-radius: 6px;
}

.search-main-header__form {
  width: 100%;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 20px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.search-main-header__input {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  min-width: 0;
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  background: transparent;
}

.search-main-header__input::-webkit-input-placeholder {
  color: #A7A7A7;
}

.search-main-header__input::-moz-placeholder {
  color: #A7A7A7;
}

.search-main-header__input:-ms-input-placeholder {
  color: #A7A7A7;
}

.search-main-header__input::-ms-input-placeholder {
  color: #A7A7A7;
}

.search-main-header__input::placeholder {
  color: #A7A7A7;
}

.search-main-header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
}

.actions-main-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  padding-right: 15px;
}

.actions-main-header__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 10px;
  cursor: pointer;
}

.actions-main-header__head {
  position: relative;
}

.actions-main-header__value {
  position: absolute;
  top: -6px;
  right: -18px;
  width: 25px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F62559;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
}

.actions-main-header__name {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #1F2933;
}

.menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.menu-list__name {
  font-weight: 600;
  font-size: 16px;
  line-height: 47px;
  border-bottom: 4px solid transparent;
  color: #1F2933;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.menu-list__name._spoller {
  cursor: pointer;
}

.menu-list__name._spoller::after {
  content: "";
  width: 12px;
  height: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12px;
          flex: 0 0 12px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: url(../img/icons/arrow-pink.svg) center/auto no-repeat;

}

.menu-list__submenu {
  background: #fff;
  width: 100%;
  position: absolute;
  top: 80%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 5;
}

.menu-list__container {
  padding: 30px 20px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-list__sublist {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 150px;
     -moz-column-gap: 150px;
          column-gap: 150px;
}

.menu-list__subcolumn {
  display: -webkit-box;
  display: -ms-flexbox;
  width: 100%;
  column-count: 3;
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 20px;
}

.menu-list__subitem {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #1F2933;
  display: flex;
  flex-direction: row;
  padding: 10px 0px;
}

.menu-list__banners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.banner-menu-list:hover .banner-menu-list__name {
  text-decoration: underline;
}

.banner-menu-list__image {
  width: 200px;
  padding-bottom: 90%;
  position: relative;
  margin-bottom: 20px;
}

.banner-menu-list__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-menu-list__name {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #1F2933;
}

.head-menu {
  display: none;
}

.head-menu__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 141px;
          flex: 0 0 141px;
}

.head-menu__logo img {
  width: 100%;
  max-width: 100%;
}

.icon-menu {
  display: none;
}

.footer {
  background: #fff;
  border-top: 1px solid #DDE5EA;
}

.main-footer {
  padding: 50px 0px;
}

.main-footer__navigatioon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.main-footer__column {
  max-width: 350px;
}

.main-footer__name {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #e54f6b;
}

.main-footer__sublist {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 15px;
}

.main-footer__subitem {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #1F2933;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.main-footer__item:not(:last-child) {
  margin-bottom: 30px;
}

.subscribe-main-footer__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  color: #1F2933;
  margin-bottom: 20px;
}

.subscribe-main-footer__input {
  height: 42px;
  background: #F4F4F4;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 20px;
  min-width: 0px;
  max-width: 365px;
  width: 100%;
}

.subscribe-main-footer__checkbox {
  margin-top: 15px;
  margin-bottom: 15px;
}

.subscribe-main-footer__btn {
  background: #050405;
  border-radius: 22px;
  width: 140px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  margin-top: 8px;
}

.subscribe-main-footer__btn::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
  background: url(../img/icons/form-send.svg) center/auto no-repeat;
}

.checkbox__input:checked + .checkbox__text:before {
  background: url(../img/icons/checked.svg) center/cover no-repeat;
}

.checkbox__text {
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #1F2933;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.checkbox__text:before {
  height: 18px;
  width: 18px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  background: #F4F4F4;
  border-radius: 2px;
  border: none;
  margin-right: 0;
}

.social-main-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.social-main-footer__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.social-main-footer__item img {
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.bottom-footer__content {
  border-top: 1px solid #DDE5EA;
  padding: 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  white-space: nowrap;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
}

.bottom-footer__copy {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #1F2933;
}

.bottom-footer__dev {
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #1F2933;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.bottom-footer__dev::before {
  content: "";
  width: 20px;
  vertical-align: middle;
  height: 20px;
  margin-right: 8px;
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: url(../img/icons/dev.svg) center/auto no-repeat;
}

.banner {
  /*padding: 30px 0px 50px;*/
  padding: 24px 0px 0px;
  /*background: #f9f9f9;*/
  background: #fff;
}
.banner > .banner__container._container{
  padding: 0px 0px;
  /*max-width: 100%;*/

}

.banner__content {
  position: relative;
}

.banner__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  background: #fff;
}

.banner__bg {
  position: relative;
  width: 100%;
  height: 585px;
}

.banner__bg img {
  border-radius: 32px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner a.banner__more {
  background: #ffffff00;
  border: 2px solid #000000;
  border-radius: 30px;
  display: none;
}

.banner__md1 {
  display: none;
}

.banner__md3 {
  display: none;
}

.banner__md4 {
  display: none;
}

.banner__text {
  position: absolute;
  top: 50%;
  left: calc((100% - 1420px) /2);
  /*left: 5%;*/
  z-index: 9;
  max-width: 35%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(0%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
}

.banner__title {
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  text-align: left;
  text-transform: uppercase;
  color: #1F2933;
}

.banner__more {
  background: #F62559;
  border-radius: 4px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  width: 176px;
  height: 48px;
}

.banner__more::after {
  display: none;
  content: "";
  width: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  background: url(../img/icons/more-w.svg) center/auto no-repeat;
}

.banner__pagination {
  margin-top: 15px;
}

.banner__arrows {
  position: absolute;
  bottom: 35px;
  left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  z-index: 10;
}

.banner__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.slider-paggination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.slider-paggination .swiper-pagination-bullet {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
  height: 14px;
  background: #000000;
  border-radius: 14px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.slider-paggination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35px;
          flex: 0 0 35px;
}

.products-slider {
  padding: 50px 0px;
  background: #FFFFFF;
}

.products-slider__body {
  margin-top: 30px;
}

.products-slider__slider {
  margin: -50px 0px;
  padding: 50px 0px;
}

.products-slider__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 4) / 5);
          flex: 0 0 calc((100% - 30px * 4) / 5);
}

.products-slider__item:not(:last-child) {
  margin-right: 30px;
}

.products-slider__paggitanoin {
  margin-top: 20px;
}

.head-products-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.head-products-slider__title {
  /*font-weight: 800;
  font-size: 36px;
  line-height: 50px;*/
  margin-bottom: 5px;
  width: 100%;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  text-transform: unset;
  color: #1F2933;
}

.head-products-slider__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.head-products-slider__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36px;
          flex: 0 0 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.head-products-slider__arrow img {
  width: 100%;
  max-width: 100%;
}

.product {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #c0c4bb;
  border-radius: 16px;
  padding: 16px;
}
.products_empty {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background: #fdfdfd;
  height: 100%;
  opacity: 0;
}
.product__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.login-social {
  display: flex;
  justify-content: space-between;
}
.product__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.head-product {
  position: relative;
}

.head-product__image {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.head-product__image img {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: translate(-50%, 0%);
}
a.head-product__image {
  background: white;
}
.head-product__mods {
  position: absolute;
  top: 15px;
  left: 6px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 15px;
}

.head-product__mods p {
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 2px 4px;
  background: #BACAD5;
  border-radius: 4px;
}

.head-product__like {
  position: absolute;
  top: 10px;
  right: 6px;
  height: 27px;
  width: 27px;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.like-head-product._active .like-head-product__statik {
  display: none;
}

.like-head-product._active .like-head-product__active {
  display: block;
}

.like-head-product__statik {
  display: block;
}

.like-head-product__active {
  display: none;
}

.body-product {
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.body-product__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.body-product__actions {
  margin-top: 10px;
}

.info-body-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-height: 60px;
}

.info-body-product__specefication {
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
  color: #1F2933;
}

.info-body-product__name {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: #1F2933;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  /*text-transform: uppercase;*/
}
.info-body-product__name:hover{
  color: #F62559;
  text-decoration: none !important;
}
.info-body-product__description {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #A3A3A3;
}

.info-body-product__sections {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: rgba(246, 37, 89, 0.5);
}

.actions-body-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.actions-body-product__other {
  padding: 10px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.actions-body-product__cart {
  border: 1px solid #000000;
  border-radius: 16px;
  width: 100%;
  height: 48px;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  cursor: pointer;
}
.actions-body-product__cart:hover {
  border: 1px solid #F62559;
  color: #F62559;
}

/*.actions-body-product__cart::before {
  content: "";
  width: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  background: url(../img/icons/cart.svg) center/auto no-repeat;
}*/

.other-actions-body-product__selects {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
}

.other-actions-body-product__selects .select__title {
  border: 1px solid #DDE5EA;
}

.other-actions-body-product__selects .select__value {
  padding: 0px 7px 0px 10px;
}

.other-actions-body-product__selects .select__value:before {
  width: 7px;
}

.other-actions-body-product__selects .select__options {
  padding: 5px 0px;
}

.other-actions-body-product__selects .select__option {
  padding: 4px 10px;
}

.other-actions-body-product__selects .select_other-actions-body-product__select.disabled-select {
  pointer-events: none;
}

.other-actions-body-product__selects .select_other-actions-body-product__select.disabled-select .select__title {
  border: 1px solid #DDE5EA !important;
}

.other-actions-body-product__selects .select_other-actions-body-product__select.disabled-select .select__value {
  background: #F3F3F3 !important;
  opacity: 0.5;
}

.other-actions-body-product__select {
  background: url(../img/icons/select-arrow.svg) calc(100% - 7px) center/auto no-repeat, #fff;
  border: 1px solid #DDE5EA;
  border-radius: 4px;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #1F2933;
  padding: 0px 10px;
  height: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.other-actions-body-product__select._disabled {
  background: url(../img/icons/select-arrow-opacity.svg) calc(100% - 7px) center/auto no-repeat, #F3F3F3;
  border: 1px solid #DDE5EA;
  color: rgba(31, 41, 51, 0.5);
}

.other-actions-body-product__select option {
  padding: 3px 5px;
}

.price-other-actions-body-product {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  flex-direction: row-reverse;
}

.price-other-actions-body-product__old {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  text-align: right;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  color: #A3A3A3;
  text-transform: uppercase;
}

.price-other-actions-body-product__old::after {
  content: " RON";
}

.price-other-actions-body-product__new {
  font-weight: 600;
  font-size: 24px;
  line-height: 22px;
  text-align: right;
  color: #1F2933;
  text-transform: uppercase;
}

.price-other-actions-body-product__new::after {
  content: " RON";
  font-size: 14px;
  line-height: 17px;
}

.price-other-actions-body-product__static {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-align: right;
  color: #1F2933;
  text-transform: uppercase;
}

.price-other-actions-body-product__static::after {
  content: " RON";
  font-size: 14px;
  line-height: 17px;
}

.quantity-product {
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  overflow: hidden;
}

.quantity-product__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  position: relative;
  cursor: pointer;
  background: #F62559;
  border-radius: 4px;
}

.quantity-product__button::before,
.quantity-product__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  width: 9px;
  height: 2px;
}

.quantity-product__button_plus::before {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
      -ms-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}

.quantity-product__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: auto;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  background: #F3F3F3;
  border-radius: 4px;
}

.quantity-product__input input {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #1F2933;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: 0px;
  max-width: 25px;
  background: transparent;
}

.quantity-product__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #1F2933;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.counts-actions-body-product._active .counts-actions-body-product__quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.counts-actions-body-product._active .actions-body-product__cart {
  display: none;
}

.counts-actions-body-product__quantity {
  display: none;
}

.mini-banner {
  padding: 100px 0px;
  background: #F9F9F9;
}

.mini-banner__body {
  position: relative;
}

.mini-banner__image {
  width: 100%;
  height: 400px;
  position: relative;
}

.mini-banner__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.mini-banner__image-md1 {
  display: none;
}

.mini-banner__image-md2 {
  display: none;
}

.mini-banner__image-md4 {
  display: none;
}

.mini-banner__content {
  position: absolute;
  top: 50%;
  left: 200px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #FFFFFF;
  -webkit-box-shadow: 0px 8px 28px -6px rgba(24, 39, 75, 0.12), 0px 18px 88px -4px rgba(24, 39, 75, 0.14);
          box-shadow: 0px 8px 28px -6px rgba(24, 39, 75, 0.12), 0px 18px 88px -4px rgba(24, 39, 75, 0.14);
  border-radius: 8px;
  padding: 45px 40px;
  max-width: 400px;
}

.mini-banner__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #1F2933;
  margin-bottom: 15px;
}

.mini-banner__description {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #1F2933;
}

.mini-banner__more {
  margin-top: 20px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F62559;
  border-radius: 4px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mini-banner__more::after {
  content: "";
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  background: url(../img/icons/more-w.svg) center/auto no-repeat;
}

.events {
  padding: 100px 0px 50px;
  background: #F9F9F9;
}

.events__body {
  margin-top: 30px;
}

.head-events {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.head-events__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-weight: 800;
  font-size: 36px;
  line-height: 50px;
  color: #1F2933;
}

.head-events__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.head-events__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36px;
          flex: 0 0 36px;
  height: 36px;
  width: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.head-events__arrow img {
  width: 100%;
  max-width: 100%;
}

.head-events__more {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: right;
  color: #F62559;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.head-events__more::after {
  content: "";
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  background: url(../img/icons/more-r.svg) center/auto no-repeat;
}

.body-events__slider {
  margin: 0px;
  padding: 90px 0px;
}
.events_block{
  margin: 0px;
  padding: 90px 0px;
}
.events_block .body-events__item{
  opacity: 1;
  -webkit-box-shadow: 0px 8px 22px -6px rgb(24 39 75 / 12%), 0px 14px 64px -4px rgb(24 39 75 / 12%);
  box-shadow: 0px 8px 22px -6px rgb(24 39 75 / 12%), 0px 14px 64px -4px rgb(24 39 75 / 12%);
}
.event-item__text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
}
.body-events__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
          flex: 0 0 calc((100% - 30px * 2) / 3);
}

.body-events__item:not(:last-child) {
  margin-right: 30px;
}

.body-events__paggitanoin {
  margin-top: 20px;
}

.event-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 8px 22px -6px rgba(24, 39, 75, 0.12), 0px 14px 64px -4px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 22px -6px rgba(24, 39, 75, 0.12), 0px 14px 64px -4px rgba(24, 39, 75, 0.12);
  border-radius: 8px;
}

.event-item__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.event-item__info {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 193px;
          flex: 0 0 193px;
}

.event-item__other {
  padding: 34px 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.event-item__other::after {
  content: "";
  width: 195px;
  height: 3px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.event-item__other._web::after {
  background: #2075F6;
}

.event-item__other._sim::after {
  background: #753250;
}

.event-item__format {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.event-item__icon {
  margin-top: 3px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
}

.event-item__icon img {
  width: 100%;
  max-width: 100%;
}

.event-item__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #A3A3A3;
}

.event-item__details {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #1F2933;
}

.event-item__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 236px;
          flex: 0 0 236px;
  position: relative;
  height: 346px;
  border-radius: 0px 8px 8px 0px;
  overflow: hidden;
}

.event-item__image img {
  width: 100%;
  height: 160px;
  position: relative;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.event-item__image-mobile {
  display: none;
}

.info-event-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 16px 20px 0px;
}

.info-event-item__main {
  margin-top: 20px;
}

.info-event-item__modification {
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 24px;
  right: 20px;
}

.info-event-item__modification P {
  border-radius: 4px;
  padding: 2px 14px;
}

.info-event-item__modification ._webinar {
  background: #2075F6;
}

.info-event-item__modification ._seminar {
  background: #753250;
}

.info-event-item__description {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1F2933;
}

.date-info-event-item {
  position: relative;
}

.date-info-event-item__day {
  font-weight: 500;
  font-size: 56px;
  line-height: 68px;
  text-align: center;
  text-transform: uppercase;
  color: #E2E2E2;
}

.date-info-event-item__mounth {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  color: #1F2933;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.news-articles {
  padding: 50px 0px 100px;
  background: #F9F9F9;
}

.head-news-articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.head-news-articles__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 50px;
  color: #1F2933;
}

.head-news-articles__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  margin-left: 50px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.head-news-articles__item {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #1F2933;
  border-bottom: 1px solid transparent;
}

.head-news-articles__item a {
  color: inherit;
}

.head-news-articles__item._active {
  color: #F62559;
  border-color: #F62559;
}

.head-news-articles__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.head-news-articles__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36px;
          flex: 0 0 36px;
  height: 36px;
  width: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.head-news-articles__arrow img {
  width: 100%;
  max-width: 100%;
}

.head-news-articles__more {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: right;
  color: #F62559;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.head-news-articles__more::after {
  content: "";
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  background: url(../img/icons/more-r.svg) center/auto no-repeat;
}

.body-news-articles {
  margin-top: 30px;
}

.body-news-articles__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 3) / 4);
          flex: 0 0 calc((100% - 30px * 3) / 4);
}

.body-news-articles__item:not(:last-child) {
  margin-right: 30px;
}

.body-news-articles__paggitanoin {
  margin-top: 20px;
}

.item-news-articles__image {
  width: 100%;
  padding-bottom: 63%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: block;
}

.item-news-articles__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-news-articles__content {
  padding: 20px 3px 0px;
}

.item-news-articles__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1F2933;
  margin-bottom: 10px;
}

.item-news-articles__date {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #A3A3A3;
}

.basket {
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #FFFFFF;
  max-width: 500px;
  width: 100%;
  z-index: 991;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  pointer-events: none;
}

.basket._active {
  -webkit-box-shadow: -12px 0px 16px rgba(11, 13, 33, 0.08);
          box-shadow: -12px 0px 16px rgba(11, 13, 33, 0.08);
  -webkit-transform: translate(0px);
      -ms-transform: translate(0px);
          transform: translate(0px);
  pointer-events: all;
}

.basket__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.basket__head {
  padding: 72px 40px 20px;
  border: 1px solid #DDE5EA;
}

.basket__body {
  padding: 10px 40px 50px;
  overflow-y: auto;
}

.head-basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.head-basket__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  display: flex;
  align-items: center;
  color: #1F2933;
}

.head-basket__title::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  width: 30px;
  height: 30px;
  background: url(../img/icons/menu/cart.svg) center/auto no-repeat;
}

.head-basket__close {
  cursor: pointer;
}

.list-basket {
  margin-bottom: 30px;
}

.list-basket__item {
  padding: 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  border-bottom: 1px solid #DDE5EA;
}

.list-basket__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-basket__image img {
  width: auto;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.list-basket__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.list-basket__main {
  width: 100%;
}

.list-basket__actions {
  width: 100%;
}

.main-list-basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.main-list-basket__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.main-list-basket__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
}

.main-list-basket__weight {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #1F2933;
  margin-top: 10px;
}

.main-list-basket__delete {
  cursor: pointer;
}

.actions-list-basket {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.actions-list-basket__quantity .quantity {
  width: 129px;
  border: none;
}

.actions-list-basket__quantity .quantity__button {
  border: 1px solid #DDE5EA;
  border-radius: 4px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
}

.actions-list-basket__quantity .quantity__button::after,
.actions-list-basket__quantity .quantity__button::before {
  height: 2px;
  width: 13px;
  background: #1F2933;
  margin: 0 0 0 -6.5px;
}

.actions-list-basket__quantity .quantity__input input {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #1F2933;
}

.actions-list-basket__price {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.price-actions-list-basket__old {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  color: #A3A3A3;
}

.price-actions-list-basket__new {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #F62559;
}

.price-actions-list-basket__static {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #1F2933;
}

.price-basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.price-basket__item {
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.price-basket__item._total {
  font-weight: 600;
}

.price-basket__name {
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.price-basket__value {
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
}

.buttons-basket {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.buttons-basket__btn {
  border-radius: 4px;
  width: 100%;
  height: 44px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44px;
          flex: 0 0 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.buttons-basket__btn._white {
  border: 1px solid #1F2933;
  color: #1F2933;
}

.buttons-basket__btn._red {
  background: #F62559;
  color: #fff;
}

.login {
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #FFFFFF;
  max-width: 500px;
  width: 100%;
  z-index: 30;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  pointer-events: none;
}

.login._active {
  -webkit-transform: translate(0px);
      -ms-transform: translate(0px);
          transform: translate(0px);
  pointer-events: all;
  -webkit-box-shadow: -12px 0px 16px rgba(11, 13, 33, 0.08);
          box-shadow: -12px 0px 16px rgba(11, 13, 33, 0.08);
}

.login__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.login__head {
  padding: 72px 40px 20px;
  border: 1px solid #DDE5EA;
}

.login__body {
  margin-top: 60px;
  padding: 40px 40px 50px;
  overflow-y: auto;
}

.head-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.head-login__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  display: flex;
  align-items: center;
  color: #1F2933;
}

.head-login__title::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  width: 30px;
  height: 30px;
  background: url(../img/icons/menu/log.svg) center/auto no-repeat;
}

.head-login__close {
  cursor: pointer;
}

.body-login {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.body-login__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1F2933;
}

.body-login__content {
  margin-top: 5px;
  position: relative;
}

.body-login__input {
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 20px;
  font-size: 14px;
  line-height: 17px;
}

.body-login__input::-webkit-input-placeholder {
  color: #A3A3A3;
}

.body-login__input::-moz-placeholder {
  color: #A3A3A3;
}

.body-login__input:-ms-input-placeholder {
  color: #A3A3A3;
}

.body-login__input::-ms-input-placeholder {
  color: #A3A3A3;
}

.body-login__input::placeholder {
  color: #A3A3A3;
}

.body-login__input:focus {
  border: 1px solid #1F2933;
}

.body-login__eye {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.body-login__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.body-login__check .checkbox__input:checked + .checkbox__text::before {
  opacity: 1;
}

.body-login__check .checkbox__text::before {
  background: url(../img/icons/checked.svg) center/cover no-repeat;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.body-login__fargot {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #A3A3A3;
}

.body-login__btn {
  width: 100%;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background: #F62559;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

.body-login__reg {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
  text-align: center;
}

.body-login__reg span {
  text-decoration: underline;
  color: inherit;
  cursor: pointer;
}

.eye {
  cursor: pointer;
}

.eye._active .eye__icon._visible {
  display: block;
}

.eye._active .eye__icon._hidden {
  display: none;
}

.eye__icon._visible {
  display: none;
}

.register {
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #FFFFFF;
  max-width: 500px;
  width: 100%;
  z-index: 30;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  pointer-events: none;
}

.register._active {
  -webkit-transform: translate(0px);
      -ms-transform: translate(0px);
          transform: translate(0px);
  pointer-events: all;
  -webkit-box-shadow: -12px 0px 16px rgba(11, 13, 33, 0.08);
          box-shadow: -12px 0px 16px rgba(11, 13, 33, 0.08);
}

.register__contnet {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.register__head {
  padding: 72px 40px 20px;
  border: 1px solid #DDE5EA;
}

.register__body {
  padding: 40px 40px 50px;
  overflow-y: auto;
}

.head-register {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.head-register__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  display: flex;
  align-items: center;
  color: #1F2933;
}

.head-register__title::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  width: 30px;
  height: 30px;
  background: url(../img/icons/menu/log.svg) center/auto no-repeat;
}

.head-register__close {
  cursor: pointer;
}

.body-register {
  width: 100%;
}

.body-register__form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.body-register__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1F2933;
}

.body-register__content {
  margin-top: 5px;
  position: relative;
}

.body-register__input {
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 20px;
  font-size: 14px;
  line-height: 17px;
}

.body-register__input::-webkit-input-placeholder {
  color: #A3A3A3;
}

.body-register__input::-moz-placeholder {
  color: #A3A3A3;
}

.body-register__input:-ms-input-placeholder {
  color: #A3A3A3;
}

.body-register__input::-ms-input-placeholder {
  color: #A3A3A3;
}

.body-register__input::placeholder {
  color: #A3A3A3;
}

.body-register__input:focus {
  border: 1px solid #1F2933;
}

.body-register__eye {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.body-register__check {
  width: 100%;
}

.body-register__check .checkbox__input:checked + .checkbox__text::before {
  opacity: 1;
}

.body-register__check .checkbox__text::before {
  background: url(../img/icons/checked.svg) center/cover no-repeat;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.body-register__check .checkbox__text {
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #1F2933;
  padding-right: 5px;
}

.body-register__check a {
  color: inherit;
}

.body-register__btn {
  width: 100%;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background: #F62559;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

.body-register__log {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
  text-align: center;
}

.body-register__log span {
  text-decoration: underline;
  color: inherit;
  cursor: pointer;
}

.filter {
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #FFFFFF;
  max-width: 500px;
  width: 100%;
  z-index: 30;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  pointer-events: none;
  z-index: 99;
}

.filter._active {
  -webkit-transform: translate(0px);
      -ms-transform: translate(0px);
          transform: translate(0px);
  pointer-events: all;
  -webkit-box-shadow: -12px 0px 16px rgba(11, 13, 33, 0.08);
          box-shadow: -12px 0px 16px rgba(11, 13, 33, 0.08);

}

.filter__contnet {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.filter__head {
  padding: 72px 40px 20px;
  border: 1px solid #DDE5EA;
}

.filter__body {
  padding-bottom: 50px;
  overflow-y: auto;
}

.head-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.head-filter__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  display: flex;
  align-items: center;
  color: #1F2933;
}

.head-filter__title::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  width: 30px;
  height: 30px;
  background: url(../img/icons/filter.svg) center/auto no-repeat;
}

.head-filter__close {
  cursor: pointer;
}

.body-filter__row {
  padding: 30px 40px;
  border-bottom: 1px solid #DDE5EA;
}

.body-filter__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
  cursor: pointer;
}

.body-filter__name._active::after {
  content: "";
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.body-filter__name::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 16px;
  background: url(../img/icons/spoller-black.svg) center/auto no-repeat;
}

.body-filter__content {
  /*display: none;*/
  margin-top: 20px;
}

.body-filter__item {
  display: block;
  width: 100%;
}

.body-filter__item .checkbox__input:checked + .checkbox__text::before {
  opacity: 1;
}

.body-filter__item .checkbox__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.body-filter__item .checkbox__text::before {
  background: url(../img/icons/checked.svg) center/cover no-repeat;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.body-filter__item:not(:last-child) {
  margin-bottom: 15px;
}

.body-filter__buttons {
  padding: 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.body-filter__btn._reset {
  background: transparent;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.body-filter__btn._reset::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
  display: inline-block;
  margin-left: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: url(../img/icons/reset.svg) center/auto no-repeat;
}

.body-filter__btn._send {
  padding: 12px 72px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  background: #F62559;
  border-radius: 4px;
}

.breadcrums {
  padding: 30px 0px 30px;
}

.breadcrums__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.breadcrums__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  white-space: nowrap;
}

.breadcrums__item:not(:last-child)::after {
  content: "";
  height: 14px;
  width: 14px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
  background: url(../img/icons/breadcrums-arrow.svg) center/auto no-repeat;
}

.breadcrums__link {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #A3A3A3;
}

.breadcrums__back {
  margin-top: 20px;
}

.back-breadcrums {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #1F2933;
}

.back-breadcrums__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  background: #A3A3A3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.back-breadcrums__icon picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.back-breadcrums__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
}

.catalog {
  padding-bottom: 100px;
}

.catalog__pagging {
  margin-top: 40px;
}

.head-catalog {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.head-catalog__counts {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.head-catalog__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.head-catalog__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.head-catalog__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
}

.head-catalog__select .select__title {
  background: transparent;
  padding: 0px;
  border: none;
}

.head-catalog__select .select__value {
  padding: 0px 0px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #F62559;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  min-width: 110px;
}

.head-catalog__select .select__value::before {
  background: url(../img/icons/red-down.svg) center/auto no-repeat;
}

.head-catalog__select .select__value span {
  height: auto;
}

.head-catalog__select .select__options {
  padding: 5px 0px;
  border: 1px solid #d9d9d9;
}

.head-catalog__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 5px 11px;
  background: #1F2933;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  cursor: pointer;
}

.head-catalog__button::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background: url(../img/icons/fiter.svg) center/auto no-repeat;
}

.body-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

.body-catalog__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 4) / 5);
          flex: 0 0 calc((100% - 30px * 4) / 5);
}

.pagging__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.pagging__item {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #1F2933;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.pagging__item._arrow._disabled {
  pointer-events: none;
}

.pagging__item._arrow._disabled svg path {
  fill: #A3A3A3;
}

.pagging__item._arrow._prev {
  margin-right: 10px;
}

.pagging__item._arrow._next {
  margin-left: 10px;
}

.pagging__item._active {
  color: #F62559;
  border-color: #F62559;
}

.card {
  padding-bottom: 70px;
}

.card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.card__image {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38.4%;
          flex: 0 0 38.4%;
}

.card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  background: #FFFFFF;
  border-radius: 8px;
}

.image-card__content {
  border-radius: 8px;
  border: 1px solid #E3E3E3;
  position: relative;
}

.image-card__image {
  max-width: 570px;
  width: 100%;
  height: 450px;
  position: relative;
  background: #ffffff;
}
a.image_gallery {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.products_banner__arrows {
  position: absolute;
  bottom: 5px;
  right: 10px;
  display: flex;
  grid-gap: 10px;
}
.image-card__image img {
  width: 100%;
  height: 100%;
}
.image-card__image  img.product_img {
  width: auto;
  height: 100%;
}

.image-card__like {
  position: absolute;
  top: 30px;
  right: 30px;
  height: 40px;
  width: 40px;
  background: rgba(246, 37, 89, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.image-card__like._active .image-card__icon {
  display: none;
}

.image-card__like._active .image-card__icon-active {
  display: block;
}

.image-card__icon {
  display: block;
}

.image-card__icon-active {
  display: none;
}

.body-card {
  padding: 40px;
}

.body-card__tabs {
  margin-top: 30px;
}

.main-body-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: column;
}

.main-body-card__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}



.info-main-body-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.info-main-body-card__name {
  font-weight: 800;
  font-size: 36px;
  line-height: 45px;
  color: #1F2933;
}

.info-main-body-card__modification {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #ffffff;
  background: #f62559;
  padding: 3px 10px;
  border-radius: 4px;
  width: max-content;
}

.info-main-body-card__description {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #333333;
}

.actions-main-body-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 20px;
  margin-top: 16px;
}

.actions-main-body-card__select {
  max-width: 92px;
  width: 100%;
}

.actions-main-body-card__select .select__title {
  border: 1px solid #DDE5EA;
}

.actions-main-body-card__select .select__value {
  padding: 0px 7px 0px 10px;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.actions-main-body-card__select .select__options {
  padding: 5px 0px;
  font-size: 14px;
}

.actions-main-body-card__select .select__option {
  padding: 4px 10px;
}

.actions-main-body-card__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 20px;
  position: relative;
  padding-bottom: 68px;
}

.actions-main-body-card__card {
  width: 240px;
  height: 42px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  background: #F62559;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.actions-main-body-card__card::before {
  content: "";
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  background: url(../img/icons/card-white.svg) center/auto no-repeat;
}

.price-actions-main-body-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.price-actions-main-body-card__old {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #1f2933;
}

.price-actions-main-body-card__old::after {
  content: " RON";
}

.price-actions-main-body-card__static {
  font-weight: 700;
  font-size: 32px;
  line-height: 34px;
  color: #f62559;
}

.price-actions-main-body-card__static::after {
  content: " RON";
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
}
.vatiable_title {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #333333;
  margin-bottom: 8px;
}
.tabs-body-card {
  width: 100%;
}

.tabs-body-card__nav {
  width: 100%;
}

.tabs-body-card__list {
  border-bottom: 1px solid #DEDEDE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  padding-bottom: 6px;
}

.tabs-body-card__item {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #1F2933;
  position: relative;
  cursor: pointer;
  padding-bottom: 5px;
  padding-top: 3px;
}

.tabs-body-card__blocks {
  padding-top: 30px;
}

.tabs-body-card__block {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #1F2933;
}

.tabs-body-card__block > *:not(:last-child) {
  margin-bottom: 10px;
}

.tabs-body-card__block ul {
  list-style: disc;
  padding-left: 25px;
}

.tabs-body-card__block ul li {
  list-style: disc;
}

.tabs-body-card__block ul li:not(:last-child) {
  margin-bottom: 10px;
}

.cart-page {
  padding-bottom: 100px;
}

.cart-page__content {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.cart-page__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.cart-page__sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 395px;
          flex: 0 0 395px;
}

.main-cart-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.item-main-cart-page {
  width: 100%;
  padding: 30px 50px;
  background: #FFFFFF;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.item-main-cart-page__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.main-item-main-cart-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 470px;
          flex: 0 0 470px;
}

.main-item-main-cart-page__image {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  height: 100px;
}

.main-item-main-cart-page__image img {
  width: auto;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
a.main-item-main-cart-page__image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.main-item-main-cart-page__info {
  margin-left: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  display: block;
  row-gap: 10px;
}

.main-item-main-cart-page__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
  margin-bottom: 10px;
  display: inline-block;
}

.main-item-main-cart-page__weight {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #1F2933;
}

.price-main-item-main-cart-page {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.price-main-item-main-cart-page__old {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  color: #A3A3A3;
  text-transform: uppercase;
}

.price-main-item-main-cart-page__old::after {
  content: " RON";
}

.price-main-item-main-cart-page__new {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #F62559;
  text-transform: uppercase;
}

.price-main-item-main-cart-page__new::after {
  content: " RON";
  font-size: 14px;
  line-height: 17px;
}

.price-main-item-main-cart-page__static {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #1F2933;
  text-transform: uppercase;
}

.price-main-item-main-cart-page__static::after {
  content: " RON";
  font-size: 14px;
  line-height: 17px;
}

.actions-item-main-cart-page__quantity {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
}

.actions-item-main-cart-page__quantity .quantity {
  width: 100%;
  border: none;
}

.actions-item-main-cart-page__quantity .quantity__button {
  border: 1px solid #DDE5EA;
  border-radius: 4px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
}

.actions-item-main-cart-page__quantity .quantity__button::after,
.actions-item-main-cart-page__quantity .quantity__button::before {
  height: 2px;
  width: 13px;
  background: #1F2933;
  margin: 0 0 0 -6.5px;
}

.actions-item-main-cart-page__quantity .quantity__input input {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #1F2933;
}

.actions-item-main-cart-page__tital {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #1F2933;
  text-transform: uppercase;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
}

.actions-item-main-cart-page__tital::after {
  content: " RON";
  font-size: 14px;
  line-height: 17px;
}

.sidebar-cart-page {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 40px;
}

.sidebar-cart-page__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #1F2933;
}

.sidebar-cart-page__list {
  padding: 25px 0px 30px;
  border-bottom: 1px solid #DDE5EA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.sidebar-cart-page__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sidebar-cart-page__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
}

.sidebar-cart-page__value {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
}

.sidebar-cart-page__totals {
  margin: 30px 0px;
}

.sidebar-cart-page__btn {
  width: 100%;
  height: 42px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  background: #F62559;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.totals-sidebar-cart-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.totals-sidebar-cart-page__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #1F2933;
}

.totals-sidebar-cart-page__value {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #1F2933;
}

.welcome {
  padding: 100px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.welcome__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.welcome__content {
  background: #FFFFFF;
  border-radius: 8px;
  width: 100%;
  max-width: 530px;
  padding: 40px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.welcome__icon {
  margin-bottom: 35px;
}

.welcome__title {
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #1F2933;
  text-align: center;
}

.welcome__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #1F2933;
  margin-bottom: 35px;
}

.welcome__btn {
  width: 100%;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F62559;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

.mini-header {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 6px 8px -6px rgba(24, 39, 75, 0.12), 0px 8px 16px -6px rgba(24, 39, 75, 0.08);
          box-shadow: 0px 6px 8px -6px rgba(24, 39, 75, 0.12), 0px 8px 16px -6px rgba(24, 39, 75, 0.08);
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
}

.mini-header__container {
  max-width: 1025px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mini-header__back {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.mini-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 169px;
          flex: 0 0 169px;
}

.mini-header__logo img {
  width: 100%;
  max-width: 100%;
}

.mini-header__phone {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.back-mini-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #1F2933;
}

.back-mini-header__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  height: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background: #A3A3A3;
}

.back-mini-header__icon picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.back-mini-header__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}

.phone-mini-header {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #1F2933;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

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

.order__container {
  max-width: 1025px;
}

.order__title {
  margin-bottom: 20px;
}

.order__subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
}

.order__subtitle a {
  color: inherit;
  text-decoration: underline;
}

.order__content {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.order__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.order__sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 395px;
          flex: 0 0 395px;
}

.main-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}

.main-order__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #1F2933;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.main-order__title::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 1px;
  background: #D6D6D6;
}

.main-order__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.main-order__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.main-order__label {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
}

.main-order__body {
  width: 100%;
}

.main-order__body .select__title {
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
}

.main-order__body .select__value {
  padding: 0px 20px;
  height: 48px;
}

.main-order__body .select__options {
  top: calc(100% - 10px);
}

.main-order__body .select__option {
  padding: 4px 20px;
}

.main-order__body .select__option[data-value="0"] {
  display: none;
  position: fixed;
  top: -999px;
  left: -999px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.main-order__body .checkbox .checkbox__input:checked + .checkbox__text:before {
  opacity: 1;
}

.main-order__body .checkbox .checkbox__text:before,
.body-register__check .checkbox__text::before{
  background: url(../img/icons/checked.svg) center/auto no-repeat;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 3px;
  opacity: 1;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.main-order__body .checkbox__input:checked + .checkbox__text::before,
.body-register__check .checkbox__input:checked + .checkbox__text::before{
  background: url(../img/icons/checked.svg) center/auto no-repeat;
  border: 1px solid #F62559;
}

.main-order__input {
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  width: 100%;
  min-width: 0px;
  max-width: 100%;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 10px 0px 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}

.main-order__input::-webkit-input-placeholder {
  color: #A3A3A3;
}

.main-order__input::-moz-placeholder {
  color: #A3A3A3;
}

.main-order__input:-ms-input-placeholder {
  color: #A3A3A3;
}

.main-order__input::-ms-input-placeholder {
  color: #A3A3A3;
}

.main-order__input::placeholder {
  color: #A3A3A3;
}

.tabs-main-order__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.tabs-main-order__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px ) / 2);
          flex: 0 0 calc((100% - 30px ) / 2);
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 8px;
  padding: 30px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  cursor: pointer;
}

.tabs-main-order__item._active {
  border: 1px solid #F62559;
}

.tabs-main-order__item._active .tabs-main-order__icon svg path {
  fill: #F62559;
}

.tabs-main-order__item._active .tabs-main-order__icon svg line {
  stroke: #F62559;
}

.tabs-main-order__item._active .tabs-main-order__name {
  color: #1F2933;
}

.tabs-main-order__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #A3A3A3;
}

.tabs-main-order__blocks {
  margin-top: 20px;
}

.tabs-main-order__block._texted {
  margin-top: 10px;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
}

.tabs-main-order__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.tabs-main-order__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.tabs-main-order__columns .main-order__row {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px) / 2);
          flex: 0 0 calc((100% - 30px) / 2);
}

.text-tabs-main-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.text-tabs-main-order__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.text-tabs-main-order__name {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #1F2933;
}

.text-tabs-main-order__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #1F2933;
}

.pay-main-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.pay-main-order__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px ) / 2);
          flex: 0 0 calc((100% - 30px ) / 2);
}

.pay-main-order__item .checkbox__input:checked + .checkbox__content {
  border: 1px solid #F62559;
}

.pay-main-order__item .checkbox__input:checked + .checkbox__content .checkbox__icon svg path {
  fill: #F62559;
}

.pay-main-order__item .checkbox__input:checked + .checkbox__content .checkbox__icon svg line {
  stroke: #F62559;
}

.pay-main-order__item .checkbox__input:checked + .checkbox__content .checkbox__text {
  color: #1F2933;
}

.pay-main-order__item .checkbox__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #A3A3A3;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.pay-main-order__item .checkbox__text::before {
  content: "";
  display: none;
  margin-right: 0;
}

.pay-main-order__item .checkbox__content {
  width: 100%;
  min-height: 100%;
  padding: 35px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 8px;
}

.coments-main-order {
  margin-top: 20px;
}

.coments-main-order__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1F2933;
}

.coments-main-order__textarea {
  margin-top: 5px;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  resize: none;
  width: 100%;
  height: 140px;
  padding: 15px 20px;
  overflow-y: auto;
}

.coments-main-order__textarea::-webkit-input-placeholder {
  color: #A3A3A3;
}

.coments-main-order__textarea::-moz-placeholder {
  color: #A3A3A3;
}

.coments-main-order__textarea:-ms-input-placeholder {
  color: #A3A3A3;
}

.coments-main-order__textarea::-ms-input-placeholder {
  color: #A3A3A3;
}

.coments-main-order__textarea::placeholder {
  color: #A3A3A3;
}

.sidebar-order__wrapper {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 40px;
}

.sidebar-order__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #1F2933;
}

.sidebar-order__list {
  padding: 25px 0px 30px;
  border-bottom: 1px solid #DDE5EA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.sidebar-order__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sidebar-order__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
}

.sidebar-order__value {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
}

.sidebar-order__totals {
  margin: 30px 0px;
}

.sidebar-order__btn {
  width: 100%;
  height: 42px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  background: #F62559;
  border-radius: 4px;
  display: block;
}

.totals-sidebar-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.totals-sidebar-order__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #1F2933;
}

.totals-sidebar-order__value {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #1F2933;
}

.profile {
  padding-bottom: 40px;
}

.profile__head {
  margin-top: 40px;
}

.profile__body {
  margin-top: 40px;
}

.head-profile__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  margin-right: -20px;
  margin-left: -20px;
  padding-left: 20px;
  overflow-x: auto;
  margin-bottom: -15px;
  padding-bottom: 15px;
}

.head-profile__item {
  padding: 13px 21px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1F2933;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  background: #FFFFFF;
  border-radius: 6px;
  white-space: nowrap;
}

.head-profile__item._exit {
  padding: 0px;
  padding-right: 20px;
  background: transparent;
}

.head-profile__item._exit::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
  background: url(../img/icons/exit.svg) center/auto no-repeat;
}

.head-profile__item._active {
  background: rgba(246, 37, 89, 0.1);
}

.info-body-profile {
  padding: 40px;
  border-radius: 8px;
  background: #fff;
  width: 100%;
  max-width: 730px;
}

.info-body-profile__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: #1F2933;
}

.info-body-profile__list {
  margin: 30px 0px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.info-body-profile__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.info-body-profile__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #A3A3A3;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px) / 2);
          flex: 0 0 calc((100% - 20px) / 2);
}

.info-body-profile__value {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px) / 2);
          flex: 0 0 calc((100% - 20px) / 2);
}

.info-body-profile__edit {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #F62559;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-body-profile__edit::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  background: url(../img/icons/edit.svg) center/auto no-repeat;
}

.edit-body-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  max-width: 1035px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.edit-body-profile__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px) / 2);
          flex: 0 0 calc((100% - 30px) / 2);
  background: #FFFFFF;
  border-radius: 8px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.edit-body-profile__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: #1F2933;
}

.edit-body-profile__content {
  margin: 30px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.edit-body-profile__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.edit-body-profile__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
}

.edit-body-profile__body {
  width: 100%;
  position: relative;
}

.edit-body-profile__input {
  width: 100%;
  min-width: 0px;
  max-width: 100%;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  color: #1F2933;
  border-radius: 4px;
  padding: 0px 20px;
  height: 48px;
  font-size: 16px;
}

.edit-body-profile__input::-webkit-input-placeholder {
  font-size: 14px;
  line-height: 17px;
  color: #A3A3A3;
}

.edit-body-profile__input::-moz-placeholder {
  font-size: 14px;
  line-height: 17px;
  color: #A3A3A3;
}

.edit-body-profile__input:-ms-input-placeholder {
  font-size: 14px;
  line-height: 17px;
  color: #A3A3A3;
}

.edit-body-profile__input::-ms-input-placeholder {
  font-size: 14px;
  line-height: 17px;
  color: #A3A3A3;
}

.edit-body-profile__input::placeholder {
  font-size: 14px;
  line-height: 17px;
  color: #A3A3A3;
}

.edit-body-profile__input:focus {
  border: 1px solid #1F2933;
}

.edit-body-profile__btn {
  width: 152px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F62559;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

.edit-body-profile__eye {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.history-body-profile {
  background: #FFFFFF;
  border-radius: 10px;
  width: 100%;
  padding: 40px 50px 10px;
}

.head-history-body-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #D5D5D5;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.head-history-body-profile__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 3 - 14px) / 3);
          flex: 0 0 calc((100% - 20px * 3 - 14px) / 3);
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
}

.head-history-body-profile__item._arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
}

.body-history-body-profile__item:not(:last-child) .main-body-history-body-profile:not(._active) {
  border-bottom: 1px solid #D5D5D5;
}

.body-history-body-profile__submenu {
  display: none;
}

.main-body-history-body-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding: 30px 0px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.main-body-history-body-profile._active {
  border-bottom: none;
}

.main-body-history-body-profile._active .main-body-history-body-profile__item._arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.main-body-history-body-profile__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 3 - 14px) / 3);
          flex: 0 0 calc((100% - 20px * 3 - 14px) / 3);
}

.main-body-history-body-profile__item._price::after {
  content: " RON";
}

.main-body-history-body-profile__item._arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.submenu-body-history {
  padding: 30px 30px 10px;
  background: #F9F9F9;
}

.submenu-body-history__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
  margin-bottom: 20px;
}

.head-submenu-body-history {
  padding-bottom: 10px;
  border-bottom: 1px solid #D5D5D5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.head-submenu-body-history__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
          flex: 0 0 calc((100% - 20px * 3) / 4);
}

.body-submenu-body-history__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 20px 0px;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.body-submenu-body-history__row:not(:last-child) {
  border-bottom: 1px solid #D5D5D5;
}

.body-submenu-body-history__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 3) / 4);
          flex: 0 0 calc((100% - 20px * 3) / 4);
}

.body-submenu-body-history__top {
  display: none;
}

.body-submenu-body-history__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.body-submenu-body-history__bottom._product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.body-submenu-body-history__image {
  position: relative;
  height: 100px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
}

.body-submenu-body-history__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.body-submenu-body-history__name {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #191919;
}

.body-submenu-body-history__weight {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #A3A3A3;
}

.body-submenu-body-history__price {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
  text-transform: uppercase;
}

.body-submenu-body-history__price::after {
  content: " RON";
}

.body-submenu-body-history__price_old {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  color: #A3A3A3;
  text-transform: uppercase;
}

.body-submenu-body-history__price_old::after {
  content: " RON";
}

.profile-favorite {
  padding: 40px 0px;
  background: #fff;
}

.profile-favorite__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

.profile-favorite__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 4) / 5);
          flex: 0 0 calc((100% - 30px * 4) / 5);
}

.news {
  padding-bottom: 100px;
}

.news__content {
  margin-top: 40px;
}

.news__body {
  margin-top: 40px;
}

.news__pagging {
  margin-top: 50px;
}

.head-news {
  margin: 0px -20px;
  overflow-x: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.head-news::after {
  content: "";
  width: 0px;
  height: 100%;
  display: inline-block;
}

.head-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  padding: 0px 0px 15px 20px;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}

.head-news__item {
  padding: 13px 21px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #1F2933;
  background: #F9F9F9;
  border-radius: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #F9F9F9;
  margin-right: 20px;
}

.head-news__item._active {
  background: #FAE5EA;
}

.body-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.body-news__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 3) / 4);
          flex: 0 0 calc((100% - 30px * 3) / 4);
}

.body-news__item:hover .body-news__image img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.body-news__image {
  width: 100%;
  padding-bottom: 63%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: block;
}

.body-news__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.body-news__info {
  padding-top: 20px;
}

.body-news__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.body-news__date {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #A3A3A3;
}

.page-article {
  padding-bottom: 50px;
}

.page-article__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 115px;
     -moz-column-gap: 115px;
          column-gap: 115px;
}

.page-article__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.page-article__sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
}

.main-page-article__body {
  margin-top: 50px;
}

.head-main-page-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.head-main-page-article__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 50px) / 2);
          flex: 0 0 calc((100% - 50px) / 2);
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  padding: 55px 50px;
  -webkit-box-shadow: 0px 8px 22px -6px rgba(24, 39, 75, 0.12), 0px 14px 64px -4px rgba(24, 39, 75, 0.12);
          box-shadow: 0px 8px 22px -6px rgba(24, 39, 75, 0.12), 0px 14px 64px -4px rgba(24, 39, 75, 0.12);
}

.head-main-page-article__modification P {
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
  color: #FFFFFF;
  border-radius: 4px;
  padding: 2px 12px;
  display: inline;
}

.head-main-page-article__news {
  background: #2075F6;
}

.head-main-page-article__sale {
  background: #753250;
}

.head-main-page-article__event {
  background: #753250;
}

.head-main-page-article__title {
  font-weight: 800;
  font-size: 36px;
  line-height: 45px;
  color: #1F2933;
  margin: 20px 0px 30px;
}

.head-main-page-article__date {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #A3A3A3;
}

.head-main-page-article__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 50px) / 2);
          flex: 0 0 calc((100% - 50px) / 2);
  padding-bottom: 33.5%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.head-main-page-article__image._events {
  padding-bottom: 40%;
}

.head-main-page-article__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.events-head-main-page-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -50px;
  padding-left: 50px;
  padding-top: 40px;
  position: relative;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.events-head-main-page-article::after {
  content: "";
  width: 195px;
  height: 3px;
  background: #753250;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.events-head-main-page-article__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #A3A3A3;
}

.news-body-main-page-article {
  background: #fff;
  padding: 50px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #1F2933;
}

.news-body-main-page-article h4 {
  font-weight: 600;
}

.news-body-main-page-article ul {
  list-style: disc;
  padding-left: 25px;
}

.news-body-main-page-article ul li {
  list-style: disc;
}

.news-body-main-page-article__row > *:not(:last-child) {
  margin-bottom: 10px;
}

.news-body-main-page-article__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0px;
  max-width: 215px;
  background: #F62559;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  margin: 10px 0px 10px;
}

.news-body-main-page-article__btn::after {
  content: "";
  width: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  background: url(../img/icons/more-w.svg) center/auto no-repeat;
}

.contact-news-body-main-page-article__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #1F2933;
}

.contact-news-body-main-page-article__content {
  margin-top: 20px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-news-body-main-page-article__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 340px;
          flex: 0 0 340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.contact-news-body-main-page-article__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.contact-news-body-main-page-article__name {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #1F2933;
}

.contact-news-body-main-page-article__value {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #1F2933;
}

.contact-news-body-main-page-article__map {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 231px;
  position: relative;
}

.contact-news-body-main-page-article__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.gallery-news-body-main-page-article {
  margin: 10px 0px;
}

.gallery-news-body-main-page-article__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
          flex: 0 0 calc((100% - 30px * 2) / 3);
  position: relative;
  padding-bottom: 31%;
}

.gallery-news-body-main-page-article__item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-news-body-main-page-article__item:not(:last-child) {
  margin-right: 30px;
}

.gallery-news-body-main-page-article__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  margin-top: 20px;
}

.gallery-news-body-main-page-article__arrows picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gallery-news-body-main-page-article__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36px;
          flex: 0 0 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.sidebar-page-article__title {
  font-weight: 700;
  font-size: 26px;
  line-height: 32px;
  color: #1F2933;
}

.sidebar-page-article__content {
  margin-top: 30px;
}

.sidebar-page-article__item {
  display: block;
  position: relative;
}

.sidebar-page-article__image {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding-bottom: 66.5%;
  border-radius: 8px;
  overflow: hidden;
}

.sidebar-page-article__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidebar-page-article__event {
  position: absolute;
  top: 10px;
  left: 0;
}

.sidebar-page-article__event span {
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 2px 14px;
  border-radius: 4px;
}

.sidebar-page-article__event span.webinar {
  background: #2075F6;
}

.sidebar-page-article__event span.seminar {
  background: #753250;
}

.sidebar-page-article__info {
  padding-top: 20px;
}

.sidebar-page-article__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1F2933;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.sidebar-page-article__date {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #A3A3A3;
}

.sidebar-page-article__paggitanoin {
  margin-top: 20px;
}

.products-body-main-page-article {
  margin-top: 50px;
  padding: 50px 85px;
  border-radius: 8px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}

.products-body-main-page-article__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 2) / 3);
          flex: 0 0 calc((100% - 40px * 2) / 3);
}

.events-page {
  padding-bottom: 100px;
}

.events-page__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 40px;
}

.events-page__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
          flex: 0 0 calc((100% - 30px * 2) / 3);
}

.events-page__pagging {
  margin-top: 40px;
}

.contacts {
  padding-bottom: 100px;
}

.contacts__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.contacts__body {
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.5%;
          flex: 0 0 41.5%;
}

.contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.contacts__name {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #1F2933;
}
.contacts__name.title{
  font-size: 24px;
  text-decoration: underline;
}

.sub-contact p {
  line-height: 1 !important;
}

.contacts__value {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #1F2933;
}

.contacts__map {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 155px;
}

._last {
  margin-bottom: 100px;
}

.subscribe_info {
  text-align: center;
  padding: 40px 0px 120px;
  font-size: 22px;
  font-weight: 500;
}

.body-register__content._password-content.error input {
  border: 1px solid red;
}
.body-register__check.error {
  border: 1px solid red;
  padding: 5px;
  border-radius: 3px;
}
p.registration-error {
  font-weight: 500;
  font-size: 16px;
  line-height: 17px;
  color: red;
  padding-right: 5px;
}
p.login_success {
  font-weight: 500;
  font-size: 16px;
  line-height: 17px;
  color: green;
  padding-right: 5px;
}
.error_passwor {
  margin-top: -10px;
  margin-bottom: 10px;
}
p.body-error {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #F62559;
}
li.navigation-top-header__item.acrive {
  border-bottom: 1px solid black;
}

section.text_page {
  padding-bottom: 25px;
}
.text_page h2 {
  font-weight: 800;
  font-size: 36px;
  line-height: 45px;
  color: #1F2933;
}
.text_page .text__content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #1F2933;
  margin-bottom: 5px;
}

.body-order_check_info {
  padding-bottom: 10px;
}

.popup_order {
  position: fixed;
  top: 0px;
  z-index: 999;
  width: 100%;
  margin-top: 0;
   display: none;
}
.popup_order._active{
  display: block;
}
.bg_popup {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  height: 100vh;
  display: block;
  position: absolute;
  z-index: 997;
}
.popup_content {
  z-index: 998;
  position: absolute;
  width: 80%;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 5%);
  background: #ffffff;
  padding: 25px;
  height: 95vh;
  overflow-y: auto;
}
.popup_close {
  position: absolute;
  right: 11%;
  top: 27px;
  cursor: pointer;
  z-index: 999;
}
.popup_info {
  position: relative;
}
img.payment {
  background: #cfc6c6;
  border-radius: 5px;
  padding: 0px 10px;
}
label.main-order__body {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
}
label.main-order__body input{
  width: 30px;
  height: 24px;
}

p.banner__desc {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
}

a.banner__more.color_black {
  color: #000;
}
a.banner__more.color_black::after{
  -webkit-filter: invert(1);
  filter: invert(1);
}
.product_empty {
  opacity: 0.6;
}

.main-order__pay.pay-main-order.error_pay {
  border: 1px solid red;
  padding: 5px;
  border-radius: 5px;
}
label.checkbox.error_check .checkbox__text::before{
  opacity: 1;
  background: red;
}

.banner__item.swiper-slide.swiper-slide-visible.swiper-slide-active {
  position: relative;
  z-index: 9;
}

span.file__text.file_diploma {
  width: 100%;
  display: block;
  padding: 10px 5px;
  text-align: center;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  cursor: pointer;
}
span.file__text.file_diploma span {
  display: block;
}
.body-register__row.file_input {
  display: none;
}

.other-actions-body-product__selects.catalog_variable_color {
  padding-left: 10px;
}
.other-actions-body-product__selects.catalog_variable_color select.other-actions-body-product__select {
  height: 32px;
}

.variable_color {
  padding-left: 10px;
}
.variable_color select.other-actions-body-product__select {
  height: 32px;
}
.card .variable_select .select__title {
  width: 80px;
}
.variable_product_info {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  grid-gap: 10px;
}

.card .variable_color .select_color{
  width: 25px;
  height: 25px;
  border: 1px solid #e6e5e5;
  border-radius: 5px;
}
.card .variable_color .select__option {
  display: flex!important;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  grid-gap: 5px;
}
.card .variable_color .select__value span{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  height: 25px;
  grid-gap: 5px;
}
.card .variable_color .select__title {
  width: 100px;
}
.card .variable_color .select__value.icon-select-arrow {
  width: 100px;
}
.card .variable_color .select__options {
  width: 100px;
}
a.image_gallery {
  position: absolute;
  top: 29px;
  left: 30px;
  height: 40px;
  width: 40px;
  background: rgb(249 249 249);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  color: #000;
}
.image_products {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.zoom_galary {
  width: auto;
  height: 100%;
  display: flex;
  justify-content: center;
}
.image_gallery svg.w-6.h-6 {
  width: 25px;
  height: auto;
}

.mobile_nav_top {
  display: none;
}

.button__body_maib *, #maib-button ::after, .button__body_maib ::before {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

.button__body_maib {
  transform: scale(.38);
  position: absolute;
  bottom: -36px;
  left: -111px;
}
.button__body_maib .button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 45px 16px 24px;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 20px;
  border: 1px solid #253746;
  transition: .3s ease-in-out;
  width: 360px;
}
.button__body_maib .button.dark {
  background: #253746;
}
.button__body_maib  .button__left {
  display: block;
  font-weight: 700;
  font-size: 50px;
  line-height: 59px;
  margin-right: 12px;
}
.button__body_maib  .button.dark .button__left, .button__body_maib  .button.light .button__left {
  color: #fcb534;
}

.button__body_maib .button__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.button__body_maib .button__right .text {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 900;
  line-height: 35px;
  font-size: 32px;
}
.button__body_maib .button.button.dark .button__right .text {
  color: #ffffff;
}
.button__body_maib .button__link {
  display: block;
  text-align: center;
  text-decoration: underline;
  color: #000;
  font-weight: 400;
  font-size: 24px;
  line-height: 23px;
  transition: .3s;
}
.maib.dark {
  fill: #ffffff;
}
/** New Header **/
.new-header{
  padding: 0px 0px 0px 0px;
  border-bottom: 1px solid #f5f5f5;
  z-index: 99;
}
.new-header .main-header__container{
  display: flex;
  align-items: center;
}
.new-header .main-header__container .logo{
  padding-right: 50px;
  width: 164px;
}
.new-header .main-header__container .header-col-center{
  width: calc(100% - 585px);
}
.new-header .menu-header-top{
  margin-top: 15px;
}
.new-header .menu-header-top ul{
  display: flex;
}
.new-header .menu-header-top ul li{
  margin-right: 30px;
}
.new-header .menu-header-top ul li:last-child{
  margin-right: 0px;
}
.new-header .menu-header-top ul li a{
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #1F2933;
}
.new-header .menu-header-top ul li a:hover{
  color: #F62559;
}
.new-header .action {
  padding-left: 15px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.new-header .action .btn-header{
  padding: 0px 15px;
  display: flex;
  flex-direction: row;
}
.btn-header.actions-main-header__item._log .actions-main-header__name:hover{
  color: #F62559;
  text-decoration: none;
}
.new-header .action .btn-header .actions-main-header__icon img{
  margin-right: 10px;
  width: 32px;
}
.new-header .action .btn-header .actions-main-header__name{
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #1F2933;
}
.new-header .action .btn-header .actions-main-header__value{
  padding: 0px 5px;
  left: -8px;
  width: max-content;
  font-weight: 500;
}

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

.new-header .search-main-header{
  background: #ffffff;
  border: 2px solid #4d5572;
  border-radius: 25px;
}

button.search-main-header__btn {
  height: 100%;
  padding-left: 15px;
  border-left: 2px solid #4d5572;
}

.new-header .search-main-header .search-main-header__form{
  height: 44px;
}
.new-header .search-main-header .search-main-header__form input{
  font-size: 16px;
}
.new-header .search-main-header .search-main-header__form input::placeholder {
  color: #4d5572;
  opacity: 1;
}
.new-header .search-main-header .search-main-header__form input:-ms-input-placeholder {
  color: #4d5572;
}
.new-header .search-main-header .search-main-header__form input::-ms-input-placeholder {
  color: #4d5572;
}
.new-header .search-main-header .search-main-header__btn img{
  width: 22px;
}
/* Header Top Bar */
.new-header .contacts-top-header__list{
  margin-bottom: 15px;
  background: #fff;
  border-bottom: 1px solid #f5f5f5;
}
.new-header ._container{
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  display: flex;
  align-items: center;
}
.new-header ._container > a{
  padding-right: 15px;
}
.new-header ._container > a:hover{
  color: #F62559;
  text-decoration: none;
}
/* Counter */
.counter{
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid #b9b9b9;
}
.counter ._container{
  display: flex;
  justify-content: center;
}
.counter ._container .col{
  padding: 0px 0px;
  width: 33.33%;
  text-align: center;
}
.counter ._container .col .counter-nb {
  padding-bottom: 15px;
  height: 70px;
  display: flex;
  justify-content: center;
  color: #F62559;
  font-size: 64px;
}
.counter ._container .col .counter-txt{
  font-size: 28px;
}
/* New */
.products-slider.new,
.products-slider.bestsellers{
  padding: 80px 0px 100px 0px;
}
/* Info */
.info{
    display: flex;
}
.new-order-history .col-6,
.info .col-6{
    width: 50%;
}
.info .col-6:first-child{
  background-image: url("../img/bg-info.jpg");
  background-size: cover;
  background-position: center center;
}
.info .col-6 .bg-col{
  min-height: 320px;
}
.info .col-6 .bg-color{
    padding: 130px 60px;
    background-color: #e65266;
}
.info .col-6 .bg-color h2{
  font-size: 42px;
  font-weight: 500;
  color: #fff;
  line-height: 1.0em;
  text-transform: uppercase;
}
.info .col-6 .bg-color p{
  margin: 5px 0px;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  line-height: 28px;
}
.info .col-6 .bg-color .btn{
  margin-top: 30px;
  padding: 16px 28px;
  background: #fff;
  border-radius: 3px;
  font-size: 18px;
  font-weight: 600;
  color: #e74f6c;
}
/* De ce anna lotan */
.why-annalotan{
  padding: 100px 0px;
  border-bottom: 2px solid #e74f6c;
}
.why-annalotan ._container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.why-annalotan ._container .col{
  padding: 0px 40px;
  width: 33.33%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.why-annalotan ._container .col:first-child{
  width: 100%;
}
.why-annalotan ._container .col:first-child h2{
  padding-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  font-size: 42px;
  font-weight: 500;
}
.why-annalotan ._container .col .why-txt{
  font-size: 22px;
  line-height: 28px;
}
.why-annalotan ._container .col .why-nb{
  position: absolute;
  left: 35%;
  font-size: 140px;
  color: #e74f6c;
  opacity: 0.1;
}
/**/
.after-best-sellers{
  padding: 0px 0px 100px 0px;
  border-bottom: 2px solid #e74f6c;
  text-align: center;
}
.after-best-sellers .bg-title{
  font-size: 228px;
  font-weight: 600;
  color: rgba(246,37,89,.1);
  text-transform: uppercase;
}
.after-best-sellers p{
  margin-top: -122px;
  font-size: 22px;
  font-weight: 400;
}
.after-best-sellers h3{
  text-transform: uppercase;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.6em;
}
.after-best-sellers .btn{
  margin-top: 30px;
  padding: 16px 28px;
  background: #e74f6c;
  border-radius: 3px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
/**/
.ingrediente, .etape, .instagram, .new-footer{
  padding: 40px 0px;
}
.ingrediente ._container.d-flex{
  padding: 0px 250px;
}
.section-title{
  margin-bottom: 60px;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.6em;
  text-align: center;
  text-transform: uppercase;
}
.section-title span{
  color: #e74f6c;
}
.d-flex {
  display: flex;
  flex-wrap: wrap;
}
.block-ingrediente {
  width: 50%;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
.block-ingrediente:nth-child(3),
.block-ingrediente:last-child{
  margin-bottom: 0px;
}
.block-ingrediente-bg {
  margin-right: 30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #9b8d83;
  background-size: cover;
  background-position: center;
}
.block-ingrediente div:last-child {
  width: calc(100% - 120px);
}
.block-ingrediente h4{
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.block-ingrediente p{
  margin-top: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2em;
}
.block-ingrediente-bg.bg-sare{
  background-image: url("../img/sare.jpg");
}
.block-ingrediente-bg.bg-aloe{
  background-image: url("../img/aloe-vera.jpg");
}
.block-ingrediente-bg.bg-catina{
  background-image: url("../img/catina.jpg");
}
.block-ingrediente-bg.bg-jaboba{
  background-image: url("../img/ulei-de-jaboba.jpg");
}
/**/
.new-banner{
  padding: 200px 0px;
  background-image: url("../img/bg-leaf.jpg");
  background-size: cover;
  background-position: center;
}
.new-banner h2{
  padding: 15px 0px;
  display: inline-block;
  border: 3px solid #fff;
  border-radius: 3px;
  background: #e74f6c;
  width: 100%;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2em;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
/**/
.bg-etape{
  margin-top: 70px;
  width: 100%;
  height: 550px;
  position: relative;
  background-image: url("../img/etape.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn-anna{
  padding: 16px 28px;
  background: #e74f6c;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.etape .btn-anna.btn-1,
.etape .btn-anna.btn-2,
.etape .btn-anna.btn-3 {
  position: absolute;
  z-index: 1;
}
.etape .btn-anna.btn-1{
  top: 0;
  left: 50%;
}
.etape .btn-anna.btn-2 {
  top: 45%;
  left: 15%;
}
.etape .btn-anna.btn-3 {
  top: 54%;
  left: 65%;
}
/* Instagram */
.instagram{
  padding: 40px 0px 60px 0px;
}
.instagram > ._container{
  padding: 0px 5px;
}
.instagram .section-title{
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6em;
  text-align: left;
  text-transform: uppercase;
}

/* New Footer */
.new-footer {
  background: #fff;
}
.new-footer ._container{
  display: flex;
}
footer .col {
  width: 20%;
}

.col.footer-page {
  padding-right: 15px;
  position: relative;
}

.col.footer-page .logo {
  width: 140px;
  position: absolute;
  top: -70px;
}
.nav-bottom {
  padding-top: 46px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-bottom-support {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.col.footer-shop {
  padding: 0 15px;
  border-left: 1px solid;
  border-right: 1px solid;
  border-color: #0000002b;
}
.col.footer-support {
  padding: 0 15px;
}
.col.footer-program {
  padding: 0 15px;
  border-left: 1px solid;
  border-right: 1px solid;
  border-color: #0000002b;
}
.col.footer-media {
  padding-left: 15px;
}

footer .col h3 {
  font-size: 24px;
  font-weight: 600;
}


.new-footer .main-footer__sublist.menu-footer{
  margin-top: 0px;
  margin-bottom: 25px;
  display: flex;
  flex-direction: row;
}
.new-footer .main-footer__sublist.menu-footer a{
  padding-right: 20px;
  font-size: 18px;
  font-weight: 600;
}
.new-footer .main-footer__sublist.menu-footer a:last-child{
  padding-right: 0px;
}
.new-footer .payment{
  margin-top: 10px;
}
.new-footer .main-footer__name{
  font-size: 20px;
  font-weight: 600;
}
.new-footer .subscribe-main-footer__text{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
}
.new-footer .main-footer__subscribe.subscribe-main-footer {
  padding-right: 0px;
  position: relative;
}
.new-footer .subscribe-main-footer__input{
  padding: 5px 15px;
  max-width: 100%;
  height: 48px;
  border: 2px solid #4e5673;
  background: #ffffff;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  border-radius: 26px;
}
.new-footer .checkbox__text{
  font-weight: 500;
}
.new-footer .subscribe-main-footer__btn{
  width: 182px;
  height: 48px;
  font-size: 18px;
  line-height: 18px;
}
.new-footer .subscribe-main-footer__btn::before{
  display: none;
}
.new-footer .main-footer__sublist.contact-footer{
  row-gap: initial;
}
.new-footer .main-footer__sublist.contact-footer .main-footer__subitem{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6em;
}
.new-footer .main-footer__social.social-main-footer {
  margin-top: 20px;
}

/* Profile */
.new-my-profile{
  margin-top: 12px;
  padding: 100px 0px;
  border-top: 2px solid #e54f6b;
  border-bottom: 2px solid #e54f6b;
}
.new-my-profile ._container{
  display: flex;
}
.new-my-profile ._container .col-9{
  width: 75%;
}
.new-my-profile ._container .col-3{
  padding-left: 15px;
  width: 25%;
}
.new-my-profile .title-page{
  width: 500px;
  font-size: 42px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.1em;
}
.new-my-profile .title-page span{
  color: #e54f6b;
}
.new-my-profile .box-info-user {
  padding: 20px;
  border: 2px solid #eb788d;
  border-radius: 15px;
}
.new-my-profile .box-info-user ul li{
  display: flex;
  align-items: center;
}
.new-my-profile .box-info-user ul li:first-child{
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
}
.new-my-profile .box-info-user ul li:first-child span{
  margin-right: auto;
}
.new-my-profile .box-info-user ul li:first-child a:last-child{
  margin-left: 10px;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #fef6f8;
  background-image: url("../img/logout_account.png");
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 50%;
}
.new-my-profile .box-info-user ul li:first-child a:nth-child(2){
  margin-left: 15px;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #fef6f8;
  background-image: url("../img/edit_account.png");
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 50%;
}
.new-my-profile .box-info-user ul li .info-user{
  margin-top: 10px;
  padding: 10px 15px;
  width: 100%;
  border: 1px solid #f8d1d9;
  border-radius: 12px;
  background: #fef6f8;
}
.new-my-profile .box-info-user ul li .info-user p:first-child{
  font-size: 14px;
  font-weight: 500;
  color: #ed889a;
}
.new-my-profile .box-info-user ul li .info-user p:last-child{
  margin-top: 6px;
  font-size: 18px;
  font-weight: 500;
}
.new-my-profile .menu-account {
  margin-top: 50px;
}
.new-my-profile .menu-account ul{
  display: flex;
  flex-wrap: wrap;
}
.new-my-profile .menu-account ul li{
  margin-bottom: 30px;
  padding-right: 25px;
  width: 25%;
}
.new-my-profile .menu-account ul li a{
  text-align: center;
  transition: .3s;
}
.new-my-profile .menu-account ul li a .item-bg {
  background-color: #fdf5f4;
  width: 100%;
  height: 240px;
  border-radius: 15px;
}
.new-my-profile .menu-account ul li a .item-txt{
  padding: 18px 0px;
  font-size: 18px;
  font-weight: 600;
  color: #121212;
}
.new-my-profile .menu-account ul li a:hover .item-txt{
  color: #e54f6b;
}
.new-my-profile .menu-account ul li .item-bg{
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: center;
}
.new-my-profile .menu-account ul li.my-orders .item-bg{
  background-image: url("../img/comenzi-icon.png");
}
.new-my-profile .menu-account ul li.treatments .item-bg{
  background-image: url("../img/tratament_icon.png");
}
.new-my-profile .menu-account ul li.catalog-products .item-bg{
  background-image: url("../img/catalog_icon.png");
}
.new-my-profile .menu-account ul li.sinecost-products .item-bg{
  background-image: url("../img/sinecost_icon.png");
}
.new-my-profile .menu-account ul li.price-list .item-bg{
  background-image: url("../img/price_list_icon.png");
}
.new-my-profile .menu-account ul li.video-procedures .item-bg{
  background-image: url("../img/video_icon.png");
}
.new-my-profile .menu-account ul li.logout .item-bg{
  background-image: url("../img/logout_icon.png");
}
/* Comenzile mele */
.new-order-history{
  margin-top: 12px;
  padding: 60px 0px 100px 0px;
  border-top: 2px solid #c8c8c8;
  border-bottom: 2px solid #e54f6b;
}
.new-order-history ._container{
  display: flex;
  flex-direction: column;
}
.new-order-history ._container .col-12{
  width: 100%;
}
.new-order-history .block-back a{
  display: inline-block;
  position: relative;
  padding: 0px 0px 0px 40px;
  font-size: 18px;
  font-weight: 600;
  color: #2f2f2f;
}
.new-order-history .block-back a::before{
  display: block;
  content: '';
  background-image: url("../img/back_account.png");
  background-size: contain;
  width: 28px;
  height: 28px;
  position: absolute;
  top: -6px;
  left: 0px;
}
.new-order-history .title-page{
  padding: 25px 0px;
}
.new-order-history .title-page h2{
  font-size: 42px;
  font-weight: 500;
  color: #2f2f2f;
}
.new-order-history .title-page p{
  margin-top: 10px;
  font-size: 18px;
  color: #767676;
}
.account-nav ul{
  margin-top: 10px;
  display: flex;
}
.account-nav ul li{
  margin-right: 10px;
}
.account-nav ul li a{
  display: inline-block;
  padding: 15px 25px;
  background: #fdf7f7;
  border: 1px solid #f5bebb;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  color: #e43b5d;
}
.account-nav ul li a.active-menu{
  border: 1px solid #e43b5d;
  background: #e43b5d;
  color: #fff;
}
.new-order-history .history-body-profile{
  padding-left: 25px;
  padding-right: 25px;
  border: 2px solid #f6c5ce;
}
.new-order-history .history-body-profile .history-body-profile__head,
.new-order-history .history-body-profile .body-history-body-profile__main{
  padding-left: 15px;
  padding-right: 15px;
}
.new-order-history .history-body-profile .history-body-profile__head{
  margin-bottom: 5px;
  border-bottom: 2px solid #f6c5ce;
}
.new-order-history .history-body-profile .history-body-profile__head p{
  font-size: 18px;
  font-weight: 600;
  color: #e23e5c;
}
.new-order-history .history-body-profile .main-body-history-body-profile__item{
  font-size: 18px;
  font-weight: 500;
}
.new-order-history .main-body-history-body-profile:hover {
  background: transparent;
}
.new-order-history .body-history-body-profile__main{
  border: 2px solid #fff;
  border-bottom: 0px;
  border-radius: 10px 10px 0px 0px;
}
.new-order-history .body-history-body-profile__main._active{
  border: 2px solid #f9d8de;
  border-bottom: 0px;
  background: #fef6f8;
}
.new-order-history .body-history-body-profile__main._active .main-body-history-body-profile__item,
.new-order-history .main-body-history-body-profile:hover .main-body-history-body-profile__item{
  color: #e23e5c;
}
.new-order-history .submenu-body-history {
  margin-bottom: 15px;
  /*padding: 0px;*/
  background: #fff;
  border: 2px solid #f9d8de;
  border-top: 0px;
  border-radius: 0px 0px 10px 10px;
}
.new-order-history .submenu-body-history__title{
  display: none;
  padding: 25px 13px 25px 13px;
  background: #fef6f8;
  border-radius: 10px 10px 0px 0px;
}
.new-order-history .submenu-body-history__head.head-submenu-body-history{
  padding-left: 10px;
  padding-right: 10px;
  border-bottom: 2px solid #f9d8de;
}
.new-order-history .submenu-body-history__head.head-submenu-body-history .head-submenu-body-history__item{
  font-size: 18px;
  font-weight: 500;
  color: #ee8b9d;
}
.new-order-history .body-submenu-body-history__name {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #191919;
  text-transform: uppercase;
}
.new-order-history .body-submenu-body-history__weight {
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  color: #A3A3A3;
  text-transform: uppercase;
}
.new-order-history .body-submenu-body-history__price,
.new-order-history .body-submenu-body-history__count{
  font-size: 18px;
  font-weight: 500;
}
.new-order-history .body-submenu-body-history__item._product{
  flex: 0 0 calc((100% - 20px * 3) / 3);
}

/* Favorite */
.head-submenu-body-history__item._product,
.new-order-history .body-submenu-body-history__item._product{
  flex: 0 0 calc((100% - 20px * 3) / 3);
}
/* Price list */
table.table-price-list{
  margin-top: 40px;
  width: 100%;
  border: 2px solid;
  border-radius: 10px;
  padding: 30px;
}
table.table-price-list tbody tr td:first-child{
  width: 120px;
}
table.table-price-list tbody tr td:nth-child(3),
table.table-price-list tbody tr td:nth-child(4),
table.table-price-list tbody tr td:nth-child(5),
table.table-price-list tbody tr td:nth-child(6){
  width: 120px;
}
table.table-price-list thead tr:first-child th{
  padding: 10px 0px;
  font-size: 24px;
  text-align: left;
}
table.table-price-list thead tr:last-child th,
table.table-price-list tbody tr td{
  padding: 12px 10px;
  border: 1px solid;
  border-radius: 10px;
}
table.table-price-list tbody tr td{
  text-align: center;
}
table.table-price-list thead tr th:nth-child(2),
table.table-price-list tbody .subcategory,
table.table-price-list tbody tr td:nth-child(2){
  text-align: left;
}
table.table-price-list tbody tr td{
  font-weight: 600;
}
table.table-price-list tbody tr td.subcategory{
  padding: 15px 0px;
  border: none;
  font-size: 16px;
  font-weight: 700;
}

/* Clear */
table.table-price-list.cat-clear,
table.table-price-list.cat-clear tbody tr td{
  border-color: #c3b0a4;
}
table.table-price-list.cat-clear thead tr th{
  color: #c3b0a4;
}
table.table-price-list.cat-clear thead tr:last-child th{
  border-color: #c3b0a4;
  background: rgba(195, 176, 164, .1);
}
/* Barbados */
table.table-price-list.cat-barbados,
table.table-price-list.cat-barbados tbody tr td{
  border-color: #abd9b2;
}
table.table-price-list.cat-barbados thead tr th{
  color: #abd9b2;
}
table.table-price-list.cat-barbados thead tr:last-child th{
  border-color: #abd9b2;
  background: rgba(171, 217, 178, .1);
}
/* Alodem */
table.table-price-list.cat-alodem,
table.table-price-list.cat-alodem tbody tr td{
  border-color: #ee8a20;
}
table.table-price-list.cat-alodem thead tr th{
  color: #ee8a20;
}
table.table-price-list.cat-alodem thead tr:last-child th{
  border-color: #ee8a20;
  background: rgba(238, 138, 32, .1);
}
/* New Age Control */
table.table-price-list.cat-new-age-control,
table.table-price-list.cat-new-age-control tbody tr td{
  border-color: #89757c;
}
table.table-price-list.cat-new-age-control thead tr th{
  color: #89757c;
}
table.table-price-list.cat-new-age-control thead tr:last-child th{
  border-color: #89757c;
  background: rgba(137, 117, 124, .1);
}
/* C White */
table.table-price-list.cat-lightening,
table.table-price-list.cat-lightening tbody tr td{
  border-color: #fd8900;
}
table.table-price-list.cat-lightening thead tr th{
  color: #fd8900;
}
table.table-price-list.cat-lightening thead tr:last-child th{
  border-color: #fd8900;
  background: rgba(253, 137, 0, .1);
}
/* Liquid Gold */
table.table-price-list.cat-liquid-gold,
table.table-price-list.cat-liquid-gold tbody tr td{
  border-color: #feb974;
}
table.table-price-list.cat-liquid-gold thead tr th{
  color: #feb974;
}
table.table-price-list.cat-liquid-gold thead tr:last-child th{
  border-color: #feb974;
  background: rgba(254, 185, 116, .1);
}
/* Greens */
table.table-price-list.cat-greens,
table.table-price-list.cat-greens tbody tr td{
  border-color: #025d27;
}
table.table-price-list.cat-greens thead tr th{
  color: #025d27;
}
table.table-price-list.cat-greens thead tr:last-child th{
  border-color: #025d27;
  background: rgba(2, 93, 39, .1);
}
/* Classic */
table.table-price-list.cat-classic,
table.table-price-list.cat-classic tbody tr td{
  border-color: #b5d1df;
}
table.table-price-list.cat-classic thead tr th{
  color: #b5d1df;
}
table.table-price-list.cat-classic thead tr:last-child th{
  border-color: #b5d1df;
  background: rgba(181, 209, 223, .1);
}
/* Renova */
table.table-price-list.cat-renova,
table.table-price-list.cat-renova tbody tr td{
  border-color: #bcb7b3;
}
table.table-price-list.cat-renova thead tr th{
  color: #bcb7b3;
}
table.table-price-list.cat-renova thead tr:last-child th{
  border-color: #bcb7b3;
  background: rgba(188, 183, 179, .1);
}
/* Eye Care */
table.table-price-list.cat-eye-care,
table.table-price-list.cat-eye-care tbody tr td{
  border-color: #68c5ff;
}
table.table-price-list.cat-eye-care thead tr th{
  color: #68c5ff;
}
table.table-price-list.cat-eye-care thead tr:last-child th{
  border-color: #68c5ff;
  background: rgba(104, 197, 255, .1);
}
/* Body Care */
table.table-price-list.cat-body-care,
table.table-price-list.cat-body-care tbody tr td{
  border-color: #ddc6d1;
}
table.table-price-list.cat-body-care thead tr th{
  color: #ddc6d1;
}
table.table-price-list.cat-body-care thead tr:last-child th{
  border-color: #ddc6d1;
  background: rgba(221, 198, 209, .1);
}
/* Professional Skin Care */
table.table-price-list.cat-profesional,
table.table-price-list.cat-profesional tbody tr td{
  border-color: #b272d3;
}
table.table-price-list.cat-profesional thead tr th{
  color: #b272d3;
}
table.table-price-list.cat-profesional thead tr:last-child th{
  border-color: #b272d3;
  background: rgba(178, 114, 211, .1);
}
/* Mineral Make -up */
table.table-price-list.cat-make-up,
table.table-price-list.cat-make-up tbody tr td{
  border-color: #e3bea2;
}
table.table-price-list.cat-make-up thead tr th{
  color: #e3bea2;
}
table.table-price-list.cat-make-up thead tr:last-child th{
  border-color: #e3bea2;
  background: rgba(227, 190, 162, .1);
}
/* Mineral Spa */
table.table-price-list.cat-spa,
table.table-price-list.cat-spa tbody tr td{
  border-color: #a2a8e3;
}
table.table-price-list.cat-spa thead tr th{
  color: #a2a8e3;
}
table.table-price-list.cat-spa thead tr:last-child th{
  border-color: #a2a8e3;
  background: rgba(162, 168, 227, .1);
}
/* Mineral Salon Aids */
table.table-price-list.cat-salon-aids,
table.table-price-list.cat-salon-aids tbody tr td{
  border-color: #a76947;
}
table.table-price-list.cat-salon-aids thead tr th{
  color: #a76947;
}
table.table-price-list.cat-salon-aids thead tr:last-child th{
  border-color: #a76947;
  background: rgba(167, 105, 71, .1);
}
/* PRO */
/* Anna Lotan Pro - Professional Only */
table.table-price-list.cat-pro-only,
table.table-price-list.cat-pro-only tbody tr td{
  border-color: #c0504d;
}
table.table-price-list.cat-pro-only thead tr th{
  color: #c0504d;
}
table.table-price-list.cat-pro-only thead tr:last-child th{
  border-color: #c0504d;
  background: rgba(192, 80, 77, .1);
}
/* Anna Lotan Pro Cleansers */
table.table-price-list.cat-pro-cleansers,
table.table-price-list.cat-pro-cleansers tbody tr td{
  border-color: #215967;
}
table.table-price-list.cat-pro-cleansers thead tr th{
  color: #215967;
}
table.table-price-list.cat-pro-cleansers thead tr:last-child th{
  border-color: #215967;
  background: rgba(33, 89, 103, .1);
}
/* Anna Lotan Pro Toners */
table.table-price-list.cat-pro-toners,
table.table-price-list.cat-pro-toners tbody tr td{
  border-color: #92cddc;
}
table.table-price-list.cat-pro-toners thead tr th{
  color: #92cddc;
}
table.table-price-list.cat-pro-toners thead tr:last-child th{
  border-color: #92cddc;
  background: rgba(146, 205, 220, .1);
}
/* Anna Lotan Pro Deep Cleansers & Peels */
table.table-price-list.cat-pro-deep-cleansers,
table.table-price-list.cat-pro-deep-cleansers tbody tr td{
  border-color: #9d9d9d;
}
table.table-price-list.cat-pro-deep-cleansers thead tr th{
  color: #9d9d9d;
}
table.table-price-list.cat-pro-deep-cleansers thead tr:last-child th{
  border-color: #9d9d9d;
  background: rgba(157, 157, 157, .1);
}
/* Anna Lotan PRO Rosease */
table.table-price-list.cat-pro-rosease,
table.table-price-list.cat-pro-rosease tbody tr td{
  border-color: #fabf8f;
}
table.table-price-list.cat-pro-rosease thead tr th{
  color: #fabf8f;
}
table.table-price-list.cat-pro-rosease thead tr:last-child th{
  border-color: #fabf8f;
  background: rgba(250, 191, 143, .1);
}
/* Anna Lotan Pro Moisturizers */
table.table-price-list.cat-pro-moisturizers,
table.table-price-list.cat-pro-moisturizers tbody tr td{
  border-color: #da9694;
}
table.table-price-list.cat-pro-moisturizers thead tr th{
  color: #da9694;
}
table.table-price-list.cat-pro-moisturizers thead tr:last-child th{
  border-color: #da9694;
  background: rgba(218, 150, 148, .1);
}
/* Anna Lotan Pro Brightening Night Care */
table.table-price-list.cat-pro-brightening,
table.table-price-list.cat-pro-brightening tbody tr td{
  border-color: #fabf8f;
}
table.table-price-list.cat-pro-brightening thead tr th{
  color: #fabf8f;
}
table.table-price-list.cat-pro-brightening thead tr:last-child th{
  border-color: #fabf8f;
  background: rgba(250, 191, 143, .1);
}
/* Anna Lotan Pro Daytime UV Protection SPF */
table.table-price-list.cat-pro-daytime,
table.table-price-list.cat-pro-daytime tbody tr td{
  border-color: #ffc000;
}
table.table-price-list.cat-pro-daytime thead tr th{
  color: #ffc000;
}
table.table-price-list.cat-pro-daytime thead tr:last-child th{
  border-color: #ffc000;
  background: rgba(255, 192, 0, .1);
}
/* Anna Lotan Pro Tinted UV Protection */
table.table-price-list.cat-pro-tinted,
table.table-price-list.cat-pro-tinted tbody tr td{
  border-color: #d8d819;
}
table.table-price-list.cat-pro-tinted thead tr th{
  color: #d8d819;
}
table.table-price-list.cat-pro-tinted thead tr:last-child th{
  border-color: #d8d819;
  background: rgba(255, 255, 0, .1);
}
/* Anna Lotan Pro Supplements */
table.table-price-list.cat-pro-supplements,
table.table-price-list.cat-pro-supplements tbody tr td{
  border-color: #47894d;
}
table.table-price-list.cat-pro-supplements thead tr th{
  color: #47894d;
}
table.table-price-list.cat-pro-supplements thead tr:last-child th{
  border-color: #47894d;
  background: rgba(71, 137, 77, .1);
}
/* Anna Lotan Pro Night Care */
table.table-price-list.cat-pro-night-care,
table.table-price-list.cat-pro-night-care tbody tr td{
  border-color: #c5d9f1;
}
table.table-price-list.cat-pro-night-care thead tr th{
  color: #c5d9f1;
}
table.table-price-list.cat-pro-night-care thead tr:last-child th{
  border-color: #c5d9f1;
  background: rgba(197, 217, 241, .1);
}
/* Anna Lotan Pro Skin Repair */
table.table-price-list.cat-pro-skin-repair,
table.table-price-list.cat-pro-skin-repair tbody tr td{
  border-color: #c9a2ca;
}
table.table-price-list.cat-pro-skin-repair thead tr th{
  color: #c9a2ca;
}
table.table-price-list.cat-pro-skin-repair thead tr:last-child th{
  border-color: #c9a2ca;
  background: rgba(201, 162, 202, .1);
}
/* Anna Lotan Pro Local Application */
table.table-price-list.cat-pro-local-application,
table.table-price-list.cat-pro-local-application tbody tr td{
  border-color: #808080;
}
table.table-price-list.cat-pro-local-application thead tr th{
  color: #808080;
}
table.table-price-list.cat-pro-local-application thead tr:last-child th{
  border-color: #808080;
  background: rgba(128, 128, 128, .1);
}
/* Anna Lotan Pro Masks */
table.table-price-list.cat-pro-masks,
table.table-price-list.cat-pro-masks tbody tr td{
  border-color: #b1a0c7;
}
table.table-price-list.cat-pro-masks thead tr th{
  color: #b1a0c7;
}
table.table-price-list.cat-pro-masks thead tr:last-child th{
  border-color: #b1a0c7;
  background: rgba(177, 160, 199, .1);
}
/* Anna Lotan Pro Eye & Neck Care */
table.table-price-list.cat-pro-neck-care,
table.table-price-list.cat-pro-neck-care tbody tr td{
  border-color: #92cddc;
}
table.table-price-list.cat-pro-neck-care thead tr th{
  color: #92cddc;
}
table.table-price-list.cat-pro-neck-care thead tr:last-child th{
  border-color: #92cddc;
  background: rgba(146, 205, 220, .1);
}
/* Anna Lotan Lip Care */
table.table-price-list.cat-pro-lip-care,
table.table-price-list.cat-pro-lip-care tbody tr td{
  border-color: #c0504d;
}
table.table-price-list.cat-pro-lip-care thead tr th{
  color: #c0504d;
}
table.table-price-list.cat-pro-lip-care thead tr:last-child th{
  border-color: #c0504d;
  background: rgba(192, 80, 77, .1);
}
/* Anna Lotan Lip Care */
table.table-price-list.cat-pro-makeup,
table.table-price-list.cat-pro-makeup tbody tr td{
  border-color: #da9694;
}
table.table-price-list.cat-pro-makeup thead tr th{
  color: #da9694;
}
table.table-price-list.cat-pro-makeup thead tr:last-child th{
  border-color: #da9694;
  background: rgba(218, 150, 148, .1);
}
/* Anna Lotan Pro Body Care */
table.table-price-list.cat-pro-body-care,
table.table-price-list.cat-pro-body-care tbody tr td{
  border-color: #948a54;
}
table.table-price-list.cat-pro-body-care thead tr th{
  color: #948a54;
}
table.table-price-list.cat-pro-body-care thead tr:last-child th{
  border-color: #948a54;
  background: rgba(148, 138, 84, .1);
}
/* Subscribe */
.message.active{
  display: block !important;
  position: absolute;
  bottom: 16px;
  right: 124px;
  font-weight: 700;
  color: #e54f6b;
}
/* Lista Protocoale */
.bg-protocol{
  background-image: url("../img/bg_protocol.jpg");
  background-size: cover;
}
.list-protocol{
  margin-top: 80px;
}
.list-protocol hr{
  width: 100%;
  height: 1px;
  background: #eee;
  margin: 60px 0px;
}
.list-protocol hr:last-child{
  display: none !important;
}
.list-protocol .item{
  display: flex;
}
.list-protocol .item .item-image{
  margin-right: 30px;
  width: 40%;
  height: 200px;
  background-size: cover;
  background-position: center center;
}
.list-protocol .item .item-content{
  padding-right: 15px;
  display: flex;
  flex-direction: column;
}
.list-protocol .item .item-content .item-category{
  margin-bottom: 8px;
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
}
.list-protocol .item .item-content .item-title{
  padding-bottom: 20px;
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}
.list-protocol .item .item-content .item-title::after {
  display: block;
  content: '';
  width: 80px;
  height: 2px;
  background: #e54f6b;
  position: absolute;
  left: 0px;
  bottom: 2px;
}
.list-protocol .item .item-content .item-time{
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #767676;
}
.list-protocol .item .item-content .item-link{
  margin-top: auto;
  margin-bottom: 10px;
}
.list-protocol .item .item-content .item-link a{
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-decoration: underline;
}
/* Item Protocol */
.col-4{
  width: 33.33%;
}
.col-8{
  width: 66.66%;
}
.row.protocol-item {
  margin-top: 40px;
}
.item-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center bottom;
}
.row.protocol-item .item-short{
  padding: 80px 80px;
}
.col-8.item-short h2:first-child{
  margin-bottom: 5px;
  font-size: 42px;
  font-weight: 700;
  /*color: #e54f6b;*/
}
.col-8.item-short h2:nth-child(2){
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
  color: #777;
}
.col-8.item-short .short-desc{
  font-size: 18px;
  font-size: 500;
  color: #767676;
  line-height: 1.4;
}
.protocol-stages{
  margin-top: 60px;
}
.protocol-stages table{
  width: 100%;
}
.protocol-stages table tr td{
  padding: 15px 0px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  vertical-align: top;
}
.protocol-stages table tr td:first-child{
  width: 300px;
}
.protocol-stages table tr td:last-child{
  padding-left: 30px;
}
.protocol-stages table tr.head-table td{
  padding-left: 0px;
  /*background-color: #e54f6b;*/
  border-bottom: none;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.protocol-stages table tr td i{
  margin-top: 15px;
  display: block;
  font-size: 14px;
  color: #ff0000;
}
.protocol-stages table tr td strong,
.row.protocol-item .item-time{
  margin-top: 5px;
  padding-left: 35px;
  display: inline-block;
  position: relative;
  line-height: 25px;
}
.row.protocol-item .item-time{
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 500;
}
.protocol-stages table tr td strong::before,
.row.protocol-item .item-time::before{
  display: block;
  content: '';
  width: 25px;
  height: 25px;
  background-image: url("../img/clock.png");
  background-size: contain;
  position: absolute;
  top: 0px;
  left: 0px;
}
.protocol-stages table tr td span{
  color: #ff0000 !important;
  font-weight: 700;
  text-decoration: underline;
}
/*  Blog */
.page-article.blog .head-main-page-article{
  display: flex;
  flex-direction: column;
}
.page-article.blog .head-main-page-article__news {
  padding: 5px 5px;
  border-radius: 3px;
  width: max-content;
  color: #fff;
}
.page-article.blog .main-page-article__body{
  margin-top: 0px;
}
.page-article.blog .news-body-main-page-article{
  padding: 0px 0px;
}
.page-article.blog .news-body-main-page-article .row{
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}
.page-article.blog .news-body-main-page-article .row .col-auto{
  padding: 15px;
  width: auto;
}
.page-article.blog .news-body-main-page-article .row .col-12{
  padding: 15px;
  width: 100%;
}
.page-article.blog .news-body-main-page-article .row .col-6{
  padding: 15px;
  width: 50%;
}
.page-article.blog .news-body-main-page-article .row .col-4{
  padding: 15px;
  width: 33.33%;
}
.page-article.blog .news-body-main-page-article .row .col-3{
  padding: 15px;
  width: 25%;
}
.page-article.blog .news-body-main-page-article h2{
  margin: 25px 0px;
  font-size: 28px;
  font-weight: 700;
}
.page-article.blog .news-body-main-page-article ul li{
  margin: 10px 0px;
}
.page-article.blog .news-body-main-page-article p{
  margin: 15px 0px;
}
.page-article.blog .news-body-main-page-article .block-blog-product{
  display: flex;
}
.page-article.blog .news-body-main-page-article .block-blog-product .block-blog-product-img{
  padding-right: 15px;
  width: 25%;
}
.page-article.blog .news-body-main-page-article .block-blog-product img{
  width: 72px !important;
  height: auto !important;
}
.page-article.blog .news-body-main-page-article .block-blog-product .block-blog-product-content{
  width: 75%;
}
.page-article.blog .news-body-main-page-article .block-blog-product .block-blog-product-content h4{
  color: #df7a27;
}
.page-article.blog .news-body-main-page-article .block-blog-product .block-blog-product-content p{
  margin: 10px 0px;
}
.page-article.blog .news-body-main-page-article .block-blog-product .block-blog-product-content img{
  max-width: 100px !important;
  height: auto !important;
}
/* Post 2 */
.block-radius-img{
  padding: 0px 40px;
  text-align: center;
}
.block-radius-img img{
  border-radius: 50%;
  width: 100% !important;
  height: auto !important;
}
/* Cart message */
.message-action,
.message-action-wishlist{
  padding: 40px;
  width: 360px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0px 2px 20px 8px rgba(0,0,0,.25);
  text-align: center;
  z-index: 9;
}
.message-action h4,
.message-action-wishlist h4{
  margin-bottom: 22px;
  font-size: 22px;
  font-weight: 700;
}
.message-action .title-product,
.message-action-wishlist .title-product{
  margin-bottom: 10px;
  font-weight: 700;
}
.message-action .price-product,
.message-action-wishlist .price-product{
  font-weight: 700;
  color: #F62559;
}
.message-action a.btn,
.message-action-wishlist a.btn{
  margin-top: 22px;
  font-size: 14px;
  font-weight: 500;
  color: #1F2933;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: underline;
}
.message-action a.btn:hover{
  color: #F62559;
}
.message-action .close-message {
  position: absolute;
  top: 15px;
  right: 15px;
  opacity: .5;
  transition: .3s;
}
.message-action .close-message:hover{
  opacity: .8;
}
/* Events List Page */
.lotan-event-item {
  width: 33.33%;
  text-align: center;
}
.lotan-event-item .event-item-img img{
  width: 100%;
  height: auto;
}
.lotan-event-item .event-item-date {
  padding: 15px 0px 10px 0px;
  font-size: 16px;
  color: #777;
}
.lotan-event-item .event-item-cat span,
.main-page-article-head .main-page-article-head-info .cat span{
  display: inline-block;
  padding: 5px 8px 4px 8px;
  border-radius: 3px;
  background: #333;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}
.lotan-event-item .event-item-title {
  color: #F62559;
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0px 15px 0px;
}
.lotan-event-item .event-item-desc {
  margin-bottom: 15px;
  color: #7a7a7a;
  line-height: 1.2em;
}
.lotan-event-item .event-item-link a{
  font-weight: 700;
  font-size: 16px;
}
/* Event Page */
.main-page-article-head,
.main-page-article-footer{
  display: flex;
  align-items: center;
  background: #f5f5f5;
}
.main-page-article-head .main-page-article-head-info,
.main-page-article-head .main-page-article-head-img,
.main-page-article-footer > div{
  width: 50%;
}
.main-page-article-head .main-page-article-head-info,
.main-page-article-footer > div:first-child{
  padding-left: 40px;
}
.main-page-article-head .main-page-article-head-img img{
  width: 100%;
  height: auto;
}
.main-page-article-head .main-page-article-head-info .title{
  padding: 20px 0px;
}
.main-page-article-head .main-page-article-head-info .title h1{
  color: #F62559;
  font-size: 32px;
  font-weight: 700;
}
.main-page-article-head .main-page-article-head-info .date{
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
}
.main-page-article-body {
  padding: 60px 0px;
}
.main-page-article-body .main-page-article-body-short{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
  color: #1F2933;
}
.main-page-article-body .main-page-article-body-text{
  margin-top: 25px;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #1F2933;
}
.page-article._last.event {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.main-page-article-footer iframe{
  height: 360px;
}
.main-page-article-footer h2{
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
}
.main-page-article-footer p{
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}
.main-page-article-body-text .news-body-main-page-article__btn {
  padding: 12px 10px 12px 15px;
}
/* Despre Anna Lotan */
.about-us{
  margin-top: 40px;
  align-items: center;
}
.d-flex .col-3{
  width: 25%;
}
.d-flex .col-6{
  width: 50%;
}
.d-flex .col-9{
  padding-right: 80px;
  width: 75%;
  font-size: 18px;
  line-height: 1.6;
}
.about-us img{
  width: 100% !important;
  height: auto !important;
}
.about-us .col-6:last-child{
  margin-left: -80px;
  padding: 60px;
  width: calc(50% + 80px);
  background-color: #fff;
}
/**/
.category-description {
  margin-top: 15px;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 500;
}
.subtitle-miniature{
  margin-top: 5px;
  font-weight: 500;
  color: #1F2933;
}
/**/
.catalog-header{
  padding: 25px;
  padding-right: 50%;
  background-color: #f8f8f8;
  position: relative;
  border-radius: 4px;
}
.catalog-header p{
  margin-top: 10px;
}
.catalog-header p:first-child{
  margin-top: 0px;
}
.catalog-header img{
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  border-radius: 0px 4px 4px 0px;
}
/* Plasarea comenzii */
.main-order__item{
  padding: 40px;
  position: relative;
  background: #fef5f7;
  border-radius: 8px;
}
.reg-next-button.edit{
  padding-left: 10px;
  position: absolute;
  top: 43px;
  right: 40px;
  background: #fef5f7;
  font-size: 14px;
  font-weight: 600;
  color: #F62559;
}
.main-order__item input{
  border: 1px solid #F2F2F2;
}
.main-order__item input.required.error{
  border: 1px solid #F62559;
}
.main-order__item .reg-next-button.next{
  margin-top: 25px;
  width: 100%;
  height: 42px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  background: #F62559;
  border-radius: 4px;
  display: block;
}
.tab_user_order_hide .main-order__content,
.main-order__item .action .reg-next-button.edit,
.main-order__item .action .reg-next-button.next,
.main-order__item .main-order__content,
.main-order__item .main-order__coments{
  display: none !important;
}
.tab_user_order_hide .action .reg-next-button.edit,
.main-order__item.active .main-order__content,
.main-order__item.active .main-order__coments,
.main-order__item.active .action .reg-next-button.next{
  display: block !important;
}
.main-order__item .main-order__content .main-order__row{
  margin-top: 10px;
}
/*.main-order__item .action{
  display: none !important;
}*/

/* select checkout Shop */
.livrare-tab{
  display: none;
}
.livrare-tab.active{
  display: block;
}

a.header-phone-svg {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #4d5572;
  font-size: 18px;
  font-weight: 500;
  gap: 5px;
}
a.header-phone-svg .header-phone-svg-bord{
  width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
a.header-phone-svg svg{
  width: 32px;
}
.actions-main-header__icon svg{
  color: #343e5f;
}
.header__bottom {
  background: #050505;
}
.category_nav_absolut {
  display: none;
}
.header__bottom_info {
  color: #ffffff;
  width: 30%;
  font-size: 22px;
}
.header__bottom_info._center {
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  gap: 10px;
}
.header__bottom_info._center a{
  color: #ffffff;
  text-decoration: underline dotted;
}
.header__bottom_info._right {
  text-align: right;
}
.header__bottom_block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.category_nav_button {
  cursor: pointer;
}
.category_nav {
  position: relative;
  height: 38px;
}
.category_nav_absolut {
  position: absolute;
  background: #ffffff;
  top: 43px;
  padding: 0px 15px;
  width: max-content;
  border-radius: 5px;
}
.category_nav:hover .category_nav_absolut {
  display: flex;
}
.category_nav_button {
  cursor: pointer;
  padding-bottom: 10px;
  padding-right: 15px;
  position: absolute;
  top: -5px;
}
._container.header__bottom_block {
  padding: 5px 0px;
}

.footer-phone-svg-bord {
  width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

a.main-footer__phone {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #000000;
  font-size: 18px;
}
a.main-footer__email {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #000000;
  font-size: 18px;
}

.contact-bottom {
  margin-top: 16px;
}
.nav-bottom-support p{
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
}
.footer-infos {
  text-align: center;
  margin: 24px 0px;
}
.new-footer {
  padding: 100px 0px 10px;
}


._container.home_categories {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
  padding: 0px;
}
h3.title-section {
  font-size: 32px;
  font-weight: 800;
}
.content-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.home-category_slider {
  width: 100%;
}

.home-category_slider .swiper-slide_category {
  padding: 8px;
}

.home-category_slider .swiper-slide {
  flex: 0 0 calc((100% - 16px * 1) / 6);
  padding: 0 4px;
}

a.home-category {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}
a.home-category img {
  max-width: 100%;
}
a.home-category span{
  position: absolute;
  font-size: 22px;
  font-weight: 600;
  color: #000;
  top: 24px;
  max-width: 95%;
  text-align: center;
}

.categories_chaild {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}
a.page-category_children {
  flex: 0 0 calc((100% - 0px * 4) / 5);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
a.page-category_children  img {
  max-width: 100%;
  height: 330px;
  border-radius: 16px;
}
a.page-category_children span {
  position: absolute;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-align: center;
  bottom: 40px;
  background: #ffffff;
  padding: 9px;
  max-width: 90%;
  border-radius: 5px;
}


.counter_category {
  padding: 80px 0px 40px 0px;
}
section.brands-slider {
  padding: 0px 0px 40px 0px;
}

.head-brands-slider__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.head-brands-slider__arrow {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 36px;
  flex: 0 0 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.head-brands-slider__arrow img {
  width: 100%;
  max-width: 100%;
}

.head-brands-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.brands-slider__body {
  margin-top: 30px;
}
.brands-slider__slider {
  margin: -50px 0px;
  padding: 50px 0px;
}
a.home-brands.swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 calc((100% - 30px * 5) / 6);
}

a.home-brands.swiper-slide span{
  position: relative;
  font-size: 22px;
  font-weight: 600;
  color: #000;
  max-width: 95%;
  text-align: center;
}

a.home-brands.swiper-slide img{
  max-width: 100%;
  border-radius: 8px;
}

a.home-brands.swiper-slide:not(:last-child) {
  margin-right: 30px;
}

._banner_home .content-section {
  background: #766e61;
  border-radius: 28px;
}

.banner_home_right {
  display: flex;
  flex-direction: column;
  width: 65%;
}
.banner_home_left {
  width: 35%;
}
.banner_home_right img{
  width: 100%;
  border-radius: 28px;
}

.banner_home_info {
  display: flex
;
  flex-direction: column;
  align-items: center;
  justify-content: center; ;
}
.banner_home_info h3 {
  color: #ffffff;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  text-align: left;
  text-transform: uppercase;
}
.banner_home_info p {
  color: #ffffff;
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
}

.banner_home_info h5 {
  color: #999;
  letter-spacing: 2px;
}
.banner_home_info h2 {
  font-size: 2em;
  margin: 0 0 10px;
}
.banner_home_info p.description {
  max-width: 600px;
  color: #444;
  margin-bottom: 24px;
}
.content-section {
  position: relative;
}
.content-section img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}
.banner_home_info {
  position: absolute;
  top: 50%;
  left: 23%;
  transform: translate(-50%, -50%);
}

.features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.feature-icon {
  font-size: 24px;
  margin-right: 15px;
}
.feature-text p {
  margin: 5px 0 0;
}
.explore-btn {
  margin-top: 30px;
  padding: 12px 24px;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
  max-width: 240px;
}

.instagram__slider {
  display: flex
;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

.cls-video {
  height: 649px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  font-family: "Poppins", sans-serif;
}
.instagram__image {
  padding: 10px 5px;
  display: block;
}
video.hover-video {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 16px;
}


.home_blog__head.head-home_blog {
  display: flex
;
  align-items: center;
  justify-content: space-between;
}

.head-home_blog__more {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: right;
  color: #F62559;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 30px;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
}

.head-home_blog__more::after {
  content: "";
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  background: url(../img/icons/more-r.svg) center/auto no-repeat;
}
.home_blog_content._container {
  display: flex
;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
}
.blog_left {
  width: 49%;
  margin-right: 2%;
}
.blog_rught {
  width: 49%;
  display: flex
;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2%;
  row-gap: 10px;
}
.blog_rught .home_blog_item {
  width: 49%;
}

.blog_rught .home_blog_item.last_blog {
  width: 100%;
  max-height: 225px;
  overflow: hidden;
  border-radius: 22px;
}

.home_blog_content .body-news__image {
  width: 100%;
  padding-bottom: 63%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: block;
}
.head-categories-slider-arrow-prev {
  position: absolute;
  left: -25px;
  z-index: 2;
  top: 140px;
  transform: rotate(180deg);
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.head-categories-slider-arrow-next {
  position: absolute;
  right: -25px;
  z-index: 2;
  top: 140px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.categories_chaild_slider {
  position: relative;
}
.head-categories-slider-arrow {
  position: relative;
  right: 0;
  top: 0px;
  display: block;
  gap: 0;
  cursor: pointer;
  padding-left: 0;
  width: 100%;
}
.head-categories-slider-arrow svg{
  width: 45px;
  color: #00000078;
}
.head-categories-slider-arrow-next:hover svg{
  width: 45px;
  color: #000000;
}
.head-categories-slider-arrow-prev:hover svg{
  width: 45px;
  color: #000000;
}

.catalog_category h2._title.categories_chaild_title {
  text-align: center;
  padding: 0px 40px 45px;
}

#us_fixed_contact_button {
  position: fixed;
  right: 30px;
  bottom: 110px;
  width: 70px;
  height: 70px;
  background-color: #f6e6ea;
  border-radius: 100%;
  cursor: pointer;
  z-index: 10;
  display: flex
;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.us-fixed-contact-pulsation {
  width: 100px;
  height: 100px;
  background-color: #ffd420;
  border-radius: 50px;
  position: absolute;
  left: -15px;
  top: -15px;
  z-index: -1;
  transform: scale(0);
  animation: pulsation 2s infinite;
}
@keyframes pulsation {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.us-fixed-contact-icon {
  color: #27272a;
  width: 38px;
  height: 38px;
  border-radius: 50px;
  position: absolute;
  top: calc(50% - 22px);
  right: calc(50% - 22px);
  overflow: hidden;
  margin-top: 5px;
}
.us-fixed-contact-icon svg {
  width: 34px;
  height: 34px;
}
.us-fixed-contact-dropdown {
  position: absolute;
  bottom: 60px;
  right: 60px;
  padding: 20px;
  border-radius: 10px 10px 0px 10px;
  /* background: #fff; */
  display: block;
  opacity: 0;
  z-index: -1;
  margin-bottom: 20px;
  transition: margin-bottom 0.3s ease, opacity 0.3s ease;
  box-shadow: 5px 12px 30px rgb(0 0 0 / 35%);
  visibility: hidden;
  min-width: 250px;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}
a.us-fixed-contact-item.d-flex.align-items-center {
  display: flex
;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.us-fixed-contact-pulsation {
  width: 100px;
  height: 100px;
  background-color: #f62559;
  border-radius: 50px;
  position: absolute;
  left: -15px;
  top: -15px;
  z-index: -1;
  transform: scale(0);
  animation: pulsation 2s infinite;
}
.us-fixed-contact-icon {
  color: #27272a;
  width: 38px;
  height: 38px;
  border-radius: 50px;
  position: absolute;
  top: calc(50% - 22px);
  right: calc(50% - 22px);
  overflow: hidden;
  margin-top: 5px;
}
.us-fixed-contact-icon svg{
  width: 34px;
  height: 34px;
}

.us-fixed-contact-dropdown {
  position: absolute;
  bottom: 60px;
  right: 60px;
  padding: 20px;
  border-radius: 10px 10px 0px 10px;
  /* background: #fff; */
  display: block;
  opacity: 0;
  z-index: -1;
  margin-bottom: 20px;
  transition: margin-bottom 0.3s ease, opacity 0.3s ease;
  box-shadow: 5px 12px 30px rgb(0 0 0 / 35%);
  visibility: hidden;
  min-width: 250px;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}
.us-fixed-contact-item {
  color: #27272A;
  font-size: 16px;
  display: flex;
}
.us-fixed-contact-item:not(:last-child) {
  margin-bottom: 18px;
}
.us-fixed-contact-dropdown.expanded {
  margin-bottom: 0;
  opacity: .98;
  z-index: 1;
  visibility: visible;
}
a.us-fixed-contact-item.d-flex.align-items-center {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.product_variable_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
.product_variable_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.product_variable_image {
  border: 1px solid #253746;
  border-radius: 16px;
  padding: 8px;
  height: 100px;
  position: relative;
}
.active .product_variable_image {
  border: 1px solid #F62559;
}
.product_variable_item img{
  max-width: 70px;
  height: 100%;
  width: auto;
}
.product_variable_title {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #1F2933;
}

.category_nav_absolut .menu-list {
  flex-direction: column;
}
.category_nav_absolut .menu-list__submenu {
  top: 0;
  left: 180px;
  width: auto;
}
.category_nav_absolut {
  padding: 0px 0px 0px 0px;
}
nav.menu__body._container {
  padding: 0px;
}
.category_nav_absolut li.menu-list__item {
  padding: 5px 20px;
  min-width: 180px;
}
.category_nav_absolut .menu-list__container._container {
  width: 70vw;
  height: 365px;
}
.category_nav_absolut  .menu-list__sublist {
  height: 100%;
}

.tabs-body-card__block table {
  border: 2px solid #a9a9a9e0; /* Общая рамка таблицы */
  border-collapse: collapse;
  width: 100%;
}

.tabs-body-card__block table td {
  border: 1px solid #c8c1bd; /* Границы ячеек */
  padding: 8px;
}

/* Нечётные строки — темнее */
.tabs-body-card__block table tr:nth-child(odd) {
  background-color: #f6e6ea5c;
}

/* Чётные строки — светлее */
.tabs-body-card__block table tr:nth-child(even) {
  background-color: #f5f5f5;
}

.description-products {
  font-size: 18px;
  padding-bottom: 12px;
  font-weight: 600;
  color: #000000;
  padding-left: 0px;
  padding-right: 20px;
  border-bottom: 1px solid #cbcbcb;
}

ul.tabs-body-card__list {
  display: flex;
  flex-direction: column;
  border-bottom: 0px solid #DEDEDE;
}

.tabs-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;

}

svg.size-6.plus {
  width: 32px;
}
svg.size-6.minus {
  width: 32px;
  display: none;
}
.tabs-text {
  display: none;
}
.tabs-body-card__item._active svg.size-6.plus {
  display: none;
}
.tabs-body-card__item._active svg.size-6.minus {
  display: block;
}
.tabs-body-card__item .tabs-text {
  overflow: auto;
}
.tabs-body-card__item._active .tabs-text {
  display: block;
  color: #000;
}
.tabs-text {
  font-size: 16px;
  line-height: normal;
  padding-bottom: 24px;
}

.tabs-body-card__item table {
  border: 2px solid #a9a9a9e0; /* Общая рамка таблицы */
  border-collapse: collapse;
  width: 100%;
}

.tabs-body-card__item table td {
  border: 1px solid #c8c1bd; /* Границы ячеек */
  padding: 8px;
}

/* Нечётные строки — темнее */
.tabs-body-card__item table tr:nth-child(odd) {
  background-color: #f6e6ea5c;
}

/* Чётные строки — светлее */
.tabs-body-card__item table tr:nth-child(even) {
  background-color: #f5f5f5;
}

.social-main-footer_block {
  display: flex;
  gap: 16px;
}
.payments_image img{
  width: 120px;
}

.header-bottom-fixed {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9;
  padding: 8px 4px;
  box-shadow: 0px -4px 5px #d3d3d3;
}
.header-bottom-counter {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.header-bottom-item {
  display: flex;
  flex: 0 0 calc((100% - 10px * 3) / 4);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  color: #000000;
}
.header-bottom-item svg{
  width: 32px;
}
.header-bottom-item img{
  width: 32px;
}
._card-mob {
  position: relative;
}
span.bottom-main-header__value.cart_count {
  position: absolute;
  top: -3px;
  right: 16px;
  width: 22px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #F62559;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
}

.social-main-head_block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 4px 24px;
  bottom: 0;
}
.title_social {
  font-size: 18px;
  width: 100%;
  padding: 8px 0px;
}
a.social-main-footer__item {
  margin-right: 8px;
}



@media (min-width: 767.98px) {
  .tabs-body-card__nav .tabs-body-card__item::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #cbcbcb;
    position: absolute;
    bottom: 2px;
    left: 0;
  }

  .tabs-body-card__nav .tabs-body-card__item._active::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #F62559;
    position: absolute;
    bottom: 2px;
    left: 0;
  }
}

/* ---------------------------------------------- */
@media (max-width: 1520px) and (min-width: 1320px){
  .banner__text {
    left: 20px;
  }
  .ingrediente ._container.d-flex {
    padding: 0px 160px;
  }
  /**/
  .after-best-sellers .bg-title {
    font-size: 200px;
  }
  /**/
  .new-footer .main-footer__sublist.menu-footer a {
    padding-right: 15px;
  }
  .new-footer ._container .col:first-child {
    width: 50%;
  }
  .new-footer ._container .col:nth-child(2) {
    width: 30%;
  }
  .new-footer .main-footer__subscribe.subscribe-main-footer {
    padding-right: 60px;
  }
}
@media (max-width: 1320px) and (min-width: 1280px){
  .banner__text {
    left: 20px;
  }
  .new-header {
    padding: 0px 0px 0px 0px;
  }
  .new-header .main-header__container .header-col-center {
    width: 100%;
  }
  .new-header .main-header__container .logo {
    padding-right: 25px;
    width: 180px;
  }
  /**/
  .ingrediente ._container.d-flex {
    padding: 0px 120px;
  }
  /**/
  .message.active {
    bottom: 12px;
    right: 108px;
    width: 200px;
  }
  /**/
  .new-footer .main-footer__sublist.menu-footer a {
    padding-right: 15px;
  }
  .new-footer ._container .col:first-child {
    width: 50%;
  }
  .new-footer ._container .col:nth-child(2) {
    width: 30%;
  }
  .new-footer .main-footer__subscribe.subscribe-main-footer {
    padding-right: 60px;
  }
}
@media (max-width: 1279px) and (min-width: 0px){
  .page {
    padding-top: 72px !important;
  }
  .banner__bg {
    /*height: calc(100vh - 90px) !important;*/
  }
  .banner__text {
    left: 20px;
  }
  /* ----------------------- */
  header .menu-mobile{
    padding: 0px 20px;
    display: flex !important;
    align-items: center;
    height: 72px;
  }
  header .header__main.main-header {
    width: 300px;
    position: fixed;
    left: -300px;
    height: calc(100vh - 72px);
    box-shadow: 0px 70px 30px 20px rgba(0,0,0,.15);
    overflow: auto;
    transition: .3s;
  }
  header .menu-mobile .logo img{
    width: 80px;
  }
  /* ----------------------- */
  .header__main.main-header .action{
    display: none !important;
  }
  .header__main.main-header .search-main-header {
    margin: 5px 0px 30px;
  }
  .btn-wishlist-mobile{
    margin-left: auto;
    margin-right: 20px;
  }
  .btn-user-mobile{
    margin-right: auto;
    margin-left: 20px;
  }
  .btn-cart-mobile,
  .btn-wishlist-mobile,
  .btn-user-mobile{
    width: 28px;
    height: 28px;
  }
  .btn-cart-mobile img,
  .btn-wishlist-mobile img,
  .btn-user-mobile img{
    width: 28px;
    height: 28px;
  }
  .btn-cart-mobile .actions-main-header__name,
  .btn-wishlist-mobile .actions-main-header__name,
  .btn-user-mobile .actions-main-header__name{
    display: none;
  }
  .btn-cart-mobile .actions-main-header__value,
  .btn-wishlist-mobile .actions-main-header__value{
    right: -10px;
  }
  header .menu_icon_open{
    margin-top: 10px;
    width: 28px;
    height: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: end;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
  }
  header .menu_icon_open input {
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    top: -3px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
  }
  header .menu_icon_open span {
    position: relative;
    display: block;
    width: 28px;
    height: 2px;
    margin-bottom: 7px;
    position: relative;
    background: #222;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    /*transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    opacity 0.55s ease;*/
    transition: .3s;
  }
  header .menu_icon_open span:first-child {
   transform-origin: 0% 0%;
  }
  header .menu_icon_open span:nth-last-child(3) {
    width: 24px;
  }
  header .menu_icon_open span:nth-last-child(2) {
   transform-origin: 0% 100%;
  }
  header .menu_icon_open span:last-child {
    width: 24px;
  }
  header .menu_icon_open:hover span{
    width: 28px;
  }
  header .menu_icon_open input:checked ~ span{
    opacity: 1;
    transform: rotate(46deg) translate(-6px, -15px);
    background: #232323;
    width: 28px !important;
  }
  header .menu_icon_open input:checked ~ span:nth-last-child(3){
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }
  header .menu_icon_open input:checked ~ span:nth-last-child(2){
    transform: rotate(-46deg) translate(-2px, 13px);
  }
  header .header__main.main-header.open-menu{
    padding-top: 5px;
    display: block !important;
    top: 72px;
    left: 0px;
  }
  header .contacts-top-header__list ._container{
    justify-content: left;
  }
  header .contacts-top-header__list ._container a:last-child{
    padding-right: 0px;
  }
  header .header__main.main-header.open-menu .logo{
    display: none;
  }
  header .header__main.main-header.open-menu  .main-header__container._container{
    flex-direction: column;
  }
  header .header__main.main-header.open-menu  .main-header__container._container .action{
    order: 0;
    padding: 10px 0px 10px 0px;
    height: auto;
  }
  header .header__main.main-header.open-menu  .main-header__container._container .action .btn-header {
    flex-direction: column;
  }
  header .header__main.main-header.open-menu  .main-header__container._container .header-col-center{
    order: 1;
    height: auto;
    width: 100%;
    padding: 0px 0px 0px 0px;
    display: flex;
    flex-direction: column;
  }
  header .header__main.main-header.open-menu  .main-header__container._container .header-col-center .search-header{
    order: 0;
  }
  header .header__main.main-header.open-menu  .main-header__container._container .header-col-center .menu-header-top{
    order: 2;
  }
  header .header__main.main-header.open-menu  .main-header__container._container .header-col-center .menu-header-bottom{
    order: 1;
  }
  header .header__main.main-header.open-menu  .main-header__container._container .header-col-center .menu-header-bottom .menu__body{
    padding: 0px !important;
  }
  .menu-list__item:hover .menu-list__name {
    border-color: #fff !important;
    color: #F62559;
  }
  .new-header .menu-header-top ul {
    display: flex;
    flex-direction: column;
  }
  .new-header .menu-header-top ul li {
    margin-right: 0px;
    padding-top: 20px;
  }
  /**/
  .new-header .menu-list__submenu .menu-list__sublist{
    margin: 0px !important;
  }
  .new-header .menu-list__submenu .menu-list__sublist .menu-list__subcolumn{
    display: flex;
    flex-direction: column;
  }
  .new-header .menu-list__submenu .menu-list__sublist .menu-list__subcolumn a{
    padding: 0px;
  }
  /**/
  .new-my-profile {
    margin-top: 0px;
    padding: 80px 0px;
  }
  /**/
  .message.active {
    display: block !important;
    position: absolute;
    bottom: -20px;
    right: 0px;
    font-weight: 700;
    color: #e54f6b;
    width: 300px;
    left: 0px;
  }
  /**/
  .new-order-history{
    margin-top: 0px;
  }
}
@media (max-width: 1280px) and (min-width: 1024px){
  .banner .banner__text{
    max-width: 50%;
  }
  .banner .banner__text .banner__title {
    font-size: 42px;
    line-height: 46px;
  }
  /**/
  .after-best-sellers .bg-title {
    font-size: 164px;
  }
  /**/
  .ingrediente ._container.d-flex {
    padding: 0px 20px;
  }
  /**/
  .new-banner {
    padding: 150px 0px;
  }
  /**/
  .new-footer ._container .col {
    width: 44%;
  }
  .new-footer ._container .col:nth-child(2),
  .new-footer ._container .col:last-child{
    padding-right: 0px;
    width: 28%;
  }
  .new-footer ._container .col:last-child{
    padding-left: 40px;
  }
  .new-footer .main-footer__subscribe.subscribe-main-footer {
    padding-right: 0px;
  }
  .new-footer .main-footer__sublist.menu-footer a {
    padding-right: 15px;
  }
  /**/
  .head-submenu-body-history__item._product,
  .new-order-history .body-submenu-body-history__item._product {
    flex: 0 0 calc((100% - 20px * 3) / 2) !important;
  }
  /**/
  .new-footer .main-footer__sublist.menu-footer a {
    padding-right: 15px;
  }
  .new-footer ._container .col:first-child {
    padding-right: 20px;
    width: 50%;
  }
  .new-footer ._container .col:nth-child(2) {
    width: 30%;
  }
  .new-footer .main-footer__subscribe.subscribe-main-footer {
    padding-right: 20px;
  }
  /**/
  .catalog-header{
    padding-right: 25px;
  }
  .catalog-header .category-description{
    display: flex;
  }
  .catalog-header .category-description div{
    width: 50%;
  }
  .catalog-header .category-description div:last-child{
    padding-left: 30px;
  }
  .catalog-header .category-description div img{
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 4px;
  }
}
@media (max-width: 1024px) and (min-width: 991px){
  .banner .banner__text{
    max-width: 50%;
  }
  .banner .banner__text .banner__title {
    font-size: 32px;
    line-height: 36px;
  }
  /**/
  .counter ._container .col .counter-txt {
    font-size: 24px;
  }
  /**/
  .after-best-sellers .bg-title {
    font-size: 152px;
  }
  /**/
  .ingrediente ._container.d-flex {
    padding: 0px 20px;
  }
  /**/
  .new-banner {
    padding: 120px 0px;
  }
  /**/
  .new-footer ._container .col {
    width: 44%;
  }
  .new-footer ._container .col:nth-child(2),
  .new-footer ._container .col:last-child{
    padding-right: 0px;
    width: 28%;
  }
  .new-footer ._container .col:last-child{
    padding-left: 40px;
  }
  .new-footer .main-footer__subscribe.subscribe-main-footer {
    padding-right: 0px;
  }
  .new-footer .main-footer__sublist.menu-footer a {
    padding-right: 15px;
  }
  /**/
  .new-my-profile .menu-account ul li a .item-bg {
    height: 188px;
  }
  /**/
  .new-order-history {
    margin-top: 0px;
    padding: 60px 0px 60px 0px;
  }
  .new-order-history .body-catalog__item {
    flex: 0 0 calc((100% - 30px * 4) / 5);
  }
  /**/
  .head-submenu-body-history__item._product,
  .new-order-history .body-submenu-body-history__item._product {
    flex: 0 0 calc((100% - 20px * 3) / 2) !important;
  }
  /**/
  .about-us .col-6:first-child{
    padding-right: 40px;
  }
  .about-us .col-6:last-child {
    margin-left: 0px;
    padding: 0px;
    width: 50%;
    background-color: #fff;
  }
  /**/
  .new-footer .main-footer__sublist.menu-footer {
    flex-wrap: wrap;
  }
  /**/
  .catalog-header{
    padding-right: 25px;
  }
  .catalog-header .category-description{
    display: flex;
  }
  .catalog-header .category-description div{
    width: 50%;
  }
  .catalog-header .category-description div:last-child{
    padding-left: 30px;
  }
  .catalog-header .category-description div img{
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 4px;
  }
}
@media (max-width: 1024px) and (min-width: 0px){
  .main-page-article-body {
    padding: 40px 0px;
  }
  .main-page-article-head{
    flex-wrap: wrap;
    background: transparent;
  }
  .main-page-article-head .main-page-article-head-info,
  .main-page-article-head .main-page-article-head-img{
    width: 100%;
  }
  .main-page-article-head .main-page-article-head-info{
    padding-top: 40px;
    padding-left: 0px;
    order: 1;
  }
  .main-page-article-head .main-page-article-head-img{
    order: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px){
  .banner .banner__text{
    max-width: 50%;
  }
  .banner .banner__text .banner__title {
    font-size: 32px;
    line-height: 36px;
  }
  /**/
  .counter {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .counter ._container .col {
    padding: 0px 20px;
  }
  .counter ._container .col .counter-nb {
    font-size: 50px;
  }
  .counter ._container .col .counter-txt {
    font-size: 24px;
  }
  /**/
  .info {
    flex-direction: column;
  }
  .info .col-6 {
    width: 100%;
  }
  .info .col-6 .bg-color {
    padding: 80px 60px;
    background-color: #e65266;
  }
  /**/
  .why-annalotan ._container .col {
    padding: 0px 15px;
  }
  .why-annalotan ._container .col .why-nb {
    left: 18%;
  }
  /**/
  .after-best-sellers .bg-title {
    font-size: 128px;
  }
  .after-best-sellers h3 {
    font-size: 32px;
  }
  /**/
  .block-ingrediente-bg {
    margin-right: 15px;
    width: 80px;
    height: 80px;
  }
  .ingrediente ._container.d-flex {
    padding: 0px 20px;
  }
  .block-ingrediente div:last-child {
    width: calc(100% - 80px);
  }
  /**/
  .new-banner {
    padding: 100px 0px;
  }
  /**/
  .bg-etape{
    height: 400px;
  }
  /**/
  /*.new-footer {*/
  /*  padding: 80px 0px 60px 0px;*/
  /*}*/
  .new-footer ._container {
    /*flex-direction: column;*/
  }
  .new-footer ._container .col{
    width: 100%;
  }
  .new-footer ._container .col:first-child{
    order: 2;
    text-align: right;
  }
  .new-footer ._container .col:nth-child(2){
    order: 0;
  }
  .new-footer ._container .col:last-child{
    order: 1;
    padding-top: 0px;
    padding-left: 40px;
    width: 50%;
  }
  .new-footer .main-footer__subscribe.subscribe-main-footer {
    padding-right: 0px;
    width: 100%;
  }
  .new-footer ._container .col:first-child .main-footer__sublist.menu-footer{
    display: none;
  }
  .new-footer .main-footer__sublist.contact-footer .main-footer__subitem {
    margin-bottom: 0px;
  }
  .new-footer .payment {
    margin-top: -30px;
  }
  /**/
  .new-my-profile ._container {
    flex-direction: column;
  }
  .new-my-profile ._container .col-9,
  .new-my-profile ._container .col-3{
    width: 100%;
  }
  /**/
  .new-order-history{
    margin-top: 0px;
  }
  .new-order-history .body-catalog__item {
    flex: 0 0 calc((100% - 30px * 1) / 2);
  }
  /**/
  .head-submenu-body-history__item._product,
  .new-order-history .body-submenu-body-history__item._product {
    flex: 0 0 calc((100% - 20px * 3) / 2) !important;
  }
  /* Blog */
  .page-article.blog .news-body-main-page-article .row .col-auto {
    width: 50%;
  }
  .page-article.blog .news-body-main-page-article .row .col-auto img{
    width: 100% !important;
    height: auto !important;
  }
  .page-article.blog .news-body-main-page-article .block-blog-product img {
    width: 100% !important;
    height: auto !important;
  }
  /* Post 2 */
  .block-radius-img {
    padding: 0px 0px;
  }
  /**/
  .lotan-event-item {
    width: 50%;
  }
  /**/
  .about-us {
    margin-top: 40px;
    align-items: initial;
  }
  .about-us .col-6:last-child {
    margin-left: 0px;
    padding: 0px 0px 0px 40px;
    width: 50%;
    background-color: #fff;
  }
  /**/
  .new-footer ._container .col:first-child {
    display: none;
  }
  .new-footer ._container .col:nth-child(2) {
    width: 50%;
  }
  /**/
  .catalog-header{
    padding-right: 25px;
  }
  .catalog-header .category-description{
    display: flex;
    flex-direction: column;
  }
  .catalog-header .category-description div{
    width: 100%;
  }
  .catalog-header .category-description div:first-child{
    order: 1;
  }
  .catalog-header .category-description div:last-child{
    padding-bottom: 30px;
    order: 0;
  }
  .catalog-header .category-description div img{
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 4px;
  }
}
@media (max-width: 768px) and (min-width: 0px){
  .banner .banner__text{
    position: absolute;
    top: 2%;
    left: 20px;
  }
  .banner .banner__text .banner__title{
    text-align: left;
    font-size: 26px;
    line-height: 1.2em;
    font-weight: 600;
  }
  /**/
  .counter {
    padding-top: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #b9b9b9;
  }
  .counter ._container {
    flex-direction: column;
  }
  .counter ._container .col {
    padding: 0px 20px 60px 20px;
    width: 100%;
  }
  .counter ._container .col:last-child{
    padding-bottom: 0px;
  }
  .counter ._container .col .counter-txt {
    font-size: 24px;
  }
  .counter ._container .col .counter-nb {
    font-size: 58px;
    font-weight: 500;
  }
  /**/
  .products-slider.new {
    padding: 60px 0px 80px 0px;
  }
  /**/
  .info {
    flex-direction: column;
  }
  .info .col-6 {
    width: 100%;
  }
  .info .col-6 .bg-color {
    padding: 60px 20px;
    background-color: #e65266;
  }
  .info .col-6 .bg-color h2,
  .why-annalotan ._container .col:first-child h2,
  .section-title{
    font-size: 26px;
    line-height: 1.2em;
  }
  .info .col-6 .bg-color p {
    font-size: 18px;
  }
  /**/
  .why-annalotan {
    padding: 80px 0px;
  }
  .why-annalotan ._container .col {
    padding: 50px 0px;
    width: 100%;
  }
  .why-annalotan ._container .col:first-child {
    padding: 0px 0px;
  }
  .why-annalotan ._container .col .why-nb {
    left: 25%;
  }
  /**/
  .after-best-sellers .bg-title {
    font-size: 110px;
  }
  .after-best-sellers h3 {
    font-size: 26px;
    line-height: 1.2em;
    margin-top: 15px;
  }
  .after-best-sellers p {
    margin-top: -200px;
    font-size: 18px;
  }
  /**/
  .ingrediente ._container.d-flex {
    padding: 0px 20px;
  }
  .block-ingrediente {
    width: 100%;
  }
  .block-ingrediente:nth-child(3){
    margin-bottom: 40px;
  }
  .block-ingrediente-bg {
    margin-right: 25px;
    width: 80px;
    height: 150px;
    border-radius: 50px;
  }
  .block-ingrediente div:last-child {
    width: calc(100% - 80px);
  }
  .block-ingrediente div:last-child br{
    display: none !important;
  }
  /**/
  .new-banner {
    padding: 80px 0px;
  }
  .new-banner h2{
    padding: 20px 20px;
    font-size: 26px;
    line-height: 1.3em;
  }
  /**/
  .etape{
    padding: 80px 0px;
  }
  .bg-etape{
    height: 230px;
    background-size: cover;
    background-position: center right;
  }
  .etape .btn-anna.btn-2 {
    left: 0%;
  }
  .etape .btn-anna.btn-3 {
    top: 67%;
    left: auto;
    right: 0;
  }
  /**/
  .instagram {
    padding: 80px 0px 60px 0px;
  }
  .instagram #instafeed-container > div > div > div{
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
  }
  .instagram #instafeed-container > div > div > div > div{
    width: calc(50% - 10px) !important;
  }
  .instagram #instafeed-container > div > div > div > div:first-child,
  .instagram #instafeed-container > div > div > div > div:nth-child(2){
    padding-bottom: 20px;
  }
  .instagram #instafeed-container > div > div > div > div:first-child,
  .instagram #instafeed-container > div > div > div > div:nth-child(3){
    margin-right: auto;
  }
  /**/
  /*.new-footer {*/
  /*  padding: 80px 0px 60px 0px;*/
  /*}*/
  .new-footer ._container {
    flex-direction: column;
  }
  .new-footer ._container .col{
    width: 100%;
  }
  .new-footer ._container .col:first-child{
    order: 2;
    text-align: right;
  }
  .new-footer ._container .col:nth-child(2){
    order: 0;
  }
  .new-footer ._container .col:last-child{
    order: 1;
    padding-top: 50px;
    width: 100%;
  }
  .new-footer .main-footer__subscribe.subscribe-main-footer {
    padding-right: 0px;
    width: 100%;
  }
  .new-footer ._container .col:first-child .main-footer__sublist.menu-footer{
    display: none;
  }
  .new-footer .main-footer__sublist.contact-footer .main-footer__subitem {
    margin-bottom: 0px;
  }
  .new-footer .payment {
    margin-top: -30px;
  }
  /**/
  .new-my-profile ._container {
    flex-direction: column;
  }
  .new-my-profile ._container .col-9,
  .new-my-profile ._container .col-3{
    padding-left: 0px;
    width: 100%;
  }
  .new-my-profile .title-page {
    width: 100%;
    font-size: 24px;
  }
  .new-my-profile .menu-account ul li {
    margin-bottom: 5px;
    padding-right: 0px;
    width: 50%;
  }
  .new-my-profile .menu-account ul li:nth-child(2n){
    padding-left: 9px;
  }
  .new-my-profile .menu-account ul li:nth-child(2n + 1){
    padding-right: 9px;
  }
  .new-my-profile .menu-account ul li a .item-bg {
    height: 140px;
  }
  .new-my-profile .menu-account ul li a .item-txt {
    font-size: 16px;
  }
  /**/
  .account-nav ul li:last-child{
    margin-right: 0px;
  }
  .account-nav ul li a{
    padding: 15px 12px;
  }
  .new-order-history .body-catalog__item {
    flex: 0 0 100%;
  }
  /**/
  .new-order-history .body-profile__history.history-body-profile{
    margin: 0px;
    padding: 25px 10px;
  }
  .new-order-history .history-body-profile .main-body-history-body-profile__item {
    margin-left: -5px;
  }
  /**/
  .new-order-history.protocol-content{
    padding-bottom: 40px;
  }
  .new-order-history.protocol-content .col-6.bg-protocol{
    display: none;
  }
  .new-order-history.protocol-content .col-6{
    width: 100%;
  }
  .new-order-history.protocol-content .col-6.item{
    margin-bottom: 30px;
    flex-direction: column;
  }
  .new-order-history.protocol-content .title-page h2 {
    font-size: 32px;
  }
  .new-order-history.protocol-content .title-page p {
    line-height: 1.4;
  }
  .list-protocol {
    margin-top: 50px;
  }
  .list-protocol .item .item-image {
    margin-right: 0px;
    width: 100%;
    height: 250px;
    margin-bottom: 30px;
  }
  .list-protocol .item .item-content .item-link{
    margin-top: 10px;
  }
  .new-order-history.protocol-content hr{
    display: none;
  }
  .row.protocol-item .col-4,
  .row.protocol-item .col-8{
    width: 100%;
  }
  .row.protocol-item .item-img{
    height: 280px;
  }
  .row.protocol-item .item-short {
    padding: 40px 0px;
  }
  .col-8.item-short .short-desc {
    font-size: 16px;
  }
  .col-8.item-short h2:first-child {
    font-size: 32px;
  }
  .protocol-stages {
    margin-top: 0px;
  }
  .protocol-stages table tr td:first-child {
    width: 40%;
  }
  .protocol-stages table tr td:last-child {
    padding-left: 15px;
  }
  .list-protocol .item .item-content {
    padding-right: 0px;
  }
  /* Blog */
  .page-article.blog .head-main-page-article__title {
    margin: 0px 0px 20px;
  }
  .page-article.blog .news-body-main-page-article .row {
    margin-left: 0px;
    margin-right: 0px;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .page-article.blog .news-body-main-page-article .row.mobile-row{
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page-article.blog .news-body-main-page-article .row .col-auto,
  .page-article.blog .news-body-main-page-article .row .col-12,
  .page-article.blog .news-body-main-page-article .row .col-6,
  .page-article.blog .news-body-main-page-article .row .col-4{
    padding: 0px 15px;
    width: 100%;
  }
  .page-article.blog .news-body-main-page-article .row .col-3{
    padding: 0px 15px;
    width: 50%;
  }
  .page-article.blog .news-body-main-page-article .row .col-6{
    border-left: none !important;
    border-right: none !important;
  }
  .page-article.blog .news-body-main-page-article .row .col-auto img{
    width: 100% !important;
    height: auto !important;
  }
  .page-article.blog .news-body-main-page-article h2 {
    margin: 25px 0px;
    font-size: 24px;
  }
  .page-article.blog .news-body-main-page-article .block-blog-product {
    margin-bottom: 20px;
  }
  .block-radius-img {
    padding: 15px 0px;
    text-align: center;
  }
  /**/
  .message-action, .message-action-wishlist {
    width: 100%;
    bottom: 0px;
    right: 0px;
  }
  /**/
  .lotan-event-item {
    width: 100%;
    margin-bottom: 30px;
  }
  .main-page-article-head .main-page-article-head-info .title h1 {
    font-size: 28px;
  }
  .main-page-article-footer{
    padding: 15px;
    flex-direction: column;
    align-items: start;
  }
  .main-page-article-footer > div {
    width: 100%;
  }
  .main-page-article-footer > div:first-child {
    padding-left: 0px;
  }
  /**/
  .text__content .about-us:first-child .col-3{
    order: 0;
  }
  .text__content .about-us:first-child .col-9{
    padding-right: 0px;
    padding-top: 25px;
    order: 1;
  }
  .about-us .col-3,
  .about-us .col-6,
  .about-us .col-9{
    width: 100%;
  }
  .about-us .col-6:last-child {
    margin-left: 0px;
    padding: 40px 0px 0px 0px;
    width: 100%;
    background-color: #fff;
  }
  /**/
  .new-footer ._container .col:first-child {
    width: 100%;
  }
  .new-footer ._container .col:nth-child(2) {
    width: 100%;
  }
  /**/
  .catalog-header{
    padding-right: 25px;
  }
  .catalog-header .category-description{
    display: flex;
    flex-direction: column;
  }
  .catalog-header .category-description div{
    width: 100%;
  }
  .catalog-header .category-description div:first-child{
    order: 1;
  }
  .catalog-header .category-description div:last-child{
    padding-bottom: 30px;
    order: 0;
  }
  .catalog-header .category-description div img{
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 4px;
  }


  .header__bottom_info {
    color: #ffffff;
    width: 100%;
    font-size: 22px;
    text-align: center;
  }
  ._container.header__bottom_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .header__bottom_info._right {
    text-align: center;
  }
  .category_nav_button {
    display: none;
  }
  .category_nav {
    position: relative;
    height: auto;
    width: 100%;
  }
  .category_nav_absolut {
    display: flex;
    position: relative;
    width: 100%;
  }
  .new-header .menu__body._container {
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 15px 0px 0px;
  }
  .header__bottom_info._left {
    padding-top: 70px;
  }
  .header__main.main-header .search-main-header {
    margin: 5px 0px 20px;
    flex: 0 0 48px;
  }
  form.search-main-header__form {
    margin: 0 -5px;
  }
  ul.menu__list.menu-list._spollers {
    padding-left: 15px;
    width: 100%;
  }

  .content-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  a.home-brands.swiper-slide img {
    max-width: max-content;
    border-radius: 8px;
  }
  .banner_home_left img {
    width: 100%;
    border-radius: 18px;
  }
  .banner_home_left {
    max-width: 100%;
    border-radius: 18px;
  }
  .new-footer ._container {
    display: flex
  ;
    gap: 24px;
  }
  .nav-bottom {
    padding-top: 27px;
    display: flex
  ;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    text-align: left;
  }
  .col.footer-page .logo {
    width: 140px;
    position: initial;
    top: -70px;
  }

  a.page-category_children {
    flex: 0 0 calc((100% + 0px * 2) / 3);
  }
  .categories_chaild {
    gap: 8px;
  }
  a.page-category_children img {
    max-width: 100%;
    height: 140px;
    border-radius: 16px;
  }
  a.page-category_children span {
    position: initial;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    max-width: 95%;
    text-align: center;
    padding-top: 8px;
  }
  .cls-video {
    height: 165px;
  }

  .blog_rught .home_blog_item.last_blog {
    width: 48%;
    max-height: 100%;
    overflow: hidden;
    border-radius: 22px;
  }

  .head-categories-slider-arrow {
    display: none;
  }

  .catalog_category h2._title {
    text-align: center;
    padding: 0px 10px 25px;
  }
}
