@charset "UTF-8";
* {
  box-sizing: border-box;
}
@media (max-width: 767px) {
  * {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
  }
}

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

body {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: #1D3F46;
}
@media (min-width: 992px) {
  body {
    overflow-x: hidden;
  }
}
body.disable-scroll {
  height: 100vh;
  overflow: hidden;
}

h1 {
  font-size: 20px;
  text-transform: uppercase;
}

h2 {
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  text-transform: uppercase;
  color: #1D3F46;
  margin-top: 10px;
}

a {
  color: #1D3F46;
  text-decoration: none;
}

section {
  width: 100%;
  position: relative;
}

caption {
  text-align: left;
}

.caption {
  margin-bottom: 1.2em;
}

/**
 * Seven styles for Tables.
 */
table {
  width: 100%;
  margin: 0 0 10px;
  border-collapse: collapse;
}

tr {
  border-bottom: none;
  padding: 0.1em 0.6em;
}

thead > tr {
  border-bottom: none;
}

tbody tr:hover {
  background: #f7fcff;
}
tbody tr:focus {
  background: #f7fcff;
}
tbody tr.color-warning:hover {
  background: #fdf8ed;
}
tbody tr.color-warning:focus {
  background: #fdf8ed;
}
tbody tr.color-error:hover {
  background: #fcf4f2;
}
tbody tr.color-error:focus {
  background: #fcf4f2;
}

th {
  text-align: left;
  padding: 10px 12px;
  vertical-align: middle;
}
th > a {
  position: relative;
  display: block;
}
th > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: -10px; /* 1. */
  left: 0;
  right: 0;
  border-bottom: 2px solid transparent;
  transition: all 0.1s;
}
th > a:hover {
  color: #008ee6;
  text-decoration: none;
}
th > a:hover:after {
  border-bottom-color: #008ee6;
}
th > a:focus {
  color: #008ee6;
  text-decoration: none;
}
th > a:focus:after {
  border-bottom-color: #008ee6;
}
th.is-active > a {
  color: #004875;
}
th.is-active > a:after {
  border-bottom-color: #004875;
}
th.is-active > a:hover {
  color: #008ee6;
  text-decoration: none;
}
th.is-active > a:hover:after {
  border-bottom-color: #008ee6;
}
th.is-active > a:focus {
  color: #008ee6;
  text-decoration: none;
}
th.is-active > a:focus:after {
  border-bottom-color: #008ee6;
}
th.is-active img {
  position: absolute;
  right: 0;
  top: 50%;
}
th.select-all {
  width: 1px;
}
@media screen and (max-width: 60em) {
  th.priority-low {
    display: none;
  }
}
@media screen and (max-width: 37.5em) {
  th.priority-medium {
    display: none;
  }
}

thead th {
  font-weight: normal;
  font-size: 15px;
  background: none;
  border-bottom: solid 1px #85C5CF;
  color: #1D3F46;
  text-transform: uppercase;
  padding: 10px 12px 10px 0;
}
@media (max-width: 576px) {
  thead th {
    font-size: 13px;
  }
}

td {
  vertical-align: middle;
  padding: 16px 15px 16px 0;
  font-size: 14px;
  text-align: left;
}
@media (max-width: 576px) {
  td {
    font-size: 12px;
  }
}
td .item-list ul {
  margin: 0;
}
td.is-active {
  background: none;
}
@media screen and (max-width: 60em) {
  td.priority-low {
    display: none;
  }
}
@media screen and (max-width: 37.5em) {
  td.priority-medium {
    display: none;
  }
}

/**
 * Style for title H1, H2, H3
 */
.title-h1 {
  font-size: 16px;
  font-weight: 500;
  color: #1D3F46;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .title-h1 {
    font-size: 18px;
  }
}

.title-h2 {
  font-size: 14px;
  font-weight: 500;
  color: #1D3F46;
  text-transform: uppercase;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .title-h2 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) {
  .title-h2 {
    font-size: 18px;
  }
}

.title-h3 {
  font-size: 16px;
  font-weight: 400;
  color: #1D3F46;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .title-h3 {
    font-size: 18px;
    margin-bottom: 25px;
  }
}

/**
 * Messages.
 */
.messages {
  background: no-repeat 10px 17px;
  border: 1px solid;
  border-width: 1px 1px 1px 0;
  border-radius: 2px;
  padding: 15px 20px 15px 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.messages + .messages {
  margin-top: 1.538em;
}

.messages__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.messages__item + .messages__item {
  margin-top: 0.769em;
}

.messages--status {
  color: #325e1c;
  background-color: #f3faef;
  border-color: #c9e1bd #c9e1bd #c9e1bd transparent;
  box-shadow: -8px 0 0 #77b259;
}

.messages--warning {
  background-color: #fdf8ed;
  border-color: #f4daa6 #f4daa6 #f4daa6 transparent;
  color: #734c00;
  box-shadow: -8px 0 0 #e09600;
}

.messages--error {
  background-color: #fcf4f2;
  color: #a51b00;
  border-color: #f9c9bf #f9c9bf #f9c9bf transparent;
  box-shadow: -8px 0 0 #e62600;
}
.messages--error p.error {
  color: #a51b00;
}

/**
 * Section-ttl.
 */
.section-ttl-wrap {
  width: 100%;
  padding: 11px;
  border-top: 1px solid #85C5CF;
  border-bottom: 1px solid #85C5CF;
  text-align: center;
}

.section-ttl {
  font-size: 14px;
  font-weight: 500;
  color: #1D3F46;
  text-transform: uppercase;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .section-ttl {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) {
  .section-ttl {
    font-size: 18px;
  }
}

.page-ttl-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.page-ttl {
  font-size: 16px;
  font-weight: 500;
  color: #1D3F46;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .page-ttl {
    font-size: 18px;
  }
}

.page-ttl__line {
  width: 100%;
  height: 1px;
  background: #85C5CF;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.section-viewed-products {
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .section-viewed-products {
    padding-bottom: 45px;
  }
}

.section-viewed-products__heading {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .section-viewed-products__heading {
    margin-bottom: 45px;
  }
}
@media only screen and (min-width: 992px) {
  .section-viewed-products__heading {
    margin-bottom: 75px;
  }
}

.paradise-breadcrumbs-wrap {
  width: 100%;
  padding-top: 15px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .paradise-breadcrumbs-wrap {
    padding-top: 24px;
  }
}

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

.paradise-breadcrumbs__item {
  font-size: 12px;
  font-weight: 300;
  color: #1D3F46;
  text-decoration: none;
}

a.paradise-breadcrumbs__item {
  transition: all, 0.25s;
}
a.paradise-breadcrumbs__item::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #76BFC8;
  margin: 0 auto;
  transition: all, 0.25s;
}
a.paradise-breadcrumbs__item:hover {
  color: #76BFC8;
}
a.paradise-breadcrumbs__item:hover::after {
  width: 100%;
}

.paradise-breadcrumbs__separator {
  width: 13px;
  height: 1px;
  background: #1D3F46;
  transform: rotate(-60deg);
  margin-left: 7px;
  margin-right: 5px;
  margin-top: -1px;
}
@media only screen and (min-width: 768px) {
  .paradise-breadcrumbs__separator {
    margin-left: 12px;
    margin-right: 10px;
  }
}

#backtotop {
  display: block;
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 0;
  width: 50px;
  height: 50px;
  background: url(../../dist/assets/images/icons/arrow-icon-up.svg) no-repeat center;
  border: 3px solid #6DBCC5;
  border-radius: 3px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  visibility: hidden;
  z-index: 1000;
  opacity: 0;
}
#backtotop.show {
  visibility: visible;
  opacity: 1;
}

.container {
  width: 90vw;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 991px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    width: 1064px;
  }
}
.region.region-content {
  width: 100%;
}

section {
  width: 100%;
  position: relative;
}

.path-top .region.region-content {
  max-width: 1064px;
  padding: 0 20px;
  margin: 0 auto;
}

.header {
  width: 100%;
  height: 67px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .header {
    height: auto;
  }
}
.header form.search-form {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .header form.search-form {
    width: 337px;
  }
}
.header form.search-form .form-item-text {
  margin: 0;
}
.header form.search-form .form-item-text input {
  height: 42px;
  border: 0.2px solid #1D3F46;
  border-radius: 30px;
  padding: 0 3.5rem 0 1rem;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
}
.header form.search-form .form-actions {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
}
.header form.search-form .form-actions .form-submit {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 20px;
  top: 21px;
  transform: translateY(-50%);
  background: url(../../dist/assets/images/icons/search.svg);
  text-indent: -99999px;
  overflow: hidden;
}
.header .header-desctop {
  width: 100%;
  display: none;
}
@media only screen and (min-width: 992px) {
  .header .header-desctop {
    display: block;
  }
}
.header .header-desctop .header-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 19px;
  padding-bottom: 6px;
}
.header .header-desctop .header-block .header-block__menu-phones {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(50% - 60px);
}
.header .header-desctop .header-block .header-block__menu-phones .header-block__phones {
  display: flex;
  align-items: center;
  margin-top: 32px;
}
.header .header-desctop .header-block .header-block__menu-phones .header-block__phones .header-block__menu-phones-icon {
  width: 32px;
  margin: -3px 6px 0 -3px;
}
.header .header-desctop .header-block .header-block__menu-phones .header-block__phones .header-block__menu-phones-item {
  font-size: 15px;
  font-weight: 400;
  color: #6DBCC5;
  text-decoration: none;
  margin: 4px 34px 0 0;
  transition: all, 0.3s;
  white-space: nowrap;
}
.header .header-desctop .header-block .header-block__menu-phones .header-block__phones .header-block__menu-phones-item:last-child {
  margin-right: 0;
}
.header .header-desctop .header-block .header-block__menu-phones .header-block__phones .header-block__menu-phones-item::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #1D3F46;
  margin: 0 auto;
  transition: all, 0.3s;
}
.header .header-desctop .header-block .header-block__menu-phones .header-block__phones .header-block__menu-phones-item:hover {
  color: #1D3F46;
}
.header .header-desctop .header-block .header-block__menu-phones .header-block__phones .header-block__menu-phones-item:hover::after {
  width: 100%;
}
.header .header-desctop .header-block .header-block__menu-phones .header-block__menu-list {
  list-style: none;
  padding: 7px 0 0 3px;
  margin: 0;
  display: flex;
  align-items: center;
}
.header .header-desctop .header-block .header-block__menu-phones .header-block__menu-list .header-block__menu-item {
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.header .header-desctop .header-block .header-block__menu-phones .header-block__menu-list .header-block__menu-item::after {
  content: "";
  display: block;
  width: 1px;
  height: 9px;
  background: rgba(133, 197, 207, 0.32);
  margin: -3px 0 0 20px;
}
.header .header-desctop .header-block .header-block__menu-phones .header-block__menu-list .header-block__menu-item:last-child::after {
  display: none;
}
.header .header-desctop .header-block .header-block__menu-phones .header-block__menu-list .header-block__menu-item .header-block__menu-link {
  font-size: 12px;
  font-weight: 400;
  color: #1D3F46;
  text-transform: uppercase;
  text-decoration: none;
  transition: all, 0.3s;
}
.header .header-desctop .header-block .header-block__menu-phones .header-block__menu-list .header-block__menu-item .header-block__menu-link::after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background: #DC71AA;
  margin: 0 auto;
  transition: all, 0.3s;
}
.header .header-desctop .header-block .header-block__menu-phones .header-block__menu-list .header-block__menu-item .header-block__menu-link:hover {
  color: #DC71AA;
}
.header .header-desctop .header-block .header-block__menu-phones .header-block__menu-list .header-block__menu-item .header-block__menu-link:hover::after {
  width: 100%;
}
.header .header-desctop .header-block .header-block__menu-phones .butik_url {
  margin-left: 40px;
  display: none;
}
.header .header-desctop .header-block .header-block__menu-phones .butik_url a {
  font-size: 15px;
  font-weight: 400;
  color: #DC71AA;
  text-decoration: none;
  margin-right: 34px;
  transition: all, 0.3s;
}
.header .header-desctop .header-block .header-block__menu-phones .butik_url a:hover {
  color: #6DBCC5;
}
.header .header-desctop .header-block .header-logo {
  display: block;
  width: 86px;
  margin: 0 0 0 -5px;
}
.header .header-desctop .header-block .header-logo .header-logo__image {
  width: 100%;
  height: auto;
}
.header .header-desctop .header-block .header-block__socials-user {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: calc(50% - 60px);
}
.header .header-desctop .header-block .header-block__socials-user .header-block__socials-user-inner {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.header .header-desctop .header-block .header-block__socials-user .header-block__socials-user-inner .paradise-socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header .header-desctop .header-block .header-block__socials-user .header-block__socials-user-inner .paradise-socials .paradise-socials__item {
  width: 25px;
  height: 25px;
}
.header .header-desctop .header-block .header-block__socials-user .header-block__socials-user-inner .paradise-socials .paradise-socials__item:nth-child(1) {
  order: 4;
  margin: 0 0 0 15px;
}
.header .header-desctop .header-block .header-block__socials-user .header-block__socials-user-inner .paradise-socials .paradise-socials__item:nth-child(2) {
  order: 5;
  margin: 0 0 0 14px;
}
.header .header-desctop .header-block .header-block__socials-user .header-block__socials-user-inner .paradise-socials .paradise-socials__item:nth-child(3) {
  order: 2;
  margin: 0 0 0 16px;
}
.header .header-desctop .header-block .header-block__socials-user .header-block__socials-user-inner .paradise-socials .paradise-socials__item .paradise-socials__item-icon {
  max-width: 100%;
  max-height: 100%;
  transition: all, 0.3s;
}
.header .header-desctop .header-block .header-block__socials-user .header-block__socials-user-inner .paradise-socials .paradise-socials__item:hover .paradise-socials__item-icon {
  transform: scale(1.2);
}
.header .header-desctop .header-block .header-block__socials-user .header-block__socials-user-inner .header-block__user {
  display: flex;
  align-items: center;
  margin: 0 17px 0 44px;
}
.header .header-desctop .header-block .header-block__socials-user .header-block__socials-user-inner .header-block__user .header-block__user-item {
  margin-left: 32px;
  width: 25px;
  display: flex;
  justify-content: center;
  position: relative;
}
.header .header-desctop .header-block .header-block__socials-user .header-block__socials-user-inner .header-block__user .header-block__user-item svg {
  display: block;
  max-width: 100%;
  height: auto;
}
.header .header-desctop .header-block .header-block__socials-user .header-block__socials-user-inner .header-block__user .header-block__user-item svg path {
  fill: #1D3F46;
  transition: all, 0.3s;
}
.header .header-desctop .header-block .header-block__socials-user .header-block__socials-user-inner .header-block__user .header-block__user-item:hover svg path {
  fill: #CB0C74;
}
.header .header-desctop .header-block .header-block__socials-user .header-block__socials-user-inner .header-block__user .header-block__user-item .cart-block--summary__count,
.header .header-desctop .header-block .header-block__socials-user .header-block__socials-user-inner .header-block__user .header-block__user-item .wishlist-block__summary__count {
  font-size: 11px;
  position: absolute;
  top: 5px;
  left: 15px;
  background: #1ab7ea;
  color: white;
  border-radius: 50%;
  padding: 3px;
  width: 18px;
  height: 18px;
  text-align: center;
}
.header .header-desctop .header-block .header-block__socials-user .header-block__socials-user-inner .views-exposed-form .js-form-item input div {
  opacity: 0;
}
.header .header-mobile .header-logo-mobile-scroll {
  margin-top: 20px;
}
.header .header-mobile .header-logo-mobile-scroll img {
  width: 90px;
}

.toolbar-vertical .header-mobile {
  margin: 39px 0 0;
}
.toolbar-vertical .header-mobile.scroll {
  margin: 0;
}

@media only screen and (min-width: 992px) {
  .paradise-search_header {
    transform: translateX(16px);
  }
}

.header-categories {
  border-top: 1px solid #85C5CF;
  border-bottom: 1px solid #85C5CF;
  position: relative;
}
.header-categories .closer {
  display: none;
}
.header-categories .header-categories__list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin: 0 0 0 -10px;
  padding: 0;
}
@media only screen and (min-width: 992px) {
  .header-categories .header-categories__list {
    margin: 0 0 0 -12px;
  }
}
@media only screen and (min-width: 1200px) {
  .header-categories .header-categories__list {
    margin: 0 0 0 -14px;
  }
}
.header-categories .header-categories__list .header-categories__list-item {
  padding: 10px;
  padding-bottom: 7px;
  transition: all, 0.3s;
  flex-grow: 1;
}
.header-categories .header-categories__list .header-categories__list-item:hover {
  background: #DC71AA;
}
.header-categories .header-categories__list .header-categories__list-item:hover .header-categories__list-item-link {
  color: #fff;
}
.header-categories .header-categories__list .header-categories__list-item:hover .collapsed-menu {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.header-categories .header-categories__list .header-categories__list-item.active {
  background: #76BFC8;
}
.header-categories .header-categories__list .header-categories__list-item.active .header-categories__list-item-link {
  color: #fff;
}
.header-categories .header-categories__list .header-categories__list-item:last-child {
  background-color: #76BFC8;
}
.header-categories .header-categories__list .header-categories__list-item:last-child a {
  color: #fff;
}
.header-categories .header-categories__list .header-categories__list-item:last-child:hover {
  background-color: #DC71AA;
}
.header-categories .header-categories__list .header-categories__list-item:last-child .header-categories__list-item-link::after {
  display: none;
}
@media only screen and (min-width: 992px) {
  .header-categories .header-categories__list .header-categories__list-item {
    padding: 10px 8px;
    display: flex;
    align-items: center;
  }
}
@media only screen and (min-width: 1200px) {
  .header-categories .header-categories__list .header-categories__list-item {
    padding: 17px 14px 12px;
  }
}
.header-categories .header-categories__list .header-categories__list-item .header-categories__list-item-link {
  font-size: 10px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  color: #1D3F46;
  transition: all, 0.3s;
}
@media only screen and (min-width: 992px) {
  .header-categories .header-categories__list .header-categories__list-item .header-categories__list-item-link {
    display: block;
    width: 100%;
    position: relative;
    text-align: center;
  }
  .header-categories .header-categories__list .header-categories__list-item .header-categories__list-item-link::after {
    content: "";
    display: block;
    width: 1px;
    height: 9px;
    background: rgba(133, 197, 207, 0.32);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -8px;
  }
}
@media only screen and (min-width: 1200px) {
  .header-categories .header-categories__list .header-categories__list-item .header-categories__list-item-link {
    font-size: 12px;
  }
  .header-categories .header-categories__list .header-categories__list-item .header-categories__list-item-link::after {
    right: -14px;
  }
}
.header-categories .header-categories__list .header-categories__list-item .collapsed-menu {
  display: none;
  -moz-column-count: 3;
       column-count: 3;
  position: absolute;
  z-index: 1;
  width: 100vw;
  background: #fff;
  padding: 15px 5vw;
  border-bottom: 1px solid #85C5CF;
  top: 32px;
  left: -5vw;
}
@media only screen and (min-width: 1200px) {
  .header-categories .header-categories__list .header-categories__list-item .collapsed-menu {
    top: 100%;
    border-top: 1px solid #85C5CF;
    left: calc((100vw - 1064px) / 2 * -1);
    padding-left: calc((100vw - 1064px) / 2);
    padding-right: calc((100vw - 1064px) / 2);
  }
}
.header-categories .header-categories__list .header-categories__list-item .collapsed-menu .left_collapsed-menu-ttl {
  font-size: 14px;
  font-weight: 300;
  color: #6DBCC5;
  text-decoration: underline;
  margin-bottom: 10px;
}
.header-categories .header-categories__list .header-categories__list-item .collapsed-menu a {
  color: black;
}
.header-categories .header-categories__list .header-categories__list-item .collapsed-menu .menu_level_1 {
  padding: 0;
  margin: 0;
  -moz-column-count: 3;
       column-count: 3;
  list-style: none;
}
.header-categories .header-categories__list .header-categories__list-item .collapsed-menu .menu_level_1 li {
  margin: 5px 0;
  min-width: 180px;
}
.header-categories .header-categories__list .header-categories__list-item .collapsed-menu .menu_level_1 li:first-child {
  margin-top: 0;
}
.header-categories .header-categories__list .header-categories__list-item .collapsed-menu .menu_level_1 li a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  color: #1D3F46;
  transition: all, 0.25s;
}
.header-categories .header-categories__list .header-categories__list-item .collapsed-menu .menu_level_1 li a:hover {
  color: #CB0C74;
}
.header-categories .header-categories__list .header-categories__list-item .collapsed-menu .collapsed-menu-image_01 {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .header-categories .header-categories__list .header-categories__list-item .collapsed-menu .collapsed-menu-image_01 {
    display: block;
    width: 152px;
    height: 117px;
    margin-left: 47px;
    margin-right: 55px;
  }
}
.header-categories .header-categories__list .header-categories__list-item .collapsed-menu .right_collapsed-menu {
  display: flex;
  align-items: center;
  margin-left: 50px;
}
@media only screen and (min-width: 1200px) {
  .header-categories .header-categories__list .header-categories__list-item .collapsed-menu .right_collapsed-menu {
    margin-left: 0;
  }
}
.header-categories .header-categories__list .header-categories__list-item .collapsed-menu .right_collapsed-menu a {
  margin-left: 23px;
  font-size: 15px;
  font-weight: 300;
  color: #1D3F46;
  white-space: nowrap;
  text-decoration: none;
  transition: all, 0.25s;
}
.header-categories .header-categories__list .header-categories__list-item .collapsed-menu .right_collapsed-menu a:first-child {
  margin-left: 0;
}
.header-categories .header-categories__list .header-categories__list-item .collapsed-menu .right_collapsed-menu a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #DC71AA;
}
.header-categories .header-categories__list .header-categories__list-item .collapsed-menu .right_collapsed-menu a:hover {
  color: #CB0C74;
}
.header-categories .header-categories__list .header-categories__list-item .collapsed-menu .collapsed-menu-image_02 {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .header-categories .header-categories__list .header-categories__list-item .collapsed-menu .collapsed-menu-image_02 {
    display: block;
    width: 106px;
    height: 88px;
    margin-left: 22px;
  }
}

@media only screen and (min-width: 992px) {
  html[lang=uk] .header-categories .header-categories__list .header-categories__list-item:nth-child(5) .header-categories__list-item-link {
    max-width: 132px;
  }
}

.container-mobile {
  display: none !important;
}

.header-mobile {
  width: 100%;
  height: 67px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  background: #fff;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-mobile.scroll {
  border-bottom: 1px solid #85C5CF;
}
.header-mobile.scroll .header-logo-mobile {
  display: none;
}
.header-mobile.scroll .header-logo-mobile-scroll {
  display: block;
}
.header-mobile.scroll .header-mobile__user {
  display: none !important;
}
@media (max-width: 991px) {
  .header-mobile .region-mobile {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width: 992px) {
  .header-mobile {
    display: none;
  }
}
.header-mobile .header-mobile__logo-btn {
  display: flex;
  align-items: center;
}
.header-mobile .header-mobile__logo-btn .header-logo-mobile__image {
  display: block;
  width: 40px;
  margin: 5px 0 0 2px;
}
.header-mobile .header-mobile__logo-btn .header-mobile__btn {
  margin: 5px 0 0 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
}
.header-mobile .header-mobile__logo-btn .header-mobile__btn:hover .header-mobile__btn-line {
  background: #C73C78;
}
.header-mobile .header-mobile__logo-btn .header-mobile__btn:hover .header-mobile__btn-line:last-child {
  width: 28px;
}
.header-mobile .header-mobile__logo-btn .header-mobile__btn .header-mobile__btn-line {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: #76BFC8;
  margin-bottom: 7px;
  transition: all, 0.3s;
}
.header-mobile .header-mobile__logo-btn .header-mobile__btn .header-mobile__btn-line:last-child {
  width: 17px;
  margin-bottom: 0;
}
.header-mobile .header-logo-mobile-scroll {
  display: none;
}
.header-mobile .header-mobile-actions {
  display: flex;
  align-items: center;
}
.header-mobile .header-mobile-actions .language-switcher-language-url {
  padding: 7px 12px 0 12px;
  gap: 8px;
}
@media (max-width: 359px) {
  .header-mobile .header-mobile-actions .language-switcher-language-url {
    display: none;
  }
}
.header-mobile .header-mobile-actions .header-mobile-search__icon {
  cursor: pointer;
  margin: 5px 0 0;
}
.header-mobile .header-mobile-actions .header-mobile-search__icon svg {
  display: block;
  width: 28px;
  height: auto;
}
.header-mobile .header-mobile-actions .header-mobile-search__icon svg path {
  fill: #76BFC8;
  transition: all, 0.3s;
}
.header-mobile .header-mobile-actions .header-mobile-search__icon:hover svg path {
  fill: #C73C78;
}
.header-mobile .header-mobile-actions .header-mobile__user {
  display: flex;
  align-items: center;
}
.header-mobile .header-mobile-actions .header-mobile__user .header-block__user-item {
  margin-left: 12px;
  display: flex;
  justify-content: center;
  position: relative;
}
.header-mobile .header-mobile-actions .header-mobile__user .header-block__user-item svg {
  display: block;
  max-width: 100%;
  height: auto;
}
.header-mobile .header-mobile-actions .header-mobile__user .header-block__user-item svg path {
  fill: #76BFC8;
  transition: all, 0.3s;
}
.header-mobile .header-mobile-actions .header-mobile__user .header-block__user-item[data-dialog-type=modal] {
  margin: 5px -2px 0 25px;
}
.header-mobile .header-mobile-actions .header-mobile__user .header-block__user-item[data-dialog-type=modal] svg {
  width: 24px;
  height: 29.7px;
}
.header-mobile .header-mobile-actions .header-mobile__user .header-block__user-item:hover svg path {
  fill: #C73C78;
}
.header-mobile .header-mobile-actions .header-mobile__user .header-block__user-item .cart-block--summary__count,
.header-mobile .header-mobile-actions .header-mobile__user .header-block__user-item .wishlist-block__summary__count {
  font-size: 11px;
  position: absolute;
  top: 5px;
  left: 15px;
  background: #76BFC8;
  color: white;
  border-radius: 50%;
  padding: 3px;
  width: 18px;
  height: 18px;
  text-align: center;
}
.header-mobile .header-mobile-actions .header-mobile__user .header-block__user-item .wishlist-block__summary__count {
  top: 12px;
}
.header-mobile .header-mobile-actions .header-mobile__user .login-popup-form.header-block__user-item {
  margin: 5px -2px 0 20px;
  order: 5;
}
.header-mobile .header-mobile-actions .header-mobile__user .login-popup-form.header-block__user-item svg {
  width: 24px;
  height: 29.7px;
}
.header-mobile .header-mobile-actions .header-mobile__user .user-logout {
  order: 6;
  margin: 12px 0 0 12px;
}
.header-mobile .header-mobile-actions .header-mobile__user .user-logout svg {
  height: 25px;
  width: 25px;
}
.header-mobile .header-mobile-actions .header-mobile__user .user-logout svg path {
  fill: #76BFC8;
}
.header-mobile .header-mobile-actions .header-mobile__user .wishlist-block svg {
  width: 28px;
  margin: 8px 0 0;
}
.header-mobile .header-mobile-actions .header-mobile__user .block-commerce-cart {
  order: 3;
}
.header-mobile .header-mobile-actions .header-mobile__user .block-commerce-cart .header-block__user-item svg {
  height: 29px;
  width: 28.5px;
  margin: 6px -1px 0 0;
}
.header-mobile .header-mobile-actions .header-mobile__user .cart-block--summary a.header-block__user-item {
  display: block;
}
.header-mobile .header-mobile-search-modal {
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(109, 188, 197, 0.9);
  position: absolute;
  top: 0;
  left: 0;
}
.header-mobile .header-mobile-search-modal .header-mobile-search-modal__inner {
  width: 100%;
  height: 100%;
  padding-left: 54px;
  padding-right: 59px;
  padding-top: 60px;
  position: relative;
  z-index: 1;
}
.header-mobile .header-mobile-search-modal .header-mobile-search-modal__inner #views-exposed-form-catalog-page-7 {
  background: transparent !important;
  border: none;
  border-bottom: 2px solid #fff;
  border-radius: 0;
  height: 42px;
  padding-left: 21px;
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 384px) {
  .header-mobile .header-mobile-search-modal .header-mobile-search-modal__inner #views-exposed-form-catalog-page-7 {
    width: 70vw !important;
    background: #fff;
  }
}
@media (max-width: 767px) {
  .header-mobile .header-mobile-search-modal .header-mobile-search-modal__inner #views-exposed-form-catalog-page-7 {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) {
  .header-mobile .header-mobile-search-modal .header-mobile-search-modal__inner #views-exposed-form-catalog-page-7 {
    width: 337px;
    border: 1px solid #1D3F46;
    border-radius: 30px;
  }
}
.header-mobile .header-mobile-search-modal .header-mobile-search-modal__inner #views-exposed-form-catalog-page-7 input.form-autocomplete {
  background: none !important;
}
.header-mobile .header-mobile-search-modal .header-mobile-search-modal__inner #views-exposed-form-catalog-page-7 .form-item-text input {
  margin-left: -22px;
  padding-left: 22px;
  height: 50px;
  border: 0;
}
@media (max-width: 767px) {
  .header-mobile .header-mobile-search-modal .header-mobile-search-modal__inner #views-exposed-form-catalog-page-7 .form-item-text input {
    opacity: 1 !important;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    padding-left: 0;
    margin-left: 0;
    background: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .header-mobile .header-mobile-search-modal .header-mobile-search-modal__inner #views-exposed-form-catalog-page-7 .form-item-text input {
    font-size: 14px;
    font-weight: 400;
    color: #1D3F46;
  }
}
.header-mobile .header-mobile-search-modal .header-mobile-search-modal__inner #views-exposed-form-catalog-page-7 .form-actions {
  width: 30px;
}
.header-mobile .header-mobile-search-modal .header-mobile-search-modal__inner #views-exposed-form-catalog-page-7 .form-submit {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../../../dist/assets/images/icons/search.svg);
  text-indent: -99999px;
}
@media (max-width: 767px) {
  .header-mobile .header-mobile-search-modal .header-mobile-search-modal__inner #views-exposed-form-catalog-page-7 .form-submit {
    background: url(../../../dist/assets/images/search-mob.svg);
    right: 0;
  }
}
.header-mobile .header-mobile-search-modal .header-mobile-search-modal__close {
  position: absolute;
  top: 19px;
  right: 16px;
  z-index: 2;
  cursor: pointer;
}
.header-mobile .header-mobile-search-modal .header-mobile-search-modal__close svg path {
  fill: #fff;
  transition: all, 0.3s;
}
.header-mobile .header-mobile-search-modal .header-mobile-search-modal__close:hover svg path {
  fill: #C73C78;
}

.header-mobile-nav {
  width: 100%;
  display: none;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header-mobile-nav .header-mobile-nav__inner {
  width: 100%;
  height: 100vh;
  display: flex;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content {
  width: calc(100% - 66px);
  height: 100%;
  overflow-y: auto !important;
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content::-webkit-scrollbar {
  width: 5px;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content::-webkit-scrollbar-track {
  background: transparent;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content::-webkit-scrollbar-thumb {
  background: #CA70A1;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav-head {
  width: 100%;
  height: 69px;
  padding-top: 4.5px;
  padding-left: 17px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(29, 63, 70, 0.0705882353);
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav-head .header-mobile-nav-head__logo-image {
  display: block;
  width: 40px;
  margin-top: 11px;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav__item {
  width: 100%;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav__item .header-mobile-nav__item-head {
  width: 100%;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(29, 63, 70, 0.0705882353);
  padding-left: 17px;
  padding-right: 36px;
  cursor: pointer;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav__item .header-mobile-nav__item-head.active .header-mobile-nav__item-head-ttl {
  font-weight: 500;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav__item .header-mobile-nav__item-head.active .header-mobile-nav__item-head-icon {
  transform: rotate(90deg);
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav__item .header-mobile-nav__item-head .header-mobile-nav__item-head-ttl {
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  color: #1D3F46;
  transition: all, 0.3s;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav__item .header-mobile-nav__item-head .header-mobile-nav__item-head-icon {
  transition: all, 0.3s;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav__item .header-mobile-nav__item-list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav__item .header-mobile-nav__item-list .header-mobile-nav__item-list-item {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(29, 63, 70, 0.0705882353);
  padding-left: 25px;
  padding-right: 31px;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav__item .header-mobile-nav__item-list .header-mobile-nav__item-list-item .header-mobile-nav__item-list-link {
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-transform: uppercase;
  color: #1D3F46;
  text-decoration: none;
  transition: all, 0.3s;
  text-align: right;
  padding: 8px 0;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav__item .header-mobile-nav__item-list .header-mobile-nav__item-list-item .header-mobile-nav__item-list-link:hover {
  color: #C73C78;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav__top-sales {
  width: 100%;
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 17px;
  padding-right: 18px;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav__top-sales .header-mobile-nav__top-sales-link {
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  color: #1D3F46;
  text-decoration: none;
  text-align: center;
  transition: all, 0.3s;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav__top-sales .header-mobile-nav__top-sales-link:hover {
  color: #C73C78;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav__contacts {
  width: 100%;
  margin-top: 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav__contacts .header-mobile-nav__top-contacts-link {
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  color: #1D3F46;
  text-decoration: none;
  margin-bottom: 13px;
  transition: all, 0.3s;
  text-align: center;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav__contacts .header-mobile-nav__top-contacts-link:last-child {
  margin-bottom: 0;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile-nav__contacts .header-mobile-nav__top-contacts-link:hover {
  color: #C73C78;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile__paradise-socials {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 76px;
  display: inline-block;
  text-align: center;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile__paradise-socials .paradise-socials__item {
  margin: 0 8px;
  width: 25px;
  height: 25px;
  text-decoration: none;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav__content .header-mobile__paradise-socials .paradise-socials__item .paradise-socials__item-icon {
  max-width: 100%;
  max-height: 100%;
  transition: all, 0.3s;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav-close {
  width: 66px;
  height: 100%;
  background: rgba(109, 188, 197, 0.9);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav-close .header-mobile-nav-close__icon {
  display: block;
  height: 100%;
  margin-top: 28px;
  cursor: pointer;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav-close .header-mobile-nav-close__icon svg path {
  fill: #fff;
  transition: all, 0.3s;
}
.header-mobile-nav .header-mobile-nav__inner .header-mobile-nav-close .header-mobile-nav-close__icon:hover svg path {
  fill: #C73C78;
}

ul.search-api-autocomplete-search {
  border: 0.5px solid #6DBCC5 !important;
  width: 337px;
  border-radius: 5px;
  overflow: auto;
  max-height: calc(100vh - 200px);
  z-index: 1111;
}
ul.search-api-autocomplete-search::-webkit-scrollbar {
  width: 3px;
  background: #D0D1D3;
}
ul.search-api-autocomplete-search::-webkit-scrollbar-thumb {
  background: #76BFC8;
}
@media (max-width: 767px) {
  ul.search-api-autocomplete-search {
    z-index: 1111;
    width: 268px;
    border-radius: 0;
  }
}
ul.search-api-autocomplete-search .search-api-autocomplete-search .ui-menu-item {
  list-style-image: none;
}
ul.search-api-autocomplete-search .search-api-autocomplete-search .ui-menu-item a {
  text-decoration: none;
}
ul.search-api-autocomplete-search .percentage-off {
  top: 5px;
  left: 27px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url(../../../dist/assets/images/product-discont-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  position: absolute;
  transform: translateX(50px);
}
@media (max-width: 767px) {
  ul.search-api-autocomplete-search .percentage-off {
    top: 5px;
    left: 0;
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
}
ul.search-api-autocomplete-search .product {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
  background-color: #fff;
  padding: 10px 20px 10px 20px;
}
ul.search-api-autocomplete-search .product:hover .title {
  color: #6DBCC5;
}
@media (max-width: 767px) {
  ul.search-api-autocomplete-search .product {
    padding: 10px 10px 10px 10px;
  }
}
ul.search-api-autocomplete-search .product .product-image {
  width: 100px;
  height: 100px;
  margin: 0 15px 0 0;
}
@media (max-width: 767px) {
  ul.search-api-autocomplete-search .product .product-image {
    width: 75px;
    height: 75px;
  }
}
ul.search-api-autocomplete-search .product-sku {
  display: none !important;
}
ul.search-api-autocomplete-search .product-price {
  width: 100%;
  padding-left: 115px;
  display: flex;
  justify-content: flex-start;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #1D3F46;
}
@media (max-width: 767px) {
  ul.search-api-autocomplete-search .product-price {
    padding-left: 89px;
  }
}
ul.search-api-autocomplete-search .product-price > div {
  margin: 0;
}
ul.search-api-autocomplete-search .product-price div + span {
  margin: 0;
  color: #1D3F46;
  text-decoration-line: none;
  display: block;
}
ul.search-api-autocomplete-search .product-price .price-with-discount {
  display: flex;
}
ul.search-api-autocomplete-search .product-price .new-price {
  margin-top: -15px;
}
@media (max-width: 767px) {
  ul.search-api-autocomplete-search .product-price .new-price {
    margin-top: 0;
  }
}
ul.search-api-autocomplete-search .product-price .old-price {
  margin: -15px 8px 0 0;
  text-decoration: line-through;
  color: #C4C4C4 !important;
}
@media (max-width: 767px) {
  ul.search-api-autocomplete-search .product-price .old-price {
    margin-top: -8px;
  }
}
ul.search-api-autocomplete-search .product-ttl {
  font-size: 14px;
  font-weight: 500;
  color: #1D3F46;
  margin: 5px 0;
  flex: 1 0;
}
ul.search-api-autocomplete-search .product-ttl .title {
  text-align: left;
  font-size: 13px;
  line-height: 16px;
  transition: all, 0.3s;
  color: #6DBCC5;
}
@media (max-width: 767px) {
  ul.search-api-autocomplete-search .product-ttl .title {
    word-break: break-word;
  }
}
ul.search-api-autocomplete-search .product-ttl .title:hover {
  color: #1D3F46;
}

@media (min-width: 992px) {
  .header-block__menu {
    display: flex;
  }
}

.language-switcher-language-url {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 7px 0 0 3px;
  gap: 15px;
  font-size: 12px;
  text-transform: uppercase;
}
.language-switcher-language-url a {
  color: #1d3f46;
}
.language-switcher-language-url a:hover {
  color: #DC71AA;
}
.language-switcher-language-url a:hover:after {
  width: 100%;
}
.language-switcher-language-url a:after {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background: #DC71AA;
  margin: 0 auto;
  transition: all, 0.3s;
}
.language-switcher-language-url a.is-active {
  color: #DC71AA;
}
.language-switcher-language-url a.is-active:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #DC71AA;
  margin: 0 auto;
  transition: all, 0.3s;
}

.header-mobile-nav__top-sales .language-switcher-language-url {
  font-size: 16px;
}

.footer {
  padding: 30px 0 17px;
  margin: 30px 0 0;
}
.footer .container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media (min-width: 768px) {
  .footer .container {
    flex-wrap: nowrap;
  }
}
.footer .container:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 5px;
  top: -35px;
  border-radius: 50%;
  background: #76BFC8;
}
.footer .container:after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  left: 5px;
  top: -31px;
  background: #76BFC8;
  margin-right: calc((100% - 100vw) / 2);
  width: calc(100% - 5px);
  overflow-x: hidden;
}
@media (min-width: 1200px) {
  .footer .container:after {
    width: calc((100vw - 100%) / 2 + 100%);
  }
}
.footer .footer-logo {
  width: 148px;
  height: 184px;
  margin: 1px 0 0 6px;
}
@media (max-width: 374px) {
  .footer .footer-logo {
    width: 120px;
    height: 184px;
    margin: 10px 0 0 0px;
  }
}
@media (min-width: 992px) {
  .footer .footer-logo {
    width: 116px;
    margin: 1px 26px 0 12px;
  }
}
.footer .footer-logo img {
  width: 100%;
  height: 100%;
}
.footer .column {
  width: 100%;
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .footer .column {
    flex: 1 0;
    margin: 0 0 0 35px;
  }
}
.footer .column .footer-menu {
  width: 100%;
  position: relative;
}
.footer .column .footer-menu ul {
  list-style: none;
  padding: 14px 0 0 0;
  min-height: 190px;
  margin-top: -184px;
  max-width: calc(100% - 170px);
  width: auto;
  float: right;
}
@media (max-width: 374px) {
  .footer .column .footer-menu ul {
    max-width: calc(100% - 130px);
  }
}
@media (min-width: 480px) {
  .footer .column .footer-menu ul {
    width: 50%;
    padding: 14px 0 0 30px;
  }
}
@media (min-width: 768px) {
  .footer .column .footer-menu ul {
    float: none;
    width: auto;
    max-width: unset;
    min-height: unset;
    margin: -25px 0 30px;
    padding: 0 0 5px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
  .footer .column .footer-menu ul:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    right: 0;
    bottom: -3px;
    border-radius: 50%;
    background: #DC71AA;
  }
  .footer .column .footer-menu ul:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    height: 1px;
    border-top: 1px solid #DC71AA;
    left: 0;
    width: 100%;
  }
  .footer .column .footer-menu ul .footer-menu__item {
    margin: 0;
    padding: 16px 16px 12px;
    position: relative;
  }
  .footer .column .footer-menu ul .footer-menu__item:after {
    content: "";
    display: block;
    width: 1px;
    height: 9px;
    background: rgba(133, 197, 207, 0.32);
    position: absolute;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
  }
  .footer .column .footer-menu ul .footer-menu__item:nth-child(1) {
    padding: 16px 16px 12px 0;
  }
  .footer .column .footer-menu ul .footer-menu__item:last-child:after {
    content: unset;
  }
  .footer .column .footer-menu ul .footer-menu__item:hover .footer-menu__item-link {
    color: #DC71AA;
  }
  .footer .column .footer-menu ul .footer-menu__item .footer-menu__item-link {
    font-size: 13px;
    font-weight: 400;
    transition: all, 0.3s;
  }
}
@media (min-width: 992px) {
  .footer .column .footer-menu ul:before {
    right: -5px;
  }
}
.footer .column .footer-menu ul li {
  line-height: 15px;
  margin: 0 0 19px;
}
.footer .column .footer-menu ul li a {
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
}
.footer .column .footer-block {
  padding: 0;
  margin: 0 0 0 -3px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 480px) {
  .footer .column .footer-block {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .footer .column .footer-block {
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .footer .column .footer-block {
    justify-content: space-between;
  }
}
.footer .column .footer-block .footer-logo {
  display: none;
}
.footer .column .footer-block .footer-block__item {
  margin: 0 0 15px;
}
@media (min-width: 480px) {
  .footer .column .footer-block .footer-block__item {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .footer .column .footer-block .footer-block__item {
    width: 33.33%;
    margin: 0 0 5px;
  }
}
@media (min-width: 1200px) {
  .footer .column .footer-block .footer-block__item {
    width: auto;
    margin: 0 !important;
  }
}
.footer .column .footer-block .footer-block__item-socials {
  order: 4;
}
@media (min-width: 480px) {
  .footer .column .footer-block .footer-block__item-socials {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .footer .column .footer-block .footer-block__item-socials {
    order: 3;
    width: unset;
    padding: 0 0 0 30px;
  }
}
.footer .column .footer-block .footer-block__item-days {
  line-height: 22px;
}
@media (min-width: 480px) {
  .footer .column .footer-block .footer-block__item-days {
    order: 2;
    line-height: 18px;
    padding: 0 0 0 30px;
  }
}
@media (min-width: 992px) {
  .footer .column .footer-block .footer-block__item-days {
    padding: 0 20px 0 54px;
  }
}
@media (min-width: 1200px) {
  .footer .column .footer-block .footer-block__item-days {
    padding: 0 10px 0 20px;
  }
}
@media (min-width: 480px) {
  .footer .column .footer-block .footer-block__item-contacts {
    order: 3;
    margin: 0 0 20px;
  }
}
@media (min-width: 992px) {
  .footer .column .footer-block .footer-block__item-contacts {
    order: 5;
    margin: 20px 0 20px;
  }
}
.footer .column .footer-block .footer-block__item-ttl {
  font-weight: 400;
  margin: 0 0 7px;
}
.footer .column .footer-block .footer-block__item-address {
  display: flex;
}
.footer .column .footer-block .footer-block__item-address img {
  margin: -3px 16px 0 0;
}
.footer .column .footer-block .paradise-socials {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.footer .column .footer-block .paradise-socials .paradise-socials__item {
  text-decoration: none;
  margin: 0 8px;
}
@media (min-width: 1200px) {
  .footer .column .footer-block .paradise-socials .paradise-socials__item {
    margin: 0 5px;
  }
}
.footer .column .footer-block .paradise-socials .paradise-socials__item .paradise-socials__item-icon {
  max-width: 100%;
  max-height: 100%;
  transition: all, 0.3s;
}
.footer .column .footer-block .paradise-socials .paradise-socials__item .paradise-socials__item-icon:hover {
  transform: scale(1.2);
}
.footer .column .footer-block .footer-block__phone,
.footer .column .footer-block .footer-block__mail {
  display: flex;
  align-items: center;
}
.footer .column .footer-block .footer-block__phone {
  margin: 0 0 15px;
}
.footer .column .footer-block .footer-block__phone img {
  margin: 0 0 20px;
}
.footer .column .footer-block .footer-block__mail-inner,
.footer .column .footer-block .footer-block__phone-inner {
  margin-left: 12px;
  display: flex;
  flex-direction: column;
}
.footer .column .footer-block .footer-block__phone-inner {
  margin: 0 0 15px 12px;
}
.footer .column .footer-block .footer-block__phone-inner .footer-block__item-link {
  margin-bottom: 6px;
}
.footer .column .footer-block .footer-block__item-link {
  transition: all, 0.3s;
}
.footer .column .footer-block .footer-block__item-link:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #1D3F46;
  margin: 0 auto;
  transition: all, 0.3s;
}
.footer .column .footer-block .footer-block__item-link:last-child {
  margin-bottom: 0;
}
.footer .column .footer-block .footer-block__item-link:hover:after {
  width: 100%;
}

.scroll-text-block {
  margin: 20px 0;
}
@media (min-width: 992px) {
  .scroll-text-block {
    padding: 20px 0 30px;
  }
}
.scroll-text-block .container {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.04);
  padding: 20px 20px;
  background-color: white;
}
.scroll-text-block .container .collapsed .body {
  padding: 0 15px 0 0;
  font-weight: 300;
}
@media (min-width: 725px) {
  .scroll-text-block .container {
    padding: 24px 32px;
  }
}
@media (min-width: 725px) {
  .scroll-text-block .container .scroll-text-block-collapse-button-wrapper.collapsed {
    padding-right: 22px;
  }
}
.scroll-text-block .container .body-wrapper.collapsed {
  overflow: scroll;
  height: 200px;
}
@media (min-width: 725px) {
  .scroll-text-block .container .body-wrapper.collapsed {
    padding-right: 22px;
  }
}
.scroll-text-block .container .body-wrapper::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  background-color: #D0D1D3;
}
.scroll-text-block .container .body-wrapper::-webkit-scrollbar:horizontal {
  background: none;
}
.scroll-text-block .container .body-wrapper::-webkit-scrollbar-thumb {
  background-color: #85C5CF;
}
.scroll-text-block .container .body-wrapper .body p, .scroll-text-block .container .body-wrapper .description p {
  margin: 0;
  padding: 0 0 10px 0;
  line-height: 19.41px;
  font-size: 14px;
}
.scroll-text-block .container .body-wrapper .body h1, .scroll-text-block .container .body-wrapper .body h2, .scroll-text-block .container .body-wrapper .body h3, .scroll-text-block .container .body-wrapper .body h4, .scroll-text-block .container .body-wrapper .body h5, .scroll-text-block .container .body-wrapper .body h6, .scroll-text-block .container .body-wrapper .description h1, .scroll-text-block .container .body-wrapper .description h2, .scroll-text-block .container .body-wrapper .description h3, .scroll-text-block .container .body-wrapper .description h4, .scroll-text-block .container .body-wrapper .description h5, .scroll-text-block .container .body-wrapper .description h6 {
  color: #CB0C74;
  font-weight: 700;
  padding: 0 0 12px 0;
  margin: 0;
  text-transform: none;
}
.scroll-text-block .container .body-wrapper .body h1, .scroll-text-block .container .body-wrapper .description h1 {
  font-size: 20px;
  line-height: 23px;
}
.scroll-text-block .container .body-wrapper .body h2, .scroll-text-block .container .body-wrapper .description h2 {
  font-size: 18px;
  line-height: 21px;
}
.scroll-text-block .container .body-wrapper .body h3, .scroll-text-block .container .body-wrapper .description h3 {
  font-size: 16px;
  line-height: 19px;
}
.scroll-text-block .container .body-wrapper .body h4, .scroll-text-block .container .body-wrapper .description h4 {
  font-size: 14px;
  line-height: 17px;
}
.scroll-text-block .container .body-wrapper .body h5, .scroll-text-block .container .body-wrapper .description h5 {
  font-size: 13px;
  line-height: 16px;
}
.scroll-text-block .container .body-wrapper .body h6, .scroll-text-block .container .body-wrapper .description h6 {
  font-size: 12px;
  line-height: 15px;
}
.scroll-text-block .container .body-wrapper .body a, .scroll-text-block .container .body-wrapper .description a {
  color: #CB0C74;
  text-decoration: underline;
}
.scroll-text-block .container .body-wrapper .body img, .scroll-text-block .container .body-wrapper .description img {
  padding: 0 0 18px 0;
}
.scroll-text-block .container .body-wrapper .body img.align-left, .scroll-text-block .container .body-wrapper .description img.align-left {
  padding-right: 16px;
}
.scroll-text-block .container .body-wrapper .body img.align-right, .scroll-text-block .container .body-wrapper .description img.align-right {
  padding-left: 16px;
}
.scroll-text-block .container .scroll-text-block-collapse-button-wrapper {
  margin-top: 4px;
}
@media (max-width: 725px) {
  .scroll-text-block .container .scroll-text-block-collapse-button-wrapper {
    margin-top: 10px;
  }
}
.scroll-text-block .container .scroll-text-block-collapse-button-wrapper a {
  font-weight: 700;
  color: #76BFC8;
}

/**
 * Inputs.
 */
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

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

.paradise-checkbox {
  position: relative;
  display: flex;
  align-items: center;
}
.paradise-checkbox:hover {
  color: #6DBCC5;
  cursor: pointer;
}

.paradise-checkbox__text {
  font-size: 14px;
  font-weight: 300;
}

.paradise-checkbox__input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.paradise-checkbox__input:checked ~ .paradise-checkbox__checkmark::after {
  opacity: 1;
}

.paradise-checkbox__checkmark {
  width: 12px;
  height: 12px;
  border: 1px solid #1D3F46;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -1px 1px 1px 1px;
}
.paradise-checkbox__checkmark::after {
  content: "";
  display: block;
  width: 8px;
  height: 7px;
  background: url(../../dist/assets/images/icons/ic-checkmark.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all, 0.25s;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all, 0.3s;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  padding: 10px 20px;
}
@media only screen and (min-width: 768px) {
  .btn {
    font-size: 14px;
    padding: 12px 28px;
  }
}
@media only screen and (min-width: 992px) {
  .btn {
    padding: 15px 35px;
  }
}

.btn-pink {
  background: #DC71AA;
}
.btn-pink:hover {
  background: #CB0C74;
}

.btn-cyan {
  background: #76BFC8;
}
.btn-cyan:hover {
  background: #3D7B82;
}

.btn-arrow {
  width: 33px;
  height: 33px;
  padding: 0;
}
.btn-arrow svg {
  display: block;
  width: 20px;
  height: auto;
}
.btn-arrow svg path {
  fill: #fff;
}
@media only screen and (min-width: 992px) {
  .btn-arrow {
    width: 55px;
    height: 55px;
  }
  .btn-arrow svg {
    display: block;
    width: 33px;
    height: auto;
  }
  .btn-arrow svg path {
    fill: #fff;
  }
}

.btn-like {
  width: 33px;
  height: 33px;
  padding: 5px;
}
.btn-like img {
  display: block;
  width: 15px;
  height: auto;
}
@media only screen and (min-width: 992px) {
  .btn-like img {
    width: 55px;
    height: 55px;
    width: 20px;
  }
}

.btn-bag {
  width: 33px;
  height: 33px;
  padding: 5px;
}
.btn-bag img {
  display: block;
  width: 16px;
  height: auto;
}
@media only screen and (min-width: 992px) {
  .btn-bag img {
    width: 55px;
    height: 55px;
    width: 22px;
  }
}

/**
  * Forms.
  */
form .field-multiple-table {
  margin: 0;
}
form .field-multiple-table .field-multiple-drag {
  width: 30px;
  padding-right: 0;
}
form .field-multiple-table .field-multiple-drag .tabledrag-handle {
  padding-right: 0.5em;
}
form .field-add-more-submit {
  margin: 0.5em 0 0;
}

.form-item select.error, .form-item textarea.error, .form-item input.error {
  border: 2px solid red !important;
}

.form-item .description {
  font-size: 0.85em;
}

.label, .form-composite > legend {
  display: inline;
  font-size: inherit;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.form-composite > .fieldset-wrapper > .description {
  font-size: 0.85em;
}
label.option {
  display: inline;
  font-weight: normal;
}

.form-checkboxes .form-item,
.form-radios .form-item {
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}

.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

.marker {
  color: #e00;
}

.form-required:after {
  content: "";
  vertical-align: super;
  display: inline-block;
  /* Use a background image to prevent screen readers from announcing the text. */
  background-image: url(../../core/misc/icons/ee0000/required.svg);
  background-repeat: no-repeat;
  background-size: 6px 6px;
  width: 6px;
  height: 6px;
  margin: 0 0.3em;
}

abbr.tabledrag-changed,
abbr.ajax-changed {
  border-bottom: none;
}

/* Inline error messages. */
.form-item--error-message:before {
  content: "";
  display: inline-block;
  height: 14px;
  width: 14px;
  vertical-align: sub;
  background: url(../../../../../core/misc/icons/e32700/error.svg) no-repeat;
  background-size: contain;
}

.form-item {
  margin: 1em 0;
  padding: 0;
  width: 100%;
}
.form-item label {
  display: block;
  margin-bottom: 3px;
  font-weight: 300;
  font-size: 13px;
  line-height: 15px;
  color: #1D3F46;
}
.form-item input[type=text],
.form-item input[type=tel],
.form-item input[type=email],
.form-item input[type=password] {
  max-width: 100%;
  width: 100%;
  height: 44px;
  padding: 10px;
  border: 0.5px solid #6DBCC5;
  outline: none;
}
.form-item.js-form-type-radio {
  margin-bottom: 3px;
}
.form-item.js-form-type-radio label {
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #1D3F46;
}
.form-item.js-form-type-radio input[type=radio] {
  width: 12px;
  height: 12px;
  padding: 0;
  margin-right: 4px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 1px solid #1D3F46;
  box-sizing: border-box;
  border-radius: 50%;
  position: relative;
}
.form-item.js-form-type-radio input[type=radio]::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #DC71AA;
  position: absolute;
  top: 2px;
  left: 2px;
  opacity: 0;
  transition: all, 0.25s;
}
.form-item.js-form-type-radio input[type=radio]:checked::after {
  opacity: 1;
}

.js input.form-autocomplete {
  background: none !important;
}

.js-form-type-checkbox input[type=checkbox],
.facet-item input[type=checkbox] {
  width: 12px;
  height: 12px;
  padding: 0;
  margin-right: 4px;
  border: 0.5px solid #6DBCC5;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.js-form-type-checkbox input[type=checkbox]:checked,
.facet-item input[type=checkbox]:checked {
  background: url(../../dist/assets/images/galochka.svg) center/contain no-repeat;
}
.js-form-type-checkbox input[type=checkbox]:checked ~ .paradise-checkbox__text,
.facet-item input[type=checkbox]:checked ~ .paradise-checkbox__text {
  color: #6DBCC5;
}
.js-form-type-checkbox label,
.facet-item label {
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #1D3F46;
}
.js-form-type-checkbox .facet-item__value,
.facet-item .facet-item__value {
  font-size: 14px;
}

.facet-item input[type=checkbox].paradise-checkbox__input {
  height: 100%;
  width: 100%;
}

li.facet-item,
div.facet-item {
  margin-bottom: 9px;
}
li.facet-item:last-child,
div.facet-item:last-child {
  margin: 0;
}

.facets-widget-checkbox .item-list__checkbox {
  padding: 0;
  list-style-type: none;
}

.block-facets-summary ul {
  padding: 0;
  list-style-type: none;
}

textarea {
  width: 100%;
  height: 87px;
  padding: 10px;
  border: 0.5px solid #6DBCC5;
}

fieldset {
  border: none;
}
fieldset label {
  font-size: 13px;
  color: #8a8a8a;
}
fieldset .form-item {
  margin: 0 0 20px;
}
fieldset span.fieldset-legend {
  display: block;
  color: #333333;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 20px 0;
}

input[type=submit] {
  width: 100%;
  font-size: 14px;
  padding: 0px 13px;
  color: white;
  background: #DC71AA;
  margin: 10px;
  line-height: 44px;
  border-radius: 0;
  text-transform: uppercase;
  transition: all, 0.3s;
  border: 0;
  cursor: pointer;
  outline: none;
}
input[type=submit]:hover {
  background: #CB0C74;
}

input[type=submit].delete-order-item:hover {
  background-color: transparent;
  background-image: url(../../dist/assets/images/remove-icon.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
}

input[type=submit].move-cart-item:hover {
  opacity: 0.6;
  background-color: transparent;
  background-image: url(../../dist/assets/images/move-cart-item.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

input[type=submit].move-cart-item.in-wishlist {
  background-image: url(../../dist/assets/images/move-cart-item-active.svg);
}

.form-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .form-actions {
    flex-direction: row;
  }
}

@media only screen and (min-width: 1200px) {
  .layout-checkout-form {
    padding: 0 !important;
  }
}
.section-banner {
  width: 100%;
}

.banner-slider__wrap {
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .banner-slider__wrap .btn-arrow {
    top: 330px;
  }
}
.banner-slider__wrap .banner-slider {
  outline: none;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .banner-slider__wrap .banner-slider {
    padding-top: 0;
    padding-bottom: 20px;
  }
  .banner-slider__wrap .banner-slider.slick-initialized .slick-slide {
    max-height: 646px;
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) {
  .banner-slider__wrap .banner-slider {
    padding-top: 55px;
  }
}
@media only screen and (min-width: 992px) {
  .banner-slider__wrap .banner-slider {
    padding-top: 65px;
    padding-bottom: 20px;
  }
}
.banner-slider__wrap .banner-slider .banner-slider__item {
  outline: none;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner-slide__circle-ttl-wrap {
  width: 200px;
  height: 201px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .banner-slide__circle-ttl-wrap {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .banner-slide__circle-ttl-wrap {
    width: 306px;
    height: 307px;
  }
}
.banner-slide__circle-ttl-wrap .banner-slide__circle-ttl {
  font-size: 16px;
  font-weight: 700;
  color: #DC71AA;
  text-transform: uppercase;
  margin: 0;
  z-index: 2;
}
.banner-slide__circle-ttl-wrap .banner-slide__circle-ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #DC71AA;
}
.banner-slide__circle-ttl-wrap .banner-slide__circle-ttl a {
  text-decoration: none;
  color: #DC71AA;
}
@media only screen and (min-width: 768px) {
  .banner-slide__circle-ttl-wrap .banner-slide__circle-ttl {
    font-size: 20px;
  }
}
.banner-slide__circle-ttl-wrap .banner-slide__circle-ttl-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.5;
}
.banner-slide__circle-ttl-wrap .banner-slide__txt {
  width: 100%;
  font-size: 13px;
  font-weight: 300;
  color: #1D3F46;
  margin: 0;
  margin-bottom: 10px;
}
.banner-slide__circle-ttl-wrap .banner-slide__txt:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .banner-slide__circle-ttl-wrap .banner-slide__txt {
    font-size: 15px;
    margin-bottom: 15px;
  }
}

.banner-slider__slide-1 {
  width: 100%;
  padding-bottom: 0;
}
@media only screen and (min-width: 992px) {
  .banner-slider__slide-1 {
    padding-top: 3px;
  }
}

.banner-slide-1__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .banner-slide-1__content {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    position: relative;
  }
}

.banner-slide-1__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .banner-slide-1__info {
    order: 1;
  }
  .banner-slide-1__info .banner-slide__circle-ttl-wrap {
    display: block;
    height: 0;
    width: 0;
    order: 1;
    position: static;
  }
  .banner-slide-1__info .banner-slide__circle-ttl-wrap .banner-slide__circle-ttl {
    font-size: 0;
  }
  .banner-slide-1__info .banner-slide__circle-ttl-wrap .banner-slide__circle-ttl a:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: none;
    position: absolute;
    z-index: 90;
    top: 0;
    left: 0;
  }
  .banner-slide-1__info .banner-slide__circle-ttl-wrap .banner-slide__circle-ttl-image {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .banner-slide-1__info {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-slide-1__info {
    margin-right: 6px;
    align-items: flex-start;
  }
}

/*
.horizontal {
  .banner-slide-1__info{
    position: absolute;
  }
  img.banner-slide-1__cyrcles{
    display:none;
  }
}
*/
.block-system-main-block .content {
  max-width: 1070px;
  margin: 0 auto;
}

.banner-slide-1__txt-wrap {
  margin-top: 15px;
  margin-bottom: 20px;
  max-width: 400px;
}
@media only screen and (min-width: 768px) {
  .banner-slide-1__txt-wrap {
    max-width: 357px;
    margin-top: 37px;
    margin-bottom: 0;
  }
}

.banner-slide-1__video-wrap {
  width: 100%;
  max-height: 530px;
  position: relative;
  flex-shrink: 0;
}
.banner-slide-1__video-wrap .banner-slide-1__video-placeholder {
  width: 100%;
  z-index: 2;
  opacity: 1;
  transition: all, 0.3s;
  margin: -20px 0 0;
}
@media (min-width: 420px) and (max-width: 767px) {
  .banner-slide-1__video-wrap .banner-slide-1__video-placeholder {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width: 768px) {
  .banner-slide-1__video-wrap .banner-slide-1__video-placeholder {
    margin: 0;
  }
}
.banner-slide-1__video-wrap .banner-slide-1__video-placeholder.hide {
  opacity: 0;
}
.banner-slide-1__video-wrap.wider .banner-slide-1__video-placeholder {
  margin: 0;
}
@media only screen and (min-width: 420px) and (max-width: 767px) {
  .banner-slide-1__video-wrap {
    height: 550px;
    width: 330px;
    max-height: 550px;
  }
  .banner-slide-1__video-wrap.wider {
    height: 500px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .banner-slide-1__video-wrap {
    width: 339px;
    height: auto;
    max-height: unset;
  }
}

.banner-slide-1__video {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.banner-slide-1__video.active {
  z-index: 5;
}

.banner-slide-1__video-play {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 62%;
  left: calc(50% - 20px);
  transform: scale(1);
  z-index: 3;
  cursor: pointer;
  transition: all, 0.3s;
}
.banner-slide-1__video-play.hide {
  opacity: 0;
}
.banner-slide-1__video-play:hover {
  transform: scale(1.32);
}
@media only screen and (min-width: 992px) {
  .banner-slide-1__video-play {
    width: 68px;
    height: 68px;
    left: calc(50% - 36px);
  }
}

.banner-slide-1__cyrcles {
  display: none !important;
}
@media only screen and (min-width: 1200px) {
  .banner-slide-1__cyrcles {
    display: block !important;
    width: 291px;
    margin-left: 68px;
    margin-top: 4px;
  }
}

.banner-slider__slide-2 {
  position: relative;
}

.banner-slide-2__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  .banner-slide-2__content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }
}
@media only screen and (min-width: 992px) {
  .banner-slide-2__content {
    padding-top: 8px;
    padding-bottom: 27px;
    justify-content: space-between;
  }
}

.banner-slide-2__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 400px;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .banner-slide-2__info {
    width: 350px;
    max-width: 100%;
    padding-left: 5vw;
    margin-top: 75px;
  }
}
@media only screen and (min-width: 992px) {
  .banner-slide-2__info {
    width: 56%;
  }
}

.banner-slide-2__title {
  width: 100%;
  font-size: 25px;
  font-weight: 400;
  color: #1D3F46;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .banner-slide-2__title {
    font-size: 35px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .banner-slide-2__title {
    font-size: 50px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-slide-2__title {
    font-size: 60px;
    margin-bottom: 68px;
  }
}

.banner-slide-2__txt {
  max-width: 357px;
}

.banner-slide-2__info-btn {
  margin-top: 25px;
}
@media only screen and (min-width: 1200px) {
  .banner-slide-2__info-btn {
    margin-top: 69px;
    min-width: 269px;
    min-height: 55px;
  }
}

.banner-slide-2__photo-block {
  width: 100%;
  background: #6DBCC5;
  display: flex;
  justify-content: center;
  margin-top: 95px;
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .banner-slide-2__photo-block {
    margin-top: 0;
    height: 100%;
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 992px) {
  .banner-slide-2__photo-block {
    width: 42%;
  }
}

.banner-slide-2__photo {
  max-width: 80%;
  transform: translateY(-20px);
}
@media only screen and (min-width: 768px) {
  .banner-slide-2__photo {
    max-width: auto;
    width: 343px;
    height: 429px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-left: 32px;
    margin-top: 26px;
    margin-bottom: 88px;
    transform: translateY(0px);
  }
}

.banner-slide-2__cyrcle {
  display: none !important;
  z-index: 1;
}

@media only screen and (min-width: 768px) {
  .banner-slide-2__cyrcle-1 {
    display: block !important;
    width: 75px;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width: 992px) {
  .banner-slide-2__cyrcle-1 {
    width: 117px;
  }
}

@media only screen and (min-width: 768px) {
  .banner-slide-2__cyrcle-2 {
    display: block !important;
    width: 85px;
    position: absolute;
    bottom: 10px;
    left: 10px;
  }
}
@media only screen and (min-width: 992px) {
  .banner-slide-2__cyrcle-2 {
    width: 119px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-slide-2__cyrcle-2 {
    left: unset;
    right: 42%;
    transform: translateX(-17px);
    bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) {
  .banner-slide-2__cyrcle-3 {
    z-index: 5;
    display: block !important;
    width: 124px;
    position: absolute;
    top: 31px;
    right: 0;
  }
}

.banner-slide-3__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .banner-slide-3__content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media only screen and (min-width: 992px) {
  .banner-slide-3__content {
    flex-wrap: nowrap;
    padding-bottom: 145px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-slide-3__content {
    padding-bottom: 26px;
    align-items: flex-start;
  }
}

@media only screen and (min-width: 1200px) {
  .banner-slide-3__circle-ttl-wrap {
    margin-top: 156px;
  }
}

.banner-slide-3__photo-block {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .banner-slide-3__photo-block {
    width: 270px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-slide-3__photo-block {
    width: 312px;
    margin: 0;
    margin-left: 28px;
    margin-right: 31px;
  }
}

.banner-slide-3__photo {
  display: block;
  width: 80%;
  max-width: 312px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 1200px) {
  .banner-slide-3__photo {
    width: 100%;
    height: 555px;
  }
}

.banner-slide-3__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .banner-slide-3__info {
    width: 328px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-slide-3__info {
    margin-top: 200px;
  }
}

.banner-sldie-3__info-btn {
  margin-top: 20px;
}
@media only screen and (min-width: 992px) {
  .banner-sldie-3__info-btn {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-sldie-3__info-btn {
    margin-top: 42px;
    min-width: 269px;
    min-height: 55px;
  }
}

.banner-slide-3__cyrcle {
  display: none !important;
}

@media only screen and (min-width: 992px) {
  .banner-slide-3__cyrcle-1 {
    display: block !important;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-480px);
    z-index: 2;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-slide-3__cyrcle-1 {
    top: 34px;
    transform: translateX(-529px);
  }
}

@media only screen and (min-width: 992px) {
  .banner-slide-3__cyrcle-2 {
    display: block !important;
    position: absolute;
    bottom: 175px;
    left: 50%;
    transform: translateX(-295px);
    z-index: 2;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-slide-3__cyrcle-2 {
    bottom: 50px;
    transform: translateX(-355px);
  }
}

@media only screen and (min-width: 992px) {
  .banner-slide-3__cyrcle-3 {
    display: block !important;
    position: absolute;
    bottom: -35px;
    right: 0;
    z-index: 2;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-slide-3__cyrcle-3 {
    bottom: unset;
    top: 0;
  }
}

.banner-slider__slide-4-ttl-wrap {
  width: 100%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #DC71AA;
}
@media only screen and (min-width: 992px) {
  .banner-slider__slide-4-ttl-wrap {
    width: 50%;
    height: 88px;
    position: absolute;
    top: 0;
    left: 56.6%;
    z-index: 4;
    justify-content: flex-start;
    padding-left: 75px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-slider__slide-4-ttl-wrap {
    height: 108px;
    padding-left: 112px;
  }
}

.banner-slider__slide-4-ttl {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}
.banner-slider__slide-4-ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin-left: -1px;
}
@media only screen and (min-width: 768px) {
  .banner-slider__slide-4-ttl {
    font-size: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .banner-slider__slide-4-ttl {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-slider__slide-4-ttl {
    font-size: 50px;
  }
}

.banner-slide-4__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .banner-slide-4__content {
    flex-direction: row;
    align-items: center;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .banner-slide-4__content {
    margin-top: 0;
    padding-bottom: 71px;
  }
}

.banner-slide-4__photo-block {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .banner-slide-4__photo-block {
    width: 600px;
    height: 450px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-slide-4__photo-block {
    width: 689px;
    height: 505px;
  }
}

.banner-slide-4__photo {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 992px) {
  .banner-slide-4__photo {
    height: 100%;
  }
}

.banner-slide-4__info {
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
  .banner-slide-4__info {
    margin-left: 25px;
    max-width: 100%;
    width: 334px;
  }
}
@media only screen and (min-width: 992px) {
  .banner-slide-4__info {
    margin-top: 0;
    height: 450px;
    align-items: flex-start;
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-slide-4__info {
    margin-left: 40px;
    height: 505px;
  }
}

.banner-sldie-4__info-btn {
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  .banner-sldie-4__info-btn {
    margin-top: 25px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-sldie-4__info-btn {
    margin-top: 32px;
    min-width: 269px;
    min-height: 55px;
  }
}

.banner-slide-4__cyrcle {
  display: none !important;
}
@media only screen and (min-width: 1320px) {
  .banner-slide-4__cyrcle {
    display: block !important;
    width: calc((100vw - 1170px) / 2);
    max-width: 295px;
    position: absolute;
    top: -3vw;
    left: 0;
  }
}

@media only screen and (min-width: 768px) {
  .banner-slide-4__bg-cyan-block {
    width: 100%;
    height: 55px;
    background: #76BFC8;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .banner-slide-4__bg-cyan-block {
    width: 22vw;
    height: 88px;
    position: absolute;
    left: 0;
    bottom: 71px;
    margin: 0;
  }
}

.banner-slider__nav-prev,
.banner-slider__nav-next {
  display: none !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
  .banner-slider__nav-prev,
  .banner-slider__nav-next {
    display: flex !important;
  }
}

.banner-slider__nav-prev {
  left: 0;
}
@media only screen and (min-width: 1320px) {
  .banner-slider__nav-prev {
    left: calc((100% - 1170px) / 2 - 60px);
  }
}

.banner-slider__nav-next {
  right: 0;
}
@media only screen and (min-width: 1320px) {
  .banner-slider__nav-next {
    right: calc((100% - 1170px) / 2 - 60px);
  }
}

.banner-slider__slick-dots {
  margin: 0;
  padding: 0;
  display: flex;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100vw;
  overflow-x: hidden;
}
.banner-slider__slick-dots li {
  list-style: none;
  margin: 0 10px;
}
.banner-slider__slick-dots li button {
  font-size: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #6DBCC5;
  border-radius: 50%;
  background: transparent;
  margin: 0px;
  outline: none;
  cursor: pointer;
  padding: 0;
  transition: all, 0.25s;
}
@media (max-width: 767px) {
  .banner-slider__slick-dots li button {
    background: #6DBCC5;
  }
}
.banner-slider__slick-dots li button:hover {
  border: 1px solid rgb(72.5, 171.25, 182.5);
}
.banner-slider__slick-dots li.slick-active button {
  border: 2.5px solid #C73C78;
}
@media (max-width: 767px) {
  .banner-slider__slick-dots li.slick-active button {
    background: #C73C78;
  }
}
@media only screen and (min-width: 768px) {
  .banner-slider__slick-dots {
    bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .banner-slider__slick-dots {
    bottom: 4px;
  }
  .banner-slider__slick-dots li {
    margin: 0 17px;
  }
}

.section-disconts {
  padding-top: 30px;
}
@media only screen and (min-width: 768px) {
  .section-disconts {
    padding-top: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .section-disconts {
    padding-top: 98px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-disconts {
    padding-top: 40px;
  }
}
.section-disconts .section-disconts-cyrcle {
  display: none;
}
@media only screen and (min-width: 1320px) {
  .section-disconts .section-disconts-cyrcle {
    position: absolute;
    width: 199px;
    height: auto;
    top: 195px;
    left: 13px;
  }
}
.section-disconts .disconts-block {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  .section-disconts .disconts-block {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .section-disconts .disconts-block {
    margin-top: -1px;
  }
}
.section-disconts .disconts-block .disconts-block__image {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  margin-right: -50vw;
  left: 50%;
  overflow-x: hidden;
  height: 149px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../../dist/assets/images/disconts__photo.jpg") no-repeat center/cover;
  margin-bottom: 14px;
}
@media only screen and (min-width: 768px) {
  .section-disconts .disconts-block .disconts-block__image {
    margin-bottom: 75px;
    height: 175px;
  }
}
@media only screen and (min-width: 992px) {
  .section-disconts .disconts-block .disconts-block__image {
    margin-bottom: 104px;
    height: 282px;
  }
}
@media only screen and (min-width: 1363px) {
  .section-disconts .disconts-block .disconts-block__image {
    max-width: 1363px;
    position: static;
    margin-left: -149px;
    margin-right: 0;
    left: unset;
  }
}
.section-disconts .disconts-block .section-ttl-wrap {
  position: relative;
  width: 100%;
  padding: 13px 0 10px;
  margin: 0 0 29px;
  border: 0;
  text-align: center;
}
.section-disconts .disconts-block .section-ttl-wrap:before {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  background: #85C5CF;
  width: calc((100vw - 100%) / 2 + 100%);
  margin-left: calc((100% - 100vw) / 2);
  overflow-x: hidden;
}
.section-disconts .disconts-block .section-ttl-wrap:after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #DC71AA;
  width: calc((100vw - 100%) / 2 + 100%);
  margin-right: calc((100% - 100vw) / 2);
  overflow-x: hidden;
}
.section-disconts .disconts-block .section-ttl-wrap .title-h2 {
  font-size: 18px;
  line-height: 21px;
}
.section-disconts .disconts-block .section-ttl-wrap div:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: -10px;
  bottom: -5px;
  border-radius: 50%;
  background: #DC71AA;
}
.section-disconts .disconts-block .disconts-block-btn {
  margin-top: 80px;
  font-size: 14px;
  line-height: 11px;
  letter-spacing: 0.05em;
  padding: 10px 10px;
}
@media only screen and (min-width: 1200px) {
  .section-disconts .disconts-block .disconts-block-btn {
    min-width: 220px;
    min-height: 55px;
    margin-top: 167px;
    margin-left: 11px;
    padding: 20px 55px 17px;
  }
}
@media (max-width: 767px) {
  .section-disconts .product-items-slider__wrap .product-items-slider__nav {
    position: absolute;
    top: calc(50% + 24px);
    padding: 0 5px;
    left: 0;
    z-index: 20;
    justify-content: space-between;
  }
}
.section-disconts .product-items-slider__wrap .disconts-slider__nav-next {
  width: 43px;
  height: 43px;
  background: url(../../dist/assets/images/purple-right.svg) no-repeat 0 0;
}
@media (min-width: 768px) {
  .section-disconts .product-items-slider__wrap .disconts-slider__nav-next {
    background: #DC71AA;
  }
}
@media (min-width: 1200px) {
  .section-disconts .product-items-slider__wrap .disconts-slider__nav-next {
    width: 55px;
    height: 55px;
    margin: 0 0 0 5px;
  }
}
.section-disconts .product-items-slider__wrap .disconts-slider__nav-next svg {
  display: none;
}
@media (min-width: 768px) {
  .section-disconts .product-items-slider__wrap .disconts-slider__nav-next svg {
    display: block;
  }
}
.section-disconts .product-items-slider__wrap .disconts-slider__nav-prev {
  width: 43px;
  height: 43px;
  background: url(../../dist/assets/images/purple-left.svg) no-repeat 0 0;
}
@media (min-width: 768px) {
  .section-disconts .product-items-slider__wrap .disconts-slider__nav-prev {
    background: #76BFC8;
  }
}
@media (min-width: 1200px) {
  .section-disconts .product-items-slider__wrap .disconts-slider__nav-prev {
    width: 55px;
    height: 55px;
  }
}
.section-disconts .product-items-slider__wrap .disconts-slider__nav-prev svg {
  display: none;
}
@media (min-width: 768px) {
  .section-disconts .product-items-slider__wrap .disconts-slider__nav-prev svg {
    display: block;
  }
}

.section-loyalty-program {
  padding-top: 30px;
  padding-bottom: 14px;
  overflow: hidden;
}
.section-loyalty-program .container {
  position: relative;
  background: rgba(133, 197, 207, 0.5);
}
.section-loyalty-program .container:before {
  content: "";
  display: block;
  width: calc(100% - 10px);
  height: 1px;
  background: #DC71AA;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
@media (min-width: 992px) {
  .section-loyalty-program .container:before {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .section-loyalty-program .container:before {
    height: 2px;
  }
}
.section-loyalty-program .container:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 10px;
  top: -5px;
  border-radius: 50%;
  background: #DC71AA;
}
@media (min-width: 992px) {
  .section-loyalty-program .container:after {
    right: -5px;
  }
}
.section-loyalty-program .container .inner:before {
  content: "";
  display: block;
  width: 335px;
  height: 236px;
  position: absolute;
  left: -82px;
  top: -66px;
  background: url(../../dist/assets/images/object1.svg) no-repeat 0 0;
  background-size: contain;
}
@media (min-width: 1200px) {
  .section-loyalty-program .container .inner:before {
    width: 486px;
    height: 343px;
  }
}
.section-loyalty-program .container .inner:after {
  content: "";
  display: block;
  width: 300px;
  height: 221px;
  position: absolute;
  right: -142px;
  bottom: -29px;
  background: url(../../dist/assets/images/object2.svg) no-repeat 0 0;
  background-size: contain;
}
@media (min-width: 1200px) {
  .section-loyalty-program .container .inner:after {
    width: 518px;
    height: 361px;
    right: -173px;
    bottom: -22px;
  }
}
@media only screen and (min-width: 768px) {
  .section-loyalty-program {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .section-loyalty-program {
    padding-top: 56px;
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-loyalty-program {
    padding-bottom: 20px;
  }
}
.section-loyalty-program .loyalty-program {
  width: 100%;
  padding: 81px 15px 63px;
  position: relative;
}
@media only screen and (min-width: 576px) {
  .section-loyalty-program .loyalty-program {
    padding: 81px 0 63px 15px;
  }
}
@media only screen and (min-width: 768px) {
  .section-loyalty-program .loyalty-program {
    padding: 81px 25px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-loyalty-program .loyalty-program {
    padding: 94px 60px 82px 62px;
  }
}
.section-loyalty-program .loyalty-program .loyalty-program__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 576px) {
  .section-loyalty-program .loyalty-program .loyalty-program__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.section-loyalty-program .loyalty-program .loyalty-program__item {
  display: flex;
  flex-direction: column;
}
.section-loyalty-program .loyalty-program .loyalty-program__item:last-child {
  margin-top: 24px;
}
@media only screen and (min-width: 576px) {
  .section-loyalty-program .loyalty-program .loyalty-program__item {
    width: 48%;
  }
  .section-loyalty-program .loyalty-program .loyalty-program__item:last-child {
    margin: 52px 0 0 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-loyalty-program .loyalty-program .loyalty-program__item {
    width: 515px;
  }
  .section-loyalty-program .loyalty-program .loyalty-program__item:last-child {
    margin-top: 43px;
    margin-bottom: 20px;
    padding: 0 0 0 38px;
  }
}
.section-loyalty-program .loyalty-program .loyalty-program__item .title-h3 {
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  text-align: center;
  color: #FFFFFF;
  background: #DC71AA;
  border-radius: 5px;
  max-width: 175px;
  padding: 3px 10px 2px 10px;
  margin: 0 0 16px -8px;
  position: relative;
}
@media (min-width: 1200px) {
  .section-loyalty-program .loyalty-program .loyalty-program__item .title-h3 {
    font-size: 18px;
    line-height: 21px;
    padding: 1px 7px 1px 9px;
    max-width: 202px;
    margin: 0 0 6px 1px;
  }
}
.section-loyalty-program .loyalty-program .loyalty-program__item .title-h3:before {
  content: "";
  display: block;
  width: 28px;
  height: 19px;
  position: absolute;
  right: -39px;
  top: 2px;
  background: url(../../dist/assets/images/bantik.svg) no-repeat 0 0;
  background-size: contain;
}
@media (min-width: 1200px) {
  .section-loyalty-program .loyalty-program .loyalty-program__item .title-h3:before {
    width: 36px;
    height: 25px;
    right: -47px;
    top: -1px;
  }
}
.section-loyalty-program .loyalty-program .loyalty-program__item .title-h3:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 7px 0 7px;
  border-color: #DC71AA transparent transparent transparent;
  position: absolute;
  left: 30px;
  top: 21px;
}
.section-loyalty-program .loyalty-program .loyalty-program__item-ttl {
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  text-align: center;
  color: #1D3F46;
  background: #fff;
  border-radius: 5px;
  max-width: 154px;
  padding: 3px 8px 2px 6px;
  margin: 0 0 11px -8px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .section-loyalty-program .loyalty-program .loyalty-program__item-ttl {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-loyalty-program .loyalty-program .loyalty-program__item-ttl {
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    max-width: 181px;
    padding: 2px 8px 1px 6px;
    margin: 0 0 6px 2px;
  }
}
.section-loyalty-program .loyalty-program .loyalty-program__item-ttl:before {
  content: "";
  display: block;
  width: 29px;
  height: 20px;
  position: absolute;
  right: -34px;
  top: 2px;
  background: url(../../dist/assets/images/procent.svg) no-repeat 0 0;
  background-size: contain;
}
.section-loyalty-program .loyalty-program .loyalty-program__item-ttl:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 6px 0 6px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  left: 29px;
  top: 21px;
}
.section-loyalty-program .loyalty-program .loyalty-program__item-descr {
  font-weight: 400;
  color: #1D3F46;
  margin: 0;
  font-weight: 300;
  font-size: 13px;
  line-height: 15px;
  color: #1D3F46;
}
@media only screen and (min-width: 992px) {
  .section-loyalty-program .loyalty-program .loyalty-program__item-descr {
    font-size: 16px;
    line-height: 19px;
  }
}
.section-loyalty-program .loyalty-program .loyalty-program__item-descr p {
  margin-bottom: 15px;
}
@media (min-width: 1200px) {
  .section-loyalty-program .loyalty-program .loyalty-program__item-descr p {
    margin-bottom: 19px;
  }
}
.section-loyalty-program .loyalty-program .loyalty-program__cyrcle_01,
.section-loyalty-program .loyalty-program .loyalty-program__cyrcle_02,
.section-loyalty-program .loyalty-program .loyalty-program__cyrcle_03 {
  display: none;
  position: absolute;
  z-index: 1;
}

.product-items-slider__wrap {
  width: 100%;
}
.product-items-slider__wrap .product-items-slider {
  position: relative;
  z-index: 20;
}
.product-items-slider__wrap .product-items-slider__nav-more {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
@media only screen and (max-width: 425px) {
  .product-items-slider__wrap .product-items-slider__nav-more {
    position: relative;
  }
  .product-items-slider__wrap .product-items-slider__nav-more .product-items-slider__nav {
    position: absolute;
    top: -250px;
    z-index: 20;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 992px) {
  .product-items-slider__wrap .product-items-slider__nav-more {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
  }
  .product-items-slider__wrap .product-items-slider__nav-more .product-items-slider__nav {
    width: auto;
  }
}
.product-items-slider__wrap .product-items-slider__nav {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 425px) {
  .product-items-slider__wrap .product-items-slider__nav {
    position: absolute;
    top: calc(50% - 18px);
    left: 0;
    z-index: 20;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 576px) {
  .product-items-slider__wrap .product-items-slider__nav {
    margin-top: 35px;
  }
}
@media only screen and (min-width: 992px) {
  .product-items-slider__wrap .product-items-slider__nav {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .product-items-slider__wrap .product-items-slider__nav {
    margin-top: 87px;
  }
}
.product-items-slider__wrap .product-items-slider__more {
  margin-top: 15px;
}
@media only screen and (min-width: 992px) {
  .product-items-slider__wrap .product-items-slider__more {
    margin-top: 0;
    margin-right: 41px;
    margin-left: 75px;
    min-width: 269px;
    min-height: 55px;
  }
}

.section-catalog {
  padding-bottom: 0px;
}
.section-catalog .catalog-brand-info {
  line-height: 40px;
}
.section-catalog .catalog-brand-info .catalog-brand-info__ttl-wrap {
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
}
.section-catalog .catalog-brand-info .catalog-brand-info__ttl-wrap .catalog-brand-info__ttl {
  font-size: 18px;
  font-weight: 500;
  color: #1D3F46;
  margin: 0 3px 0 0;
}
.section-catalog .catalog-content-wrap {
  width: 100%;
  position: relative;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .section-catalog .catalog-content-wrap {
    margin-top: 10px;
    background-image: url(../../dist/assets/images/r1big.png), url(../../dist/assets/images/b1small.png), url(../../dist/assets/images/r2small.png), url(../../dist/assets/images/b2big.png);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: left calc((100% - 1064px) / 2 + 1064px + 90px) top 0, left calc((100% - 1064px) / 2 + 1064px + 66px) top 68px, left calc((100% - 1064px) / 2 - 61px) top 943px, left calc((100% - 1064px) / 2 + 21px) top 939px;
  }
}

.catalog-brand-info {
  display: flex;
  flex-direction: column;
  margin-top: 17px;
  margin-bottom: 20px;
  border-bottom: 0.5px solid #85C5CF;
}
@media (min-width: 992px) {
  .catalog-brand-info {
    margin: -5px 0 0;
    padding: 0 0 2px;
  }
}

.catalog-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .catalog-content {
    flex-direction: row;
  }
  .catalog-content .region.region-content {
    overflow: hidden;
  }
}

.catalog-filter__inner {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
}

.facet-empty {
  display: none;
}

.block-facets-summary-blockrest .facet-summary-item--clear {
  margin: 0 0 10px;
}
.block-facets-summary-blockrest .facet-summary-item--clear a {
  color: #DC71AA;
  text-decoration: underline;
}
.block-facets-summary-blockrest .facet-summary-item--facet {
  font-size: 14px;
  margin: 0 0 5px;
}

.block-facet--range-input label {
  display: none;
}

.block-facet--range-input .catalog-sidebar-filter__item-ttl {
  margin: 15px 0 12px;
}

.facets-widget-range-input > div form {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -6px;
}
@media (max-width: 767px) {
  .facets-widget-range-input > div form {
    max-width: 332px;
    margin: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.facets-widget-range-input > div form .form-item {
  margin: 0;
  width: auto;
}
@media (max-width: 767px) {
  .facets-widget-range-input > div form .form-item {
    width: 33.33%;
  }
}
.facets-widget-range-input > div form .form-item input {
  width: 56px;
  height: 31px;
  border: 1px solid #C4C4C4;
  margin: 0 6px 14px 0;
  padding: 10px;
  outline: none;
}
@media (max-width: 767px) {
  .facets-widget-range-input > div form .form-item input {
    width: calc(100% - 8px);
  }
}
.facets-widget-range-input > div form .form-submit {
  margin: 0 7px 0 0;
  margin-bottom: 15px;
  line-height: 33px;
  background: #6DBCC5;
  border: 0;
  max-width: 122px;
  text-transform: none;
}
.facets-widget-range-input > div form .form-submit:hover {
  background-color: #3D7B82;
}

.catalog-filter__item {
  margin: 5px 0 10px 0;
}
.catalog-filter__item .catalog-filter__item {
  margin: 0;
}
.catalog-filter__item .facet-item {
  display: flex;
  align-items: center;
  margin: 0;
  position: relative;
}
.catalog-filter__item .facet-item .paradise-checkbox__input {
  left: 0;
}
.catalog-filter__item .facet-item .catalog-filter__item-txt {
  margin: 0 0 0 7px;
  white-space: nowrap;
  order: 2;
}

@media (min-width: 992px) {
  .block-facet-blockstock.catalog-filter__item {
    margin: 2px 0 5px 0;
  }
}
.block-facet-blockstock .facets-widget-checkbox .item-list__checkbox {
  padding: 0;
  list-style-type: none;
}

.filter_brand_wrap {
  position: relative;
}
.filter_brand_wrap .filter_brand_menu {
  height: 0px;
  overflow: hidden;
  margin: 0;
  position: relative;
  background: #fff;
  z-index: 9;
  width: 0px;
  border-top: 0;
  display: none;
  transition: all, 0.3s;
}
.filter_brand_wrap .filter_brand_menu > div ul {
  margin: 0;
}
.filter_brand_wrap.brand_open .filter_brand_btn {
  width: 200px;
  border-bottom: none;
  cursor: pointer;
}
.filter_brand_wrap.brand_open .filter_brand_menu {
  display: block;
  height: auto;
  width: 100%;
}
.filter_brand_wrap.brand_open .filter_brand_menu > div {
  width: 100%;
  max-height: 242px;
  overflow-y: auto;
}
.filter_brand_wrap.brand_open .filter_brand_menu > div::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}
.filter_brand_wrap.brand_open .filter_brand_menu > div::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
.filter_brand_wrap.brand_open .filter_brand_menu > div::-webkit-scrollbar-thumb {
  background-color: #85C5CF;
}
.filter_brand_wrap.brand_open .filter_brand_btn {
  background: url("../../dist/assets/images/icons/up-arrow.svg") no-repeat 74px 5px;
}
.filter_brand_wrap .filter_brand_btn {
  width: 104px;
  height: 31px;
  border: 1px solid #C4C4C4;
  background: transparent;
  color: #1D3F46;
  text-align: left;
  padding: 0 10px;
  background: url("../../dist/assets/images/icons/down-arrow.svg") no-repeat 74px 5px;
  transition: all, 0.3s;
}

.catalog-sidebar-filter__btn {
  margin: 37px 0 0;
}
.catalog-sidebar-filter__btn a {
  font-size: 14px;
  font-weight: 300;
  color: #CB0C74;
  cursor: pointer;
  transition: all, 0.25s;
}
.catalog-sidebar-filter__btn a:hover {
  color: #DC71AA;
}
@media (min-width: 768px) {
  .catalog-sidebar-filter__btn a {
    margin-top: -11px;
  }
}

.catalog-content-products {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 35px;
}
@media (min-width: 768px) {
  .catalog-content-products {
    margin: 35px auto 0 auto;
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .catalog-content-products {
    margin: 1px auto 0 auto;
  }
}

.catalog-content .catalog {
  margin: 0 -15px;
}
@media (max-width: 767px) {
  .catalog-content .catalog {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .catalog-content .catalog h3 {
    font-weight: 400;
  }
}
.catalog-content .catalog .catalog-content-products__no-products {
  width: 100%;
  text-align: center;
  padding: 20px 10px 12px;
  font-size: 1rem;
  font-weight: 400;
  color: #1D3F46;
}
.catalog-content .catalog .catalog-content-products__item {
  width: 50%;
  padding: 20px 10px 12px;
}
@media (min-width: 568px) {
  .catalog-content .catalog .catalog-content-products__item {
    width: 33.3333%;
  }
}
@media (min-width: 1000px) {
  .catalog-content .catalog .catalog-content-products__item {
    width: 25%;
    margin: 0 0 49px;
  }
}

.path-search .catalog-content .catalog {
  margin: 0;
}

.product-items-slider .catalog-content-products__item {
  padding: 20px 10px 12px;
}

.product .product-variation {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  position: relative;
  transform: none !important;
  top: 0 !important;
  left: 0 !important;
  line-height: 1 !important;
}
.product .product-variation:hover .product-image-wrap img {
  transform: scale(1.1);
}
.product .product-variation .product-image-wrap {
  display: block;
  margin: 0 auto;
  text-align: center;
  outline: 0;
}
.product .product-variation .product-image-wrap img {
  max-width: 140px;
  max-height: 140px;
  min-height: 140px;
  display: inline;
  transition: all, 0.3s;
  outline: 0;
}
@media (min-width: 992px) {
  .product .product-variation .product-image-wrap img {
    max-width: 163px;
    max-height: 163px;
    min-height: 163px;
  }
}
.product .product-variation a.product-link-wrapper .product-ttl {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: #1D3F46;
  margin: 6px 0 4px;
  width: 100%;
  min-height: 48px;
  height: 48px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .product .product-variation a.product-link-wrapper .product-ttl {
    margin: 16px 0 4px;
  }
}
.product .product-variation a.product-link-wrapper .product-ttl p {
  padding: 0;
  margin: 0;
}
.product .product-variation a.product-link-wrapper .product-ttl a, .product .product-variation a.product-link-wrapper .product-ttl p {
  color: #1D3F46;
  text-decoration: none;
  outline: none;
}
@media (min-width: 992px) {
  .product .product-variation a.product-link-wrapper .product-ttl a, .product .product-variation a.product-link-wrapper .product-ttl p {
    display: block;
  }
}
.product .product-variation a.product-link-wrapper .product-ttl:hover {
  overflow: inherit;
}
.product .product-variation a.product-link-wrapper:hover a, .product .product-variation a.product-link-wrapper:hover p {
  color: #747e80;
  background: white;
  display: block;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  .product .product-variation a.product-link-wrapper:hover a, .product .product-variation a.product-link-wrapper:hover p {
    padding-bottom: 10px;
  }
}
.product .product-variation .product-sku {
  font-weight: 300;
  font-size: 15px;
  line-height: 15px;
  color: #CB0C74;
}
.product .product-variation .product-sku > div {
  display: inline-block;
}
.product .product-variation .variation-price {
  font-size: 15px;
  line-height: 1;
  margin: 7px 7px 3px 0;
  color: #C4C4C4;
  font-weight: 500;
}
@media (min-width: 992px) {
  .product .product-variation .variation-price {
    margin: 5px 7px 1px 0;
  }
}
.product .product-variation .variation-price .section-product__regular-price {
  text-decoration-line: line-through;
  color: #C4C4C4;
  margin-right: 15px;
  text-decoration-line: none;
}
.product .product-variation .variation-price .price-with-discount {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.product .product-variation .variation-price .old-price {
  text-decoration: line-through;
  text-decoration-line: line-through;
  color: #C4C4C4 !important;
  width: auto !important;
  font-size: 15px;
  font-weight: 400;
  margin: 0 8px 0 0;
}
.product .product-variation .variation-price .new-price {
  color: #000;
  text-decoration: none;
}
@media (min-width: 992px) {
  .product .product-variation .variation-price .new-price {
    font-weight: bold;
  }
}
.product .product-variation .variation-price .percentage-off {
  right: 6px;
  width: 40px;
  height: 40px;
  left: auto;
  transform: none;
  margin: 0;
  border-radius: 50%;
  background: url(../../dist/assets/images/product-discont-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  position: absolute;
  z-index: 0;
  top: 0;
}
@media (min-width: 992px) {
  .product .product-variation .variation-price .percentage-off {
    top: 0px;
    right: 20px;
  }
}
.product .product-variation .variation-catalog.disabled {
  margin: 15px 0;
}
.product .product-variation .product-sizes {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  line-height: 18px;
  white-space: nowrap;
  border-bottom: 1px solid #C73C78;
}
@media (min-width: 992px) {
  .product .product-variation .product-sizes {
    bottom: 41px;
  }
}
.product .product-variation .product-sizes > div div:first-child {
  display: none;
}
.product .product-variation form {
  width: 100%;
}
.product .product-variation form .js-form-type-number {
  display: none;
}
.product .product-variation .form-item {
  margin: 0;
}
.product .product-variation div.form-actions {
  position: relative;
  margin: 15px 0 0;
  flex-direction: row;
}
.product .product-variation div.form-actions > div {
  width: 96px;
}
.product .product-variation div.form-actions .ajax-progress {
  position: absolute;
  left: 0;
  bottom: -18px;
  white-space: nowrap;
}
.product .product-variation div.form-actions input.btn-link {
  background: #C73C78 url(../../dist/assets/images/icons/heart1.svg) center no-repeat !important;
  font-size: 0 !important;
  width: 55px !important;
  height: 44px !important;
  margin: 0;
  border: 0;
  cursor: pointer;
  transition: all, 0.3s;
  margin-right: 0 !important;
}
.product .product-variation div.form-actions input.btn-link:hover {
  background: #C73C78 url("../../dist/assets/images/icons/heart2.svg") center no-repeat !important;
}
.product .product-variation div.form-actions input.btn-link.inwishlist {
  background: #C73C78 url(../../dist/assets/images/icons/heart2.svg) center no-repeat !important;
  transition: unset;
}
@media (min-width: 992px) {
  .product .product-variation div.form-actions input.btn-link {
    width: 38px !important;
    height: 33px !important;
  }
}
.product .product-variation div.form-actions input.button--primary {
  flex: 1 0;
  font-size: 14px !important;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  transition: all, 0.3s;
  margin: 0;
  margin-left: 1px !important;
  height: 44px;
  max-width: 107px;
  opacity: 1;
  line-height: 16px !important;
  padding: 10px 0 5px 17px !important;
  border: none;
  text-transform: uppercase;
  text-align: left;
  background: #76BFC8 url(../../dist/assets/images/icons/ic-bag_white.svg) no-repeat 65px 12px;
  background-size: 20px 20px;
}
.product .product-variation div.form-actions input.button--primary:hover {
  cursor: pointer;
  background-color: #3D7B82;
}
@media (min-width: 320px) and (max-width: 330px) {
  .product .product-variation div.form-actions input.button--primary {
    padding: 10px 0 5px 7px !important;
    background: #76BFC8 url(../../dist/assets/images/icons/ic-bag_white.svg) no-repeat 47px 12px;
    background-size: 20px 20px;
  }
}
@media (min-width: 331px) and (max-width: 350px) {
  .product .product-variation div.form-actions input.button--primary {
    background: #76BFC8 url(../../dist/assets/images/icons/ic-bag_white.svg) no-repeat 53px 12px;
    background-size: 20px 20px;
    padding: 10px 0 5px 8px !important;
  }
}
@media (min-width: 351px) and (max-width: 359px) {
  .product .product-variation div.form-actions input.button--primary {
    padding: 10px 0 5px 10px !important;
    background: #76BFC8 url(../../dist/assets/images/icons/ic-bag_white.svg) no-repeat 57px 12px;
    background-size: 20px 20px;
  }
}
@media (min-width: 360px) and (max-width: 374px) {
  .product .product-variation div.form-actions input.button--primary {
    padding: 10px 0 5px 10px !important;
    background: #76BFC8 url(../../dist/assets/images/icons/ic-bag_white.svg) no-repeat 57px 12px;
    background-size: 20px 20px;
  }
}
@media (min-width: 992px) {
  .product .product-variation div.form-actions input.button--primary {
    height: 33px !important;
    max-width: 96px;
    font-size: 12px !important;
    text-transform: none;
    padding: 7px 0 5px 48px !important;
    background: #76BFC8 url(../../dist/assets/images/icons/ic-bag_white.svg) no-repeat 18px 6px;
    background-size: 18px 20px;
  }
}
.product .product-variation .section-product__showroom {
  width: 73px;
  height: 33px;
  background: #76BFC8;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 10px;
  color: #fff;
  position: absolute;
  top: 3px;
  left: 0;
  opacity: 1;
  transition: all, 0.3s;
  z-index: 0;
}
.product .slick-slide .product-sizes {
  display: none;
}
.product .slick-dots {
  margin: 0;
  padding: 0;
  position: absolute;
  font-size: 14px;
  white-space: nowrap;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  overflow-x: hidden;
}
@media (min-width: 992px) {
  .product .slick-dots {
    bottom: 34px;
  }
}
.product .slick-dots li {
  list-style: none;
  margin: 0;
  width: auto;
  max-width: 0;
  transition: max-width 0.3s, margin-right 0.3s;
  overflow: hidden;
}
.product .slick-dots li :last-child {
  margin-right: 0;
}
.product .slick-dots li.visible {
  margin: 0 5px 0 0;
  max-width: 53px;
}
.product .slick-dots li span {
  color: #8e929c;
  border-bottom: 1px dotted transparent;
  transition: all 0.3s;
}
.product .slick-dots li.slick-active span {
  border-bottom: 1px solid #C73C78;
  color: #000;
}

.section-viewed-products {
  padding-bottom: 30px;
  margin-top: 45px;
}
@media (min-width: 768px) {
  .section-viewed-products {
    padding-bottom: 45px;
    margin-top: 67px;
  }
}

.catalog-content .filter__toggle {
  display: none;
  width: 100%;
  height: 36px;
  border: 1px solid #9FB9BB;
  padding: 0 11px;
  border-radius: 5px;
  font-weight: 300;
  font-size: 14px;
  line-height: 34px;
  text-align: left;
  color: #1D3F46;
  margin-bottom: 10px;
  position: relative;
}
.catalog-content .filter__toggle:after {
  content: url("../../dist/assets/images/down.svg");
  display: inline-block;
  position: absolute;
  top: 0;
  right: 10px;
}
@media (max-width: 767px) {
  .catalog-content .filter__toggle {
    display: block;
  }
}
.catalog-content .catalog-sidebar-filter {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .catalog-content .catalog-sidebar-filter {
    border: 1px solid #9FB9BB;
    padding: 14px 11px;
    border-radius: 5px;
    display: none;
  }
}
@media (min-width: 768px) {
  .catalog-content .catalog-sidebar-filter {
    width: 167px;
    padding-top: 21px;
    display: flex;
  }
}
@media (min-width: 992px) {
  .catalog-content .catalog-sidebar-filter {
    padding: 0;
    margin: 0 9px 0 -3px;
  }
}
.catalog-content .catalog-sidebar-filter .paradise-catalog-filters {
  max-height: 100%;
  width: 100%;
}
.catalog-content .catalog-sidebar-filter .paradise-catalog-filters form {
  max-height: 100%;
}
.catalog-content .catalog-sidebar-filter .paradise-catalog-filters .fieldset-legend, .catalog-content .catalog-sidebar-filter .paradise-catalog-filters h3 {
  width: 100%;
  display: block;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: #6DBCC5;
  border-bottom: 1px solid rgba(109, 188, 197, 0.48);
  margin: 0 0 0.2rem;
}
.catalog-content .catalog-sidebar-filter .paradise-catalog-filters fieldset, .catalog-content .catalog-sidebar-filter .paradise-catalog-filters legend, .catalog-content .catalog-sidebar-filter .paradise-catalog-filters ul, .catalog-content .catalog-sidebar-filter .paradise-catalog-filters li {
  width: 100%;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .catalog-content .catalog-sidebar-filter .paradise-catalog-filters fieldset, .catalog-content .catalog-sidebar-filter .paradise-catalog-filters legend, .catalog-content .catalog-sidebar-filter .paradise-catalog-filters ul, .catalog-content .catalog-sidebar-filter .paradise-catalog-filters li {
    max-width: 167px;
  }
}
.catalog-content .catalog-sidebar-filter .paradise-catalog-filters a {
  font-size: 14px;
  font-weight: 300;
  color: #1D3F46;
  text-decoration: none;
  transition: all, 0.3s;
}
.catalog-content .catalog-sidebar-filter .paradise-catalog-filters a:hover {
  color: #6dbcc5;
  text-decoration: underline;
}
.catalog-content .catalog-sidebar-filter .paradise-catalog-filters .js-form-type-checkbox {
  display: flex;
  align-items: baseline;
  padding: 0;
  margin: 3px 0;
}
.catalog-content .catalog-sidebar-filter .paradise-catalog-filters .js-form-type-checkbox input, .catalog-content .catalog-sidebar-filter .paradise-catalog-filters .js-form-type-checkbox label {
  display: inline-block;
  cursor: pointer;
  text-align: left;
}
.catalog-content .catalog-sidebar-filter .paradise-catalog-filters .js-form-type-checkbox label {
  font-size: 14px;
  flex: 1 0;
}
.catalog-content .catalog-sidebar-filter .paradise-catalog-filters.block-paradise-category-filter-block ul li {
  line-height: 16px;
  margin-bottom: 6px;
}
.catalog-content .catalog-sidebar-filter .collapsible {
  overflow: hidden;
  position: relative;
}
.catalog-content .catalog-sidebar-filter .collapsible .fieldset-legend {
  position: relative;
  cursor: pointer;
  padding-top: 14px;
}
.catalog-content .catalog-sidebar-filter .collapsible .fieldset-legend:after {
  content: url("../../dist/assets/images/down.svg");
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 10px;
  transition: all 0.3s ease-in-out;
}
.catalog-content .catalog-sidebar-filter .collapsible .fieldset-wrapper {
  max-height: 14vh;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(#000 50%, transparent 92%);
          mask-image: linear-gradient(#000 50%, transparent 92%);
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .catalog-content .catalog-sidebar-filter .collapsible .fieldset-wrapper {
    max-width: 167px;
  }
}
.catalog-content .catalog-sidebar-filter .collapsible.expanded .fieldset-wrapper {
  max-height: 45vh;
  overflow-y: scroll;
  -webkit-mask-image: none;
          mask-image: none;
}
.catalog-content .catalog-sidebar-filter .collapsible.expanded .fieldset-legend:after {
  transform: rotate(180deg);
}
.catalog-content .catalog-sidebar-filter .collapsible.collapsed .fieldset-wrapper {
  max-height: 0;
  -webkit-mask-image: none;
          mask-image: none;
}
.catalog-content .catalog-sidebar-filter .collapsible.collapsed .fieldset-legend:after {
  transform: rotate(90deg);
}
.catalog-content .active-filters {
  margin-bottom: 0.7rem;
}
.catalog-content .active-filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.catalog-content .active-filters__list li {
  margin: 0 7px 0 0;
}
.catalog-content .active-filters__list a {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 4px;
  text-decoration: none;
  color: #1D3F46;
  font-size: 14px;
  line-height: 16px;
  transition: background-color 0.3s ease;
}
.catalog-content .active-filters__list a:hover {
  color: #6DBCC5;
}
.catalog-content .active-filters__list a::after {
  content: "×";
  margin-left: 5px;
  font-weight: bold;
  font-size: 18px;
  color: #6DBCC5;
}
.catalog-content .product-sort-form {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  width: 100%;
}
.catalog-content .product-sort-form form {
  width: 100%;
}
.catalog-content .product-sort-form .form-item {
  margin: 0;
}
.catalog-content .product-sort-form label {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-transform: uppercase;
  color: #6DBCC5;
  border-bottom: 1px solid rgba(109, 188, 197, 0.4784313725);
}
.catalog-content .product-sort-form .product-sort-select {
  padding: 5px 10px 5px 0;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.3s ease;
  background: none;
  color: #1D3F46;
}
.catalog-content .product-sort-form .product-sort-select:focus {
  outline: none;
}

body.toolbar-horizontal .catalog-content .catalog-sidebar-filter {
  padding-top: 80px;
  max-height: calc(100vh - 80px);
}

.landing-page {
  position: relative;
}

.landing-page__content-wrapper {
  position: relative;
}

.landing-page__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 115px;
}
@media (min-width: 768px) {
  .landing-page__content {
    padding-bottom: 125px;
  }
}
@media (min-width: 992px) {
  .landing-page__content {
    padding-bottom: 176px;
  }
}

.landing-page__content-logo {
  text-align: center;
  padding-top: 30px;
}
@media (min-width: 992px) {
  .landing-page__content-logo {
    padding-top: 41px;
  }
}

.landing-page__content-logo > img {
  width: 168px;
}

.landing-page__title-wrapper {
  text-align: center;
  margin-top: 50px;
}
@media (min-width: 576px) {
  .landing-page__title-wrapper {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .landing-page__title-wrapper {
    margin-top: 70px;
  }
}

.landing-page__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: #1D3F46;
  margin: 0;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .landing-page__title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .landing-page__title {
    font-size: 23px;
  }
}

.landing-page__title-1 {
  text-transform: uppercase;
}

.landing-page__title-2 {
  text-transform: initial;
}

.landing-page__title-special {
  text-transform: uppercase;
  color: #cb0c74;
}

.landing-page__text {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: #1D3F46;
  margin-top: 18px;
}
@media (min-width: 768px) {
  .landing-page__text {
    font-size: 16px;
    margin-top: 24px;
  }
}
@media (min-width: 992px) {
  .landing-page__text {
    font-size: 18px;
    margin-top: 28px;
  }
}

.landing-page__authors {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .landing-page__authors {
    padding-left: 20%;
  }
}
@media (min-width: 768px) {
  .landing-page__authors {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .landing-page__authors {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

.landing-page__authors-text {
  font-weight: 400;
  font-size: 12px;
  text-transform: capitalize;
  color: #1D3F46;
  translate: 0.25s;
}
@media (min-width: 768px) {
  .landing-page__authors-text {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .landing-page__authors-text {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

.landing-page__confirm {
  margin-left: auto;
  position: relative;
  transform: translateX(-40%);
  width: 250px;
  display: flex;
}
@media (min-width: 768px) {
  .landing-page__confirm {
    transform: translateX(-100%);
  }
}
@media (min-width: 992px) {
  .landing-page__confirm {
    margin-top: 54px;
    transform: translateX(-100%);
  }
}

.landing-page__confirm:after {
  content: "Утверждено";
  font-weight: 500;
  font-size: 12px;
  text-transform: capitalize;
  color: #1D3F46;
  position: absolute;
  right: 0;
  transform: translate(120%, -100%);
}
@media (min-width: 576px) {
  .landing-page__confirm:after {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .landing-page__confirm:after {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .landing-page__confirm:after {
    font-size: 20px;
  }
}

.landing__confirm-field {
  position: relative;
  width: 155px;
  margin-left: auto;
  border-bottom: 1px solid #1D3F46;
  text-align: center;
}
@media (min-width: 768px) {
  .landing__confirm-field {
    width: 200px;
  }
}
@media (min-width: 992px) {
  .landing__confirm-field {
    width: 250px;
  }
}

.landing__confirm-field-text {
  position: absolute;
  bottom: -35px;
  left: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 150px;
  transform: translateX(-50%);
  text-transform: capitalize;
  color: #1D3F46;
  margin: 0;
}
@media (min-width: 768px) {
  .landing__confirm-field-text {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .landing__confirm-field-text {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.landing-page__footer {
  width: 100%;
  border-top: 1px solid #1D3F46;
  padding: 18px 0;
}

.landing-page__footer-content {
  display: flex;
  align-items: flex-start;
  text-align: center;
  flex-wrap: wrap;
  padding: 3px 0;
}
@media (min-width: 768px) {
  .landing-page__footer-content {
    text-align: unset;
  }
}
@media (min-width: 992px) {
  .landing-page__footer-content {
    justify-content: space-between;
  }
}

.landing-page__footer-logo {
  width: 100%;
  margin-bottom: 25px;
  transform: translateY(-3px);
}
@media (min-width: 576px) {
  .landing-page__footer-logo {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .landing-page__footer-logo {
    width: 100px;
    margin-bottom: unset;
  }
}

.landing-page__footer-logo > img {
  width: 200px;
  transform: translateX(25%);
  background-size: contain;
}
@media (min-width: 768px) {
  .landing-page__footer-logo > img {
    width: 220px;
  }
}
@media (min-width: 992px) {
  .landing-page__footer-logo > img {
    transform: none;
    width: 290px;
  }
}

.landing-page__footer-location {
  width: 100%;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  .landing-page__footer-location {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .landing-page__footer-location {
    width: auto;
    margin-bottom: unset;
  }
}

.landing-page__footer-location-text {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 25px;
  text-transform: capitalize;
  color: #1D3F46;
}
@media (min-width: 768px) {
  .landing-page__footer-location-text {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .landing-page__footer-location-text {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .landing-page__footer-location-text {
    font-size: 18px;
  }
}

.landing-page__footer-contacts {
  width: 100%;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: baseline;
}
@media (min-width: 576px) {
  .landing-page__footer-contacts {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .landing-page__footer-contacts {
    width: auto;
    margin-bottom: unset;
  }
}

.landing-page__footer-contacts-text {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 25px;
  text-transform: capitalize;
  text-decoration: none;
  color: #1D3F46;
}
@media (min-width: 768px) {
  .landing-page__footer-contacts-text {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .landing-page__footer-contacts-text {
    font-size: 16px;
  }
}

.landing-page__footer-email {
  width: 100%;
  margin-top: 4px;
  margin-bottom: 25px;
}
@media (min-width: 576px) {
  .landing-page__footer-email {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .landing-page__footer-email {
    width: auto;
    margin-bottom: unset;
  }
}

.landing-page__footer-email-text {
  font-weight: 400;
  font-size: 12px;
  text-transform: capitalize;
  color: #1D3F46;
  margin: 0;
}
@media (min-width: 768px) {
  .landing-page__footer-email-text {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .landing-page__footer-email-text {
    font-size: 16px;
  }
}

.landing-page__background-item-1 {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 322px;
  width: 26%;
  height: auto;
  z-index: -9999;
}

.landing-page__background-item-2 {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 322px;
  width: 26%;
  height: auto;
  z-index: -9999;
}

.section-profile {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-profile__heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

.section-profile__heading-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #85C5CF;
  margin-top: 25px;
}
@media only screen and (min-width: 768px) {
  .section-profile__heading-menu {
    margin-top: 39px;
    flex-direction: row;
  }
}

.section-profile__heading-tab {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
  text-transform: uppercase;
  cursor: pointer;
  transition: all, 0.3s;
}
.section-profile__heading-tab::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #DC71AA;
  margin: 0 auto;
  transition: all, 0.3s;
}
.section-profile__heading-tab:hover {
  color: #DC71AA;
}
.section-profile__heading-tab.active {
  color: #DC71AA;
}
.section-profile__heading-tab.active::after {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .section-profile__heading-tab {
    margin-bottom: 0;
    margin-right: 22px;
    padding-bottom: 10px;
  }
  .section-profile__heading-tab::after {
    height: 2px;
    transform: translateY(11px);
  }
}
@media only screen and (min-width: 992px) {
  .section-profile__heading-tab {
    margin-right: 44px;
    padding-bottom: 14px;
  }
  .section-profile__heading-tab::after {
    transform: translateY(15px);
  }
}

.section-profile__content {
  width: 100%;
  padding-top: 25px;
}
@media only screen and (min-width: 768px) {
  .section-profile__content {
    padding-top: 40px;
  }
}

.profile-content-item {
  width: 100%;
  position: relative;
  display: none;
}
.profile-content-item.active {
  display: block;
}

.profile-content-item__cyrcles {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .profile-content-item__cyrcles {
    display: block;
    width: 321px;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.profile-input-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .profile-input-block {
    margin-bottom: 20px;
  }
}
.profile-input-block_half {
  width: 46%;
}

.profile-input-label {
  font-size: 13px;
  font-weight: 300;
  color: #1D3F46;
  margin-bottom: 6px;
}

.profile-input {
  width: 100%;
  height: 30px;
  padding-left: 15px;
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
  border: 1px solid #6DBCC5;
  outline-color: #1D3F46;
}
.profile-input::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
}
.profile-input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
}
@media only screen and (min-width: 768px) {
  .profile-input {
    height: 44px;
    padding-left: 23px;
    font-size: 18px;
    font-weight: 400;
    color: #1D3F46;
  }
  .profile-input::-moz-placeholder {
    font-size: 18px;
    font-weight: 400;
    color: #1D3F46;
  }
  .profile-input::placeholder {
    font-size: 18px;
    font-weight: 400;
    color: #1D3F46;
  }
}

.profile-contacts {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .profile-contacts {
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: 125px;
  }
}
@media only screen and (min-width: 992px) {
  .profile-contacts {
    margin-bottom: 196px;
  }
}

.profile-contacts__data {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .profile-contacts__data {
    width: 353px;
  }
}

.profile-contacts__pass {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .profile-contacts__pass {
    width: 272px;
    margin-top: 0;
    margin-left: 50px;
    margin-bottom: -60px;
  }
}
@media only screen and (min-width: 992px) {
  .profile-contacts__pass {
    margin-left: 111px;
  }
}

.profile-contacts__pass-inner {
  width: 100%;
}

.profile-contacts__pass-ttl {
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
  margin-bottom: 15px;
}

.profile-contacts__btn {
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  .profile-contacts__btn {
    width: 215px;
    height: 44px;
    margin-top: 16px;
  }
}

.profile-addresses {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .profile-addresses {
    flex-direction: row;
    margin-top: -4px;
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 992px) {
  .profile-addresses {
    margin-bottom: 116px;
  }
}

.profile-addresses__list {
  width: 275px;
  display: flex;
  flex-direction: column;
}

.profile-addresses__list-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-bottom: 25px;
}
.profile-addresses__list-item:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .profile-addresses__list-item {
    margin-bottom: 43px;
  }
}

.profile-addresses__radio {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}
.profile-addresses__radio:checked ~ .profile-addresses__radio-checkmark::after {
  opacity: 1;
}

.profile-addresses__radio-checkmark {
  width: 10px;
  height: 10px;
  border: 1px solid #1D3F46;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  margin-right: 38px;
  position: relative;
}
.profile-addresses__radio-checkmark::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #DC71AA;
  position: absolute;
  top: 47.5%;
  left: 47.5%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all, 0.25s;
}

.profile-addresses__list-item-txt {
  display: flex;
  flex-direction: column;
  width: 206px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #1D3F46;
}

.profile-addresses__list-item-remove {
  width: 12px;
  height: 12px;
  margin-left: 6px;
  margin-top: 2px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: all, 0.3s;
}
.profile-addresses__list-item-remove svg {
  display: block;
  width: 100%;
  height: 100%;
}
.profile-addresses__list-item-remove svg path {
  fill: #1D3F46;
  transition: all, 0.3s;
}
.profile-addresses__list-item-remove:hover {
  transform: scale(1.2);
}
.profile-addresses__list-item-remove:hover svg path {
  fill: #DC71AA;
}

.profile-new-address {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .profile-new-address {
    width: 295px;
    margin-top: 0;
    margin-left: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .profile-new-address {
    margin-left: 115px;
  }
}

.profile-new-address__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.profile-new-address__ttl {
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .profile-new-address__ttl {
    margin-bottom: 30px;
  }
}

.profile-address__btn {
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  .profile-address__btn {
    width: 215px;
    height: 44px;
    margin-top: 23px;
  }
}

.profile-chosen {
  width: 100%;
  height: 474px;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 35px;
}
.profile-chosen::-webkit-scrollbar {
  width: 3px;
  background: #D0D1D3;
}
.profile-chosen::-webkit-scrollbar-thumb {
  background: #76BFC8;
}
@media only screen and (min-width: 768px) {
  .profile-chosen {
    padding-right: 25px;
    margin-bottom: 68px;
  }
}
@media only screen and (min-width: 992px) {
  .profile-chosen {
    width: 769px;
    margin-top: -10px;
  }
}

.profile-chosen-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #85C5CF;
  margin-bottom: 14px;
  position: relative;
}
.profile-chosen-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .profile-chosen-item {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

.profile-chosen-item__image-wrap {
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.profile-chosen-item__image-wrap:hover .profile-chosen-item__image {
  transform: scale(1.15);
}

.profile-chosen-item__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all, 0.3s;
}

.profile-chosen-item__info {
  width: 220px;
}
@media only screen and (min-width: 768px) {
  .profile-chosen-item__info {
    width: 158px;
  }
}

.profile-chosen-item__ttl {
  font-size: 13px;
  font-weight: 400;
  color: #1D3F46;
  margin-top: 5px;
}
@media only screen and (min-width: 768px) {
  .profile-chosen-item__ttl {
    margin-top: 0;
  }
}

.profile-chosen-item__descr {
  font-size: 13px;
  font-weight: 300;
  color: #1D3F46;
  margin-top: 5px;
  margin-bottom: 10px;
}

.profile-chosen-item__info-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-chosen-item__size {
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
}

.profile-chosen-item__article {
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
}

.profile-chosen-item__price {
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
  margin-top: 13px;
}
@media only screen and (min-width: 768px) {
  .profile-chosen-item__price {
    margin-top: 0;
  }
}

.profile-chosen-item__btn {
  margin-top: 15px;
}
@media only screen and (min-width: 768px) {
  .profile-chosen-item__btn {
    margin-top: 0;
    min-width: 147px;
    min-height: 44px;
  }
}

.profile-chosen-item__remove {
  width: 20px;
  height: 23.5px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  cursor: pointer;
  transition: all, 0.3s;
}
.profile-chosen-item__remove svg {
  display: block;
  width: 100%;
  height: 100%;
}
.profile-chosen-item__remove svg path {
  stroke: #1D3F46;
  transition: all, 0.3s;
}
.profile-chosen-item__remove:hover {
  transform: scale(1.15);
}
.profile-chosen-item__remove:hover svg path {
  stroke: #DC71AA;
}
@media only screen and (min-width: 768px) {
  .profile-chosen-item__remove {
    position: relative;
    top: unset;
    right: unset;
    margin-right: 10px;
  }
}
@media only screen and (min-width: 992px) {
  .profile-chosen-item__remove {
    margin-right: 23px;
  }
}

.profile-history {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 35px;
}
@media only screen and (min-width: 768px) {
  .profile-history {
    margin-bottom: 69px;
  }
}

.profile-history__heading {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #85C5CF;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  .profile-history__heading {
    padding-right: 20px;
    margin-bottom: 23px;
  }
}
@media only screen and (min-width: 992px) {
  .profile-history__heading {
    width: 865px;
    padding-right: 30px;
  }
}

.profile-history__heading-item {
  width: 33%;
  font-size: 10px;
  font-weight: 400;
  color: #1D3F46;
  text-transform: uppercase;
  padding-right: 15px;
}
@media only screen and (min-width: 576px) {
  .profile-history__heading-item {
    font-size: 14px;
  }
}

.profile-history__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 10px;
  height: 500px;
  overflow-y: auto;
}
.profile-history__content::-webkit-scrollbar {
  width: 3px;
  background: #D0D1D3;
}
.profile-history__content::-webkit-scrollbar-thumb {
  background: #76BFC8;
}
@media only screen and (min-width: 768px) {
  .profile-history__content {
    padding-right: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .profile-history__content {
    width: 865px;
    padding-right: 30px;
  }
}

.profile-history-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.profile-history-item:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .profile-history-item {
    margin-bottom: 30px;
  }
}

.profile-history-item__head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  color: #1D3F46;
}
.profile-history-item__head.active {
  font-weight: 500;
}

.profile-history-item__head-item {
  width: 33%;
  padding-right: 15px;
  transition: all, 0.3s;
}
@media only screen and (min-width: 576px) {
  .profile-history-item__head-item {
    font-size: 14px;
  }
}

.profile-history-item__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .profile-history-item__content {
    margin-top: 33px;
    margin-bottom: 34px;
  }
}

.profile-history-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #85C5CF;
  margin-bottom: 14px;
  position: relative;
}
.profile-history-product:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .profile-history-product {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

.profile-history-product__image-wrap {
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.profile-history-product__image-wrap:hover .profile-history-product__image {
  transform: scale(1.15);
}

.profile-history-product__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all, 0.3s;
}

.profile-history-product__info {
  width: 220px;
}
@media only screen and (min-width: 768px) {
  .profile-history-product__info {
    width: 158px;
  }
}

.profile-history-product__ttl {
  font-size: 13px;
  font-weight: 400;
  color: #1D3F46;
  margin-top: 5px;
}
@media only screen and (min-width: 768px) {
  .profile-history-product__ttl {
    margin-top: 0;
  }
}

.profile-history-product__descr {
  font-size: 13px;
  font-weight: 300;
  color: #1D3F46;
  margin-top: 5px;
  margin-bottom: 10px;
}

.profile-history-product__info-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-history-product__size {
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
}

.profile-history-product__article {
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
}

.profile-history-product__price {
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
  margin-top: 13px;
}
@media only screen and (min-width: 768px) {
  .profile-history-product__price {
    margin-top: 0;
  }
}

.profile-history-product__qty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 13px;
}
@media only screen and (min-width: 768px) {
  .profile-history-product__qty {
    margin-top: 0;
  }
}

.profile-history-product__qty-number {
  font-size: 16px;
  font-weight: 400;
  color: #1D3F46;
  margin-bottom: 5px;
}

.profile-history-product__qty-txt {
  font-size: 13px;
  font-weight: 300;
  color: #1D3F46;
}

.profile-history-product__btn {
  margin-top: 15px;
  font-size: 10px;
}
@media only screen and (min-width: 768px) {
  .profile-history-product__btn {
    margin-top: 0;
    min-width: 168px;
    min-height: 25px;
  }
}

.profile-bonus-wrap {
  padding-top: 18px;
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .profile-bonus-wrap {
    padding-bottom: 50px;
  }
}

.profile-bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .profile-bonus {
    padding-bottom: 72px;
  }
}
@media only screen and (min-width: 992px) {
  .profile-bonus {
    padding-bottom: 109px;
  }
}

.profile-bonus__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  .profile-bonus__ttl {
    margin-bottom: 34px;
  }
}

.profile-bonus__ttl-txt {
  font-size: 55px;
  font-weight: 400;
  color: #6DBCC5;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .profile-bonus__ttl-txt {
    font-size: 130px;
  }
}

.profile-bonus__ttl-cyrcle {
  width: 55px;
  margin: 0 5px;
}
@media only screen and (min-width: 768px) {
  .profile-bonus__ttl-cyrcle {
    width: 126px;
  }
}

.profile-bonus__txt {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .profile-bonus__txt {
    width: 702px;
  }
}

.profile-bonus__txt-item {
  font-size: 14px;
  font-weight: 300;
  color: #1D3F46;
  margin: 0;
  margin-bottom: 15px;
}
.profile-bonus__txt-item:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .profile-bonus__txt-item {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

.profile-bonus__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 31px;
}
@media only screen and (min-width: 768px) {
  .profile-bonus__bottom {
    flex-direction: row;
    justify-content: center;
  }
}

.profile-bonus__qty-block {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .profile-bonus__qty-block {
    margin: 0;
  }
}

.profile-bonus__qty-txt {
  font-size: 18px;
  font-weight: 400;
  color: #6DBCC5;
}

.profile-bonus__qty {
  position: relative;
}

.profile-bonus__qty-cyrcle {
  width: 126px;
  height: auto;
  margin-bottom: -33px;
  margin-left: 11px;
  margin-right: 7px;
}

.profile-bonus__qty-number {
  font-size: 30px;
  font-weight: 500;
  color: #1D3F46;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-26px, -17px);
}

.profile-bonus__btn {
  margin-left: -23px;
}
@media only screen and (min-width: 768px) {
  .profile-bonus__btn {
    margin-left: 30px;
    min-width: 295px;
    min-height: 44px;
  }
}

.profile-bonus__cyrcle_01 {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .profile-bonus__cyrcle_01 {
    display: block;
    width: 163px;
    position: absolute;
    top: -13px;
    left: 0;
  }
}

.profile-bonus__cyrcle_02 {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .profile-bonus__cyrcle_02 {
    display: block;
    width: 166px;
    position: absolute;
    top: -13px;
    right: 0;
  }
}

.section-brands {
  padding-top: 30px;
  padding-bottom: 40px;
  overflow-y: hidden;
}
@media only screen and (min-width: 768px) {
  .section-brands {
    padding-top: 3px;
    padding-bottom: 82px;
  }
}

.section-brands-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brands-tabs-wrap {
  width: 100%;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 11px;
}

.brand-tab {
  margin: 6px;
}

.brand-tab a {
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
  text-transform: uppercase;
  text-decoration: none;
  transition: all, 0.25s;
}
.brand-tab a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #DC71AA;
  margin: 0 auto;
  transition: all, 0.25s;
}
.brand-tab a:hover::after, .brand-tab a.is-active::after {
  width: 100%;
}
.brand-tab a.active, .brand-tab a.is-active {
  color: #DC71AA;
}
@media only screen and (min-width: 768px) {
  .brand-tab a {
    font-size: 16px;
  }
}

.brands-content {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 33px;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .brands-content {
    margin-top: 35px;
    margin-bottom: 43px;
  }
}

.brands-by-letter {
  width: 100%;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}
.brands-by-letter:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .brands-by-letter {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .brands-by-letter {
    margin-bottom: 20px;
  }
}
.brands-by-letter.hidden {
  display: none;
}

.brand-letter {
  font-size: 18px;
  font-weight: 700;
  color: #CB0C74;
  text-transform: uppercase;
  padding-left: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #85C5CF;
}
@media only screen and (min-width: 768px) {
  .brand-letter {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .brand-letter {
    padding-left: 30px;
    padding-bottom: 7px;
  }
}
@media only screen and (min-width: 1200px) {
  .brand-letter {
    padding-left: 63px;
  }
}

.brands-by-letter__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}
@media only screen and (min-width: 768px) {
  .brands-by-letter__content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.brands-by-letter__list {
  width: 100%;
  margin: 0;
  padding: 0;
  padding-left: 15px;
  list-style: none;
}
.brands-by-letter__list li {
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .brands-by-letter__list {
    width: 30%;
  }
}
@media only screen and (min-width: 992px) {
  .brands-by-letter__list {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .brands-by-letter__list {
    width: 25%;
    padding-left: 63px;
  }
}

.brands-by-letter__list-item a {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
  color: #000;
  text-decoration: none;
}
.brands-by-letter__list-item a:hover {
  color: #CB0C74;
}
@media only screen and (min-width: 768px) {
  .brands-by-letter__list-item a {
    margin-top: 15px;
    font-size: 16px;
  }
}

.brands-by-letter__logo-wrap {
  width: 100%;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .brands-by-letter__logo-wrap {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .brands-by-letter__logo-wrap {
    width: 70%;
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 1200px) {
  .brands-by-letter__logo-wrap {
    width: 75%;
  }
}

.brand-by-letter__logo {
  width: 250px;
  height: 75px;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .brand-by-letter__logo {
    width: calc(33.3% - 20px);
  }
}
@media only screen and (min-width: 1200px) {
  .brand-by-letter__logo {
    width: calc(25% - 20px);
  }
}

.brand-by-letter__logo-img {
  max-width: 100%;
  max-height: 90%;
  transition: all, 0.5s;
}
.brand-by-letter__logo-img:hover {
  transform: scale(1.1);
}

.show-more-brands {
  width: auto;
  margin: 0 auto;
  align-self: center;
}
@media only screen and (min-width: 1200px) {
  .show-more-brands {
    min-width: 215px;
    min-height: 44px;
  }
}

.section-brands-cyrcle_01 {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .section-brands-cyrcle_01 {
    display: block;
    width: 143px;
    position: absolute;
    top: 367px;
    left: 0;
    z-index: -1;
  }
}

.section-brands-cyrcle_02 {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .section-brands-cyrcle_02 {
    display: block;
    width: 241px;
    position: absolute;
    top: 145px;
    right: 0;
    z-index: -1;
  }
}

.vocabulary-brand #block-brand-3 {
  margin: 0;
}

.section-thank-you {
  padding-top: 35px;
  padding-bottom: 40px;
}
.section-thank-you .container {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .section-thank-you {
    padding-top: 52px;
    padding-bottom: 75px;
  }
}
.section-thank-you .paradise-socials {
  display: flex;
  align-items: center;
}
.section-thank-you .paradise-socials__item {
  margin: 0 8px;
  width: 25px;
  height: 25px;
}
.section-thank-you .paradise-socials__item:hover .paradise-socials__item-icon {
  transform: scale(1.2);
}
.section-thank-you .paradise-socials__item-icon {
  max-width: 100%;
  max-height: 100%;
  transition: all, 0.3s;
}

.thank-you-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.thank-you-content__ttl {
  font-size: 20px;
  font-weight: 500;
  color: #1D3F46;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 13px;
}
@media only screen and (min-width: 768px) {
  .thank-you-content__ttl {
    font-size: 22px;
  }
}

.thank-you-content__txt {
  font-size: 18px;
  font-weight: 400;
  color: #1D3F46;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .thank-you-content__txt {
    font-size: 22px;
  }
}

.thank-you-content__cosials {
  width: 100%;
  max-width: 395px;
  height: 98px;
  border: 1px solid #6DBCC5;
  margin-top: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .thank-you-content__cosials {
    margin-top: 62px;
  }
}
.thank-you-content__cosials .paradise-socials {
  margin-top: 5px;
}

.thank-you-content__cosials-txt {
  width: 244px;
  height: 54px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .thank-you-content__cosials-txt {
    font-size: 16px;
  }
}

.thank-you-content__btn {
  margin-top: 35px;
}
@media only screen and (min-width: 768px) {
  .thank-you-content__btn {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .thank-you-content__btn {
    margin-top: 70px;
    min-width: 295px;
    min-height: 44px;
  }
}

.section-thank-you__cyrcle_01 {
  display: none;
}
@media only screen and (min-width: 992px) {
  .section-thank-you__cyrcle_01 {
    display: block;
    width: 213px;
    position: absolute;
    top: 60px;
    left: 0;
  }
}

.section-thank-you__cyrcle_02 {
  display: none;
}
@media only screen and (min-width: 992px) {
  .section-thank-you__cyrcle_02 {
    display: block;
    width: 229px;
    position: absolute;
    top: 0px;
    right: 0;
  }
}

.section-404 {
  padding-top: 27px;
  padding-bottom: 35px;
}
@media only screen and (min-width: 768px) {
  .section-404 {
    padding-bottom: 53px;
  }
}

.section-404-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-404__ttl {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.section-404__ttl-txt {
  font-size: 75px;
  font-weight: 400;
  color: #6DBCC5;
}
@media only screen and (min-width: 768px) {
  .section-404__ttl-txt {
    font-size: 130px;
  }
}

.section-404__ttl-image {
  width: 75px;
  margin: 0 5px;
}
@media only screen and (min-width: 768px) {
  .section-404__ttl-image {
    width: 126px;
  }
}

.section-404__info {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  margin-bottom: 30px;
}
.section-404__info a {
  text-decoration: none;
  display: inline-block;
  color: #DC71AA;
  transition: all, 0.25s;
}
.section-404__info a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #DC71AA;
  transition: all, 0.25s;
}
.section-404__info a:hover {
  color: #CB0C74;
}
.section-404__info a:hover::after {
  background: #CB0C74;
}
@media only screen and (min-width: 768px) {
  .section-404__info {
    font-size: 18px;
  }
}

@media only screen and (min-width: 768px) {
  .paradise-search_404 {
    width: 422px;
  }
}

.section-404-cyrcle_01 {
  display: none;
}
@media only screen and (min-width: 992px) {
  .section-404-cyrcle_01 {
    display: block;
    width: 193px;
    position: absolute;
    top: 64px;
    left: 0;
  }
}

.section-404-cyrcle_03 {
  display: none;
}
@media only screen and (min-width: 992px) {
  .section-404-cyrcle_03 {
    display: block;
    width: 193px;
    position: absolute;
    bottom: 64px;
    left: 0;
    z-index: -1;
  }
}

.section-404-cyrcle_02 {
  display: none;
}
@media only screen and (min-width: 992px) {
  .section-404-cyrcle_02 {
    display: block;
    width: 169px;
    position: absolute;
    top: 31px;
    right: 0;
  }
}

.section-404-cyrcle_04 {
  display: none;
}
@media only screen and (min-width: 992px) {
  .section-404-cyrcle_04 {
    display: block;
    width: 169px;
    position: absolute;
    bottom: 31px;
    right: 0;
    z-index: -1;
  }
}

.section-top-sales_404 {
  padding-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  .section-top-sales_404 {
    padding-bottom: 38px;
  }
}

.section-product {
  padding-top: 25px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .section-product {
    background-image: url(../../dist/assets/images/r2small.png), url(../../dist/assets/images/b2big.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left calc((100% - 1064px) / 2 + 1064px + 66px) top 147px, left calc((100% - 1064px) / 2 + 1064px + 150px) top 32px;
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .section-product {
    padding-top: 22px;
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-product {
    padding-bottom: 60px;
  }
}
.section-product form.commerce-order-item-dc-ajax-add-cart-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.section-product form.commerce-order-item-dc-ajax-add-cart-form .field--name-purchased-entity {
  margin-bottom: 10px;
  width: 100%;
}
.section-product form.commerce-order-item-dc-ajax-add-cart-form .field--name-purchased-entity .product--rendered-attribute .fieldset-wrapper > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-shrink: 1;
}
.section-product form.commerce-order-item-dc-ajax-add-cart-form .field--name-purchased-entity .product--rendered-attribute .fieldset-wrapper > div .form-item {
  flex-shrink: 1;
  flex-basis: auto;
  width: auto;
}
.section-product form.commerce-order-item-dc-ajax-add-cart-form .section-product__qty-wrap {
  align-items: center;
  order: 3;
  display: none;
}
@media only screen and (min-width: 768px) {
  .section-product form.commerce-order-item-dc-ajax-add-cart-form .section-product__qty-wrap {
    display: flex;
    justify-content: flex-end;
  }
  .section-product form.commerce-order-item-dc-ajax-add-cart-form .section-product__qty-wrap .field--name-quantity label {
    display: none;
  }
}
.section-product form.commerce-order-item-dc-ajax-add-cart-form .section-product__qty-wrap .section-product__qty-minus {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.section-product form.commerce-order-item-dc-ajax-add-cart-form .section-product__qty-wrap .section-product__qty-minus::after {
  content: "";
  display: block;
  width: 15px;
  height: 1.5px;
  background: #1D3F46;
}
.section-product form.commerce-order-item-dc-ajax-add-cart-form .section-product__qty-wrap .section-product__qty-plus {
  width: 15px;
  height: 15px;
  position: relative;
  cursor: pointer;
}
.section-product form.commerce-order-item-dc-ajax-add-cart-form .section-product__qty-wrap .section-product__qty-plus::before, .section-product form.commerce-order-item-dc-ajax-add-cart-form .section-product__qty-wrap .section-product__qty-plus::after {
  content: "";
  display: block;
  background: #1D3F46;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-product form.commerce-order-item-dc-ajax-add-cart-form .section-product__qty-wrap .section-product__qty-plus::before {
  width: 13px;
  height: 1.5px;
}
.section-product form.commerce-order-item-dc-ajax-add-cart-form .section-product__qty-wrap .section-product__qty-plus::after {
  width: 1.5px;
  height: 13px;
}
.section-product form.commerce-order-item-dc-ajax-add-cart-form .section-product__qty-wrap .section-product__qty {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(29, 63, 70, 0.4588235294);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  outline: none;
  margin: 0 10px;
}
.section-product form.commerce-order-item-dc-ajax-add-cart-form .section-product__buttons {
  margin-left: auto;
}
@media only screen and (min-width: 768px) {
  .section-product form.commerce-order-item-dc-ajax-add-cart-form .section-product__buttons {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1100px) {
  .section-product form.commerce-order-item-dc-ajax-add-cart-form .section-product__buttons {
    margin: 0 10px 0 auto;
  }
}
.section-product .form-wrap .to_top {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 425px) {
  .section-product .form-wrap .to_top {
    top: 90px !important;
  }
}
@media only screen and (max-width: 767px) {
  .section-product .form-wrap .to_top {
    top: 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  .section-product .form-wrap .to_top {
    justify-content: flex-start;
    margin: 15px 0 0;
  }
}
.section-product .form-wrap .to_top .section-product__price {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 40%;
  height: 65px;
  text-align: center;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  color: #1D3F46;
}
@media only screen and (min-width: 768px) {
  .section-product .form-wrap .to_top .section-product__price {
    position: static;
    font-weight: 400;
    font-size: 25px;
    line-height: 35px;
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 1100px) {
  .section-product .form-wrap .to_top .section-product__price {
    position: absolute;
    bottom: 11px;
  }
}
.section-product .form-wrap .to_top .section-product__price .percentage-off {
  width: 54px;
  height: 54px;
  transform: none;
  margin: 0;
  border-radius: 50%;
  background: url(../../dist/assets/images/product-discont-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  position: absolute;
  top: -400px;
  right: 258px;
  left: auto;
}
.section-product .form-wrap .to_top .section-product__price .price-with-discount {
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  align-items: center;
  height: 65px;
}
.section-product .form-wrap .to_top .section-product__price .old-price {
  text-decoration-line: line-through;
  color: #D0D1D3;
}
@media only screen and (min-width: 992px) {
  .section-product .form-wrap .to_top .section-product__price .old-price {
    line-height: 29px;
  }
}
.section-product .form-wrap .to_top .section-product__price .section-product__regular-price {
  text-decoration-line: line-through;
  color: #C4C4C4;
  margin-right: 15px;
}
.section-product .section-product-top {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .section-product .section-product-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 0 1px;
  }
}
.section-product .section-product__images-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .section-product .section-product__images-block {
    width: 40%;
    margin-right: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .section-product .section-product__images-block {
    width: 480px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-product .section-product__images-block {
    width: 495px;
  }
}
.section-product .section-product__images-block span .old-price, .section-product .section-product__images-block span .new-price {
  display: none;
}
.section-product .section-product__images-block span .percentage-off {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: url(../../dist/assets/images/product-discont-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  position: absolute;
  top: 0px;
  right: 45px;
  z-index: 1;
  transform: translateX(50px);
}
.section-product .section-product__images-block-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .section-product .section-product__images-block-inner {
    flex-direction: row-reverse;
  }
}
.section-product .section-product__images {
  width: 100%;
  height: 275px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .section-product .section-product__images {
    width: 300px;
    height: 360px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-product .section-product__images {
    width: 376px;
    height: 425px;
  }
}
.section-product .section-product__images .section-product__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all, 0.5s;
}
.section-product .section-product__images .section-product__image.active {
  opacity: 1;
}
.section-product .section-product__images .section-product__image.active.youtube {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
  top: unset;
  left: unset;
  transform: unset;
  overflow: hidden;
}
.section-product .section-product__images .section-product__image.active iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-product .section-product__images.have-youtube {
  height: auto;
}
.section-product .section-product__images.have-youtube .section-product__image {
  position: static;
  transform: unset;
  display: none;
}
.section-product .section-product__images.have-youtube .section-product__image.active {
  display: block;
}
.section-product .section-product__images.have-youtube img.section-product__image {
  max-height: 275px;
  width: auto;
  margin: 0 auto;
}
.section-product .section-product__images-nav {
  width: 100%;
  display: flex;
  align-items: center;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.section-product .section-product__images-nav::-webkit-scrollbar {
  display: none;
}
@media only screen and (min-width: 768px) {
  .section-product .section-product__images-nav {
    width: 75px;
    height: 300px;
    flex-direction: column;
    overflow-y: auto;
    margin: 0 10px 0 0;
  }
}
@media only screen and (min-width: 992px) {
  .section-product .section-product__images-nav {
    width: 120px;
    height: 360px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-product .section-product__images-nav {
    width: 141px;
    height: 425px;
  }
}
.section-product .section-product__images-nav-item {
  width: 75px;
  height: 75px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  overflow: hidden;
  transition: all, 0.5s;
}
.section-product .section-product__images-nav-item:hover .section-product__nav-image {
  transform: scale(1.1);
}
.section-product .section-product__images-nav-item.active {
  border-left: 1px solid rgba(0, 0, 0, 0.5);
  border-right: 1px solid rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 768px) {
  .section-product .section-product__images-nav-item.active {
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-top: 1px solid #bfbfbf;
    border-bottom: 1px solid #bfbfbf;
  }
}
@media only screen and (min-width: 992px) {
  .section-product .section-product__images-nav-item {
    width: 120px;
    height: 120px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-product .section-product__images-nav-item {
    width: 141px;
    height: 141px;
  }
}
.section-product .section-product__nav-image {
  max-width: 95%;
  max-height: 95%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all, 0.3s;
}
.section-product .section-product__discont {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url(../../dist/assets/images/product-discont-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (min-width: 992px) {
  .section-product .section-product__discont {
    width: 54px;
    height: 54px;
  }
}
.section-product .section-product__images-cyrcles {
  display: none;
}
@media only screen and (min-width: 768px) {
  .section-product .section-product__images-cyrcles {
    display: none;
    margin-left: -130px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-product .section-product__images-cyrcles {
    margin-top: 32px;
    margin-left: -330px;
  }
}
.section-product .section-product__main-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 30px 0 28px;
}
.section-product .section-product__main-info span a {
  color: #1D3F46;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .section-product .section-product__main-info {
    padding-bottom: 0;
    margin-top: 0;
  }
}
@media only screen and (min-width: 992px) {
  .section-product .section-product__main-info {
    width: 528px;
  }
}
.section-product .section-product__main-info .availables {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.section-product .section-product__main-info .availables > div {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 35px;
  color: #CB0C74;
}
.section-product .section-product__main-info .availables .section-product__article_sku_mob div {
  display: inline-block;
}
.section-product .section-product__ttl {
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
  color: #DC71AA;
  text-transform: uppercase;
  margin: 0;
  display: inline;
}
@media only screen and (min-width: 768px) {
  .section-product .section-product__ttl {
    font-size: 30px;
    line-height: 35px;
  }
}
@media only screen and (min-width: 992px) {
  .section-product .section-product__ttl {
    font-size: 30px;
  }
}
.section-product .section-product__sub-ttl {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #1D3F46;
  margin-top: 5px;
}
.section-product .section-product__sub-ttl::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: #85C5CF;
  margin-top: 8px;
}
@media only screen and (min-width: 768px) {
  .section-product .section-product__sub-ttl::after {
    margin: 16px 0 1px;
  }
}
.section-product .section-product__ttl-brand {
  text-transform: uppercase;
  font-weight: 500;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .section-product .section-product__ttl-brand {
    font-size: 18px;
    margin-right: 3px;
  }
}
.section-product .section-product__ttl-brand a:hover {
  color: #6DBCC5;
}
@media only screen and (min-width: 768px) {
  .section-product .section-product__ttl-brand {
    font-size: 30px;
    line-height: 35px;
  }
}
@media only screen and (min-width: 992px) {
  .section-product .section-product__ttl-brand {
    font-size: 30px;
  }
}
.section-product .section-product__short-descr {
  font-size: 16px;
  font-weight: 300;
  line-height: 19px;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 9px;
}
@media only screen and (min-width: 768px) {
  .section-product .section-product__short-descr {
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
  }
}
@media only screen and (min-width: 992px) {
  .section-product .section-product__short-descr {
    margin-bottom: 21px;
  }
}
.section-product .section-product__sizes {
  width: 100%;
  margin: 5px 0 1px;
  padding-top: 10px;
  padding-bottom: 8px;
  border-top: 1px solid rgba(133, 197, 207, 0.4784313725);
  border-bottom: 1px solid rgba(133, 197, 207, 0.4784313725);
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-product .section-product__sizes fieldset.form-item {
  margin: 0;
}
.section-product .section-product__sizes legend {
  display: none;
}
@media only screen and (max-width: 425px) {
  .section-product .section-product__sizes {
    margin-top: 2px;
  }
}
@media only screen and (min-width: 992px) {
  .section-product .section-product__sizes {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.section-product .product--rendered-attribute .option {
  margin: 0 5px;
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
  color: #1D3F46;
  cursor: pointer;
  transition: all, 0.3s;
}
.section-product .product--rendered-attribute .option .name {
  color: #1D3F46 !important;
}
.section-product .product--rendered-attribute .option:hover {
  color: #DC71AA;
}
.section-product .product--rendered-attribute .option.active {
  font-weight: 500;
  color: #CB0C74;
}
.section-product .product--rendered-attribute.fieldgroup .form-item label.option {
  border: 0;
}
.section-product .product--rendered-attribute.fieldgroup .form-item label.option .name {
  font-size: 14px;
  line-height: 12px;
  color: #CB0C74;
  margin: 0 2px;
  cursor: pointer;
  transition: all, 0.3s;
}
.section-product .product--rendered-attribute__selected + label.option .name {
  font-weight: 500;
  color: #CB0C74 !important;
}
@media (max-width: 767px) {
  .section-product .product--rendered-attribute__selected + label.option .name {
    color: #1D3F46 !important;
    border-bottom: 1px solid #CB0C74;
  }
}
.section-product .section-product__article {
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 35px;
  /* identical to box height, or 233% */
  margin: 15px 0;
  color: #CB0C74;
}
@media only screen and (max-width: 425px) {
  .section-product .section-product__article {
    display: none;
  }
}
.section-product .section-product__showroom-qty {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 576px) {
  .section-product .section-product__showroom-qty {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.section-product .section-product__showroom {
  width: 170px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: start;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 35px;
  color: #CB0C74;
}
@media only screen and (max-width: 550px) {
  .section-product .section-product__showroom {
    left: 100%;
  }
}
.section-product .section-product__qty-txt {
  font-size: 14px;
  font-weight: 200;
  color: #1D3F46;
  margin-right: 10px;
}
@media only screen and (min-width: 768px) {
  .section-product .section-product__qty-txt {
    font-size: 15px;
  }
}
.section-product .section-product__buttons {
  display: flex;
  margin: 0 0 0 auto;
  border-bottom: 0.5px solid #85C5CF;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  padding: 0 7px 10px;
}
@media only screen and (min-width: 768px) {
  .section-product .section-product__buttons {
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
  }
}
.section-product .section-product__like {
  padding: 0;
  margin: 0 4px 0 0;
  min-width: auto;
}
@media only screen and (min-width: 768px) {
  .section-product .section-product__like {
    margin: 0 9px 0 0;
  }
}
.section-product .section-product__like:hover {
  background: rgb(161.593625498, 46.406374502, 96.1274900398);
}
.section-product .section-product__like input[type=submit] {
  border: 0;
  padding: 0;
  margin: 0;
  outline: none;
  width: 66px;
  height: 44px;
  color: #FFF;
  font-size: 0;
  background: #C73C78 url(../../dist/assets/images/icons/heart1.svg) no-repeat center;
  background-size: 24px 24px;
}
.section-product .section-product__like input[type=submit].inwishlist, .section-product .section-product__like input[type=submit]:hover {
  background: #CB0C74 url(../../dist/assets/images/icons/heart2.svg) no-repeat center;
}
@media (min-width: 992px) {
  .section-product .section-product__like input[type=submit] {
    width: 44px;
  }
}
.section-product .section-product__bag {
  padding: 0;
  min-width: auto;
}
.section-product .section-product__bag.btn-cyan {
  color: transparent;
}
.section-product .section-product__bag:hover {
  background: rgb(72.5, 171.25, 182.5);
}
.section-product .section-product__bag img {
  display: none;
}
.section-product .section-product__bag input[type=submit] {
  border: 0;
  margin: 0;
  outline: none;
  height: 44px;
  width: 125px;
  padding: 2px 54px 0 20px;
  color: #FFF;
  text-transform: uppercase;
  background: #6DBCC5 url(../../dist/assets/images/icons/ic-bag_white.svg) no-repeat 74px center;
}
.section-product .section-product__bag input[type=submit]:hover {
  background: #3D7B82 url(../../dist/assets/images/icons/ic-bag_white.svg) no-repeat 74px center;
}
.section-product .section-product__bonuses {
  font-size: 14px;
  font-weight: 400;
  color: #6DBCC5;
}
.section-product .section-product__socials {
  margin-top: 17px;
  display: flex;
  justify-content: flex-start;
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .section-product .section-product__socials {
    margin: 0;
    position: relative;
    top: -46px;
  }
}
@media (min-width: 992px) {
  .section-product .section-product__socials {
    top: 0;
  }
}
.section-product .section-product__socials .paradise-socials__item {
  margin: 0 15px 0 0;
}
.section-product .section-product__socials .paradise-socials__item img {
  width: 25px;
}
.section-product .section-product__socials-btn {
  cursor: pointer;
  margin: 2px 19px 0 0;
  transition: all, 0.3s;
}
@media (min-width: 992px) {
  .section-product .section-product__socials-btn {
    margin: -1px 0 0 0;
  }
}
.section-product .section-product__socials-btn:hover {
  transform: scale(1.2);
}
.section-product .section-product__socials-btn img {
  width: 23.5px;
}
.section-product .product-socials {
  opacity: 1;
  transition: all, 0.5s;
}
@media only screen and (min-width: 768px) {
  .section-product .product-socials {
    opacity: 0;
  }
}
.section-product .product-socials.active {
  opacity: 1;
}
.section-product .section-product-bottom {
  position: relative;
}
@media (min-width: 992px) {
  .section-product .section-product-bottom {
    width: calc(100% - 142px);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid rgba(133, 197, 207, 0.4784313725);
    margin-left: 142px;
  }
}
.section-product .section-product-bottom:after {
  content: url("../../dist/assets/images/tabs-after.svg");
  display: inline-block;
  position: absolute;
  top: -60px;
  right: calc(100% - 150px + 142px);
  opacity: 0.3;
}
.section-product .section-product-bottom__head {
  display: flex;
  white-space: nowrap;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  align-content: center;
  align-items: center;
}
@media (max-width: 374px) {
  .section-product .section-product-bottom__head {
    white-space: unset;
    text-align: center;
  }
}
@media (min-width: 376px) {
  .section-product .section-product-bottom__head {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .section-product .section-product-bottom__head {
    width: 180px;
    margin-right: 44px;
    display: inline-block;
    margin-top: 23px;
  }
}
.section-product .section-product-bottom__head:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #85C5CF;
  z-index: -1;
}
@media (min-width: 992px) {
  .section-product .section-product-bottom__head:after {
    content: unset;
  }
}
.section-product .section-product-bottom__head-tab {
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
  text-transform: uppercase;
  cursor: pointer;
  transition: all, 0.3s;
  width: -moz-max-content;
  width: max-content;
  margin: 10px 20px 10px 0;
}
@media (min-width: 376px) {
  .section-product .section-product-bottom__head-tab:last-child {
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {
  .section-product .section-product-bottom__head-tab::after {
    height: 2px;
    transform: translateY(0px);
  }
}
@media only screen and (min-width: 992px) {
  .section-product .section-product-bottom__head-tab {
    margin: 0 0 20px;
    padding-bottom: 0;
  }
  .section-product .section-product-bottom__head-tab::after {
    transform: translateY(0px);
    margin: -2px 0 0;
  }
}
.section-product .section-product-bottom__head-tab::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #C73C78;
  margin: 0 auto;
  transition: all, 0.3s;
}
@media only screen and (max-width: 768px) {
  .section-product .section-product-bottom__head-tab::after {
    margin-top: 1px;
  }
}
.section-product .section-product-bottom__head-tab:hover {
  color: #C73C78;
}
.section-product .section-product-bottom__head-tab.active {
  color: #C73C78;
}
.section-product .section-product-bottom__head-tab.active::after {
  width: 100%;
}
.section-product .section-product-bottom__content {
  padding-top: 17px;
}
@media only screen and (min-width: 768px) {
  .section-product .section-product-bottom__content {
    padding-top: 20px;
    width: 100%;
  }
}
.section-product .section-product-bottom__content-item {
  width: 100%;
  display: none;
}
.section-product .section-product-bottom__content-item.active {
  display: block;
}
.section-product .section-product-bottom__content-item h2 {
  margin-top: 0;
}
.section-product .section-product-bottom__content-item form {
  max-width: 460px;
}
.section-product .section-product-bottom__content-item form .form-item {
  margin-bottom: 15px;
}
.section-product .section-product-bottom__content-item form label {
  display: block;
  display: block;
  margin-bottom: 3px;
  font-weight: 300;
  font-size: 13px;
  line-height: 15px;
  color: #1D3F46;
}
.section-product .section-product-bottom__content-item form input {
  max-width: 100%;
  outline: none;
}
.section-product .section-product-bottom__content-item form input[type=submit] {
  width: 168px;
  font-size: 14px;
  padding: 0px 13px;
  color: white;
  background: #DC71AA;
  margin: 15px 0 0;
  height: 44px;
  line-height: 44px;
  border-radius: 0;
  text-transform: uppercase;
  transition: all, 0.3s;
  border: 0;
  cursor: pointer;
}
.section-product .section-product-bottom__content-item form textarea {
  width: 100%;
  height: 87px;
  padding: 10px;
  border: 0.5px solid #6DBCC5;
}
.section-product .section-product-bottom__content-txt {
  width: 100%;
  font-size: 13px;
  font-weight: 300;
  color: #1D3F46;
  line-height: 15px;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .section-product .section-product-bottom__content-txt {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
  }
}
.section-product .section-viewed-products__product-page {
  margin-top: 45px;
}
@media only screen and (min-width: 768px) {
  .section-product .section-viewed-products__product-page {
    margin-top: 67px;
  }
}
@media only screen and (max-width: 425px) {
  .section-product .product .product-actions {
    display: flex;
    flex-direction: row;
  }
}
@media only screen and (min-width: 768px) {
  .section-product .block-related-products {
    margin-left: 130px;
    margin-top: 67px;
  }
}

.path-cart .old-price {
  text-decoration: line-through;
  color: #C4C4C4 !important;
}
.path-cart .cart-wrapper .views-form form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 25px;
  padding-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .path-cart .cart-wrapper .views-form form {
    margin-top: 43px;
    padding-bottom: 75px;
  }
}
@media only screen and (min-width: 1200px) {
  .path-cart .cart-wrapper .views-form form {
    padding-bottom: 121px;
  }
}
.path-cart #footer_sidebar {
  width: 100%;
}
@media (min-width: 768px) {
  .path-cart #footer_sidebar {
    padding-left: 0;
    width: calc(100% - 380px);
    text-align: right;
  }
}
@media (min-width: 992px) {
  .path-cart #footer_sidebar {
    width: 100%;
    text-align: left;
  }
}
.path-cart #footer_sidebar .button,
.path-cart #footer_sidebar #share_shopping {
  display: inline-block;
  width: 360px;
  max-width: 100%;
  font-size: 14px;
  padding: 0px 33px;
  color: white;
  background-color: #6DBCC5;
  margin: 10px 0 0 0;
  height: 44px;
  line-height: 46px;
  border-radius: 0;
  text-transform: uppercase;
  transition: all, 0.3s;
  border: 0;
  outline: none;
  cursor: pointer;
  text-decoration: none;
}
@media (min-width: 768px) {
  .path-cart #footer_sidebar .button,
  .path-cart #footer_sidebar #share_shopping {
    width: auto;
  }
}
@media (min-width: 992px) {
  .path-cart #footer_sidebar .button,
  .path-cart #footer_sidebar #share_shopping {
    width: auto;
    margin: 0 10px;
  }
}
.path-cart #footer_sidebar .button:hover,
.path-cart #footer_sidebar #share_shopping:hover {
  background-color: #3D7B82;
}
.path-cart #footer_sidebar .button:not(.continue_shopping),
.path-cart #footer_sidebar #share_shopping:not(.continue_shopping) {
  text-align: center;
}
.path-cart #footer_sidebar .delivery-info {
  width: 300px;
  margin: 10px 0;
  max-width: 100%;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  color: #6DBCC5;
  padding: 6px 0;
}
@media (min-width: 768px) {
  .path-cart #footer_sidebar .delivery-info {
    float: right;
  }
}
@media (min-width: 768px) {
  .path-cart #footer_sidebar .delivery-info {
    margin: 0;
  }
}
.path-cart #footer_sidebar .block-related-products {
  margin-top: 0;
}
@media (min-width: 768px) {
  .path-cart #footer_sidebar .block-related-products {
    margin-top: 2rem;
  }
}
.path-cart .shopping__items-wrapper {
  width: 100%;
  height: auto;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 35px;
}
.path-cart .shopping__items-wrapper .shopping__items {
  overflow-x: hidden;
}
.path-cart .shopping__items-wrapper::-webkit-scrollbar {
  width: 3px;
  background: #D0D1D3;
}
.path-cart .shopping__items-wrapper::-webkit-scrollbar-thumb {
  background: #76BFC8;
}
@media only screen and (min-width: 768px) {
  .path-cart .shopping__items-wrapper {
    padding-right: 0;
  }
}
@media only screen and (min-width: 992px) {
  .path-cart .shopping__items-wrapper {
    width: calc(100% - 320px);
  }
}
@media only screen and (min-width: 1200px) {
  .path-cart .shopping__items-wrapper {
    width: 715px;
  }
}
.path-cart .shopping__item {
  display: flex;
  align-items: center;
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #85C5CF;
  margin-bottom: 14px;
  position: relative;
}
@media (min-width: 768px) {
  .path-cart .shopping__item {
    gap: 15px;
  }
}
@media (min-width: 1200px) {
  .path-cart .shopping__item {
    gap: 40px;
  }
}
.path-cart .shopping__item .views-field-unit-price__number .views-label,
.path-cart .shopping__item .percentage-off {
  display: none;
}
.path-cart .shopping__item .old-price {
  font-size: 14px;
  line-height: 16px;
  margin: 0 0 3px 0;
}
.path-cart .shopping__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.path-cart .shopping__item .price-with-discount {
  display: block;
}
.path-cart .shopping__item .shopping__item-counter {
  position: relative;
}
.path-cart .shopping__item .views-label-edit-quantity {
  font-weight: 300;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  color: #1D3F46;
  display: block;
  width: 100%;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
}
@media only screen and (max-width: 767px) {
  .path-cart .shopping__item .views-label-edit-quantity {
    display: none;
  }
}
.path-cart .shopping__item .form-item {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .path-cart .shopping__item {
    padding-bottom: 5px;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: inherit;
  }
}
@media only screen and (min-width: 768px) {
  .path-cart .shopping__item {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}
.path-cart .shopping__item-image {
  min-width: 100px;
  width: 100px;
  height: 100px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .path-cart .shopping__item-image {
    margin: 0 15px 0 0;
  }
}
.path-cart .shopping__item-image .field-content, .path-cart .shopping__item-image a {
  width: 100%;
  height: 100%;
}
.path-cart .shopping__item-image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all, 0.3s;
}
.path-cart .shopping__item-image:hover img {
  transform: scale(1.15);
}
.path-cart .views-field-title {
  flex: 1 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  color: #1D3F46;
  text-align: left;
  min-width: 155px;
}
@media (min-width: 400px) {
  .path-cart .views-field-title {
    min-width: calc(100% - 115px);
  }
}
@media (min-width: 768px) {
  .path-cart .views-field-title {
    min-width: 370px;
  }
}
@media (min-width: 992px) {
  .path-cart .views-field-title {
    min-width: 210px;
  }
}
@media (min-width: 1200px) {
  .path-cart .views-field-title {
    margin: 0 0 0 -20px;
  }
}
.path-cart .shopping__item-description {
  width: 220px;
}
@media only screen and (max-width: 767px) {
  .path-cart .shopping__item-description {
    border-bottom: 1px solid #76bfc8;
    width: calc(100% - 120px);
    padding: 0 20px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .path-cart .shopping__item-description {
    width: 220px;
  }
}
.path-cart .shopping__item-title a {
  font-size: 13px;
  font-weight: 300;
  color: #1D3F46;
  margin-top: 5px;
  text-decoration: none;
  display: block;
  line-height: 16px;
  height: 64px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.path-cart .shopping__item-title a:hover {
  color: #CB0C74;
}
@media only screen and (max-width: 767px) {
  .path-cart .shopping__item-title a {
    text-align: left;
  }
}
@media only screen and (min-width: 768px) {
  .path-cart .shopping__item-title a {
    margin-top: 0;
  }
}
.path-cart .shopping__item-other {
  font-size: 13px;
  font-weight: 300;
  color: #1D3F46;
  margin: 0;
  margin-top: 5px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.path-cart .shopping__item-other .shopping__item-volume {
  font-size: 14px;
  line-height: 18px;
  color: #1D3F46;
  font-weight: 400;
  margin: 0 5px 0 0;
}
.path-cart .shopping__item-other .shopping__item-code {
  font-size: 13px;
  line-height: 18px;
  color: #1D3F46;
  font-weight: 400;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.path-cart .shopping__item-code {
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
  margin: 0;
}
.path-cart .shopping__item-price {
  font-size: 14px;
  font-weight: 400;
  color: #1D3F46;
}
.path-cart .shopping__item-price p {
  margin: 0;
  margin-top: 13px;
}
@media only screen and (max-width: 767px) {
  .path-cart .shopping__item-price {
    padding-left: 115px;
    font-size: 16px;
    margin: 0 15px 0 0;
  }
}
@media only screen and (max-width: 500px) {
  .path-cart .shopping__item-price {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) {
  .path-cart .shopping__item-price p {
    margin: 0;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .path-cart .shopping__item-counter {
    max-width: 33%;
  }
}
.path-cart .shopping__item-counter .field-content {
  display: flex;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 576px) {
  .path-cart .shopping__item-counter .field-content {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .path-cart .shopping__item-counter .field-content {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1200px) {
  .path-cart .shopping__item-counter .field-content {
    margin-bottom: 2px;
  }
}
.path-cart .edit_quantity_minus {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .path-cart .edit_quantity_minus {
    width: 24px;
    height: 24px;
    justify-content: center;
    border: 1px solid #6DBCC5;
  }
}
.path-cart .edit_quantity_minus::after {
  content: "";
  display: block;
  width: 15px;
  height: 1.5px;
  background: #1D3F46;
}
@media only screen and (max-width: 767px) {
  .path-cart .edit_quantity_minus::after {
    width: 10px;
    height: 1px;
  }
}
.path-cart .edit_quantity_plus {
  width: 15px;
  height: 15px;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .path-cart .edit_quantity_plus {
    width: 24px;
    height: 24px;
    justify-content: center;
    border: 1px solid #6DBCC5;
  }
}
.path-cart .edit_quantity_plus::before, .path-cart .edit_quantity_plus::after {
  content: "";
  display: block;
  background: #1D3F46;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.path-cart .edit_quantity_plus::before {
  width: 13px;
  height: 1.5px;
}
@media only screen and (max-width: 767px) {
  .path-cart .edit_quantity_plus::before {
    width: 10px;
    height: 1px;
  }
}
.path-cart .edit_quantity_plus::after {
  width: 1.5px;
  height: 13px;
}
@media only screen and (max-width: 767px) {
  .path-cart .edit_quantity_plus::after {
    width: 1px;
    height: 10px;
  }
}
.path-cart .shopping__item-counter .form-item input {
  width: 55px;
  height: 20px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  outline: none;
  margin: 0 7px;
  font-size: 16px;
  font-weight: 400;
  color: #1D3F46;
}
@media only screen and (max-width: 767px) {
  .path-cart .shopping__item-counter .form-item input {
    margin: 0 5px;
  }
}
@media only screen and (max-width: 500px) {
  .path-cart .shopping__item-counter .form-item input {
    margin: 0;
  }
}
.path-cart .shopping__item-counter .form-item input::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #1D3F46;
}
.path-cart .shopping__item-counter .form-item input::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #1D3F46;
}
.path-cart .cart-action .field-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .path-cart .cart-action .field-content {
    flex-direction: column;
  }
}
.path-cart .move-cart-item {
  color: transparent;
  border: none;
  background-color: transparent;
  background-image: url(../../dist/assets/images/move-cart-item.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 26px;
  height: 25px;
  cursor: pointer;
  transition: all, 0.3s;
}
.path-cart .move-cart-item:hover {
  opacity: 0.6;
}
.path-cart .move-cart-item.in-wishlist {
  background-image: url(../../dist/assets/images/move-cart-item-active.svg);
}
.path-cart .delete-order-item {
  color: transparent;
  border: none;
  background-color: transparent;
  background-image: url(../../dist/assets/images/remove-icon.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 24px;
  margin-left: 15px;
  cursor: pointer;
  transition: all, 0.3s;
}
.path-cart .delete-order-item:hover {
  opacity: 0.6;
}
@media only screen and (min-width: 768px) {
  .path-cart .delete-order-item {
    margin: 10px;
  }
}
.path-cart .shopping__details-wrapper {
  width: 100%;
  padding: 15px;
  background: rgba(109, 188, 197, 0.5);
  margin-bottom: 30px;
}
.path-cart .shopping__details-wrapper .order-total-line-label {
  margin-right: 10px;
}
@media only screen and (min-width: 1200px) {
  .path-cart .shopping__details-wrapper {
    margin-bottom: 50px;
    width: 30%;
  }
}
.path-cart .shopping__details-title {
  font-size: 16px;
  font-weight: 400;
  color: #1D3F46;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 20px;
}
.path-cart .order-total-line {
  padding: 5px 0;
  text-align: left;
  font-size: 15px;
  line-height: 19px;
  font-weight: 400;
  color: #1D3F46;
}
.path-cart .shopping__details-text {
  font-size: 14px;
  font-weight: 300;
  color: #1D3F46;
}
.path-cart .path-cart .form-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .path-cart .path-cart .form-actions {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1200px) {
  .path-cart .path-cart .form-actions {
    margin-top: 65px;
  }
}
.path-cart .cart-wrapper #left_sidebar {
  overflow: hidden;
  max-width: 100%;
}
@media (max-width: 767px) {
  .path-cart .cart-wrapper #left_sidebar {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .path-cart .cart-wrapper #left_sidebar {
    width: 360px;
  }
}
@media (min-width: 992px) {
  .path-cart .cart-wrapper #left_sidebar {
    width: 300px;
    overflow: hidden;
    padding: 12px 20px 0 20px;
    border: 0.5px solid #6DBCC5;
  }
}
@media (min-width: 1200px) {
  .path-cart .cart-wrapper #left_sidebar {
    width: calc(100% - 715px - 25px);
    border: 0.5px solid #6DBCC5;
    padding: 12px 35px 0 35px;
  }
}
.path-cart .cart-wrapper #left_sidebar h3 {
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  font-weight: 400;
  color: #1D3F46;
  text-align: center;
  display: none;
}
@media (min-width: 768px) {
  .path-cart .cart-wrapper #left_sidebar h3 {
    display: block;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .path-cart .cart-wrapper #left_sidebar h3 {
    text-align: center;
  }
}
.path-cart .cart-wrapper #left_sidebar .form-item {
  margin: 0;
}
.path-cart .cart-wrapper #left_sidebar #edit-actions {
  margin: 1px -20px;
  width: calc(100% + 20px + 20px);
}
@media (max-width: 767px) {
  .path-cart .cart-wrapper #left_sidebar #edit-actions {
    max-width: 380px;
  }
}
@media (min-width: 1200px) {
  .path-cart .cart-wrapper #left_sidebar #edit-actions {
    margin: 0px -35px;
    width: calc(100% + 35px + 35px);
  }
}
.path-cart .cart-wrapper #left_sidebar #edit-actions input[type=submit] {
  width: 100% !important;
  display: inline-block;
  font-size: 14px;
  padding: 0px 33px;
  color: #fff;
  background-color: #DC71AA;
  height: 44px;
  line-height: 46px;
  border-radius: 0;
  text-transform: uppercase;
  transition: all, 0.3s;
  border: 0;
  outline: none;
  cursor: pointer;
  text-decoration: none;
}
.path-cart .cart-wrapper #left_sidebar #edit-actions input[type=submit]:hover {
  background-color: #C73C78;
}
.path-cart .cart-wrapper #left_sidebar .shopping__details-wrapper {
  padding: 0;
  margin: 0;
  background: transparent;
  width: 100%;
}
.path-cart .cart-wrapper #left_sidebar .shopping__details-wrapper .order-total-line-label {
  font-size: 16px;
  line-height: 19px;
  color: #1D3F46;
  font-weight: 400;
}
@media (min-width: 992px) {
  .path-cart .cart-wrapper #left_sidebar .shopping__details-wrapper .order-total-line-label {
    margin: 0;
  }
}
.path-cart .cart-wrapper #left_sidebar .shopping__details-wrapper .order-total-line__total .order-total-line-label {
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 992px) {
  .path-cart .cart-wrapper #left_sidebar .shopping__details-wrapper .order-total-line__total .order-total-line-label {
    font-weight: 400;
    text-transform: unset;
    margin: 0 6px 0 0;
  }
}
.path-cart .cart-wrapper #left_sidebar .shopping__details-wrapper .order-total-line-value {
  display: inline-block;
  text-align: right;
  font-weight: 500;
  padding-left: 12px;
  width: auto;
}
@media (min-width: 992px) {
  .path-cart .cart-wrapper #left_sidebar .shopping__details-wrapper .order-total-line-value {
    padding: 0;
    font-weight: 300;
    width: 80px;
  }
}
.path-cart .cart-wrapper #left_sidebar .shopping__details-wrapper .order-total-line__total .order-total-line-value {
  text-transform: uppercase;
  color: #CB0C74;
  font-weight: 700;
}
@media (min-width: 992px) {
  .path-cart .cart-wrapper #left_sidebar .shopping__details-wrapper .order-total-line__total .order-total-line-value {
    font-weight: 300;
    width: auto;
    color: #1D3F46;
  }
}
.path-cart .cart-wrapper #left_sidebar #edit-coupon-redemption {
  display: flex;
  align-items: flex-end;
  max-width: 360px;
}
.path-cart .cart-wrapper #left_sidebar #edit-coupon-redemption label {
  display: none;
}
.path-cart .cart-wrapper #left_sidebar #edit-coupon-redemption input {
  width: 100%;
  max-width: 100%;
  height: 44px;
  padding: 0;
  padding: 0 0 0 15px;
  outline: none;
  border: none;
  border-bottom: 1px solid #6DBCC5;
  border-top: 1px solid #6DBCC5;
  border-left: 1px solid #6DBCC5;
  font-weight: 300;
  font-size: 13px;
  line-height: 15px;
  color: #DC71AA;
  outline: none;
}
.path-cart .cart-wrapper #left_sidebar #edit-coupon-redemption input::-webkit-input-placeholder {
  color: #DC71AA;
}
.path-cart .cart-wrapper #left_sidebar #edit-coupon-redemption input::-moz-placeholder {
  color: #DC71AA;
}
.path-cart .cart-wrapper #left_sidebar #edit-coupon-redemption input:-ms-input-placeholder {
  color: #DC71AA;
}
.path-cart .cart-wrapper #left_sidebar #edit-coupon-redemption input:-moz-placeholder {
  color: #DC71AA;
}
@media (min-width: 992px) {
  .path-cart .cart-wrapper #left_sidebar #edit-coupon-redemption input {
    border-top: 0;
    border-left: 0;
    padding: 25px 0 0;
  }
}
.path-cart .cart-wrapper #left_sidebar #edit-coupon-redemption input[type=submit] {
  width: 100%;
  font-size: 14px;
  padding: 0px 13px;
  color: white;
  background: #DC71AA;
  margin: 10px;
  margin-left: 0;
  height: 44px;
  line-height: 44px;
  border-radius: 0;
  text-transform: uppercase;
  transition: all, 0.3s;
  border: 0;
  outline: none !important;
  cursor: pointer;
  margin: 0;
  background: #6DBCC5 !important;
}
@media (min-width: 992px) {
  .path-cart .cart-wrapper #left_sidebar #edit-coupon-redemption input[type=submit] {
    width: auto;
  }
}
.path-cart .cart-wrapper #left_sidebar #edit-coupon-redemption input[type=submit]:hover {
  background-color: #3D7B82 !important;
}
.path-cart .cart-wrapper #left_sidebar #edit-coupon-redemption tr {
  border: solid 1px #6DBCC5;
}
.path-cart .cart-wrapper #left_sidebar #edit-coupon-redemption td {
  padding: 0 15px;
  text-align: center;
}
.path-cart .cart-wrapper #left_sidebar #edit-coupon-redemption td:last-child {
  padding: 0 0 0 15px;
  text-align: right;
}
.path-cart .cart-wrapper #left_sidebar #edit-coupon-redemption .coupon-redemption-form__coupons {
  width: 100%;
}
.path-cart .cart-wrapper .shopping__details-wrapper {
  width: 100%;
}
.path-cart a {
  outline: none;
}
.path-cart input {
  outline: none !important;
}
.path-cart .cart-modal {
  padding: 10px 10px !important;
  z-index: 100;
}
.path-cart .cart-modal td {
  background-color: #fff !important;
}
.path-cart .cart-modal .ui-dialog-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 25px;
  border-bottom: 0.5px solid #6DBCC5;
}
.path-cart .cart-modal .ui-dialog-titlebar span {
  padding-left: 38px;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  color: #1D3F46;
  padding: 15px 25px;
}
.path-cart .cart-modal .ui-dialog-titlebar .ui-dialog-titlebar-close {
  position: static;
  width: 20px;
  height: 20px;
  font-size: 0;
  border: none;
  background: url(../../dist/assets/images/icons/account__exit-icon.svg) center/contain no-repeat;
  margin: 0;
}
.path-cart .cart-modal .ui-dialog-titlebar .ui-dialog-titlebar-close span {
  display: none;
  font-size: 0;
}
.path-cart .cart-modal .list_product {
  margin: 0 !important;
}
.path-cart .cart-modal .ui-dialog-content {
  border-top: 1px solid #6DBCC5;
}
.path-cart .cart-modal .views-form {
  max-height: 279px;
  overflow-y: scroll;
}
.path-cart .cart-modal .views-form::-webkit-scrollbar {
  width: 3px;
}
.path-cart .cart-modal .views-form::-webkit-scrollbar-track {
  width: 3px;
  background: #D0D1D3;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.path-cart .cart-modal .views-form::-webkit-scrollbar-thumb {
  background-color: #85C5CF;
}
.path-cart .cart-modal .views-form .views-field-field-images img {
  width: 110px;
  height: 110px;
}
.path-cart .cart-modal .views-form .views-field-order-item-id > div {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
}
.path-cart .cart-modal .views-form .views-field-order-item-id > div span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  font-weight: 400;
  color: #1D3F46;
}
.path-cart .cart-modal .views-form .views-field-order-item-id a {
  font-size: 13px;
  line-height: 15px;
  color: #1D3F46;
  font-weight: 300;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease-in-out;
}
.path-cart .cart-modal .views-form .views-field-order-item-id a:hover {
  color: #DC71AA;
}
.path-cart .cart-modal .views-form .views-field-remove-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 26px;
}
.path-cart .cart-modal .views-form .views-field-remove-button input {
  margin: 0;
  outline: none;
}
.path-cart .cart-modal .views-form .views-field-remove-button input:first-child {
  margin-bottom: 20px;
}
.path-cart .cart-modal .ui-dialog-content {
  padding-left: 0;
  padding-right: 0;
}
.path-cart .cart-modal .shopping__details-wrapper {
  width: 100% !important;
  border-top: 0.5px solid #6DBCC5;
  background: none;
  margin-bottom: 22px;
  margin-top: 10px;
}
.path-cart .cart-modal .shopping__details-wrapper .shopping__details > div {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  /* identical to box height */
  text-align: center;
  text-transform: uppercase;
  color: #1D3F46;
}
.path-cart .cart-modal .shopping__details-wrapper .shopping__details > div .order-total-line-label {
  color: #1D3F46;
}
.path-cart .cart-modal .shopping__details-wrapper .shopping__details > div span {
  color: #CB0C74;
  font-weight: 400;
}
.path-cart .cart-modal .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.path-cart .cart-modal .box img {
  width: 40%;
}
.path-cart .cart-modal .box .btns {
  width: 60%;
  flex-direction: column;
}
.path-cart .cart-modal .box .btns .btn {
  margin: 0 !important;
  margin-bottom: 10px !important;
}
@media only screen and (max-width: 525px) {
  .path-cart .addcart {
    background-position: center center !important;
  }
}

.empty-cart__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .empty-cart__content {
    margin-top: 50px;
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .empty-cart__content {
    margin-top: 87px;
    padding-bottom: 87px;
  }
}

.empty-cart__ttl {
  display: flex;
  align-items: center;
  font-size: 25px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .empty-cart__ttl {
    font-size: 60px;
  }
}
@media (min-width: 992px) {
  .empty-cart__ttl {
    font-size: 100px;
  }
}

.empty-cart__ttl-txt-cyan {
  color: #6DBCC5;
  text-transform: uppercase;
}

.empty-cart__ttl-txt-pink {
  color: #DC71AA;
  margin-left: 7px;
}
@media only screen and (min-width: 768px) {
  .empty-cart__ttl-txt-pink {
    margin-left: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .empty-cart__ttl-txt-pink {
    margin-left: 33px;
  }
}

.empty-cart__ttl-image {
  width: 50px;
  margin: 0 5px;
}
@media only screen and (min-width: 768px) {
  .empty-cart__ttl-image {
    width: 70px;
  }
}
@media only screen and (min-width: 992px) {
  .empty-cart__ttl-image {
    width: 126px;
  }
}

.empty-cart__txt {
  max-width: 469px;
  margin-top: 25px;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: #1D3F46;
}
@media (min-width: 768px) {
  .empty-cart__txt {
    margin-top: 35px;
    margin-bottom: 30px;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .empty-cart__txt {
    margin-top: 53px;
    margin-bottom: 44px;
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .empty-cart__btn {
    min-width: 295px;
    min-height: 44px;
  }
}

.error-search__container {
  z-index: 2;
}

.error-search__content {
  max-width: 469px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .error-search__content {
    margin-top: 50px;
    padding-bottom: 75px;
  }
}
@media (min-width: 992px) {
  .error-search__content {
    margin-top: 75px;
    padding-bottom: 190px;
  }
}

.error-search__content-ttl {
  font-weight: 400;
  font-size: 18px;
  color: #1D3F46;
}
@media (min-width: 768px) {
  .error-search__content-ttl {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .error-search__content-ttl {
    font-size: 25px;
  }
}

.error-search__content-txt {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  color: #1D3F46;
  margin-top: 25px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .error-search__content-txt {
    margin-top: 35px;
    margin-bottom: 36px;
  }
}
@media (min-width: 992px) {
  .error-search__content-txt {
    font-size: 18px;
    margin-top: 45px;
    margin-bottom: 46px;
  }
}

@media (min-width: 992px) {
  .error-search__content-btn {
    min-width: 295px;
    min-height: 44px;
  }
}

.error-search__cyrcle-1 {
  display: none;
}
@media only screen and (min-width: 992px) {
  .error-search__cyrcle-1 {
    display: block;
    width: 398px;
    position: absolute;
    left: 36px;
    bottom: 115px;
    z-index: 1;
  }
}

.error-search__cyrcle-2 {
  display: none;
}
@media only screen and (min-width: 992px) {
  .error-search__cyrcle-2 {
    display: block;
    width: 520px;
    position: absolute;
    right: 74px;
    bottom: 90px;
    z-index: 1;
  }
}

.error-search__slider-wrap {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .error-search__slider-wrap {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .error-search__slider-wrap {
    margin-top: 96px;
    margin-bottom: 64px;
  }
}

.error-search__cyrcle-3 {
  display: none;
}
@media only screen and (min-width: 992px) {
  .error-search__cyrcle-3 {
    display: block;
    position: absolute;
    bottom: -55px;
    left: 0;
    z-index: 1;
    max-width: 195px;
    height: auto;
  }
}

.path-search .catalog-content .region.region-content {
  overflow: unset;
}

.serch-false {
  text-align: center;
  min-height: 350px;
  position: relative;
  margin: 0 0 100px;
  top: 100px;
}
.serch-false h3 {
  font-size: 25px;
  font-weight: normal;
  color: #1D3F46;
}
.serch-false > div {
  font-size: 18px;
  font-weight: normal;
  color: #1D3F46;
  max-width: 470px;
  margin: 0 auto;
}
.serch-false > div a {
  display: block;
  font-size: 14px;
  padding: 0px 13px;
  color: white;
  background: #DC71AA;
  height: 44px;
  line-height: 44px;
  border-radius: 0;
  text-transform: uppercase;
  transition: all, 0.3s;
  border: 0;
  text-decoration: none;
  width: 240px;
  margin: 40px auto;
}
.serch-false .section-404-cyrcle_03,
.serch-false .section-404-cyrcle_04 {
  width: auto;
}
.serch-false .section-404-cyrcle_03 {
  left: -60px;
}

.path-wishlist h1,
.path-wishlist .title-h1 {
  padding: 5px 0 17px;
}
.path-wishlist .section-catalog {
  background-image: url(../../dist/assets/images/b31small.png);
  background-repeat: no-repeat;
  background-position: left calc((100% - 1064px) / 2 + 1064px - 64px) top 23px;
}
.path-wishlist .section-catalog .catalog-content-wrap {
  background-image: url(../../dist/assets/images/r31big.png), url(../../dist/assets/images/r31small.png), url(../../dist/assets/images/b31big.png);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: left calc((100% - 1064px) / 2 + 1064px - 40px) top 152px, left calc((100% - 1064px) / 2 + 1064px - 185px) top 331px, left calc((100% - 1064px) / 2 + 1064px - 60px) top 48px;
}

.wishlist-user-form {
  max-width: 900px;
}
@media only screen and (min-width: 992px) {
  .wishlist-user-form {
    padding: 9px 0 0;
  }
}
.wishlist-user-form .wishlist-button {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  padding: 0px 13px;
  color: #fff;
  margin: 0;
  height: 44px;
  line-height: 46px;
  border-radius: 0;
  text-transform: uppercase;
  transition: all, 0.3s;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #6DBCC5 url(../../dist/assets/images/icons/ic-share_2.svg) no-repeat right 10px center;
}
@media only screen and (min-width: 576px) {
  .wishlist-user-form .wishlist-button {
    width: 150px;
    text-align: left;
  }
}
@media only screen and (min-width: 576px) {
  .wishlist-user-form .wishlist-items {
    display: flex;
    flex-wrap: wrap;
  }
}
.wishlist-user-form .wishlist-item {
  border-bottom: 0.5px solid rgba(133, 197, 207, 0.55);
  padding: 15px 0 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 576px) {
  .wishlist-user-form .wishlist-item {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .wishlist-user-form .wishlist-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .wishlist-user-form .wishlist-item {
    padding: 12px 0 16px;
    height: 128px;
    align-items: center;
  }
}
.wishlist-user-form .wishlist-item:last-child {
  border: none;
}
.wishlist-user-form .wishlist-item > div:first-child {
  width: 100px;
  margin: 0 20px 0 0;
}
.wishlist-user-form .wishlist-item > div:first-child img {
  max-width: 100px;
  height: auto;
}
.wishlist-user-form .wishlist-item .section-product__regular-price {
  text-decoration: none;
  color: #1D3F46;
  font-size: 18px;
}
.wishlist-user-form .wishlist-item .section-product__regular-price .price-with-discount {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 992px) {
  .wishlist-user-form .wishlist-item .section-product__regular-price .price-with-discount {
    padding: 8px 0 0;
  }
}
.wishlist-user-form .wishlist-item .section-product__regular-price .old-price {
  font-size: 18px;
  line-height: 35px;
  color: #C4C4C4;
  text-decoration-line: line-through;
  margin: 0 5px 0 0;
}
@media (min-width: 768px) {
  .wishlist-user-form .wishlist-item .section-product__regular-price .old-price {
    order: 2;
  }
}
@media (min-width: 768px) {
  .wishlist-user-form .wishlist-item .section-product__regular-price .old-price {
    margin: 0;
  }
}
.wishlist-user-form .wishlist-item .section-product__regular-price .percentage-off {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url(../../dist/assets/images/product-discont-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  position: absolute;
  top: 12px;
  left: 60px;
}
.wishlist-user-form .wishlist-item .wishlist-item__details {
  display: none;
}
.wishlist-user-form .wishlist-item .wishlist-item__entity {
  flex: 1;
}
@media (min-width: 768px) {
  .wishlist-user-form .wishlist-item .wishlist-item__entity {
    margin: 9px 0 0;
  }
}
@media (min-width: 992px) {
  .wishlist-user-form .wishlist-item .wishlist-item__entity {
    margin: 23px 0 0px;
    line-height: 15px;
  }
}
.wishlist-user-form .wishlist-item .wishlist-item__entity .product_id a {
  font-weight: bold;
  font-size: 13px;
  color: #1D3F46;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .wishlist-user-form .wishlist-item .wishlist-item__entity .product_id + div {
    height: 35px;
    width: 434px;
    position: relative;
  }
}
.wishlist-user-form .wishlist-item .wishlist-item__entity .product_id + div div {
  display: inline-block;
  font-size: 13px;
  line-height: 35px;
  color: #DC71AA;
}
.wishlist-user-form .wishlist-item .wishlist-item__entity + div {
  width: calc(100% - 120px);
  margin: 0 0 0 auto;
}
@media (min-width: 768px) {
  .wishlist-user-form .wishlist-item .wishlist-item__entity + div {
    width: 100px;
    margin: 12px 10px 0;
  }
}
@media (min-width: 992px) {
  .wishlist-user-form .wishlist-item .wishlist-item__entity + div {
    margin: 0 20px 0;
  }
}
@media (min-width: 992px) {
  .wishlist-user-form .wishlist-item .wishlist-item__actions {
    max-width: 215px;
    margin-left: auto;
  }
}
.wishlist-user-form .wishlist-item .wishlist-item__actions div.form-wrapper {
  clear: both;
  display: flex;
}
.wishlist-user-form .wishlist-item .wishlist-item__actions div.form-wrapper input {
  margin-left: 0;
}
.wishlist-user-form .wishlist-item .wishlist-item__actions div.form-wrapper input[id*=add-to-cart] {
  height: 44px;
  background: #6DBCC5;
  transition: 0.3s;
  font-size: 14px;
  line-height: 16px;
  order: 2;
}
.wishlist-user-form .wishlist-item .wishlist-item__actions div.form-wrapper input[id*=add-to-cart]:hover {
  background: #3D7B82;
}
.wishlist-user-form .wishlist-item .wishlist-item__actions div.form-wrapper input[value=Remove] {
  color: transparent;
  border: none;
  background-color: transparent;
  background-image: url(../../dist/assets/images/remove-icon.svg);
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
  transition: opacity 0.3s;
  opacity: 1;
  width: 98px;
  order: 0;
  margin: 0 0 0 7px;
}
@media (min-width: 768px) {
  .wishlist-user-form .wishlist-item .wishlist-item__actions div.form-wrapper input[value=Remove] {
    order: 4;
    margin: 0;
    padding: 0;
    width: 40px;
  }
}
@media (min-width: 992px) {
  .wishlist-user-form .wishlist-item .wishlist-item__actions div.form-wrapper input[value=Remove] {
    margin: 0 36px 0 -5px;
  }
}
.wishlist-user-form .wishlist-item .wishlist-item__actions div.form-wrapper input[value=Remove]:hover {
  opacity: 0.6;
}
@media (min-width: 576px) {
  .wishlist-user-form div[data-drupal-selector=edit-header] {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .wishlist-user-form div[data-drupal-selector=edit-header] {
    margin: 0 0 0 26px;
  }
}
.wishlist-user-form div[data-drupal-selector=edit-header] input[data-drupal-selector=edit-header-add-all-to-cart] {
  background: #DC71AA;
  transition: 0.3s;
  margin: 10px 0;
}
@media (min-width: 576px) {
  .wishlist-user-form div[data-drupal-selector=edit-header] input[data-drupal-selector=edit-header-add-all-to-cart] {
    max-width: 295px;
    margin: 10px;
  }
}
.wishlist-user-form div[data-drupal-selector=edit-header] input[data-drupal-selector=edit-header-add-all-to-cart]:hover {
  background: #CB0C74;
}

.order-info {
  display: flex;
  justify-content: space-between;
}
.order-info .order-num > div, .order-info .order-state > div {
  display: flex;
}
.order-info .order-num > div div:first-child, .order-info .order-state > div div:first-child {
  margin-right: 10px;
}
.order-info .order-num > div div:first-child:after, .order-info .order-state > div div:first-child:after {
  content: ":";
}

.path-user .shopping__items-wrapper {
  margin-top: 40px;
  width: 100%;
  border-top: 1px solid #85C5CF;
}
.path-user .user-pass-reset {
  font-size: 14px;
  margin: 2em 20px;
}
.path-user .user-pass-reset em {
  font-weight: bold;
}
.path-user .user-pass-reset .form-actions input[type=submit] {
  max-width: 320px;
}

.user-logged-in.path-user #block-clean-local-tasks .tabs {
  margin: 45px 0 40px;
  justify-content: flex-start;
  border-bottom: solid 1px #85C5CF;
  font-size: 14px;
  text-transform: uppercase;
}
.user-logged-in.path-user #block-clean-local-tasks .tabs > li {
  margin-right: 35px;
}
.user-logged-in.path-user #block-clean-local-tasks .tabs > li a {
  color: #1D3F46;
  font-size: 14px;
  border-bottom: none;
  padding: 2px 11px 8px 0;
}
.user-logged-in.path-user #block-clean-local-tasks .tabs > li a.is-active, .user-logged-in.path-user #block-clean-local-tasks .tabs > li a:hover {
  background: none;
  color: #cb0c74 !important;
  border-bottom: solid 2px #cb0c74;
}
.user-logged-in .user-form {
  max-width: 320px;
}
.user-logged-in .user-form label {
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 10px;
}
.user-logged-in .user-form .description {
  margin: 5px 0 10px 10px;
  color: rgba(29, 63, 70, 0.7803921569);
}
.user-logged-in .user-form .form-item {
  margin: 1em 0 2em;
}
.user-logged-in .user-form .form-no-label .form-item {
  margin: 1em 0;
}
.user-logged-in .user-form #edit-pass--description {
  font-weight: bold;
  font-size: 16px;
  color: #1D3F46;
  order: -1;
  text-transform: uppercase;
  text-align: center;
}
.user-logged-in .user-form .form-item-current-pass a {
  color: #cb0c74;
}
.user-logged-in .user-form .js-form-type-password-confirm {
  display: flex;
  flex-direction: column;
}
.user-logged-in .user-form .form-actions {
  order: 4;
}
.user-logged-in .user-form .form-actions input[type=submit] {
  max-width: 320px;
}

.path-checkout .checkout-pane.form-item {
  margin: 0;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow {
  max-width: 1094px;
  margin: 0 auto;
  padding: 0 15px;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .title-section {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  color: #1D3F46;
  text-align: center;
  margin: 26px 0;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form {
    margin-bottom: 90px;
  }
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .column {
  -ms-flex-preferred-size: 100%;
  width: 100%;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .column {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .column {
    width: 33%;
    padding: 0 10px;
  }
}
@media (min-width: 1200px) {
  .path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .column {
    padding-right: 25px;
  }
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .column:first-child {
  padding-left: 0;
}
@media (min-width: 768px) {
  .path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .column:first-child {
    padding-right: 25px;
  }
}
@media (min-width: 992px) {
  .path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .column:first-child {
    padding-right: 10px;
  }
}
@media (min-width: 1200px) {
  .path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .column:first-child {
    padding-right: 25px;
  }
}
@media (min-width: 1200px) {
  .path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .column:nth-child(3) {
    padding-right: 0;
  }
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .layout-region-checkout-footer {
  width: 100%;
  padding: 0;
  margin: 35px 0 0;
}
@media (min-width: 768px) {
  .path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .layout-region-checkout-footer input {
    width: 245px;
  }
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-order-summary {
  background: rgba(109, 188, 197, 0.5);
  padding: 40px 25px;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-order-summary #edit-sidebar-order-summary-summary header p {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px 0 16px 0;
  align-items: baseline;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-order-summary #edit-sidebar-order-summary-summary header p label {
  text-transform: uppercase;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-order-summary #edit-sidebar-order-summary-summary header p a {
  display: block;
  color: #CB0C74;
  font-size: 13px;
  text-decoration: underline;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-order-summary #edit-sidebar-order-summary-summary .shopping__details {
  padding: 15px 0 0 0;
  margin: 0;
  width: 100%;
  border-top: 0.5px solid #6DBCC5;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-order-summary #edit-sidebar-order-summary-summary .shopping__details .order-total-line {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  padding: 5px 0;
  text-align: left;
  font-size: 15px;
  line-height: 19px;
  font-weight: 400;
  color: #1D3F46;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-order-summary #edit-sidebar-order-summary-summary .shopping__details .order-total-line .order-total-line-label {
  font-size: 16px;
  line-height: 19px;
  color: #1D3F46;
  font-weight: 400;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-order-summary #edit-sidebar-order-summary-summary .shopping__details .order-total-line .order-total-line-value {
  padding-left: 12px;
  width: auto;
  font-weight: 500;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-order-summary #edit-sidebar-order-summary-summary .shopping__details .order-total-line__total .order-total-line-value {
  font-weight: bold;
  color: #CB0C74;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-order-summary .catalog-content-products {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 35px;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-order-summary .views-row {
  display: flex;
  padding: 7px 0 6px 0;
  margin: 0;
  color: #1D3F46;
  font-size: 13px;
  width: 100%;
  border-top: 1px solid #6DBCC5;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-order-summary .views-row img {
  width: 110px;
  height: auto;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-order-summary .views-row .views-field-purchased-entity {
  margin-left: 10px;
  width: 100%;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-order-summary .views-row .views-field-purchased-entity .field-content > div {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-order-summary .views-row .views-field-purchased-entity .field-content > div span {
  font-weight: bold;
}
.path-checkout .checkout-pane-payment-information ul.commerce-np-popular-cities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  font-size: 1rem;
  font-weight: 300;
}
.path-checkout .checkout-pane-payment-information .form-item-payment-information-field-address-np-0-city-ref {
  position: relative;
  margin: 0;
}
.path-checkout .checkout-pane-payment-information .city-ref {
  top: -30px;
  position: absolute;
  font-size: 0;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
}
.path-checkout .checkout-pane-contact-info > legend,
.path-checkout .checkout-pane-shipping-information > legend,
.path-checkout .checkout-pane-payment-information > legend,
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-shipping-information .fieldset-legend-2,
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-payment-information fieldset[id^=edit-payment-information-field-address-np] legend {
  display: none;
}
.path-checkout fieldset.checkout-pane-contact-info fieldset legend,
.path-checkout fieldset.checkout-pane-shipping-information fieldset legend {
  width: 295px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.path-checkout fieldset.checkout-pane-contact-info fieldset legend:before,
.path-checkout fieldset.checkout-pane-shipping-information fieldset legend:before {
  content: "1";
  background: url(../../dist/assets/images/icons/checknum.png) -10px 0px;
  display: flex;
  width: 85px;
  height: 85px;
  justify-content: center;
  align-items: center;
  color: white;
  margin-right: 20px;
}
.path-checkout fieldset.checkout-pane-contact-info fieldset legend .fieldset-legend,
.path-checkout fieldset.checkout-pane-shipping-information fieldset legend .fieldset-legend {
  border-bottom: 1px solid #6DBCC5;
  width: 100%;
  margin: 0;
  height: 16px;
  display: flex;
  align-items: center;
  font-size: 12px;
}
.path-checkout fieldset.checkout-pane-contact-info fieldset legend .fieldset-legend:after,
.path-checkout fieldset.checkout-pane-shipping-information fieldset legend .fieldset-legend:after {
  background: none;
}
.path-checkout .form-required::after {
  background-image: url(../../dist/assets/images/icons/required.svg);
}
.path-checkout label.option {
  display: inline;
}
.path-checkout .js-form-type-checkbox label.option {
  font-weight: normal;
}
.path-checkout fieldset.checkout-pane-shipping-information fieldset legend::before {
  content: "2";
}
.path-checkout #edit-payment-information .form-item {
  max-width: 100%;
}
.path-checkout form.commerce-checkout-flow-new-checkout-flow .layout-checkout-form .checkout-pane-payment-information fieldset[id^=edit-payment-information-field-address-np] .js-form-type-radio {
  padding-left: 20%;
}
.path-checkout fieldset[data-drupal-selector=edit-payment-information-payment-method] .fieldset-legend {
  text-transform: inherit;
  margin-bottom: 6px;
  font-weight: normal;
}
.path-checkout .form-item-payment-information-payment-method label span {
  font-weight: 100;
}
.path-checkout .complete-order .checkout-pane.checkout-pane-completion-message {
  width: 100%;
}
.path-checkout .form-item-payment-information-billing-information-copy-fields-enable {
  display: none;
}
.path-checkout .form-item-payment-information-billing-information-copy-fields-enable .column .checkout-pane-order-summary .order-total-line__adjustment--shipping {
  display: none !important;
}

.contacts-block {
  padding: 40px 15px;
  padding-top: 0;
}
.contacts-block .wrapper {
  width: 100%;
  max-width: 1059px;
  margin: 0 auto;
}
.contacts-block .wrapper .title-block {
  margin-bottom: 30px;
}
.contacts-block .wrapper .title-block h2 {
  display: block;
  text-align: center;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 50px;
  line-height: 59px;
  text-transform: uppercase;
  color: #76BFC8;
}
.contacts-block .wrapper .title-block h2 span {
  color: #C73C78;
}
.contacts-block .wrapper .title-block p {
  display: block;
  text-align: center;
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 23px;
  color: #1D3F46;
}
.contacts-block .wrapper .title-block .socials {
  width: 100%;
  max-width: 215px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
.contacts-block .wrapper .title-block .socials a {
  margin: 0 12px;
}
.contacts-block .wrapper .contacts-info {
  width: 100%;
  height: 570px;
  position: relative;
}
.contacts-block .wrapper .contacts-info .info-box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 366px;
  background: rgba(255, 255, 255, 0.75);
  padding: 20px;
  padding-top: 78px;
}
.contacts-block .wrapper .contacts-info .info-box .item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.contacts-block .wrapper .contacts-info .info-box .item svg {
  margin-right: 27px;
}
.contacts-block .wrapper .contacts-info .info-box .item .box p {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 18px;
  /* or 112% */
  margin: 0;
  color: #1D3F46;
}
.contacts-block .wrapper .contacts-info .info-box .item .box p.titlee {
  display: block;
  margin-bottom: 10px;
  font-family: Roboto;
  font-style: normal;
  font-weight: bold !important;
  font-size: 16px;
  line-height: 19px;
  color: #1D3F46;
}
.contacts-block .wrapper .contacts-info .info-box .item .box a {
  display: block;
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 18px;
  /* or 100% */
  text-decoration: none;
  margin-bottom: 4px;
  color: #1D3F46;
}
.contacts-block .wrapper .contacts-info iframe {
  width: 100%;
  height: 100%;
}

.ui-front {
  z-index: unset;
}

.ui-dialog:not(.login-popup-form) {
  z-index: 99;
  width: 100% !important;
  max-width: 440px !important;
}

.ui-dialog.login-popup-form {
  z-index: 99 !important;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.5em 1em;
  background: 0;
  border: 0;
  border-bottom: 0.5px solid #6DBCC5;
  font-weight: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-title {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  color: #1D3F46;
  padding: 15px 25px;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close {
  position: static;
  width: 20px;
  height: 20px;
  font-size: 0;
  border: none;
  background: url(../../dist/assets/images/icons/account__exit-icon.svg) center/contain no-repeat;
  margin: 0;
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close span {
  display: none;
}
.ui-dialog #drupal-modal .list_product {
  margin: 0;
}

.cart-modal {
  padding: 10px 10px !important;
  z-index: 100;
}
.cart-modal .ui-dialog-titlebar {
  border: 0 !important;
}
.cart-modal .ui-dialog-titlebar .ui-dialog-title {
  padding-left: 5px;
}
.cart-modal .ui-dialog-content {
  border-top: 1px solid #6DBCC5;
  padding-left: 0;
  padding-right: 0;
}
.cart-modal .ui-dialog-content .views-form {
  max-height: 279px;
  overflow-y: scroll;
  border-bottom: 1px solid #6DBCC5;
}
.cart-modal .ui-dialog-content a {
  outline: none;
}
.cart-modal .ui-dialog-content .views-field-field-images img {
  width: 110px;
  height: 110px;
  outline: none;
}
.cart-modal .ui-dialog-content .views-field-order-item-id {
  font-family: Roboto;
  font-size: 13px;
  line-height: 15px;
}
.cart-modal .ui-dialog-content .views-field-order-item-id > div {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
}
.cart-modal .ui-dialog-content .views-field-order-item-id > div span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  font-weight: 400;
  color: #1D3F46;
}
.cart-modal .ui-dialog-content .views-field-order-item-id a {
  font-size: 13px;
  line-height: 15px;
  color: #1D3F46;
  font-weight: 300;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease-in-out;
}
.cart-modal .ui-dialog-content .views-field-order-item-id a:hover {
  color: #dc71aa;
}
.cart-modal .ui-dialog-content .views-field-remove-button {
  width: 50px;
  text-align: center;
}
.cart-modal .ui-dialog-content .views-field-remove-button a {
  display: inline-block;
  width: 21px;
  height: 26px;
  background-color: transparent;
  background-image: url(../../dist/assets/images/remove-icon.svg);
}
.cart-modal tr {
  background-color: #fff !important;
}
.cart-modal td {
  background-color: #fff !important;
}
.cart-modal .ui-dialog-buttonpane {
  display: none !important;
}
.cart-modal .order-total-line {
  padding: 15px 0 22px 45px;
  text-align: left;
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  text-transform: uppercase;
  color: #1D3F46;
}
.cart-modal .order-total-line.order-total-line__adjustment--promotion {
  padding: 15px 0 0 45px;
  margin: 0 0 -5px;
}
.cart-modal .order-total-line .order-total-line-label {
  display: inline-block;
}
.cart-modal .order-total-line .order-total-line-value {
  font-weight: 300;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #CB0C74;
  margin: 0 0 0 12px;
}
.cart-modal .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-modal .box img {
  width: 40%;
}
.cart-modal .box .btns {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 60%;
}
.cart-modal .box .btns .btn {
  max-width: 200px;
  font-size: 14px;
  padding: 15px 13px;
  color: white;
  margin: 0 0 10px;
}

#drupal-modal .order-total-line.order-total-line__adjustment--shipping {
  display: none !important;
}
#drupal-modal .order-total-line.order-total-line__subtotal {
  display: none !important;
}

.ui-dialog.login-popup-form {
  padding-bottom: 160px !important;
}

.login-popup-form .ui-dialog-titlebar,
.password-popup-form .ui-dialog-titlebar {
  padding: 0.5em 1em;
  background: 0;
  border: 0;
  border-bottom: 0.5px solid #6DBCC5;
  font-weight: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login-popup-form .ui-dialog-titlebar span.ui-dialog-title,
.password-popup-form .ui-dialog-titlebar span.ui-dialog-title {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal !important;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  color: #1D3F46;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  padding: 15px 25px;
  width: 100%;
}
.login-popup-form .ui-dialog-titlebar .ui-dialog-titlebar-close,
.password-popup-form .ui-dialog-titlebar .ui-dialog-titlebar-close {
  position: static;
  width: 20px;
  height: 20px;
  font-size: 0;
  border: none;
  margin: 0;
  background: url(../../dist/assets/images/icons/account__exit-icon.svg) center/contain no-repeat;
}
.login-popup-form .ui-dialog-titlebar .ui-dialog-titlebar-close span,
.password-popup-form .ui-dialog-titlebar .ui-dialog-titlebar-close span {
  display: none;
}
.login-popup-form #drupal-modal,
.password-popup-form #drupal-modal {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: -20px;
}
.login-popup-form #drupal-modal.ui-dialog-content,
.password-popup-form #drupal-modal.ui-dialog-content {
  overflow: visible;
}
.login-popup-form #drupal-modal .user-login-form, .login-popup-form #drupal-modal .user-pass, .login-popup-form #drupal-modal .user-form,
.password-popup-form #drupal-modal .user-login-form,
.password-popup-form #drupal-modal .user-pass,
.password-popup-form #drupal-modal .user-form {
  max-width: 296px;
}
.login-popup-form #drupal-modal .user-login-form .form-item, .login-popup-form #drupal-modal .user-pass .form-item, .login-popup-form #drupal-modal .user-form .form-item,
.password-popup-form #drupal-modal .user-login-form .form-item,
.password-popup-form #drupal-modal .user-pass .form-item,
.password-popup-form #drupal-modal .user-form .form-item {
  margin: 0 0 20px;
  width: 100%;
}
.login-popup-form #drupal-modal .user-login-form .form-item label, .login-popup-form #drupal-modal .user-pass .form-item label, .login-popup-form #drupal-modal .user-form .form-item label,
.password-popup-form #drupal-modal .user-login-form .form-item label,
.password-popup-form #drupal-modal .user-pass .form-item label,
.password-popup-form #drupal-modal .user-form .form-item label {
  color: #8a8a8a;
}
.login-popup-form #drupal-modal .user-login-form .form-item label.form-required::after, .login-popup-form #drupal-modal .user-pass .form-item label.form-required::after, .login-popup-form #drupal-modal .user-form .form-item label.form-required::after,
.password-popup-form #drupal-modal .user-login-form .form-item label.form-required::after,
.password-popup-form #drupal-modal .user-pass .form-item label.form-required::after,
.password-popup-form #drupal-modal .user-form .form-item label.form-required::after {
  content: "";
  vertical-align: super;
  display: inline-block;
  background-image: url(/core/misc/icons/ee0000/required.svg);
  background-repeat: no-repeat;
  background-size: 6px 6px;
  width: 6px;
  height: 6px;
  margin: 0 0.3em;
}
.login-popup-form #drupal-modal .user-login-form .form-item .description, .login-popup-form #drupal-modal .user-pass .form-item .description, .login-popup-form #drupal-modal .user-form .form-item .description,
.password-popup-form #drupal-modal .user-login-form .form-item .description,
.password-popup-form #drupal-modal .user-pass .form-item .description,
.password-popup-form #drupal-modal .user-form .form-item .description {
  display: none;
}
.login-popup-form #drupal-modal .user-login-form p, .login-popup-form #drupal-modal .user-pass p, .login-popup-form #drupal-modal .user-form p,
.password-popup-form #drupal-modal .user-login-form p,
.password-popup-form #drupal-modal .user-pass p,
.password-popup-form #drupal-modal .user-form p {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #CB0C74;
  padding: 0 0 20px;
}
.login-popup-form #drupal-modal .user-login-form .form-actions, .login-popup-form #drupal-modal .user-pass .form-actions, .login-popup-form #drupal-modal .user-form .form-actions,
.password-popup-form #drupal-modal .user-login-form .form-actions,
.password-popup-form #drupal-modal .user-pass .form-actions,
.password-popup-form #drupal-modal .user-form .form-actions {
  right: 25px !important;
  position: absolute;
  bottom: -20px;
  text-align: center;
  display: block;
  max-width: 130px;
}
.login-popup-form #drupal-modal .user-login-form .form-actions a.login-popup-form, .login-popup-form #drupal-modal .user-pass .form-actions a.login-popup-form, .login-popup-form #drupal-modal .user-form .form-actions a.login-popup-form,
.password-popup-form #drupal-modal .user-login-form .form-actions a.login-popup-form,
.password-popup-form #drupal-modal .user-pass .form-actions a.login-popup-form,
.password-popup-form #drupal-modal .user-form .form-actions a.login-popup-form {
  position: absolute;
  top: 60px;
  left: -180px;
  display: block;
  width: 168px;
  font-size: 14px !important;
  padding: 0px 13px;
  color: white !important;
  background: #6DBCC5;
  margin: 10px;
  min-height: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 0;
  text-transform: uppercase;
  transition: all, 0.3s;
  text-decoration: none;
  border: 0;
}
.login-popup-form #drupal-modal .user-login-form .form-actions a.password-popup-form, .login-popup-form #drupal-modal .user-pass .form-actions a.password-popup-form, .login-popup-form #drupal-modal .user-form .form-actions a.password-popup-form,
.password-popup-form #drupal-modal .user-login-form .form-actions a.password-popup-form,
.password-popup-form #drupal-modal .user-pass .form-actions a.password-popup-form,
.password-popup-form #drupal-modal .user-form .form-actions a.password-popup-form {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  padding-bottom: 3px;
  color: #76BFC8;
  border-bottom: 1px solid #76BFC8;
  text-decoration: none;
  position: relative;
  top: 12px;
}
.login-popup-form .ui-dialog-buttonset.form-actions,
.password-popup-form .ui-dialog-buttonset.form-actions {
  max-width: 100%;
  margin: 1em 0;
}
.login-popup-form .ui-dialog-buttonset.form-actions button,
.password-popup-form .ui-dialog-buttonset.form-actions button {
  width: 168px;
  font-size: 14px;
  padding: 0px 13px;
  color: white;
  background: #DC71AA;
  margin: 10px;
  height: 44px;
  line-height: 44px;
  border-radius: 0;
  text-transform: uppercase;
  transition: all, 0.3s;
  border: 0;
}

.login-popup-form .ui-dialog-buttonpane {
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  position: absolute;
  left: 24px;
}

.password-popup-form #drupal-modal {
  margin: 0 0 -20px;
}
.password-popup-form #drupal-modal .user-pass {
  max-width: 100%;
}

.password-popup-form .ui-dialog-titlebar span.ui-dialog-title {
  text-align: left;
}

.share-by-mail {
  border: 0 !important;
  border-radius: 0 !important;
  max-width: 100%;
}
.share-by-mail .ui-dialog-titlebar {
  border: 0;
  border-radius: 0;
  background: none;
}
.share-by-mail .ui-dialog-titlebar .ui-dialog-title {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  text-transform: uppercase;
  color: #1D3F46;
  width: 100%;
  margin: 49px 0 8px;
}
.share-by-mail .ui-dialog-titlebar-close {
  position: absolute;
  top: 19px;
  right: 17px;
  width: 20px;
  height: 20px;
  font-size: 0;
  border: none;
  margin: 0;
  background: url(../../dist/assets/images/icons/account__exit-icon.svg) center/contain no-repeat;
}
.share-by-mail .ui-dialog-titlebar-close span {
  display: none;
}
.share-by-mail .ui-dialog-content {
  padding: 0.5em 31px 35px;
}
.share-by-mail .copy-link {
  display: flex;
  align-items: center;
}
.share-by-mail .copy-link button.btn {
  font-size: 14px;
  text-transform: uppercase;
  background: #6DBCC5;
  white-space: nowrap;
  padding: 13px 17px 13px 18px;
  height: 44px;
  margin: 0 0 0 50px;
}
@media (max-width: 768px) {
  .share-by-mail .copy-link button.btn {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .share-by-mail .copy-link {
    flex-direction: column;
  }
}
.share-by-mail .send-email {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
@media only screen and (min-width: 576px) {
  .share-by-mail .send-email {
    flex-direction: row;
  }
}
.share-by-mail .send-email input[type=submit] {
  margin: 0 0 0 30px;
  background: #DC71AA;
  max-width: 180px;
}

.catalog-content-products div[id^=edit-purchased-entity-0-attributes-attribute-volume] {
  max-width: 180px;
}
.catalog-content-products div[id^=edit-purchased-entity-0-attributes-attribute-volume] .slick-slide:focus {
  outline: none;
}

.product-items-slider a.product-link-wrapper {
  outline: none !important;
}

.responsive-slider-outer {
  margin: 0 0 60px;
}
@media (min-width: 992px) {
  .responsive-slider-outer {
    margin: 0 0 80px;
  }
}
.responsive-slider-outer .responsive-slider {
  max-width: 1363px;
  margin: 0 auto;
}
.responsive-slider-outer .responsive-slider img {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.responsive-slider-outer .responsive-slider .slick-next:before,
.responsive-slider-outer .responsive-slider .slick-prev:before {
  content: unset;
}
.responsive-slider-outer .responsive-slider .slick-prev {
  display: none !important;
}
@media only screen and (min-width: 992px) {
  .responsive-slider-outer .responsive-slider .slick-prev {
    display: block !important;
    width: 35px;
    height: 66px;
    left: 23px;
    background: url(../../../dist/assets/images/left.svg);
    z-index: 1;
  }
}
.responsive-slider-outer .responsive-slider .slick-next {
  display: none !important;
}
@media only screen and (min-width: 992px) {
  .responsive-slider-outer .responsive-slider .slick-next {
    display: block !important;
    right: 30px;
    width: 35px;
    height: 66px;
    background: url(../../../dist/assets/images/right.svg);
    z-index: 1;
  }
}
.responsive-slider-outer .responsive-slider .banner-slider__slick-dots {
  bottom: -21px;
}
.responsive-slider-outer .responsive-slider .banner-slider__slick-dots li {
  list-style: none;
  margin: 0 10px;
}
@media (max-width: 767px) {
  .responsive-slider-outer .responsive-slider .banner-slider__slick-dots li button {
    background: none;
  }
}
.responsive-slider-outer .responsive-slider .banner-slider__slick-dots li button:hover {
  border: 1px solid rgb(72.5, 171.25, 182.5);
}
.responsive-slider-outer .responsive-slider .banner-slider__slick-dots li.slick-active button {
  width: 12px;
  height: 12px;
  border: 2.5px solid #C73C78;
}
@media (max-width: 767px) {
  .responsive-slider-outer .responsive-slider .banner-slider__slick-dots li.slick-active button {
    background: none;
  }
}
@media only screen and (min-width: 768px) {
  .responsive-slider-outer .responsive-slider .banner-slider__slick-dots {
    bottom: -30px;
  }
}
@media only screen and (min-width: 992px) {
  .responsive-slider-outer .responsive-slider .banner-slider__slick-dots {
    bottom: -44px;
  }
  .responsive-slider-outer .responsive-slider .banner-slider__slick-dots li {
    margin: 0 17px;
  }
}

.block-views-blockcategory-icons-block-1 {
  border-top: 1px solid #85C5CF;
  padding: 28px 0 0;
  /* Scrollbar */
}
.block-views-blockcategory-icons-block-1 .frame {
  overflow: hidden;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 25px;
}
@media (min-width: 1200px) {
  .block-views-blockcategory-icons-block-1 .frame {
    margin: 0 0 25px 70px;
    max-width: 999px;
  }
}
.block-views-blockcategory-icons-block-1 .frame ul {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}
.block-views-blockcategory-icons-block-1 .frame ul li {
  float: left;
  height: 100%;
  margin: 0 14px;
  padding: 0;
  text-align: center;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .block-views-blockcategory-icons-block-1 .frame ul li {
    margin: 0 25px;
  }
}
.block-views-blockcategory-icons-block-1 .frame ul li.active img {
  opacity: 0.7;
}
.block-views-blockcategory-icons-block-1 .frame ul li img {
  width: 66px;
  height: 66px;
}
@media (min-width: 768px) {
  .block-views-blockcategory-icons-block-1 .frame ul li img {
    width: 94px;
    height: 94px;
  }
}
@media (min-width: 1200px) {
  .block-views-blockcategory-icons-block-1 .frame ul li img {
    width: 104px;
    height: 104px;
  }
}
.block-views-blockcategory-icons-block-1 .scrollbar {
  margin: 0 auto 1em;
  height: 2px;
  background: #D0D1D3;
  line-height: 0;
  max-width: 200px;
}
@media (min-width: 1200px) {
  .block-views-blockcategory-icons-block-1 .scrollbar {
    max-width: 405px;
  }
}
.block-views-blockcategory-icons-block-1 .scrollbar .handle {
  width: 100px;
  height: 100%;
  background: #76BFC8;
  cursor: pointer;
}
.block-views-blockcategory-icons-block-1 .scrollbar .handle .mousearea {
  position: absolute;
  top: -9px;
  left: 0;
  width: 100%;
  height: 20px;
}

.search-autocomplete {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 2;
  max-height: 400px;
  overflow-y: auto;
}
.search-autocomplete .search-suggestion-item {
  display: flex;
  align-items: center;
  padding: 10px;
  text-decoration: none;
  color: #1D3F46;
  border-bottom: 1px solid #eee;
}
.search-autocomplete .search-suggestion-item:last-child {
  border-bottom: 0;
}
.search-autocomplete .search-suggestion-item:hover {
  background: #f8f9fa;
}
.search-autocomplete .search-suggestion-item .product-image {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
}
.search-autocomplete .search-suggestion-item .product-info {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.search-autocomplete .search-suggestion-item .product-title {
  flex-basis: 100%;
  font-weight: 500;
}
.search-autocomplete .search-suggestion-item .product-title-eng {
  flex-basis: 100%;
  margin-bottom: 0.5rem;
}
.search-autocomplete .search-suggestion-item .sku {
  flex: 1;
  font-size: 0.8rem;
  color: #DC71AA;
}
.search-autocomplete .search-suggestion-item .product-price {
  flex: 1;
  color: #76BFC8;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: right;
}
.search-autocomplete .search-suggestion-item .product-price.in-sale {
  color: #DC71AA;
}
.search-autocomplete .search-suggestion-item .product-price.in-sale .regular-price {
  font-weight: 300;
  text-decoration-line: line-through;
  color: #818181;
}
.search-autocomplete .no-results {
  padding: 10px;
  color: #666;
}

body.scrolling-down .block-related-products {
  bottom: 0;
}
body.scrolling-down .block-related-products button.close {
  top: -1.5rem;
}

body.scrolling-up .block-related-products {
  bottom: -160px;
}

.block-related-products {
  position: fixed;
  bottom: -160px;
  transition: bottom 0.3s ease-in-out;
  left: 0;
  background-color: #fff;
  box-shadow: 0px 10px 20px 4px;
  width: 100%;
  height: 150px;
  z-index: 1001;
  padding: 0 0.5rem;
}
@media (min-width: 768px) {
  .block-related-products {
    position: static;
    max-width: 810px;
    background-color: transparent;
    box-shadow: none;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .block-related-products.close {
    bottom: -180px !important;
  }
}
.block-related-products h3 {
  width: 100%;
  padding-left: 10px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #1D3F46;
  margin: 7px 0 5px 0;
}
@media (min-width: 768px) {
  .block-related-products h3 {
    margin-top: 5px;
    padding-left: 16px;
  }
}
.block-related-products h3:after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: #85C5CF;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .block-related-products h3:after {
    margin-top: 8px;
  }
}
.block-related-products .related-products {
  display: flex;
  overflow: hidden;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 5px;
}
@media (min-width: 768px) {
  .block-related-products .related-products {
    padding: 0 10px;
  }
}
.block-related-products .product {
  width: 196px;
  max-height: 350px;
}
@media (min-width: 768px) {
  .block-related-products .product {
    padding: 1rem;
  }
}
.block-related-products .product .product-variation a.product-link-wrapper .product-image-wrap img {
  width: auto;
  height: 33px;
  max-width: none;
  max-height: none;
  min-height: 0;
}
@media (min-width: 768px) {
  .block-related-products .product .product-variation a.product-link-wrapper .product-image-wrap img {
    height: auto;
    width: 140px;
  }
}
.block-related-products .product .product-variation a.product-link-wrapper .product-ttl {
  margin-top: 10px;
  font-weight: 400;
  font-size: 12px;
}
@media (min-width: 768px) {
  .block-related-products .product .product-variation a.product-link-wrapper .product-ttl {
    font-size: 14px;
  }
}
.block-related-products .product .product-variation a.product-link-wrapper .product-sku {
  display: none;
  font-size: 13px;
}
@media (min-width: 768px) {
  .block-related-products .product .product-variation a.product-link-wrapper .product-sku {
    display: block;
  }
}
.block-related-products .product .product-variation a.product-link-wrapper .variation-price {
  margin: 0;
  font-size: 13px;
}
@media (min-width: 768px) {
  .block-related-products .product .product-variation a.product-link-wrapper .variation-price {
    font-size: 14px;
  }
}
.block-related-products .product .product-variation a.product-link-wrapper .variation-price .old-price {
  display: none;
}
@media (min-width: 768px) {
  .block-related-products .product .product-variation a.product-link-wrapper .variation-price .old-price {
    display: block;
  }
}
.block-related-products .product .product-variation a.product-link-wrapper .variation-price .percentage-off {
  width: 28px;
  height: 28px;
  white-space: nowrap;
  font-size: 12px;
}
@media (min-width: 768px) {
  .block-related-products .product .product-variation a.product-link-wrapper .variation-price .percentage-off {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
.block-related-products button.close {
  position: absolute;
  right: 2rem;
  transition: top 0.3s ease-in-out;
  top: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  font-size: 0;
  box-shadow: 1px -3px 7px 0px #807f7f;
  padding: 0.5rem;
  border-radius: 50%;
  background: url(../../dist/assets/images/icons/account__exit-icon.svg) center/16px no-repeat #fff;
  margin: 0;
}
@media (min-width: 768px) {
  .block-related-products button.close {
    display: none;
  }
}

#block-clean-local-tasks {
  max-width: 1170px;
  margin: 20px auto;
}
#block-clean-local-tasks .tabs {
  display: flex;
  justify-content: center;
  padding: 0;
}
#block-clean-local-tasks .tabs > li {
  display: inline-block;
  margin-right: 0.3em;
}
#block-clean-local-tasks .tabs > li a {
  color: #DC71AA;
  font-weight: bold;
  font-size: 11px;
  border-bottom: 1px solid #DC71AA;
  display: block;
  padding: 2px 11px;
  text-decoration: none;
}
#block-clean-local-tasks .tabs > li a.is-active, #block-clean-local-tasks .tabs > li a:hover {
  background: #DC71AA;
  color: #ffffff !important;
}

article .node__content {
  max-width: 1170px;
}

.path-user .user-login-form, .path-user .user-register-form, .path-user .user-pass {
  max-width: 296px;
  margin: 0 auto;
}
.path-user .user-login-form label, .path-user .user-register-form label, .path-user .user-pass label {
  color: #8a8a8a;
}
.path-user .user-login-form .description, .path-user .user-register-form .description, .path-user .user-pass .description {
  display: none;
}
.path-user .user-login-form .form-actions, .path-user .user-register-form .form-actions, .path-user .user-pass .form-actions {
  flex-direction: column;
}
.path-user .user-login-form .form-actions a, .path-user .user-register-form .form-actions a, .path-user .user-pass .form-actions a {
  text-transform: uppercase;
  margin: 4px 0;
}
.path-user .user-login-form .form-actions a:hover, .path-user .user-register-form .form-actions a:hover, .path-user .user-pass .form-actions a:hover {
  text-decoration: underline;
}
.path-user .user-login-form .js-password-confirm-message, .path-user .user-register-form .js-password-confirm-message, .path-user .user-pass .js-password-confirm-message {
  margin: 10px 0 0;
}
.path-user .user-login-form .js-password-confirm-message .error, .path-user .user-register-form .js-password-confirm-message .error, .path-user .user-pass .js-password-confirm-message .error {
  color: #fa0000;
}

.pager {
  margin-top: 40px;
}

.js-pager__items.pager {
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.js-pager__items.pager .catalog-more-products {
  display: inline-block;
  margin: 0 auto;
}

nav.pager .pager__items {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
}
nav.pager .pager__items li {
  margin: 2px;
}
nav.pager .pager__items li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: 500;
  color: #1D3F46;
  text-decoration: none;
}
nav.pager .pager__items li.is-active a, nav.pager .pager__items li:hover a {
  color: #CB0C74;
}
nav.pager .pager__items li.pager__item--ellipsis, nav.pager .pager__items li.pager__item--ellipsis:hover {
  line-height: 40px;
  width: 40px;
  color: #1D3F46;
  text-align: center;
  display: block;
}

.pager__item span {
  display: none !important;
}
.pager__item a {
  position: relative;
}
.pager__item.pager__item--previous {
  margin-right: 0px !important;
}
.pager__item.pager__item--previous a:before {
  content: url("../../dist/assets/images/prev.svg");
  display: inline-block;
  vertical-align: middle;
}
.pager__item.pager__item--next {
  margin-left: 0px !important;
}
.pager__item.pager__item--next a:before {
  content: url("../../dist/assets/images/next.svg");
  display: inline-block;
  vertical-align: middle;
}
.pager__item.pager__item--last {
  display: none !important;
}
.pager__item.pager__item--first {
  display: none !important;
}

.ajax-throbber.sk-chasing-dots .sk-child {
  background-color: #C73C78;
}

.ajax-throbber.sk-chasing-dots .sk-dot2 {
  background-color: #76BFC8;
}
