@font-face {
  font-family: "Golos Text";
  src: url("../fonts/GolosText-Bold.woff2") format("woff2"), url("../fonts/GolosText-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: url("../fonts/GolosText-DemiBold.woff2") format("woff2"), url("../fonts/GolosText-DemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: url("../fonts/GolosText-Medium.woff2") format("woff2"), url("../fonts/GolosText-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Golos Text";
  src: url("../fonts/GolosText-Regular.woff2") format("woff2"), url("../fonts/GolosText-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

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

input, textarea, select {
  font-family: "Source Sans Pro", sans-serif;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
}

button {
  border: none;
  background: none;
  font-family: "Source Sans Pro", sans-serif;
  outline: none;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 25px;
}
@media (max-width: 500px) {
  .container {
    padding: 0 20px;
  }
}

.main {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.header-old-version {
  background: #E0E0E0;
  width: 100%;
  padding: 4px 20px;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  color: #232221;
}
.header-old-version a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  white-space: nowrap;
}

.header {
  width: 100%;
  background: #FFFFFF;
  z-index: 100;
}

.header-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 19px 0 23px;
}
@media (max-width: 1300px) {
  .header-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 0;
  }
}
@media (max-width: 720px) {
  .header-wrap {
    padding: 15px 0;
  }
}
@media (max-width: 750px) {
  .header-wrap {
    position: relative;
  }
}

.header-logo {
  display: block;
  width: 216px;
}
@media (max-width: 720px) {
  .header-logo {
    width: 150px;
  }
}
.header-logo img {
  max-width: 100%;
}

.header-list {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 18px;
  line-height: 24px;
  color: #232221;
}
@media (max-width: 1300px) {
  .header-list {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
    border-top: 1px solid #D4E0E7;
    margin-top: 17px;
    position: relative;
  }
  .header-list::before {
    content: "";
    display: block;
    top: -1px;
    position: absolute;
    left: -25px;
    right: -25px;
    border-top: 1px solid #D4E0E7;
  }
}
@media (max-width: 720px) {
  .header-list {
    display: none;
  }
}
.header-list__item {
  padding: 12px 22px;
  border-right: 1px solid #D4E0E7;
  border-bottom: 1px solid rgba(212, 224, 231, 0);
}
@media (max-width: 900px) {
  .header-list__item {
    padding: 12px 14px;
  }
}
.header-list__item:first-child {
  border-left: 1px solid #D4E0E7;
}
.header-list__item:hover {
  border-bottom: 1px solid #D4E0E7;
}
.header-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.header-list__link img {
  margin-right: 8px;
}

.header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 750px) {
  .header-left {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
.header-left .header-right-user {
  background: #F2F2F2;
  border: 2px solid #EBECEE;
  display: none;
  width: 48px;
  height: 48px;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2B91D7;
  text-align: center;
}
@media (max-width: 750px) {
  .header-left .header-right-user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.header-shop-cart {
  height: 48px;
  background: #E85B96;
  width: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-shop-cart:hover {
  background: #DF387E;
  border-color: #DF387E;
}
.header-shop-cart:active {
  background: #D22970;
  border-color: #D22970;
}
.header-shop-cart:disabled {
  color: #8F9A9F;
  background: #F2F2F2;
  border-color: #EBECEE;
}
@media (max-width: 720px) {
  .header-shop-cart {
    height: 35px;
    width: 70px;
  }
}
@media (max-width: 750px) {
  .header-shop-cart {
    position: absolute;
    left: -25px;
    right: -25px;
    bottom: 0;
    width: auto;
    display: none;
  }
  .header-shop-cart.registered {
    width: calc(50% + 25px);
  }
}
@media (max-width: 500px) {
  .header-shop-cart {
    left: -20px;
    right: -20px;
  }
  .header-shop-cart.registered {
    width: calc(50% + 20px);
  }
}
.header-shop-cart img {
  margin-right: 7px;
}
@media (max-width: 720px) {
  .header-shop-cart img {
    width: 15px;
  }
}

.header-right-registered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.header-right-registered .header-right-favorite {
  position: relative;
  height: 48px;
  background: #E85B96;
  width: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-right-registered .header-right-favorite:hover {
  background: #DF387E;
  border-color: #DF387E;
}
.header-right-registered .header-right-favorite:active {
  background: #D22970;
  border-color: #D22970;
}
.header-right-registered .header-right-favorite:disabled {
  color: #8F9A9F;
  background: #F2F2F2;
  border-color: #EBECEE;
}
@media (max-width: 720px) {
  .header-right-registered .header-right-favorite {
    height: 35px;
    width: 70px;
  }
}
@media (max-width: 750px) {
  .header-right-registered .header-right-favorite {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: calc(50% + 25px);
    display: none;
  }
}
@media (max-width: 500px) {
  .header-right-registered .header-right-favorite {
    width: calc(50% + 20px);
  }
}
.header-right-registered .header-right-favorite::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: #D22970;
}
.header-right-registered .header-right-favorite img {
  margin-right: 7px;
}
@media (max-width: 720px) {
  .header-right-registered .header-right-favorite img {
    width: 15px;
  }
}
.header-right-registered .header-right-lk {
  position: relative;
}
.header-right-registered .header-right-lk .unsubscribe-section-sidebar {
  display: none;
}
@media (max-width: 750px) {
  .header-right-registered .header-right-lk .unsubscribe-section-sidebar {
    display: block;
    position: relative;
    background: #F8F8F8;
    left: -20px;
    right: -20px;
    width: calc(100% + 40px);
    padding-bottom: 0;
    margin-bottom: 20px;
    padding: 0 20px;
    margin-top: -1px;
  }
}
.header-right-registered .header-right-lk .unsubscribe-section-sidebar .unsubscribe-section-sidebar-item {
  width: 100%;
  padding: 10px 0;
  border: none;
}
.header-right-registered .header-right-lk .unsubscribe-section-sidebar .unsubscribe-section-sidebar-item .label {
  margin-bottom: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.header-right-registered .header-right-lk .unsubscribe-section-sidebar .unsubscribe-section-sidebar-item .label:after {
  content: "";
  display: block;
  width: 16px;
  height: 10px;
  background: url(/images/main/arr-2.svg) no-repeat center/contain;
}
.header-right-registered .header-right-lk .unsubscribe-section-sidebar .unsubscribe-section-sidebar-item.open .unsubscribe-section-sidebar-list {
  display: block;
}
.header-right-registered .header-right-lk .unsubscribe-section-sidebar .unsubscribe-section-sidebar-item.open .label:after {
  background: url(/images/main/arr-1.svg) no-repeat center/contain;
}
.header-right-registered .header-right-lk .unsubscribe-section-sidebar .unsubscribe-section-sidebar-list {
  padding-left: 12px;
  display: none;
  margin-top: 12px;
}
.header-right-registered .header-right-lk .unsubscribe-section-sidebar .unsubscribe-section-sidebar-list li.active {
  color: #2B91D7;
}
.header-right-registered .header-right-lk.open .header-right-lk-sublist {
  display: block;
}
.header-right-registered .header-right-user {
  background: #F2F2F2;
  border: 2px solid #EBECEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 48px;
  height: 48px;
  margin-left: 41px;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2B91D7;
  text-align: center;
}
@media (max-width: 720px) {
  .header-right-registered .header-right-user {
    margin-left: 15px;
  }
}
@media (max-width: 750px) {
  .header-right-registered .header-right-user {
    display: none;
  }
}

.overlay {
  background: rgba(7, 7, 7, 0.16);
  -webkit-backdrop-filter: blur(37px);
          backdrop-filter: blur(37px);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 400px;
  z-index: 200;
  background: #273841;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  display: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
}
@media (max-width: 500px) {
  .mobile-menu {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .mobile-menu-open {
    overflow: hidden;
  }
  .mobile-menu-open .mobile-menu {
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .mobile-menu-open .overlay {
    opacity: 1;
    visibility: visible;
  }
}

.mobile-menu-wrap {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow: auto;
  padding: 30px 10px;
}
.mobile-menu-wrap .hr {
  width: 100%;
  height: 1px;
  background: #979797;
  margin-left: 40px;
  margin-bottom: 23px;
}
@media (max-width: 500px) {
  .mobile-menu-wrap .hr {
    margin-left: 0;
  }
}

.mobile-menu-close {
  display: block;
  margin-bottom: 30px;
}

.mobile-menu-link {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  display: block;
  margin-left: 40px;
  margin-bottom: 26px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media (max-width: 500px) {
  .mobile-menu-link {
    margin-left: 0;
  }
}
.mobile-menu-link.new::after {
  content: "new";
  font-size: 14px;
  line-height: 24px;
  color: #00CCCC;
  display: inline-block;
  -webkit-transform: translateY(-13px);
          transform: translateY(-13px);
}
.mobile-menu-link:hover {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #00CCCC;
}

.header-right-lk-sublist-close {
  display: none;
}
@media (max-width: 750px) {
  .header-right-lk-sublist-close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    text-align: right;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    color: #232221;
    position: relative;
    width: calc(100% + 40px);
    left: -20px;
    top: -20px;
    background: #F3F3F3;
    -webkit-box-shadow: 0px 1px 0px #EBEBEB;
            box-shadow: 0px 1px 0px #EBEBEB;
    height: 55px;
    padding: 5px 20px;
  }
}

.header-right-lk-sublist {
  position: absolute;
  top: calc(100% + 15px);
  min-width: 260px;
  right: 0;
  background: #FFFFFF;
  padding: 16px 21px;
  -webkit-filter: drop-shadow(0px 4px 16px rgba(143, 153, 158, 0.5));
          filter: drop-shadow(0px 4px 16px rgba(143, 153, 158, 0.5));
  display: none;
}
.header-right-lk-sublist .header-right-lk-sublist-balance-info {
  display: none;
}
@media (max-width: 750px) {
  .header-right-lk-sublist {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    max-height: 100vh;
    display: block;
    z-index: 300;
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    visibility: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    overflow: auto;
    padding-bottom: 80px;
  }
  .header-right-lk-sublist .header-right-lk-sublist-balance-info {
    display: block;
    width: 100%;
  }
  .header-right-lk-sublist .header-right-lk-sublist-balance-info__row {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-bottom: 10px;
  }
  .header-right-lk-sublist .header-right-lk-sublist-balance-info__row .label {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #5D686F;
  }
  .header-right-lk-sublist .header-right-lk-sublist-balance-info__row .value {
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: #2B91D7;
    text-align: right;
  }
  .header-right-lk-sublist .header-right-lk-sublist-balance-info .small-information {
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    text-align: right;
    color: #5D686F;
    display: block;
    margin-bottom: 10px;
  }
}
.header-right-lk-sublist .header-right-lk-sublist-log-info {
  width: 100%;
  margin-bottom: 22px;
  display: none;
}
.header-right-lk-sublist .header-right-lk-sublist-log-info .text {
  max-width: calc(100% - 50px);
}
@media (max-width: 750px) {
  .header-right-lk-sublist .header-right-lk-sublist-log-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .header-right-lk-sublist .header-right-lk-sublist-log-info .login, .header-right-lk-sublist .header-right-lk-sublist-log-info .mail {
    display: block;
    overflow: hidden;
  }
  .header-right-lk-sublist .header-right-lk-sublist-log-info .mail {
    margin-bottom: 0;
  }
}
.header-right-lk-sublist .header-right-lk-sublist-log-info .name {
  width: 48px;
  min-width: 48px;
  height: 48px;
  background: #F2F2F2;
  border: 2px solid #EBECEE;
  border-radius: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2B91D7;
  margin-right: 10px;
}
.header-right-lk-sublist .login {
  font-size: 16px;
  line-height: 24px;
  color: #2B91D7;
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 750px) {
  .header-right-lk-sublist .login {
    display: none;
  }
}
.header-right-lk-sublist .login:hover {
  color: #2B91D7;
  text-decoration: underline;
}
.header-right-lk-sublist .mail {
  font-size: 16px;
  line-height: 24px;
  color: #8F9A9F;
  display: block;
  margin-bottom: 12px;
  pointer-events: none;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 750px) {
  .header-right-lk-sublist .mail {
    display: none;
  }
}
.header-right-lk-sublist .logout {
  font-size: 16px;
  line-height: 16px;
  color: #232221;
  display: block;
}
.header-right-lk-sublist .logout:hover {
  color: #2B91D7;
  text-decoration: underline;
}

.header-right-lk-list {
  width: 100%;
  border-top: 1px solid #D4E0E7;
  border-bottom: 1px solid #D4E0E7;
  padding: 12px 0 0;
  font-size: 16px;
  line-height: 16px;
  color: #232221;
  list-style-type: none;
  margin-bottom: 16px;
}
@media (max-width: 750px) {
  .header-right-lk-list {
    margin-bottom: 0;
  }
}
.header-right-lk-list__item {
  margin-bottom: 20px;
}
.header-right-lk-list__item_top_line {
    border-top: 1px solid #D4E0E7;
    padding-top: 12px;
    margin-bottom: 15px;
}
.header-right-lk-list__link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-right-lk-list__link:hover {
  color: #2B91D7;
  text-decoration: underline;
}

@media (max-width: 750px) {
  .login-menu-open {
    overflow: hidden;
  }
  .login-menu-open .header-right-lk-sublist {
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.burger {
  width: 24px;
  height: 24px;
  display: none;
  position: relative;
  margin-right: 13px;
}
.burger::before, .burger::after, .burger span {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: #273841;
  border-radius: 1px;
}
.burger::before {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.burger::after {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
@media (max-width: 768px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.header-login {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  height: 48px;
  width: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background: #E85B96;
  border: 2px solid #E85B96;
  margin-left: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-login:hover {
  background: #DF387E;
  border-color: #DF387E;
}
.header-login:active {
  background: #D22970;
  border-color: #D22970;
}
.header-login:disabled {
  color: #8F9A9F;
  background: #F2F2F2;
  border-color: #EBECEE;
}
@media (max-width: 720px) {
  .header-login {
    height: 35px;
    margin-left: 10px;
  }
}
@media (max-width: 750px) {
  .header-login {
    display: none;
  }
}

.mobile-link-login {
  display: none;
}
@media (max-width: 750px) {
  .mobile-link-login {
    display: block;
  }
}

.header-filter {
  width: 100%;
  background: #F2F2F2;
  position: relative;
}

.header-filter-wrap {
  padding: 32px 0;
  display: grid;
  grid-template-areas: 'search search' 'items link';
  grid-template-columns: minmax(0,1fr) 170px;
  grid-row-gap: 20px;
  grid-column-gap: 10px;
}

@media (max-width: 1050px) {
  .header-filter-wrap {
    grid-template-columns: minmax(0,1fr);
    grid-template-areas: 'search' 'items';
    grid-column-gap: 0;
  }
}

@media (max-width: 769px) {
  .header-filter-wrap {
    grid-template-columns: repeat(2,1fr);
    grid-template-areas: 'search search' 'filter-link clear';
    grid-column-gap: 0;
  }
  .header-filter-wrap--marketplace {
    grid-template-areas: 'search search' 'items items';
  }
}

@media (max-width: 450px) {
  .header-filter-wrap {
    grid-template-columns: 72% max-content;
    grid-template-areas: 'toggle link';
    padding: 20px 0;
    justify-content: space-between;
    position: relative;
  }
}

.header-filter-search-toggle {
  display: none;
}

@media (max-width: 450px) {
  .header-filter-search-toggle {
    grid-area: toggle;
    background: #FFFFFF;
    border: 1px solid #D4E0E7;
    border-radius: 4px;
    margin: 0;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-filter-search-toggle span {
    flex-grow: 1;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.01em;
    color: #232221;
    text-align: left;
  }

  .header-filter-search-toggle--open {
    background: #00CCCC;
  }

  .header-filter-search-toggle--open span {
    color: white;
  }

  .header-filter-search-toggle--open svg:first-child path {
    fill: white;
    stroke: white;
  }

  .header-filter-search-toggle--open svg:last-child circle,
  .header-filter-search-toggle--open svg:last-child path {
    stroke: white;
  }
}


.header-categories-nav {
  grid-area: items;
  display: flex;
  gap: 16px;
  align-items: center;
}

@media (max-width: 769px) {
  .header-categories-nav {
    gap: 30px;
  }
}

@media (max-width: 450px) {
  .header-categories-nav {
    display: none;
  }

  .header-filter-mobile-content .header-categories-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
}

.header-categories-nav li {
  position: relative;
}

.header-categories-nav a {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
}

@media (max-width: 450px) {
  .header-categories-nav li {
    width: 100%;
  }

  .header-categories-nav li:not(:last-child) {
    border-bottom: 1px solid #D0D0D0;
  }

  .header-categories-nav a {
    width: 100%;
    padding: 15px 0;
    justify-content: space-between;
  }
}

.header-categories-nav a.blue {
  color: #2B91D7;
}

.header-categories-nav a svg {
  margin-left: 6px;
  margin-top: 2px;
}

.header-categories-nav a:hover,
.header-categories-nav .open-child a {
  color: #00AFAF;
}

.header-categories-nav a:hover svg path ,
.header-categories-nav .open-child a svg path{
  stroke: #00AFAF;
}

.header-categories-nav .open-child a svg {
  transform: rotate(180deg);
}

.header-categories-nav .submenu {
  display: none;
}

.header-categories-nav .open-child .submenu {
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 0;
  top: calc(100% + 10px);
  max-width: 200px;
  max-height: 400px;
  overflow-y: auto;
  background: #FFFFFF;
  box-shadow: 0px 4px 16px -2px rgba(143, 153, 158, 0.5);
  border-radius: 4px;
  z-index: 10;
  min-width: max-content;
}

.header-categories-nav .open-child .submenu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.header-categories-nav .open-child .submenu::-webkit-scrollbar-button {
  background-color: #666;
}

.header-categories-nav .open-child .submenu::-webkit-scrollbar-corner {
  background-color: #999;
}

.header-categories-nav .open-child .submenu::-webkit-scrollbar-thumb {
  background: #00CCCC;
  border-radius: 8px;
}

.header-categories-nav .open-child .submenu::-webkit-scrollbar-track {
  background-color: #F2F2F2;
}

.header-categories-nav .open-child .submenu::-webkit-scrollbar-track-piece {
  background-color: #ffffff;
}

@media (max-width: 450px) {
  .header-categories-nav .open-child .submenu {
    position: static;
    max-width: unset;
    max-height: unset;
    background: transparent;
    box-shadow: none;
  }
}

.header-categories-nav .submenu a {
  width: 100%;
  display: block;
  padding: 12px 20px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #232221;
}

.header-categories-nav .submenu a.active {
  color: #00AFAF;
}


.header-categories-nav .submenu a:hover {
  background: #F2F2F2;
  color: #232221;
}

.header-categories-nav .submenu a span {
  color: #8F9A9F;
}

.header-filter-mob-link {
  display: none;
}
.header-filter-mob-link span span {
  color: #F44D36;
}
@media (max-width: 768px) {
  .header-filter-mob-link {
    grid-area: filter-link;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    font-size: 18px;
    line-height: 24px;
    color: #273841;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .header-filter-mob-link svg {
    margin-left: 10px;
  }
}

@media (max-width: 450px) {
  .header-filter-mob-link {
    display: none;
  }

  .header-filter-mobile-content .header-filter-mob-link {
    display: flex;
    flex-grow: unset;
  }
}
.header-filter-mob-link.open svg {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.header-filter-mob-clear {
  display: none;
}
@media (max-width: 768px) {
  .header-filter-mob-clear {
    grid-area: clear;
    display: none;
    text-align: center;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    font-size: 16px;
    line-height: 16px;
    color: #8F9A9F;
    text-decoration: underline;
    -webkit-text-decoration-style: dotted;
            text-decoration-style: dotted;
  }
  .header-filter-mob-clear:hover {
    color: #2B91D7;
    text-decoration: underline;
    -webkit-text-decoration-style: dotted;
            text-decoration-style: dotted;
  }
  .header-filter-mob-clear.visible {
    display: block;
  }
}

@media (max-width: 450px){
  .header-filter-mob-clear.visible {
    display: none;
  }

  .header-filter-mobile-content .header-filter-mob-clear.visible {
    display: block;
    max-width: max-content;
  }
}

.header-filter-items {
  grid-area: items;
  display: grid;
  grid-template-columns: minmax(120px, 170px) minmax(120px, 170px) minmax(120px, 170px) minmax(120px, 170px) minmax(120px, 170px) 80px;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .header-filter-items {
    position: absolute;
    top: 100%;
    z-index: 50;
    background: #F2F2F2;
    margin-top: 0;
    left: 0;
    padding: 0 25px 20px;
    grid-template-columns: 1fr 1fr;
    display: none;
    gap: 10px;
  }
  .header-filter-items.open {
    display: grid;
  }
}
@media (max-width: 760px) {
  .header-filter-items {
    padding: 0 20px 20px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.header-filter-items.header-filter-items-catalog {
  padding-right: 10px;
  grid-template-columns: minmax(110px, 170px) minmax(110px, 170px) minmax(110px, 170px) minmax(110px, 170px) minmax(110px, 170px) 80px;
}
@media (max-width: 768px) {
  .header-filter-items.header-filter-items-catalog {
    padding-right: 0;
  }
}
.header-filter-items.header-filter-items-catalog .SumoSelect:first-child {
  display: block;
}
@media (max-width: 760px) {
  .header-filter-items.header-filter-items-catalog {
    padding: 0 20px 20px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 450px) {
  .header-filter-items,
  .header-filter-mobile-content .header-filter-items{
    display: none;
  }

  .header-filter-mobile-content .header-filter-items.open {
    display: grid;
    position: static;
    width: 100%;
    padding: 0;
    padding-top: 20px;
    background: transparent;
  }
}

.header-filter-items .SumoSelect,
.header-filter-search-input .SumoSelect {
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  border-radius: 4px;
  height: 40px;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-filter-search-input .SumoSelect {
  width: 220px;
  background: #F8F8F8;
  border-left: 1px solid #D4E0E7;
  border-radius: 0px 4px 4px 0px;
}

.header-filter-items .SumoSelect:hover,
.header-filter-search-input .SumoSelect:hover {
  border: 1px solid #08B8B8;
}
.header-filter-items .SumoSelect.open,
.header-filter-search-input .SumoSelect.open {
  border: 1px solid #08B8B8;
  background-color: rgba(25, 255, 255, 0.07);
}
.header-filter-items .SumoSelect.disabled
.header-filter-search-input .SumoSelect.disabled {
  border: 1px solid #A4AEB3;
  color: #A4AEB3;
}
.header-filter-items .SumoSelect > .CaptionCont,
.header-filter-search-input .SumoSelect > .CaptionCont {
  background: none;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  border-radius: 4px;
  padding-left: 15px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-filter-items .SumoSelect > .CaptionCont .search-txt,
.header-filter-search-input .SumoSelect > .CaptionCont .search-txt {
    height: 100%;
    width: 100%;
}
.header-filter-items .SumoSelect > .CaptionCont .placeholder,
.header-filter-search-input .SumoSelect > .CaptionCont .placeholder {
  font-style: normal !important;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
}
.header-filter-items .SumoSelect > .CaptionCont label,
.header-filter-search-input .SumoSelect > .CaptionCont label {
  background: none;
  width: 32px;
}
.header-filter-items .SumoSelect > .CaptionCont label i,
.header-filter-search-input .SumoSelect > .CaptionCont label i {
  opacity: 1;
  background: url(/images/main/chevron-down.svg) no-repeat center/contain;
}
.header-filter-items .SumoSelect .optWrapper,
.header-filter-search-input .SumoSelect .optWrapper {
  top: 100% !important;
  left: -1px;
  width: calc(100% + 2px);
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  border-radius: 0 0 4px 4px;
  -webkit-filter: drop-shadow(0px 4px 16px rgba(212, 224, 231, 0.5));
          filter: drop-shadow(0px 4px 16px rgba(212, 224, 231, 0.5));
  -webkit-box-shadow: none;
          box-shadow: none;
}
.header-filter-items .SumoSelect .optWrapper .no-match,
.header-filter-search-input .SumoSelect .optWrapper .no-match {
    font-size: 14px;
}
.header-filter-items .SumoSelect .optWrapper .options,
.header-filter-search-input .SumoSelect .optWrapper .options {
    max-height: 377px;
}
.header-filter-items .SumoSelect .optWrapper .options::-webkit-scrollbar,
.header-filter-search-input .SumoSelect .optWrapper .options::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.header-filter-items .SumoSelect .optWrapper .options::-webkit-scrollbar-button,
.header-filter-search-input .SumoSelect .optWrapper .options::-webkit-scrollbar-button {
  background-color: #666;
}
.header-filter-items .SumoSelect .optWrapper .options::-webkit-scrollbar-track,
.header-filter-search-input .SumoSelect .optWrapper .options::-webkit-scrollbar-track {
  background-color: #F2F2F2;
}
.header-filter-items .SumoSelect .optWrapper .options::-webkit-scrollbar-track-piece,
.header-filter-search-input .SumoSelect .optWrapper .options::-webkit-scrollbar-track-piece {
  background-color: #ffffff;
}
.header-filter-items .SumoSelect .optWrapper .options::-webkit-scrollbar-thumb,
.header-filter-search-input .SumoSelect .optWrapper .options::-webkit-scrollbar-thumb {
  background: #00CCCC;
  border-radius: 8px;
}
.header-filter-items .SumoSelect .optWrapper .options::-webkit-scrollbar-corner,
.header-filter-search-input .SumoSelect .optWrapper .options::-webkit-scrollbar-corner {
  background-color: #999;
}
.header-filter-items .SumoSelect .optWrapper .options::-webkit-resizer,
.header-filter-search-input .SumoSelect .optWrapper .options::-webkit-resizer {
  background-color: #666;
}
.header-filter-items .SumoSelect .optWrapper .options .opt,
.header-filter-search-input .SumoSelect .optWrapper .options .opt {
  padding-top: 9px;
  padding-bottom: 9px;
  border: none;
  background: #fff !important;
}
.header-filter-items .SumoSelect .optWrapper .options .opt:hover,
.header-filter-search-input .SumoSelect .optWrapper .options .opt:hover {
  background: #F2F2F2 !important;
}
.header-filter-items .SumoSelect .optWrapper .options .opt.selected,
.header-filter-search-input .SumoSelect .optWrapper .options .opt.selected {
  color: #00AFAF;
}
.header-filter-items .SumoSelect .optWrapper .options .opt.selected span i,
.header-filter-search-input .SumoSelect .optWrapper .options .opt.selected span i{
  background-color: #EBE7FF !important;
  background-image: url(/images/main/check.svg) !important;
}
.header-filter-items .SumoSelect .optWrapper .options .opt label span,
.header-filter-search-input .SumoSelect .optWrapper .options .opt label span {
  display: none !important;
}
.header-filter-items .SumoSelect.open,
.header-filter-search-input .SumoSelect.open {
  border-radius: 4px 4px 0 0;
}
.header-filter-items .SumoSelect.open > .CaptionCont label,
.header-filter-search-input .SumoSelect.open > .CaptionCont label {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (max-width: 450px) {
  .header-filter-items .SumoSelect .optWrapper {
    position: absolute!important;
    max-height: unset!important;
    bottom: unset!important;
    top: 100%!important;
  }
}

.header-filter-sale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  margin-right: 20px;
}
.header-filter-sale input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.header-filter-sale .check {
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  width: 17px;
  min-width: 17px;
  height: 17px;
  border-radius: 4px;
  margin-right: 10px;
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}
.header-filter-sale .text {
  font-size: 16px;
  line-height: 16px;
  color: #E85B96;
  white-space: nowrap;
}
.header-filter-sale input:checked ~ .check {
  background-color: #E85B96;
  border-color: #E85B96;
  background-image: url(/images/main/check.svg);
}

.header-filter-search {
  grid-area: search;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
}
@media (max-width: 1300px) {
  .header-filter-search {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .header-filter-search {
    display: none;
  }

  .header-filter-mobile-content .header-filter-search{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
}
.header-filter-search.open .header-filter-search-subblock {
  display: block;
}

.header-filter-search-input {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.header-filter-search-input input {
  background: #FFFFFF;
  height: 40px;
  border: 1px solid #D4E0E7;
  border-radius: 4px 0 0 4px;
  border-right: none;
  padding: 10px;
  font-size: 16px;
  line-height: 16px;
  min-width: 270px;
  flex-grow: 1;
  padding-left: 35px;
  background-image: url(/images/main/search.svg);
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1300px) {
  .header-filter-search-input input {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .header-filter-search-input {
    display: flex;
    width: 100%;
    flex-direction: column;
  }

  .header-filter-search-input input {
    padding: 13px 10px;
    padding-right: 35px;
    background-position: right 10px center;
    border-right: 1px solid #D4E0E7;
    border-radius: 3px 3px 0 0;
  }
}

.header-filter-search-input input::-webkit-input-placeholder {
  color: #A4AEB3;
}
.header-filter-search-input input::-moz-placeholder {
  color: #A4AEB3;
}
.header-filter-search-input input:-ms-input-placeholder {
  color: #A4AEB3;
}
.header-filter-search-input input::-ms-input-placeholder {
  color: #A4AEB3;
}
.header-filter-search-input input::placeholder {
  color: #A4AEB3;
}
.header-filter-search-input input:hover {
  border: 1px solid #00AFAF;
}
.header-filter-search-input input:focus {
  background-color: rgba(25, 255, 255, 0.07);
  border: 1px solid #00AFAF;
}
.header-filter-search-input input:invalid {
  border: 1px solid #F44D36;
}
.header-filter-search button {
  background: #00CCCC;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 40px;
  width: 170px;
  min-width: 170px;
  margin-left: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1300px) {
  .header-filter-search button {
    margin-left: 20px;
  }
}
@media (max-width: 500px) {
  .header-filter-search button {
    width: 100%;
    margin-left: 0;
  }
}
.header-filter-search button:hover {
  background: #00B9B9;
}
.header-filter-search button:active {
  background: #00AFAF;
}
.header-filter-search button:focus {
  background: #00AFAF;
  border: 2px solid #5BEDED;
}
.header-filter-search button:disabled {
  color: #8F9A9F;
  background: #D4E0E7;
}

.header-filter-search-tabs {
  display: grid;
  width: 100%;
  grid-template-columns: 120px 1fr;
}

.header-filter-search-tabs button {
  background: #F2F2F2;
  padding: 13px 10px;
  border: 1px solid #D4E0E7;
  font-weight: 400;
  font-size: 16px;
  height: auto;
  line-height: 16px;
  color: #8F9A9F;
  text-transform: unset;
  border-top: none;
  border-right: none;
  min-width: auto;
  border-radius: 0 0 0 3px;
  outline: none;
}

.header-filter-search-tabs button:last-child {
  border-right: 1px solid #D4E0E7;
  border-radius: 0 0 3px 0;
}

.header-filter-search-tabs button.active {
  background: #FFFFFF;
  color: #00AFAF;
}

.header-filter-search-tabs button:focus {
  border: 1px solid #D4E0E7;
  border-top: none;
  border-right: none;
}

.header-filter-search-tabs button:last-child:focus {
  border-right: 1px solid #D4E0E7;
}

.header-filter-alternate-link {
  grid-area: link;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  min-width: 170px;
  border: 1px solid #00AFAF;
  border-radius: 3px;
  background: transparent;
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.01em;
 /* text-transform: uppercase;*/
  color: #00AFAF;
}

.header-filter-alternate-link svg {
  display: none;
}

@media (max-width: 1025px) {
  .header-filter-alternate-link {
    display: none;
  }
}

@media (max-width: 450px) {
  .header-filter-alternate-link {
    display: flex;
    padding: 10px 12px;
    min-width: unset;
    background: #FFFFFF;
    border: 1px solid #D4E0E7;
    border-radius: 4px;
    max-width: 48px;
  }

  .header-filter-alternate-link span{
    display: none;
  }

  .header-filter-alternate-link svg {
    display: block;
  }
}

.header-filter-mobile-content {
  display: none;
}

.header-filter-mobile-content--open {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: calc(100% + 40px);
  left: -20px;
  top: 100%;
  background: #EBEBEB;
  box-shadow: 0 4px 16px -2px rgba(143, 153, 158, 0.35);
  padding: 20px;
  z-index: 1000;
  gap: 20px;
}

.header-filter-mobile-content__row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.catalog-section {
  width: 100%;
}
.catalog-section .go-catalog-link {
  width: 100%;
  background: #00CCCC;
  border-radius: 3px;
  height: 40px;
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 48px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.catalog-section .go-catalog-link:hover {
  background: #00B9B9;
}
.catalog-section .go-catalog-link:active {
  background: #00AFAF;
}
.catalog-section .go-catalog-link:focus {
  background: #00AFAF;
  border: 2px solid #5BEDED;
}
.catalog-section .go-catalog-link:disabled {
  color: #8F9A9F;
  background: #D4E0E7;
}

.catalog-section-wrap {
  width: 100%;
  padding: 40px 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 36px 30px;
}

.catalog-section-wrap--marketplace {
  grid-template-columns: repeat(5, 1fr);
  gap: 30px 25px;
  padding-top: 20px;
}
@media (max-width: 1435px) {
  .catalog-section-wrap {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1260px) {
  .catalog-section-wrap {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px 30px;
  }
  .catalog-section-wrap--marketplace {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 35px;
  }
}
@media (max-width: 1023px) {
  .catalog-section-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
  .catalog-section-wrap--marketplace {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 20px;
  }
}
@media (max-width: 765px) {
  .catalog-section-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 570px) {
  .catalog-section-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-section-wrap--marketplace {
    padding-top: 30px;
    grid-template-columns: minmax(0,1fr);
    gap: 30px;
  }
  .catalog-section-wrap--hide-last .catalog-section-item:nth-child(10) {
    display: none;
  }
}

.catalog-section-item {
  position: relative;
}
.catalog-section-item__image {
  width: 100%;
  position: relative;
  display: block;
  border: 1px solid #D4E0E7;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}
.catalog-section-item__image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: rgba(114, 91, 179, 0.56);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.catalog-section-item__image:hover::after {
  opacity: 1;
}
.catalog-section-item__image::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.catalog-section-wrap--marketplace .catalog-section-item__image::before {
  padding-bottom: 66.9%;
}
.catalog-section-item__image img {
  position: absolute;
  left: -1%;
  top: -1%;
  width: 102%;
  height: 102%;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalog-section-item__cost {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  padding-right: 5px;
}
.catalog-section-item__cost-sale {
  font-size: 14px;
  color: #B7BFC3;
  text-decoration: line-through;
}
.catalog-section-item__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.catalog-section-item__add-cart {
  margin-left: 11px;
}
@media (max-width: 570px) {
  .catalog-section-item_participate {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
.catalog-section-item_participate .catalog-section-item__image {
  border: none;
  background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, #ECEFF5 47.4%, #ECEBFD 100%), radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, #ECEFF5 47.4%, #E5E3FF 100%);
  position: relative;
}
.catalog-section-item_participate .catalog-section-item__image::after {
  opacity: 0 !important;
}
@media (max-width: 570px) {
  .catalog-section-item_participate .catalog-section-item__image {
    background-image: url(/images/main/parti.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ECEBFD;
  }
  .catalog-section-item_participate .catalog-section-item__image::before {
    opacity: 0;
    padding-bottom: 50%;
  }
}
.catalog-section-item_participate .catalog-section-item__image .new-draw {
  font-weight: 500;
  font-size: 19px;
  line-height: 24px;
  color: #273841;
  -webkit-transform: rotate(-18.62deg);
          transform: rotate(-18.62deg);
  position: relative;
  z-index: 2;
  position: absolute;
  top: 17px;
  left: 10px;
  font-family: "Atma", cursive;
}
@media (max-width: 570px) {
  .catalog-section-item_participate .catalog-section-item__image .new-draw {
    top: 40px;
  }
}
.catalog-section-item_participate .catalog-section-item__image .date {
  font-weight: 500;
  font-size: 21px;
  line-height: 24px;
  letter-spacing: 0.035em;
  color: #273841;
  -webkit-transform: rotate(10.95deg);
          transform: rotate(10.95deg);
  position: absolute;
  top: 44px;
  right: 4px;
  font-family: "Atma", cursive;
}
@media (max-width: 570px) {
  .catalog-section-item_participate .catalog-section-item__image .date {
    right: auto;
    top: 70px;
    left: 15px;
    -webkit-transform: rotate(-18.62deg);
            transform: rotate(-18.62deg);
  }
}
@media (max-width: 570px) {
  .catalog-section-item_participate .catalog-section-item__image img {
    display: none;
  }
}
.catalog-section-item_participate .participate-link {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #7E67C0;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.catalog-section-item_ex-lab .catalog-section-item__image {
  border: 5px solid #FFBA00;
}
.catalog-section-item_ex-lab .catalog-section-item__image::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(/images/main/Ex-Club.svg) no-repeat center/contain;
  position: absolute;
  left: auto;
  top: 7px;
  right: 7px;
  z-index: 3;
  opacity: 1;
}
.catalog-section-item_ex-lab .catalog-section-item__add-cart path {
  stroke: #FFBA00;
}
.catalog-section-item_ex-lab .catalog-section-item__favorite path {
  stroke: #FFBA00;
}
.catalog-section-item_ex-lab.catalog-section-item_favorite .catalog-section-item__favorite path {
  stroke: #FFBA00;
  fill: #FFBA00;
}
.catalog-section-item_sale::after {
  content: attr(data-catalog-item-sale);
  background: #E85B96;
  border-radius: 0px 5px 0px 0px;
  padding: 0 9px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: absolute;
  top: 1px;
  right: 1px;
  z-index: 3;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  text-align: center;
}
.catalog-section-item_favorite .catalog-section-item__favorite path {
  stroke: #E85B96;
  fill: #E85B96;
}
.catalog-section-item_cart .catalog-section-item__add-cart path {
  fill: #E85B96;
}
.catalog-section-item__favorite--active path {
  stroke: #E85B96;
  fill: #E85B96;
}
.catalog-section-item__add-cart--active path {
  fill: #E85B96;
}

.catalog-section-item-bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.catalog-section-top {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media (max-width: 450px) {
  .catalog-section-top {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}

.catalog-section-results {
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
  color: #5D686F;
}

.catalog-section-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-section-sort__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5D686F;
}

.catalog-section-sort__link {
  display: inline-flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #8F9A9F;
}

.catalog-section-sort__link--active {
  color: #00CCCC;
  border-bottom: 1px dashed #00AFAF;
}

.catalog-section-poster {
  grid-column-start: -1;
  grid-column-end: -3;
  grid-row-start: 1;
  grid-row-end: 3;
  background: linear-gradient(281.26deg, #3997CB -0.65%, #48B1EC 99.71%), #3997CB;
  width: 100%;
}
@media (max-width: 570px) {
  .catalog-section-poster {
    grid-column-start: -1;
    grid-column-end: -3;
    grid-row-start: 3;
    grid-row-end: 0;
  }
}
.catalog-section-poster .swiper-wrapper {
  width: 100%;
  height: calc(100% - 41px);
}
.catalog-section-poster .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.catalog-section-poster .catalog-section-poster2-top {
  position: relative;
  width: 100%;
  padding: 29px 25px 10px;
}
@media (max-width: 1023px) {
  .catalog-section-poster .catalog-section-poster2-top {
    padding: 20px 14px 10px;
  }
}
.catalog-section-poster .catalog-section-poster2-top .text {
  max-width: 137px;
}
.catalog-section-poster .catalog-section-poster2-top .label {
  font-weight: bold;
  font-size: 38px;
  line-height: 19px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  display: block;
  margin-bottom: 20px;
}
.catalog-section-poster .catalog-section-poster2-top .label:hover {
  text-decoration: underline;
}
@media (max-width: 420px) {
  .catalog-section-poster .catalog-section-poster2-top .label {
    font-size: 28px;
  }
}
.catalog-section-poster .catalog-section-poster2-top p {
  font-size: 18px;
  line-height: 19px;
  color: #FFFFFF;
  margin-bottom: 8px;
}
@media (max-width: 420px) {
  .catalog-section-poster .catalog-section-poster2-top p {
    font-size: 16px;
  }
}
.catalog-section-poster .catalog-section-poster2-top .subtitle {
  font-weight: 600;
  font-size: 20px;
  line-height: 17px;
  color: #FFFFFF;
}
@media (max-width: 420px) {
  .catalog-section-poster .catalog-section-poster2-top .subtitle {
    font-size: 16px;
  }
}
.catalog-section-poster .catalog-section-poster2-top .image {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 830px) {
  .catalog-section-poster .catalog-section-poster2-top .image {
    max-height: 140%;
  }
}
@media (max-width: 420px) {
  .catalog-section-poster .catalog-section-poster2-top .image {
    max-height: 110%;
  }
}
.catalog-section-poster .catalog-section-poster-top {
  width: 100%;
  padding: 29px 21px 0px 27px;
}
@media (max-width: 1023px) {
  .catalog-section-poster .catalog-section-poster-top {
    padding: 14px;
  }
}
.catalog-section-poster .catalog-section-poster-top .title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 38px;
  line-height: 19px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 21px;
}
.catalog-section-poster .catalog-section-poster-top .title:hover {
  text-decoration: underline;
}
@media (max-width: 420px) {
  .catalog-section-poster .catalog-section-poster-top .title {
    font-size: 28px;
  }
}
.catalog-section-poster .catalog-section-poster-top p {
  font-size: 18px;
  line-height: 19px;
  color: #FFFFFF;
  margin-bottom: 10px;
}
@media (max-width: 420px) {
  .catalog-section-poster .catalog-section-poster-top p {
    font-size: 16px;
  }
}
.catalog-section-poster .catalog-section-poster-top img {
  max-width: 100%;
  position: relative;
  vertical-align: bottom;
}
.catalog-section-poster .catalog-section-poster-links {
  width: 100%;
  background: #3496CC;
  padding: 12px 27px 12px;
}
@media (max-width: 1023px) {
  .catalog-section-poster .catalog-section-poster-links {
    padding: 10px 14px;
  }
}
.catalog-section-poster .catalog-section-poster-links_first {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 20px 27px 12px;
}
.catalog-section-poster .catalog-section-poster-links__bottom {
  background-image: url(/images/main/cat-6-1.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right bottom;
}
@media (max-width: 420px) {
  .catalog-section-poster .catalog-section-poster-links__bottom {
    background-position: right -40px bottom;
  }
}
.catalog-section-poster .catalog-section-poster-links .title {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 17px;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.catalog-section-poster .catalog-section-poster-links-item {
  display: block;
  font-size: 17px;
  line-height: 17px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #FFFFFF;
  margin-bottom: 8px;
  opacity: 0.8;
}
.catalog-section-poster .catalog-section-poster-links-item:hover {
  opacity: 1;
}
@media (max-width: 420px) {
  .catalog-section-poster .catalog-section-poster-links-item {
    font-size: 13px;
    line-height: 100%;
    margin-bottom: 5px;
  }
}
.catalog-section-poster .catalog-section-poster-links-item img {
  margin-left: 5px;
  display: inline-block;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
.catalog-section-poster .catalog-section-poster-buttons {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.catalog-section-poster .swiper-next-button {
  height: 41px;
  background: #338BBC;
  padding: 5px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 16px;
  line-height: 17px;
  color: #FFFFFF;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 420px) {
  .catalog-section-poster .swiper-next-button {
    font-size: 13px;
  }
}
.catalog-section-poster .swiper-next-button:hover {
  background: #3086B6;
}
.catalog-section-poster .swiper-next-button:active {
  background: #2B7EAD;
}
.catalog-section-poster .swiper-prev {
  border-right: 1px solid rgb(43, 126, 173);
}
.catalog-section-poster .swiper-next {
  border-left: 1px solid rgb(43, 126, 173);
}

.category-slider {
  width: 100%;
  background: #F2F2F2;
}
@media (max-width: 1024px) {
  .category-slider .container {
    padding: 0;
  }
}

.category-slider-wrap {
  width: 100%;
  padding: 26px 0;
  background: #F2F2F2;
}

.category-slider-swiper {
  width: 100%;
  padding: 0 20px 45px;
  position: relative;
}
.category-slider-swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.category-slider-swiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #FFFFFF;
  border: 1px solid #E85B96;
  border-radius: 50%;
  margin: 0 6px;
}
.category-slider-swiper .swiper-pagination-bullet-active {
  background: #E85B96;
}
.category-slider-swiper .swiper-prev {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 81px;
  width: 81px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-left: 14px;
  background: -webkit-gradient(linear, left top, right top, from(#F2F2F2), color-stop(0.01%, #F2F2F2), color-stop(39.06%, rgba(242, 242, 242, 0.921967)), to(rgba(242, 242, 242, 0)));
  background: linear-gradient(90deg, #F2F2F2 0%, #F2F2F2 0.01%, rgba(242, 242, 242, 0.921967) 39.06%, rgba(242, 242, 242, 0) 100%);
}
@media (max-width: 550px) {
  .category-slider-swiper .swiper-prev {
    display: none;
  }
}
.category-slider-swiper .swiper-prev.swiper-button-disabled {
  display: none;
}
.category-slider-swiper .swiper-next {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 81px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-right: 14px;
  background: -webkit-gradient(linear, right top, left top, from(#F2F2F2), color-stop(0.01%, #F2F2F2), color-stop(39.06%, rgba(242, 242, 242, 0.921967)), to(rgba(242, 242, 242, 0)));
  background: linear-gradient(270deg, #F2F2F2 0%, #F2F2F2 0.01%, rgba(242, 242, 242, 0.921967) 39.06%, rgba(242, 242, 242, 0) 100%);
}
@media (max-width: 550px) {
  .category-slider-swiper .swiper-next {
    display: none;
  }
}
.category-slider-swiper .swiper-next.swiper-button-disabled {
  display: none;
}
.category-slider-item {
  padding: 12px;
  background: #F8F8F8;
  border: 1px solid #D4E0E7;
  border-radius: 3px;
  width: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.category-slider-item:hover {
  background: #fff;
}
.category-slider-item .category-slider-item-images {
  width: 100%;
  max-width: 290px;
  display: grid;
  grid-template-columns: repeat(5, 51px);
  grid-auto-rows: 51px;
  gap: 9px;
}
@media (max-width: 350px) {
  .category-slider-item .category-slider-item-images {
    max-width: 270px;
    grid-template-columns: repeat(5, 1fr);
  }
}
.category-slider-item .category-slider-item-image {
  position: relative;
  display: block;
}
.category-slider-item .category-slider-item-image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: rgba(114, 91, 179, 0.56);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.category-slider-item .category-slider-item-image:hover::after {
  opacity: 1;
}
.category-slider-item .category-slider-item-image:first-child {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 3;
}
.category-slider-item .category-slider-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #D4E0E7;
  border-radius: 3px;
}
.category-slider-item__solo .category-slider-item-images {
  width: 100%;
  height: 110px;
  display: block;
}
.category-slider-item__solo .category-slider-item-image {
  width: 100%;
  height: 100%;
}
.category-slider-item__solo .category-slider-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.category-slider-item_no-link .category-slider-item-top a {
  display: none;
}
.category-slider-item_no-link .category-slider-item-image:first-child {
  grid-row-start: auto;
  grid-row-end: auto;
  grid-column-start: auto;
  grid-column-end: auto;
}

.category-slider-item-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 14px;
}
.category-slider-item-top span {
  margin-right: 10px;
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  color: #273841;
}
.category-slider-item-top a {
  font-size: 16px;
  line-height: 24px;
  color: #2B91D7;
}
.category-slider-item-top a:hover {
  text-decoration: underline;
}

.posters-section {
  width: 100%;
}
@media (max-width: 500px) {
  .posters-section .container {
    padding: 0;
  }
}

.posters-section-wrap {
  width: 100%;
  padding: 0 0 35px;
}

.posters-section-items {
  width: 100%;
}
@media (max-width: 1023px) {
  .posters-section-items {
    padding-bottom: 60px;
  }
}
.posters-section-items .swiper-pagination {
  position: absolute;
  bottom: 10px;
  width: 100%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.posters-section-items .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #FFFFFF;
  border: 1px solid #E85B96;
  border-radius: 50%;
  margin: 0 6px;
}
.posters-section-items .swiper-pagination-bullet-active {
  background: #E85B96;
}
.posters-section-items .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.posters-section-items .swiper-slide {
  position: relative;
  background-color: #725BB3;
  height: auto;
  padding: 22px 0 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background-position: center;
  background-position: cover;
  background-repeat: no-repeat;
}
.posters-section-items .swiper-slide:nth-child(1) {
  background-image: url(/images/main/poster-1-bg.svg);
}
.posters-section-items .swiper-slide:nth-child(2) {
  background-image: url(/images/main/poster-2-bg.svg);
}
.posters-section-items .swiper-slide:nth-child(3) {
  background-image: url(/images/main/poster-3-bg.svg);
}
.posters-section-items .swiper-slide .title {
  font-weight: bold;
  font-size: 36px;
  line-height: 42px;
  color: #FFFFFF;
  display: block;
  margin-bottom: 27px;
  padding: 0 40px;
}
@media (max-width: 1200px) {
  .posters-section-items .swiper-slide .title {
    font-size: 33px;
    line-height: 120%;
    padding: 0 22px;
  }
}
.posters-section-items .swiper-slide .image {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  height: 240px;
}
@media (max-width: 1200px) {
  .posters-section-items .swiper-slide .image {
    height: 157px;
  }
}
@media (max-width: 1023px) {
  .posters-section-items .swiper-slide .image {
    height: 240px;
  }
}
@media (max-width: 800px) {
  .posters-section-items .swiper-slide .image {
    height: 157px;
  }
}
@media (max-width: 700px) {
  .posters-section-items .swiper-slide .image {
    height: 300px;
  }
}
@media (max-width: 580px) {
  .posters-section-items .swiper-slide .image {
    height: 230px;
  }
}
@media (max-width: 420px) {
  .posters-section-items .swiper-slide .image {
    height: 170px;
  }
}
.posters-section-items .swiper-slide .image img {
  width: 100%;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.posters-section-items .swiper-slide .image .def {
  opacity: 1;
}
.posters-section-items .swiper-slide .image .hover {
  opacity: 0;
}
.posters-section-items .swiper-slide:hover .image .def {
  opacity: 0;
}
.posters-section-items .swiper-slide:hover .image .hover {
  opacity: 1;
}

.bunners-section {
  width: 100%;
/* margin-bottom: 40px; */
}
@media (max-width: 500px) {
  .bunners-section .container {
    padding: 0;
  }
}

.bunners-section-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 720px) {
  .bunners-section-wrap {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.bunners-section-item {
  min-height: 282px;
  padding: 20px 24px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1023px) {
  .bunners-section-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 14px 38px;
    min-height: 198px;
  }
}
@media (max-width: 580px) {
  .bunners-section-item {
    padding-left: 34px;
  }
}
.bunners-section-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bunners-section-item .title {
  width: 300px;
  position: relative;
  z-index: 2;
  font-weight: bold;
  font-size: 41px;
  line-height: 42px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  display: block;
  margin-bottom: 13px;
}
@media (max-width: 1023px) {
  .bunners-section-item .title {
    width: 100%;
    font-size: 28px;
    line-height: 120%;
  }
}
.bunners-section-item p {
  width: 300px;
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
@media (max-width: 1023px) {
  .bunners-section-item p {
    width: 100%;
    font-size: 21px;
    line-height: 120%;
  }
}

.subscribe {
  width: 100%;
  height: 88px;
  background: #7E67C0;
}

.subscribe-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 950px) {
  .subscribe-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.subscribe-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1200px) {
  .subscribe-left {
    margin-left: -130px;
  }
}
@media (max-width: 500px) {
  .subscribe-left {
    margin-left: 0;
  }
}
.subscribe-left .image {
  height: 88px;
}
@media (max-width: 500px) {
  .subscribe-left .image {
    display: none;
  }
}
.subscribe-left .image img {
  height: 100%;
  vertical-align: bottom;
}
.subscribe-left p {
  font-size: 17px;
  line-height: 22px;
  color: #FFFFFF;
  max-width: 448px;
  margin-left: -100px;
  padding-right: 10px;
}
@media (max-width: 500px) {
  .subscribe-left p {
    margin-left: 0;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.subscribe-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 950px) {
  .subscribe-form {
    width: 100%;
    margin-top: -3px;
    margin-bottom: 29px;
  }
}
@media (max-width: 500px) {
  .subscribe-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.subscribe-form input {
  width: 271px;
  height: 38px;
  padding: 5px 11px;
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  font-size: 16px;
  line-height: 16px;
  margin-right: 29px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 950px) {
  .subscribe-form input {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: auto;
  }
}
@media (max-width: 500px) {
  .subscribe-form input {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.subscribe-form input::-webkit-input-placeholder {
  color: #A4AEB3;
}
.subscribe-form input::-moz-placeholder {
  color: #A4AEB3;
}
.subscribe-form input:-ms-input-placeholder {
  color: #A4AEB3;
}
.subscribe-form input::-ms-input-placeholder {
  color: #A4AEB3;
}
.subscribe-form input::placeholder {
  color: #A4AEB3;
}
.subscribe-form input:hover {
  border: 1px solid #00AFAF;
}
.subscribe-form input:focus {
  border: 1px solid #00AFAF;
}
.subscribe-form input:invalid {
  border: 1px solid #F44D36;
}
.subscribe-form button {
  width: 130px;
  height: 40px;
  background: #00CCCC;
  border-radius: 3px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.subscribe-form button:hover {
  background: #00B9B9;
}
.subscribe-form button:active {
  background: #00AFAF;
}
.subscribe-form button:focus {
  background: #00AFAF;
  border: 2px solid #5BEDED;
}
.subscribe-form button:disabled {
  color: #8F9A9F;
  background: #D4E0E7;
}

.footer {
  width: 100%;
  background: #273841;
}

.footer-wrap {
  width: 100%;
  padding: 30px 0 25px;
  position: relative;
}
@media (max-width: 1200px) {
  .footer-wrap {
    padding-bottom: 30px;
  }
}

.footer-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 30px;
}
@media (max-width: 580px) {
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer-logo {
  display: block;
  width: 198px;
}
@media (max-width: 580px) {
  .footer-logo {
    margin-bottom: 10px;
  }
}
.footer-logo img {
  width: 100%;
}

.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.footer-social-item {
  margin-left: 12px;
  display: block;
}
.footer-social-item svg rect {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-social-item:hover svg rect {
  fill: #00CCCC;
}
.footer-social-item:active svg rect {
  fill: #00AFAF;
}
@media (max-width: 580px) {
  .footer-social-item {
    margin: 0 6px;
  }
}

.footer-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-bottom: 17px;
  border-bottom: 1px solid #425E6D;
}

.footer-lists {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, auto);
  gap: 123px;
}
@media (max-width: 1250px) {
  .footer-lists {
    width: 100%;
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 1000px) {
  .footer-lists {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 580px) {
  .footer-lists {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .footer-lists-item {
    width: 100%;
    border-bottom: 1px solid #425E6D;
    padding-bottom: 10px;
  }
  .footer-lists-item:last-child {
    border: none;
  }
}
.footer-lists-item .label {
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  display: block;
  margin-bottom: 6px;
}
@media (max-width: 580px) {
  .footer-lists-item .label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .footer-lists-item .label::after {
    content: "";
    display: block;
    background: url(/images/main/arrow-poster.svg);
    background-size: contain;
    width: 20px;
    height: 20px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.footer-lists-item a {
  display: block;
  margin-bottom: 2px;
  font-size: 16px;
  line-height: 24px;
  color: #B7BFC3;
}
@media (max-width: 580px) {
  .footer-lists-item a {
    display: none;
    margin-bottom: 10px;
  }
}
.footer-lists-item a:hover {
  text-decoration: underline;
}
.footer-lists-item a:active {
  text-decoration: underline;
  color: #fff;
}
@media (max-width: 580px) {
  .footer-lists-item.open a {
    display: block;
  }
  .footer-lists-item.open .label {
    margin-bottom: 20px;
  }
  .footer-lists-item.open .label::after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

.footer-bottom {
  width: 100%;
  width: 100%;
  padding: 20px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 440px) {
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 440px) {
  .footer-bottom .sertificate {
    margin-top: 10px;
  }
}
.footer-bottom p {
  font-size: 14px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}
.autorization-section {
  width: 100%;
}
.autorization-section .container {
  max-width: 620px;
}

.autorization-section-wrap {
  width: 100%;
  padding: 50px 0;
}

.autorization-section-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 20px;
}
@media (max-width: 550px) {
  .autorization-section-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.autorization-section-top__title {
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  color: #E85B96;
}
@media (max-width: 550px) {
  .autorization-section-top__title {
    margin-bottom: 20px;
  }
}
.autorization-section-top__text {
  font-size: 16px;
  line-height: 16px;
  color: #8F9A9F;
}
.autorization-section-top__text a {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
  color: #273841;
}
.autorization-section-top__text a:hover {
  text-decoration: none;
}
.autorization-section-top__text a:active {
  color: #2B91D7;
}

.autorization-section-form {
  width: 100%;
  background: #FDFDFD;
  border: 1px solid #D4E0E7;
  border-radius: 6px;
  padding: 50px;
}
@media (max-width: 550px) {
  .autorization-section-form {
    padding: 0;
    background: none;
    border: none;
  }
}

.autorization-section-form-wrap {
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
}
@media (max-width: 550px) {
  .autorization-section-form-wrap {
    max-width: 100%;
  }
}
.autorization-section-form-wrap .info {
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: #232221;
}
.autorization-section-form-wrap .info a {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
  color: #2B91D7;
}
.autorization-section-form-wrap .info a:hover {
  text-decoration: none;
}
.autorization-section-form-wrap .info a:active {
  color: #1D81C6;
}
.autorization-section-form-wrap .social-login {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 550px) {
  .autorization-section-form-wrap .social-login {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.autorization-section-form-wrap .social-login a {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 16px;
  line-height: 16px;
  color: #273841;
  margin-right: 14px;
  background: #F8F8F8;
  border: 1px solid #A4AEB3;
  border-radius: 4px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 550px) {
  .autorization-section-form-wrap .social-login a {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.autorization-section-form-wrap .social-login a:active {
  border: 1px solid #2B91D7;
}
.autorization-section-form-wrap .social-login a:last-child {
  margin-right: 0;
}
@media (max-width: 550px) {
  .autorization-section-form-wrap .social-login a:last-child {
    margin-bottom: 0;
  }
}
.autorization-section-form-wrap .social-login a img {
  margin-right: 10px;
}

.autorization-section-input-wrapper {
  width: 100%;
  position: relative;
  margin-bottom: 29px;
}
.autorization-section-input-wrapper label {
  font-size: 18px;
  line-height: 16px;
  color: #273841;
  display: block;
  margin-bottom: 10px;
}
.autorization-section-input-wrapper input {
  width: 100%;
  height: 46px;
  background-color: #F8F8F8;
  border: 1px solid #A4AEB3;
  border-radius: 4px;
  padding: 5px 38px;
  background-position: left 13px center;
  background-repeat: no-repeat;
  font-size: 16px;
  line-height: 16px;
  color: #273841;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.autorization-section-input-wrapper input:active {
  border: 1px solid #1D81C6;
}
.autorization-section-input-wrapper input:hover {
  border: 1px solid #2B91D7;
}
.autorization-section-input-wrapper input:focus {
  outline: 2px solid #5DBFF6;
}
.autorization-section-input-wrapper input.invalid {
  border: 1px solid #F44D36;
}
.autorization-section-input-wrapper .eror {
  font-size: 12px;
  line-height: 14px;
  display: block;
  text-align: right;
  color: #F44D36;
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  display: none;
}
.autorization-section-input-wrapper .info {
  font-size: 12px;
  display: block;
  text-align: right;
  color: #8F9A9F;
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
}
.autorization-section-input-wrapper.invalid-wrapper .eror {
  display: block;
}
.autorization-section-input-wrapper.invalid-wrapper .info {
  display: none;
}
.autorization-section-input-wrapper .login-input {
  background-image: url(/images/main/user-default.svg);
}
.autorization-section-input-wrapper .login-input:active {
  background-image: url(/images/main/user-active.svg);
}
.autorization-section-input-wrapper .password-input {
  background-image: url(/images/main/pass-default.svg);
}
.autorization-section-input-wrapper .password-input:active {
  background-image: url(/images/main/pass-disactive.svg);
}
.autorization-section-input-wrapper .login-email {
  background-image: url(/images/main/mail-default.svg);
}
.autorization-section-input-wrapper .login-email:active {
  background-image: url(/images/main/mail-active.svg);
}
.autorization-section-input-wrapper a {
  font-size: 16px;
  line-height: 16px;
  text-align: right;
  color: #8F9A9F;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.autorization-section-input-wrapper a:hover {
  text-decoration: underline;
}
.autorization-section-input-wrapper a:active {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #2B91D7;
}
.autorization-section-input-wrapper .input-wrapper {
  width: 100%;
  height: 46px;
  margin-bottom: 12px;
  position: relative;
}
.autorization-section-input-wrapper .input-wrapper .visibility-pass {
  width: 18px;
  min-width: 18px;
  height: 18px;
  display: block;
  background: url(/images/main/lock-default.svg) no-repeat center/contain;
  position: absolute;
  right: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.autorization-section-input-wrapper .input-wrapper.visibility .visibility-pass {
  background: url(/images/main/pass-active.svg) no-repeat center/contain;
}

.autorization-section-form-button {
  background: #E85B96;
  border: 2px solid #E85B96;
  border-radius: 3px;
  height: 46px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 29px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.autorization-section-form-button:hover {
  background: #D23A7A;
}
.autorization-section-form-button:focus {
  background: #D23A7A;
  border: 2px solid #F495BD;
}
.autorization-section-form-button:active {
  background: #D22970;
}
.autorization-section-form-button:disabled {
  background: #D4E0E7;
  border-color: #D4E0E7;
  color: #8F9A9F;
  cursor: not-allowed;
}

.autorization-section-form-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 25px;
}
.autorization-section-form-checkbox p {
  font-size: 16px;
  line-height: 16px;
  color: #273841;
  margin-top: 3px;
}
.autorization-section-form-checkbox p span {
  font-size: 36px;
  color: #2B91D7;
  margin-top: -5px;
  display: inline-block;
}
.autorization-section-form-checkbox p a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #2B91D7;
}
.autorization-section-form-checkbox .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  margin-right: 10px;
  width: 22px;
  min-width: 22px;
  height: 22px;
}
.autorization-section-form-checkbox .checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.autorization-section-form-checkbox .checkbox .check {
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  width: 22px;
  min-width: 22px;
  height: 22px;
  border-radius: 4px;
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.autorization-section-form-checkbox .checkbox input:checked ~ .check {
  background-color: #2B91D7;
  border-color: #2B91D7;
  background-image: url(/images/main/check.svg);
}
.autorization-section-form-checkbox .checkbox input:checked:hover ~ .check {
  background-color: #1D81C6;
  border-color: #1D81C6;
  background-image: url(/images/main/check.svg);
}
.autorization-section-form-checkbox .checkbox input:disabled ~ .check {
  background-color: #EBECEE;
  border: 1px solid #A4AEB3;
}
.autorization-section-form-checkbox .checkbox input:checked:disabled ~ .check {
  background-color: #EBECEE;
  border-color: #A4AEB3;
  background-image: url(/images/main/check.svg);
}
.autorization-section-form-checkbox .checkbox input:hover ~ .check {
  border: 1px solid #2B91D7;
}
.autorization-section-form-checkbox .checkbox input:focus ~ .check {
  outline: 1px solid #5DBFF6;
}

.form-or {
  display: block;
  width: 100%;
  margin-bottom: 35px;
  position: relative;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  color: #8F9A9F;
}
.form-or::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #B7BFC3;
  top: 50%;
}
.form-or span {
  display: inline-block;
  position: relative;
  background: #FDFDFD;
  z-index: 2;
  padding: 0 10px;
}

.fancybox-bg {
  background: rgba(32, 20, 67, 0.5);
}

.autorization-popup {
  width: 98%;
  max-width: 500px;
  padding: 32px 58px 20px;
  background: #FDFDFD;
  border: 1px solid #D4E0E7;
  -webkit-box-shadow: 0px 4px 12px rgba(90, 96, 99, 0.3);
          box-shadow: 0px 4px 12px rgba(90, 96, 99, 0.3);
  border-radius: 6px;
  display: none;
}
@media (max-width: 500px) {
  .autorization-popup {
    padding: 32px 20px 20px;
  }
}
.autorization-popup__title {
  font-weight: 600;
  font-size: 22px;
  line-height: 23px;
  text-align: center;
  color: #273841;
  display: block;
  margin-bottom: 34px;
}
.autorization-popup__text {
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: #232221;
  text-align: center;
  margin-bottom: 32px;
}
.autorization-popup__text .mail {
  font-size: 16px;
  line-height: 16px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #2B91D7;
}
.autorization-popup__text .try-again {
  font-size: 16px;
  line-height: 16px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #2B91D7;
}
.autorization-popup__link-reg {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
  color: #2B91D7;
}
.autorization-popup__another-email {
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  display: block;
  color: #8F9A9F;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
}

.autorization-popup-wrap {
  width: 100%;
}

.autorization-popup-form {
  width: 100%;
}
.autorization-popup-form button {
  background: #E85B96;
  border: 2px solid #E85B96;
  border-radius: 3px;
  height: 46px;
  width: 168px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 29px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto 40px;
}
@media (max-width: 500px) {
  .autorization-popup-form button {
    width: 100%;
  }
}
.autorization-popup-form button:hover {
  background: #D23A7A;
}
.autorization-popup-form button:focus {
  background: #D23A7A;
  border: 2px solid #F495BD;
}
.autorization-popup-form button:active {
  background: #D22970;
}
.autorization-popup-form button:disabled {
  background: #D4E0E7;
  border-color: #D4E0E7;
  color: #8F9A9F;
  cursor: not-allowed;
}

.cookies-bunner {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #45376F;
  z-index: 10000;
}
@media (max-width: 750px) {
  .cookies-bunner {
    bottom: 52px;
  }
}
.cookies-bunner .container {
  max-width: 1200px;
}

.cookies-bunner-wrap {
  width: 100%;
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 660px) {
  .cookies-bunner-wrap {
    display: block;
  }
}
.cookies-bunner-wrap p {
  font-size: 17px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 40px;
}
@media (max-width: 660px) {
  .cookies-bunner-wrap p {
    margin-right: 0;
  }
}
.cookies-bunner-wrap p a {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.03em;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #FFFFFF;
  white-space: nowrap;
}
@media (max-width: 660px) {
  .cookies-bunner-wrap p a {
    display: block;
    margin-bottom: -30px;
    margin-top: 20px;
  }
}
.cookies-bunner-wrap p a:hover {
  text-decoration: none;
}

.cookies-bunner-link {
  width: 170px;
  min-width: 170px;
  height: 36px;
  border: 2px solid #00CCCC;
  border-radius: 3px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 660px) {
  .cookies-bunner-link {
    margin-left: auto;
  }
}
.cookies-bunner-link:hover {
  background: #00CCCC;
}
.cookies-bunner-link:active {
  background: #00AFAF;
  border-color: #00AFAF;
}

.popup-eror-favorite {
  display: none;
  padding: 0;
  width: 98%;
  max-width: 370px;
}
.popup-eror-favorite .fancybox-close-small {
  display: none;
}
.popup-eror-favorite p {
  padding: 13px 56px;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  color: #232221;
}
.popup-eror-favorite p a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #2B91D7;
}
.popup-eror-favorite .close {
  height: 40px;
  width: 100%;
  background: #F7F7F7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: #8F9A9F;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
}

.popup-privacy {
  display: none;
  padding: 30px 60px 60px;
  max-width: 1164px;
  width: 98%;
  max-height: 98vh;
}
@media (max-width: 780px) {
  .popup-privacy {
    padding: 30px;
  }
}
.popup-privacy::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.popup-privacy::-webkit-scrollbar-button {
  background-color: #666;
}
.popup-privacy::-webkit-scrollbar-track {
  background-color: #F2F2F2;
}
.popup-privacy::-webkit-scrollbar-track-piece {
  background-color: #ffffff;
}
.popup-privacy::-webkit-scrollbar-thumb {
  background: #00CCCC;
  border-radius: 8px;
}
.popup-privacy::-webkit-scrollbar-corner {
  background-color: #999;
}
.popup-privacy::-webkit-resizer {
  background-color: #666;
}
.popup-privacy > a {
  width: 170px;
  min-width: 170px;
  height: 36px;
  border: 2px solid #00CCCC;
  border-radius: 3px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #232221;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 100px auto 0;
}
@media (max-width: 500px) {
  .popup-privacy > a {
    margin-top: 30px;
  }
}
.popup-privacy > a:hover {
  background: #00CCCC;
  color: #fff;
}
.popup-privacy > a:active {
  background: #00AFAF;
  border-color: #00AFAF;
  color: #fff;
}
.popup-privacy .title {
  font-weight: 600;
  font-size: 26px;
  line-height: 42px;
  text-align: center;
  text-transform: uppercase;
  color: #232628;
  display: block;
  margin-bottom: 6px;
}
@media (max-width: 760px) {
  .popup-privacy .title {
    font-size: 18px;
    line-height: 120%;
  }
}
@media (max-width: 500px) {
  .popup-privacy .title {
    text-align: left;
    margin-bottom: 2px;
  }
}
.popup-privacy .subtitle {
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #232628;
  display: block;
  margin-bottom: 25px;
}
@media (max-width: 760px) {
  .popup-privacy .subtitle {
    font-size: 18px;
    line-height: 120%;
  }
}
@media (max-width: 500px) {
  .popup-privacy .subtitle {
    text-align: left;
    margin-bottom: 10px;
  }
}
.popup-privacy p {
  font-size: 16px;
  line-height: 22px;
  color: #232628;
}
.popup-privacy ul {
  padding-left: 20px;
  list-style-type: square;
}
.popup-privacy ul li::marker {
  color: #00CCCC;
}

.catalog-section-pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 40px 0;
  border-top: 1px solid #D4E0E7;
}
@media (max-width: 690px) {
  .catalog-section-pagination {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.catalog-section-pagination .prev-page {
  width: 130px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #232221;
  text-align: center;
  background: #F2F2F2;
  border-radius: 3px;
}
@media (max-width: 690px) {
  .catalog-section-pagination .prev-page {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 49%;
  }
}
.catalog-section-pagination .prev-page.disabled {
  pointer-events: none;
  background: #D4E0E7;
  color: #8F9A9F;
}
.catalog-section-pagination .prev-page:hover {
  background: #E4E5E6;
}
.catalog-section-pagination .prev-page:focus {
  border: 2px solid #5BEDED;
}
.catalog-section-pagination .prev-page:active {
  color: #fff;
  background: #00AFAF;
}
.catalog-section-pagination .next-page {
  width: 130px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  background: #00B9B9;
  border-radius: 3px;
}
@media (max-width: 690px) {
  .catalog-section-pagination .next-page {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 49%;
  }
}
.catalog-section-pagination .next-page.disabled {
  pointer-events: none;
  background: #D4E0E7;
  color: #8F9A9F;
}
.catalog-section-pagination .next-page:hover {
  background: #00AFAF;
}
.catalog-section-pagination .next-page:active {
  background: #00AFAF;
  border: 2px solid #5BEDED;
}

.catalog-section-pagination-list {
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  text-align: center;
  list-style-type: none;
}
@media (max-width: 690px) {
  .catalog-section-pagination-list {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
  }
}
.catalog-section-pagination-list__item {
  margin: 0 5px;
}
.catalog-section-pagination-list__item.active a {
  background: #00CCCC;
  color: #fff;
}
.catalog-section-pagination-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 40px;
  height: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.catalog-section-pagination-list__link:hover {
  background: #F2F2F2;
}

.timer-sale {
  width: 100%;
  margin-bottom: 20px;
}

.timer-sale-wrap {
  width: 100%;
  padding: 26px 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 610px) {
  .timer-sale-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 610px) {
  .timer-sale-wrap svg {
    display: none;
  }
}

.timer-sale-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 100%;
  padding: 0 10px;
  height: 44px;
  background: #7250D4;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #E1D7FF;
  margin-right: 17px;
}
@media (max-width: 610px) {
  .timer-sale-label {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.timer-sale-label b {
  font-weight: 600;
  font-size: 27px;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-left: 10px;
}

.timer-sale-clock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-left: 17px;
}
@media (max-width: 610px) {
  .timer-sale-clock {
    margin-left: 0;
  }
}
.timer-sale-clock .dots {
  font-weight: 300;
  font-size: 30px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #232221;
  display: block;
  margin: 0 15px;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
@media (max-width: 610px) {
  .timer-sale-clock .dots {
    display: none;
  }
}

.timer-sale-clock-item {
  width: 62px;
  height: 44px;
  background: #F2F2F2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-top: 3px;
}
@media (max-width: 610px) {
  .timer-sale-clock-item {
    margin: 0 5px;
    height: 61px;
    padding: 7px 0;
  }
}
.timer-sale-clock-item .value {
  font-weight: 600;
  font-size: 27px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #E85B96;
  display: block;
}
.timer-sale-clock-item .label {
  font-size: 11px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #232221;
  display: block;
  margin-bottom: 2px;
}

.seo-text {
    width: 100%;
}

.seo-text-wrap {
    width: 100%;
    font-size: 15px;
    border-bottom: 1px solid #D4E0E7;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.seo-text-wrap p {
    padding-bottom: 10px;
}

.seo-text-wrap a {
    /*font-weight: bold;*/
    text-decoration: underline;
}

.seo-text-wrap .text-categdm {
    font-size: 16px;
    font-weight: bold;
}

.seo-text-block{
    overflow: hidden;
    position: relative;
}

.seo-text-block.hide {
    height: 150px;
}
.seo-text-block.hide:after{
    content: "";
    display: block;
    height: 30px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 75%)
}

.seo-text-wrap a.content_toggle  {
    color:  #2B91D7;
    font-weight: normal;
    border-bottom: #2B91D7 dotted 1px;
    text-decoration: none;
}

.breadcrumbs {
  width: 100%;
}
.breadcrumbs_faq {
  background: #F2F2F2;
}

.breadcrumbs-wrap {
  width: 100%;
  padding: 18px 0;
}

.breadcrumbs-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  font-size: 16px;
  line-height: 19px;
  color: #9B9B9B;
}
@media (max-width: 500px) {
  .breadcrumbs-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.breadcrumbs-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-right: 8px;
}
.breadcrumbs-list__item:after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background: url(/images/main/arr-r.svg) no-repeat center/contain;
  margin-left: 8px;
}
.breadcrumbs-list__item:last-child {
  color: #E85B96;
  pointer-events: none;
}
.breadcrumbs-list__item:last-child:after {
  display: none;
}
.ex-club-posters {
  width: 100%;
}

.ex-club-posters-wrap {
  width: 100%;
  padding: 10px 0 50px;
}
@media (max-width: 500px) {
  .ex-club-posters-wrap {
    padding-bottom: 20px;
  }
}
.ex-club-posters-wrap h1 {
  font-weight: bold;
  font-size: 36px;
  line-height: 19px;
  color: #232221;
  margin-bottom: 35px;
}

.ex-club-posters-slider {
  width: 100%;
}
@media (max-width: 1020px) {
  .ex-club-posters-slider {
    padding-bottom: 60px;
  }
}
.ex-club-posters-slider .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.ex-club-posters-slider .swiper-slide {
  height: auto;
  background: #755EB7;
  padding: 14px 0 10px;
}
.ex-club-posters-slider .swiper-slide img {
  max-width: 100%;
}
.ex-club-posters-slider .swiper-slide .title {
  font-weight: bold;
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  color: #FFFFFF;
  display: block;
  margin-bottom: 13px;
  padding: 0 20px;
}
@media (max-width: 1200px) {
  .ex-club-posters-slider .swiper-slide .title {
    font-size: 18px;
  }
}
.ex-club-posters-slider .swiper-pagination {
  position: absolute;
  bottom: 10px;
  width: 100%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  opacity: 0;
}
@media (max-width: 1020px) {
  .ex-club-posters-slider .swiper-pagination {
    opacity: 1;
  }
}
.ex-club-posters-slider .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #FFFFFF;
  border: 1px solid #E85B96;
  border-radius: 50%;
  margin: 0 6px;
}
.ex-club-posters-slider .swiper-pagination-bullet-active {
  background: #E85B96;
}

.ex-club-stats {
  width: 100%;
  margin-bottom: 50px;
}
.ex-club-stats-wrap {
  width: 100%;
  padding: 14px;
  border-top: 2px solid #EEEEEE;
  border-bottom: 2px solid #EEEEEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 750px) {
  .ex-club-stats-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 500px) {
  .ex-club-stats-wrap {
    padding: 14px 0;
  }
}

.ex-club-stats-item {
  margin: 0 70px;
}
@media (max-width: 1020px) {
  .ex-club-stats-item {
    margin: 0 30px;
  }
}
@media (max-width: 750px) {
  .ex-club-stats-item {
    margin: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.ex-club-stats-item .title {
  font-weight: 600;
  font-size: 28px;
  line-height: 30px;
  color: #E85B96;
  display: block;
  margin-bottom: 7px;
  text-align: center;
}
@media (max-width: 750px) {
  .ex-club-stats-item .title {
    margin-bottom: 0;
    margin-right: 10px;
  }
}
.ex-club-stats-item .value {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #232628;
  display: block;
}

.ex-club-tarifs {
  width: 100%;
  margin-bottom: 80px;
}

.ex-club-tarifs-wrap {
  width: 100%;
}
.ex-club-tarifs-wrap h2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 120%;
  text-align: center;
  color: #232221;
  margin-bottom: 35px;
}

.ex-club-tarifs-items {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1100px) {
  .ex-club-tarifs-items {
    gap: 18px;
  }
}
@media (max-width: 1020px) {
  .ex-club-tarifs-items {
    gap: 32px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .ex-club-tarifs-items {
    grid-template-columns: 1fr;
    gap: 27px;
  }
}

.ex-club-tarifs-item {
  background: #FEFEFE;
  border: 1px solid #D4E0E7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ex-club-tarifs-item.best {
  position: relative;
  overflow: hidden;
}
.ex-club-tarifs-item.best::before {
  content: "BEST";
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FEFEFE;
  background: #E85B96;
  display: block;
  -webkit-transform: rotate(-45deg) translate(-30%, -45%);
          transform: rotate(-45deg) translate(-30%, -45%);
  width: 150px;
  height: 28px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.ex-club-tarifs-item:hover {
  border: 1px solid #2B91D7;
}
.ex-club-tarifs-item .old-cost {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  color: #8F9A9F;
  margin-right: 10px;
  text-decoration: line-through;
}
@media (max-width: 1100px) {
  .ex-club-tarifs-item .old-cost {
    font-size: 16px;
  }
}

.ex-club-tarifs-item-top {
  width: 100%;
  padding: 30px 15px;
  text-align: center;
}
.ex-club-tarifs-item-top .title {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  color: #232221;
  display: block;
  margin-bottom: 30px;
}
.ex-club-tarifs-item-top .title-free {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  display: block;
  margin-bottom: 30px;
  margin-top: -20px;
  color: #E85B96;
}
.ex-club-tarifs-item-top .cost {
  font-weight: 600;
  font-size: 38px;
  line-height: 24px;
  text-align: center;
  color: #00CCCC;
  display: block;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1100px) {
  .ex-club-tarifs-item-top .cost {
    font-size: 30px;
  }
}
.ex-club-tarifs-item-top p {
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  color: #686868;
}

.ex-club-tarifs-item-bottom {
  width: 100%;
  background: #F3F3F3;
  padding: 22px 36px 18px;
}
@media (max-width: 1400px) {
  .ex-club-tarifs-item-bottom {
    padding: 22px 15px;
  }
}
.ex-club-tarifs-item-bottom .info-downloads {
  font-size: 20px;
  line-height: 24px;
  color: #232628;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-bottom: 23px;
  border-bottom: 1px solid #D4E0E7;
  margin-bottom: 20px;
}
@media (max-width: 1400px) {
  .ex-club-tarifs-item-bottom .info-downloads {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .ex-club-tarifs-item-bottom .info-downloads {
    text-align: center;
  }
}
@media (max-width: 1200px) {
  .ex-club-tarifs-item-bottom .info-downloads .text {
    width: 90px;
    text-align: left;
  }
}
@media (max-width: 1020px) {
  .ex-club-tarifs-item-bottom .info-downloads .text {
    width: auto;
  }
}
.ex-club-tarifs-item-bottom .num {
  font-weight: 600;
  font-size: 38px;
  line-height: 24px;
  color: #E85B96;
  margin-right: 10px;
}
.ex-club-tarifs-item-bottom .join-link {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #524D4F;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ex-club-tarifs-item-bottom .join-link:hover {
  color: #2B91D7;
}
.ex-club-tarifs-item-bottom .join-link:active {
  color: #1D81C6;
  text-decoration: none;
}
.ex-club-tarifs-item-bottom .join-link.active-plan {
  color: #00AFAF;
  pointer-events: none;
  text-decoration: none;
}
.ex-club-tarifs-item-bottom .join-link.disabled {
  color: #8F9A9F;
  pointer-events: none;
  text-decoration: none;
}

.conditions-information {
  width: 100%;
  margin-bottom: 54px;
}
@media (max-width: 500px) {
  .conditions-information {
    background: #EEEEEE;
  }
}

.conditions-information-wrap {
  width: 100%;
  background: #F3F3F3;
  padding: 26px 30px 30px;
}
@media (max-width: 500px) {
  .conditions-information-wrap {
    padding: 20px 0;
    background: none;
  }
}
.conditions-information-wrap h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: #232221;
  display: block;
  margin-bottom: 15px;
}
@media (max-width: 640px) {
  .conditions-information-wrap h3 {
    font-size: 18px;
  }
}
.conditions-information-wrap p {
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
  color: #232221;
}
@media (max-width: 640px) {
  .conditions-information-wrap p {
    font-size: 15px;
  }
}
.conditions-information-wrap p a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #2B91D7;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

.ex-club-tarifs-active {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #F3F3F3;
  padding: 17px 36px;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .ex-club-tarifs-active {
    grid-template-columns: 1fr;
    padding: 0;
  }
}
@media (max-width: 500px) {
  .ex-club-tarifs-active {
    width: calc(100% + 40px);
    position: relative;
    left: -20px;
  }
}

.ex-club-tarifs-active-link {
  grid-column-start: 1;
  grid-column-end: 3;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .ex-club-tarifs-active-link {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
    margin-bottom: 20px;
    padding: 0 20px;
    margin-top: 0;
  }
}
.ex-club-tarifs-active-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  max-width: 370px;
  padding: 0 30px;
  height: 40px;
  background: #00CCCC;
  border-radius: 3px;
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ex-club-tarifs-active-link a:hover {
  background: #00B9B9;
}
.ex-club-tarifs-active-link a:active {
  background: #00AFAF;
}
.ex-club-tarifs-active-link a:focus {
  background: #00AFAF;
  border: 2px solid #5BEDED;
}
.ex-club-tarifs-active-link a:disabled {
  color: #8F9A9F;
  background: #D4E0E7;
}

.ex-club-tarifs-active-left {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #232221;
  padding-right: 30px;
}
@media (max-width: 1200px) {
  .ex-club-tarifs-active-left {
    width: 100%;
    text-align: center;
    padding: 17px;
  }
}
.ex-club-tarifs-active-left a {
  display: block;
  font-size: 15px;
  line-height: 24px;
  color: #2B91D7;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
}
.ex-club-tarifs-active-left p {
  margin-bottom: 12px;
}
.ex-club-tarifs-active-left span {
  color: #E85B96;
  margin-left: 10px;
  white-space: nowrap;
}
@media (max-width: 750px) {
  .ex-club-tarifs-active-left span {
    display: block;
    margin-top: 7px;
  }
}

.ex-club-tarifs-active-right {
  text-align: right;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
}
@media (max-width: 1200px) {
  .ex-club-tarifs-active-right {
    background: #EBEBEB;
    width: 100%;
    padding: 17px;
    text-align: center;
  }
}
.ex-club-tarifs-active-right p {
  margin-bottom: 3px;
}
.ex-club-tarifs-active-right p span {
  white-space: nowrap;
}
.ex-club-tarifs-active-right a {
  font-size: 15px;
  line-height: 24px;
  color: #5D686F;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
}

.popup-ex-pay {
  display: none;
  padding: 0;
  width: 98%;
  max-width: 428px;
}
.popup-ex-pay .close {
  height: 40px;
  width: 100%;
  background: #F7F7F7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: #8F9A9F;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  display: none;
}

.popup-ex-pay-wrap {
  width: 100%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.popup-ex-pay-wrap .autorization-section-form-checkbox {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 239px;
  margin: 0 auto 20px;
}
.popup-ex-pay-wrap .autorization-section-form-checkbox p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0;
}
.popup-ex-pay-wrap .autorization-section-form-checkbox p svg {
  margin-left: 15px;
}
.popup-ex-pay-wrap .autorization-section-form-checkbox p span {
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: #717B80;
  width: 100%;
  margin-top: 5px;
}
.popup-ex-pay-wrap .autorization-section-form-checkbox .checkbox {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
}
.popup-ex-pay-wrap .autorization-section-form-checkbox .check {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  border: 1px solid #E85B96;
  border-radius: 50%;
  margin-right: 11px;
}
.popup-ex-pay-wrap .autorization-section-form-checkbox input:checked ~ .check {
  background-color: #fff;
  border: 4px solid #E85B96;
  background-image: none;
}
.popup-ex-pay-wrap .autorization-section-form-checkbox input:checked:hover ~ .check {
  background-color: #fff;
  border: 4px solid #D22970;
  background-image: none;
}
.popup-ex-pay-wrap .autorization-section-form-checkbox input:disabled ~ .check {
  background-color: #EBECEE;
  border: 1px solid #A4AEB3;
}
.popup-ex-pay-wrap .autorization-section-form-checkbox input:checked:disabled ~ .check {
  background-color: #EBECEE;
  border-color: #A4AEB3;
  background-image: none;
}
.popup-ex-pay-wrap .autorization-section-form-checkbox input:hover ~ .check {
  border: 1px solid #E85B96;
  background: #FDEFF5;
}
.popup-ex-pay-wrap .autorization-section-form-checkbox input:focus ~ .check {
  outline: 1px solid #E85B96;
}

.popup-ex-pay-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 23px;
}
.popup-ex-pay-user .name {
  font-size: 16px;
  line-height: 24px;
  color: #2B91D7;
  display: block;
}
.popup-ex-pay-user .mail {
  font-size: 16px;
  line-height: 24px;
  color: #8F9A9F;
  display: block;
}

.popup-ex-pay-user-label {
  background: #F2F2F2;
  border: 2px solid #EBECEE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 48px;
  width: 48px;
  min-width: 48px;
  height: 48px;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2B91D7;
  margin-right: 20px;
}

.popup-ex-pay-label {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #717B80;
  display: block;
  margin-bottom: 6px;
}

.popup-ex-pay-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #232221;
  margin-bottom: 10px;
}

.popup-ex-pay-cupon {
  margin-bottom: 16px;
}

.popup-ex-pay-cupon-open {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #00CCCC;
  display: block;
  margin-bottom: 12px;
  width: 100%;
}

.popup-ex-pay-cost {
  background: #F2F2F2;
  border: 3px solid #EBECEE;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 240px;
  height: 60px;
  font-weight: 600;
  font-size: 34px;
  line-height: 24px;
  color: #00CCCC;
  text-align: center;
  margin-bottom: 26px;
}

.popup-ex-pay-cost .old-cost {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  color: #8F9A9F;
  margin-right: 10px;
  text-decoration: line-through;
}

.popup-ex-pay-metods {
  width: 100%;
  padding-top: 21px;
  border-top: 2px solid #E4E5E6;
}
.popup-ex-pay-metods button[type=submit] {
  background: #00CCCC;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 40px;
  width: 100%;
  max-width: 239px;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.popup-ex-pay-metods button[type=submit]:hover {
  background: #00B9B9;
}
.popup-ex-pay-metods button[type=submit]:active {
  background: #00AFAF;
}
.popup-ex-pay-metods button[type=submit]:focus {
  background: #00AFAF;
  border: 2px solid #5BEDED;
}
.popup-ex-pay-metods button[type=submit]:disabled {
  color: #8F9A9F;
  background: #D4E0E7;
}

.popup-ex-pay-cupon-form {
  width: 100%;
  max-width: 240px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  border-radius: 2px;
  position: relative;
  margin-bottom: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.popup-ex-pay-cupon-form .eror {
  font-size: 12px;
  line-height: 14px;
  color: #F44D36;
  text-align: right;
  position: absolute;
  right: 0;
  bottom: -16px;
}
.popup-ex-pay-cupon-form input {
  padding: 3px 10px;
  min-width: 0;
}
.popup-ex-pay-cupon-form button {
  background: #E85B96;
  border-radius: 0px 1px 1px 0px;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 104px;
  min-width: 104px;
  height: 100%;
  text-transform: uppercase;
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.popup-ex-pay-cupon-form button:hover {
  background: #D23A7A;
}
.popup-ex-pay-cupon-form button:focus {
  background: #D23A7A;
  border: 2px solid #F495BD;
}
.popup-ex-pay-cupon-form button:active {
  background: #D22970;
}
.popup-ex-pay-cupon-form button:disabled {
  background: #D4E0E7;
  border-color: #D4E0E7;
  color: #8F9A9F;
  cursor: not-allowed;
}

.popup-ex-pay-promocode-toggle {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #2B91D7;
  display: block;
  width: 100%;
  margin-bottom: 16px;
}

.editor-instruments {
  width: 100%;
  margin-bottom: 56px;
}

.editor-instruments-wrap {
  width: 100%;
  padding-top: 20px;
}
.editor-instruments-wrap h1 {
  font-weight: bold;
  font-size: 36px;
  line-height: 19px;
  color: #232221;
  margin-bottom: 35px;
}

.editor-instruments-block {
  width: 100%;
  background-color: #3FA3DA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 18px 140px 18px 70px;
  background-image: url(/images/main/post-editor-bg.svg);
  background-position: right center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  margin-bottom: 18px;
}
@media (max-width: 1420px) {
  .editor-instruments-block {
    background-position: right -100px center;
    padding-right: 70px;
  }
}
@media (max-width: 1300px) {
  .editor-instruments-block {
    background-position: right -100px center;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 950px) {
  .editor-instruments-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-image: url(/images/main/post-editor-bg2.svg);
    background-position: bottom -20px center;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}
@media (max-width: 450px) {
  .editor-instruments-block {
    position: relative;
    width: calc(100% + 40px);
    left: -20px;
    padding: 20px;
  }
}
.editor-instruments-block a {
  background: #3FA3DA;
  border: 2px solid #FFFFFF;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 230px;
  height: 44px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.editor-instruments-block a:hover {
  background: #2B91D7;
}
.editor-instruments-block a:active {
  color: #2B91D7;
  background: #fff;
}

.editor-instruments-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 950px) {
  .editor-instruments-items {
    width: 100%;
    margin-bottom: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
  }
}
@media (max-width: 720px) {
  .editor-instruments-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px 20px;
  }
}

.editor-instruments-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-right: 50px;
}
@media (max-width: 950px) {
  .editor-instruments-item {
    margin: 0 30px;
  }
}
@media (max-width: 720px) {
  .editor-instruments-item {
    margin: 0;
  }
}
.editor-instruments-item.new::before {
  content: "new";
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
  position: absolute;
  top: -23px;
  right: 50%;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
.editor-instruments-item span {
  position: absolute;
  opacity: 0;
  top: 100%;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 950px) {
  .editor-instruments-item span {
    opacity: 1;
    top: 110%;
  }
}
.editor-instruments-item:hover span {
  opacity: 1;
}

.editor-instruments-info {
  text-align: center;
  font-size: 18px;
  line-height: 20px;
  color: #232628;
}
.editor-instruments-info p {
  display: inline-block;
}
.editor-instruments-info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
.editor-instruments-info a svg {
  margin-right: 10px;
}

.editor-table-section-table-col .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  width: 22px;
  min-width: 22px;
  height: 22px;
}
.editor-table-section-table-col .checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.editor-table-section-table-col .check {
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  width: 22px;
  min-width: 22px;
  height: 22px;
  border-radius: 4px;
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.editor-table-section-table-col input:checked ~ .check {
  background-color: #E85B96;
  border: 1px solid #E85B96;
  background-image: url(/images/main/check.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.editor-table-section-table-col input:checked:hover ~ .check {
  background-color: #E85B96;
  border: 1px solid #D22970;
  background-image: url(/images/main/check.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.editor-table-section-table-col input:disabled ~ .check {
  background-color: #EBECEE;
  border: 1px solid #A4AEB3;
}
.editor-table-section-table-col input:checked:disabled ~ .check {
  background-color: #EBECEE;
  border-color: #A4AEB3;
  background-image: url(/images/main/check.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.editor-table-section-table-col input:hover ~ .check {
  border: 1px solid #E85B96;
  background: #FDEFF5;
}
.editor-table-section-table-col input:focus ~ .check {
  outline: 1px solid #E85B96;
}

.editor-table-section {
  width: 100%;
  margin-bottom: 104px;
}

.editor-table-section-wrap {
  width: 100%;
}

.editor-table-section-nav-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.editor-table-section-nav-left a {
  padding: 7px 21px;
  border: 1px solid #D4E0E7;
  border-radius: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 17px;
  line-height: 24px;
  text-align: center;
  margin-right: 13px;
  color: #232221;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.editor-table-section-nav-left a:last-child {
  margin-right: 0;
}
@media (max-width: 500px) {
  .editor-table-section-nav-left a {
    padding: 0;
    height: auto;
    width: auto;
    background: none !important;
    border: none !important;
  }
}
@media (max-width: 350px) {
  .editor-table-section-nav-left a {
    font-size: 14px;
  }
}
.editor-table-section-nav-left a:hover {
  background: #F2F2F2;
}
.editor-table-section-nav-left a:active {
  outline: 2px solid #F495BD;
}
.editor-table-section-nav-left a.disabled {
  color: #8F9A9F;
  background: #F2F2F2;
  border: 1px solid #A4AEB3;
}
.editor-table-section-nav-left a.active {
  color: #FFFFFF;
  background: #E85B96;
  border-color: #E85B96;
}
@media (max-width: 500px) {
  .editor-table-section-nav-left a.active {
    color: #E85B96;
  }
}
.editor-table-section-nav-left a.active:hover {
  background: #DB4685;
  border-color: #DB4685;
}

.editor-table-section-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 35px;
}
@media (max-width: 765px) {
  .editor-table-section-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 500px) {
  .editor-table-section-nav {
    margin-bottom: 30px;
  }
}
.editor-table-section-nav .go-pe {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  text-align: center;
  color: #E85B96;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 50px;
  border: 1px solid #E85B96;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 765px) {
  .editor-table-section-nav .go-pe {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 40px;
  }
}
.editor-table-section-nav .go-pe:hover {
  color: #DB4685;
  border-color: #DB4685;
}
.editor-table-section-nav .go-pe:active {
  border-color: #DB4685;
  background: #DB4685;
  color: #fff;
}

.editor-table-section-table {
  width: 100%;
  margin-bottom: 26px;
}
@media (max-width: 760px) {
  .editor-table-section-table {
    border: 0.5px solid #D4E0E7;
  }
}

.editor-table-section-table-row {
  width: 100%;
  display: grid;
  grid-template-columns: 70px 2fr 1fr 1.9fr 1fr;
}
@media (max-width: 1200px) {
  .editor-table-section-table-row {
    grid-template-columns: 70px 2fr 1.5fr 1.2fr 1.5fr;
  }
}
@media (max-width: 800px) {
  .editor-table-section-table-row {
    grid-template-columns: 50px 2fr 1.5fr 1.2fr 1.5fr;
  }
}
@media (max-width: 760px) {
  .editor-table-section-table-row {
    grid-template-columns: 50px 1fr;
    position: relative;
    padding-left: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 46px;
  }
}
.editor-table-section-table-row:first-child {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #232221;
  position: static !important;
  padding-left: 0;
  display: grid;
  padding-bottom: 0;
}
@media (max-width: 760px) {
  .editor-table-section-table-row:first-child .editor-table-section-table-col {
    border: 0.5px solid #D4E0E7;
    position: static !important;
  }
}
@media (max-width: 760px) {
  .editor-table-section-table-row:first-child .editor-table-section-table-col:nth-child(2) {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .editor-table-section-table-row:first-child .editor-table-section-table-col:nth-child(3), .editor-table-section-table-row:first-child .editor-table-section-table-col:nth-child(4), .editor-table-section-table-row:first-child .editor-table-section-table-col:nth-child(5) {
    display: none;
  }
}

.editor-table-section-table-col {
  border: 0.5px solid #D4E0E7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  min-height: 54px;
  padding: 12px;
  text-align: center;
}
.editor-table-section-table-col .download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
}
.editor-table-section-table-col .download:hover {
  text-decoration: underline;
}
.editor-table-section-table-col .download:active {
  color: #D22970;
}
.editor-table-section-table-col .download svg {
  margin-right: 13px;
}
@media (max-width: 760px) {
  .editor-table-section-table-col {
    border: none;
  }
  .editor-table-section-table-col:nth-child(1) {
    border: 0.5px solid #D4E0E7;
    position: absolute;
    left: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
  }
  .editor-table-section-table-col:nth-child(2) {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .editor-table-section-table-col:nth-child(3) {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px;
    min-height: 0;
  }
  .editor-table-section-table-col:nth-child(4) {
    width: 100%;
    margin-bottom: 10px;
  }
  .editor-table-section-table-col:nth-child(5) {
    height: 46px;
    background: #F3F3F3;
    position: absolute;
    bottom: 0;
    left: 50px;
    right: 0;
    border-bottom: 0.5px solid #D4E0E7;
  }
}
.editor-table-section-table-col img {
  max-width: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 425px) {
  .editor-table-section-table-col img {
    max-width: 98%;
  }
}
.editor-table-section-table-col:last-child {
  text-align: center;
  font-size: 15px;
  line-height: 18px;
  color: #5D686F;
}

.scrolltop-editor-tarifs:hover {
  text-decoration: underline;
}

.editor-table-section-table-not-data {
  text-align: center;
  padding: 26px 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  color: #232628;
  border: 0.5px solid #D4E0E7;
}
.editor-table-section-table-not-data a {
  text-decoration: underline;
}

.editor-table-section-table-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1200px) {
  .editor-table-section-table-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 760px) {
  .editor-table-section-table-actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 425px) {
  .editor-table-section-table-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.editor-table-section-table-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  margin: 0 15px;
}
@media (max-width: 1200px) {
  .editor-table-section-table-action {
    margin: 0 0 10px;
  }
}
@media (max-width: 760px) {
  .editor-table-section-table-action {
    margin: 0 15px;
  }
}
@media (max-width: 425px) {
  .editor-table-section-table-action {
    margin: 0 0 10px;
  }
}
.editor-table-section-table-action span {
  margin-left: 10px;
}
.editor-table-section-table-action.edit:hover {
  text-decoration: underline;
}
.editor-table-section-table-action.edit:hover path {
  stroke: #2B91D7;
}
.editor-table-section-table-action.edit:active {
  color: #2B91D7;
}
.editor-table-section-table-action.duplicate:hover {
  text-decoration: underline;
}
.editor-table-section-table-action.duplicate:hover path {
  fill: #2B91D7;
}
.editor-table-section-table-action.duplicate:hover rect {
  stroke: #2B91D7;
}
.editor-table-section-table-action.duplicate:active {
  color: #2B91D7;
}
.editor-table-section-table-action.delited:hover {
  text-decoration: underline;
}
.editor-table-section-table-action.delited:hover path {
  fill: #F44D36;
}
.editor-table-section-table-action.delited:active {
  color: #F44D36;
}

.editor-table-section-table-all-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 500px) {
  .editor-table-section-table-all-actions {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.editor-table-section-table-all-actions button {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  display: block;
  margin-right: 36px;
}
@media (max-width: 500px) {
  .editor-table-section-table-all-actions button {
    margin-right: 0;
  }
}
@media (max-width: 360px) {
  .editor-table-section-table-all-actions button {
    font-size: 14px;
  }
}
.editor-table-section-table-all-actions button:hover {
  text-decoration: underline;
}
.editor-table-section-table-all-actions button:first-child {
  color: #f44d36;
}
.editor-table-section-table-all-actions button:last-child {
  color: #2B91D7;
}
.editor-table-section-table-all-actions button:disabled {
  color: #8F9A9F;
  pointer-events: none;
}

.seller-directory {
  width: 100%;
}

.seller-directory-wrap {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .seller-directory-wrap {
    overflow: visible;
  }
}
.seller-directory-wrap h1 {
  font-weight: bold;
  font-size: 36px;
  color: #232221;
  margin-bottom: 35px;
}
@media (max-width: 550px) {
  .seller-directory-wrap h1 {
    text-align: center;
  }
}

.seller-directory-wrap-links {
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 550px) {
  .seller-directory-wrap-links {
    display: none;
  }
}
.seller-directory-wrap-links a {
  font-size: 16px;
  line-height: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7px 21px;
  margin-right: 11px;
  border-radius: 21px;
  color: #232221;
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
}
.seller-directory-wrap-links a.active {
  background: #E85B96;
  color: #FFFFFF;
}

.seller-directory-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 0 30px;
  background: #F2F2F2;
  margin-bottom: 30px;
}
@media (max-width: 1000px) {
  .seller-directory-nav {
    display: block;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: sticky;
    top: 20px;
    padding: 0;
    width: 80px;
    max-height: 80vh;
    overflow: auto;
    direction: rtl;
  }
  .seller-directory-nav::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  .seller-directory-nav::-webkit-scrollbar-button {
    background-color: #666;
  }
  .seller-directory-nav::-webkit-scrollbar-track {
    background-color: #F2F2F2;
  }
  .seller-directory-nav::-webkit-scrollbar-track-piece {
    background-color: #ffffff;
  }
  .seller-directory-nav::-webkit-scrollbar-thumb {
    background: #00CCCC;
    border-radius: 8px;
  }
  .seller-directory-nav::-webkit-scrollbar-corner {
    background-color: #999;
  }
  .seller-directory-nav::-webkit-resizer {
    background-color: #666;
  }
}
.seller-directory-nav .view-all {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 0 8px;
}
@media (max-width: 1000px) {
  .seller-directory-nav .view-all {
    display: none;
  }
}
.seller-directory-nav .view-all.active {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #1D81C6;
}
.seller-directory-nav .clean-filters {
  font-size: 16px;
  line-height: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #8F9A9F;
  margin-left: 20px;
}
@media (max-width: 1000px) {
  .seller-directory-nav .clean-filters {
    display: none;
  }
}
.seller-directory-nav .clean-filters:hover {
  color: #2B91D7;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
}

.seller-directory-block {
  width: 100%;
  position: relative;
}
@media (max-width: 1000px) {
  .seller-directory-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: calc(100% + 25px);
  }
}
@media (max-width: 500px) {
  .seller-directory-block {
    width: calc(100% + 20px);
  }
}

.seller-directory-block-wrap {
  width: 100%;
}

.seller-directory-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 17px;
  line-height: 24px;
  color: #232628;
  text-transform: uppercase;
  list-style-type: none;
}
@media (max-width: 1000px) {
  .seller-directory-nav-list {
    display: block;
  }
}
.seller-directory-nav-list__item.active {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #1D81C6;
}
.seller-directory-nav-list__item.disabled {
  pointer-events: none;
  color: #8F9A9F;
}
.seller-directory-nav-list__link {
  height: 40px;
  width: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1000px) {
  .seller-directory-nav-list__link {
    height: 38px;
    width: 100%;
  }
}
.seller-directory-nav-list__link:hover {
  background: #E4E5E6;
}

.seller-directory-items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 65px 0;
  margin-bottom: 70px;
}
@media (max-width: 1400px) {
  .seller-directory-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 765px) {
  .seller-directory-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .seller-directory-items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.seller-directory-items:nth-of-type(2) .seller-directory-item:nth-child(1)::before {
  display: block;
}

.seller-directory-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  width: 100%;
  padding-right: 40px;
}
@media (max-width: 1000px) {
  .seller-directory-item {
    padding-right: 20px;
  }
}
.seller-directory-item::before {
  content: "";
  display: none;
  height: 1px;
  background: #E4E5E6;
  width: 500%;
  position: absolute;
  left: 0;
  top: -30px;
}
@media (max-width: 1000px) {
  .seller-directory-item::before {
    display: none !important;
  }
}
.seller-directory-item:nth-child(5n+6)::before {
  display: block;
}
@media (max-width: 1400px) {
  .seller-directory-item:nth-child(5n+6)::before {
    display: none;
  }
}
@media (max-width: 1400px) {
  .seller-directory-item:nth-child(3n+4)::before {
    display: block;
  }
}
.seller-directory-item .title-letter {
  font-weight: 600;
  font-size: 36px;
  line-height: 24px;
  text-align: center;
  color: #5DBFF6;
}

.seller-directory-item-list {
  list-style-type: none;
  padding-top: 15px;
  padding-left: 5px;
  font-size: 17px;
  line-height: 24px;
  color: #232628;
}
.seller-directory-item-list__link:hover {
  text-decoration: underline;
}

.faq-header-section {
  width: 100%;
  background-color: #725BB3;
  background-image: url(/images/main/faq.png);
  background-size: cover;
  background-position: center;
}
.faq-header-section .container {
  max-width: 1050px;
}

.faq-header-section-wrap {
  width: 100%;
  padding: 60px 0 70px;
}
@media (max-width: 740px) {
  .faq-header-section-wrap {
    padding: 45px 0;
  }
}
.faq-header-section-wrap h1 {
  font-weight: 600;
  font-size: 41px;
  line-height: 56px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 34px;
}
@media (max-width: 740px) {
  .faq-header-section-wrap h1 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 22px;
  }
}

.faq-search {
  width: 100%;
  height: 58px;
  background: #FFFFFF;
  border-radius: 4px;
  position: relative;
}
@media (max-width: 740px) {
  .faq-search {
    height: 38px;
  }
}
.faq-search span {
  margin: 0 auto;
  max-width: 900px;
}
.faq-search input {
  width: 100%;
  height: 100%;
  padding: 10px 30px;
  font-size: 16px;
  line-height: 24px;
  background: url(/images/main/search2.svg) no-repeat;
  background-position: right 20px center;
}
@media (max-width: 740px) {
  .faq-search input {
    padding: 5px 18px;
    padding-right: 50px;
  }
}
.faq-search input::-webkit-input-placeholder {
  color: #979797;
}
.faq-search input::-moz-placeholder {
  color: #979797;
}
.faq-search input:-ms-input-placeholder {
  color: #979797;
}
.faq-search input::-ms-input-placeholder {
  color: #979797;
}
.faq-search input::placeholder {
  color: #979797;
}

.ui-widget.ui-widget-content {
  width: 100%;
  max-width: 928px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 16px -4px rgba(143, 153, 158, 0.36);
          box-shadow: 0px 4px 16px -4px rgba(143, 153, 158, 0.36);
  border: none;
  font-family: "Source Sans Pro", sans-serif !important;
  display: block;
}

.ui-menu .ui-menu-item-wrapper {
  padding: 10px 16px;
  font-size: 16px;
  line-height: 16px;
  color: #232221;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: none !important;
  background: #F2F2F2;
  color: #232323;
  margin: 0;
}

.faq-section {
  width: 100%;
}

.faq-section-wrap {
  width: 100%;
  padding: 32px 0;
}
.faq-section-wrap h1 {
  font-size: 32px;
  line-height: 40px;
  color: #232221;
  text-align: center;
  margin-bottom: 14px;
}
@media (max-width: 740px) {
  .faq-section-wrap h1 {
    font-size: 24px;
    line-height: 32px;
  }
}

.faq-section-title {
  font-size: 16px;
  line-height: 24px;
  color: #273841;
  text-align: center;
  margin: 0 auto 35px;
  max-width: 607px;
}

.faq-section-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 27px;
}
@media (max-width: 740px) {
  .faq-section-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.faq-section-nav__item {
  margin: 0 11px;
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #5D686F;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 740px) {
  .faq-section-nav__item {
    width: 100%;
    background: #F2F2F2;
    margin: 0;
    padding: 14px;
    color: #232221;
  }
}
.faq-section-nav__item:hover {
  text-decoration: underline;
}
@media (max-width: 740px) {
  .faq-section-nav__item:hover {
    color: #E85B96;
  }
}
.faq-section-nav__item:active {
  color: #E85B96;
  text-decoration: none;
}

.faq-section-sect {
  width: 100%;
  margin-bottom: 22px;
}
@media (max-width: 740px) {
  .faq-section-sect {
    display: none;
  }
}
.faq-section-sect__show-all {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #E85B96;
  display: block;
  margin: 0 auto;
  text-align: center;
}

.faq-section-sect-items-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #232221;
  display: block;
  margin-bottom: 17px;
}
@media (max-width: 1200px) {
  .faq-section-sect-items-title {
    text-align: center;
  }
}

.faq-section-sect-items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}
@media (max-width: 1200px) {
  .faq-section-sect-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.faq-section-sect-item {
  background: #F8F8F8;
  border: 1px solid #D4E0E7;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  min-height: 96px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  padding: 5px 10px;
}
@media (max-width: 1200px) {
  .faq-section-sect-item {
    min-height: 67px;
  }
}
.faq-section-sect-item:hover {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 20px -6px rgba(175, 187, 193, 0.4);
          box-shadow: 0px 4px 20px -6px rgba(175, 187, 193, 0.4);
}

.faq-section-contactus {
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  margin-top: 55px;
}
.faq-section-contactus a {
  color: #E85B96;
  text-decoration: underline;
}

.faq-search-section {
  width: 100%;
  padding: 37px 0;
}

.faq-search-section-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 600px) {
  .faq-search-section-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.faq-search-section-wrap input {
  background: #F8F8F8;
  border: 1px solid #EBECEE;
  height: 40px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 5px 12px;
}
@media (max-width: 600px) {
  .faq-search-section-wrap input {
    width: 100%;
    margin-bottom: 10px;
  }
}
.faq-search-section-wrap button {
  background: #00CCCC;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 40px;
  width: 170px;
  min-width: 170px;
  margin-left: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1300px) {
  .faq-search-section-wrap button {
    margin-left: 20px;
  }
}
@media (max-width: 600px) {
  .faq-search-section-wrap button {
    width: 100%;
    margin-left: 0;
  }
}
.faq-search-section-wrap button:hover {
  background: #00B9B9;
}
.faq-search-section-wrap button:active {
  background: #00AFAF;
}
.faq-search-section-wrap button:focus {
  background: #00AFAF;
  border: 2px solid #5BEDED;
}
.faq-search-section-wrap button:disabled {
  color: #8F9A9F;
  background: #D4E0E7;
}

.faq-nav-section {
  width: 100%;
  margin-bottom: 27px;
}
.faq-nav-section__item {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #5D686F;
  display: block;
  margin-right: 25px;
  white-space: nowrap;
}
.faq-nav-section__item.active {
  color: #E85B96;
}

.faq-nav-section-wrap {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-bottom: 11px;
  -webkit-box-shadow: 0px 1px 0px #EBECEE;
          box-shadow: 0px 1px 0px #EBECEE;
  overflow: auto;
  max-width: calc(100% + 25px);
}
@media (max-width: 500px) {
  .faq-nav-section-wrap {
    max-width: calc(100% + 20px);
  }
}

.faq-section-block {
  width: 100%;
}

.faq-section-block-wrap {
  width: 100%;
}
.faq-section-block-wrap h1 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #232221;
  margin-bottom: 17px;
}

.faq-block-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 336px 1fr;
  gap: 64px;
  padding-bottom: 90px;
}
@media (max-width: 1000px) {
  .faq-block-wrap {
    gap: 0px;
    grid-template-columns: 1fr;
  }
}

.faq-sidebar {
  width: 100%;
}

.faq-sidebar-item {
  width: 100%;
  margin-bottom: 20px;
}
.faq-sidebar-item.open .faq-sidebar-item-sublist {
  display: block;
}
.faq-sidebar-item.open .faq-sidebar-item-top img {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.faq-sidebar-item-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background: #F8F8F8;
  padding: 9px 6px;
  cursor: pointer;
  font-size: 18px;
  line-height: 24px;
  color: #232221;
}
@media (max-width: 500px) {
  .faq-sidebar-item-top {
    width: calc(100% + 40px);
    position: relative;
    left: -20px;
    padding: 10px 20px;
  }
}
.faq-sidebar-item-top:hover {
  background: #F2F2F2;
  -webkit-box-shadow: 0px 1px 0px #EBECEE;
          box-shadow: 0px 1px 0px #EBECEE;
}
.faq-sidebar-item-top:active {
  background: #EBECEE;
  -webkit-box-shadow: 0px 1px 0px #EBECEE;
          box-shadow: 0px 1px 0px #EBECEE;
}
.faq-sidebar-item-top img {
  margin-left: 5px;
}

.faq-sidebar-item-sublist {
  margin-top: 11px;
  list-style-type: none;
  font-size: 16px;
  line-height: 24px;
  color: #273841;
  -webkit-box-shadow: 0px 1px 0px #EBECEE;
          box-shadow: 0px 1px 0px #EBECEE;
  padding-bottom: 14px;
  display: none;
}
.faq-sidebar-item-sublist__item {
  margin-bottom: 12px;
  padding: 0 0 0 6px;
}
.faq-sidebar-item-sublist__item.active {
  padding-left: 12px;
  border-left: 3px solid #E85B96;
  font-weight: 600;
}
.faq-sidebar-item-sublist__link:hover {
  text-decoration: underline;
}

.faq-content {
  width: 100%;
}

.faq-content-question {
  width: 100%;
  border-bottom: 1px solid #EBECEE;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.faq-content-question h2 {
  font-size: 24px;
  line-height: 32px;
  color: #232221;
  margin-bottom: 10px;
  font-weight: 400;
}
@media (max-width: 800px) {
  .faq-content-question h2 {
    font-size: 16px;
    line-height: 24px;
    padding-left: 12px;
    border-left: 3px solid #E85B96;
    font-weight: 600;
  }
}
.faq-content-question p {
  font-size: 16px;
  line-height: 24px;
  color: #232221;
}

.faq-content-contact {
  font-size: 16px;
  line-height: 24px;
  color: #232221;
}
.faq-content-contact a {
  color: #e85b96;
  text-decoration: underline;
}

.blog-navigation-section {
  width: 100%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 1px 0px #EBECEE;
          box-shadow: 0px 1px 0px #EBECEE;
}

.blog-navigation-section-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 22px 0;
}
@media (max-width: 1250px) {
  .blog-navigation-section-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 670px) {
  .blog-navigation-section-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.blog-navigation-section-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #00A1FF;
  display: block;
}
@media (max-width: 830px) {
  .blog-navigation-section-title {
    font-size: 20px;
  }
}
@media (max-width: 670px) {
  .blog-navigation-section-title {
    margin-bottom: 15px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.blog-navigation-section-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1250px) {
  .blog-navigation-section-right {
    width: 100%;
    padding-top: 24px;
    margin-top: 24px;
    -webkit-box-shadow: 0px -1px 0px #EBECEE;
            box-shadow: 0px -1px 0px #EBECEE;
  }
}
@media (max-width: 670px) {
  .blog-navigation-section-right {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-top: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding-top: 0;
    margin-bottom: 10px;
  }
}

.blog-navigation-section-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  list-style-type: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #232221;
}
@media (max-width: 670px) {
  .blog-navigation-section-list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    margin-top: 10px;
  }
}
.blog-navigation-section-list__item {
  margin: 0 20px;
}
@media (max-width: 1250px) {
  .blog-navigation-section-list__item {
    margin: 0 0 0 30px;
  }
}
@media (max-width: 870px) {
  .blog-navigation-section-list__item {
    margin-left: 24px;
  }
}
@media (max-width: 830px) {
  .blog-navigation-section-list__item {
    font-size: 14px;
  }
}
@media (max-width: 670px) {
  .blog-navigation-section-list__item {
    margin: 0;
  }
  .blog-navigation-section-list__item:nth-child(1), .blog-navigation-section-list__item:nth-child(2), .blog-navigation-section-list__item:nth-child(3) {
    display: none;
  }
}
.blog-navigation-section-list__item svg {
  margin-left: 5px;
}
.blog-navigation-section-list__item_wrap {
  position: relative;
}
.blog-navigation-section-list__item_wrap.open .blog-navigation-section-sub-list {
  display: block;
}

.blog-navigation-section-sub-list {
  position: absolute;
  left: -16px;
  top: calc(100% + 2px);
  width: 262px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 16px -4px rgba(143, 153, 158, 0.5);
          box-shadow: 0px 4px 16px -4px rgba(143, 153, 158, 0.5);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #232221;
  z-index: 10;
  padding: 5px 0 0;
  list-style-type: none;
  display: none;
}
@media (max-width: 1250px) {
  .blog-navigation-section-sub-list {
    left: auto;
    right: -16px;
  }
}
@media (max-width: 670px) {
  .blog-navigation-section-sub-list {
    right: auto;
    left: 0;
  }
}
.blog-navigation-section-sub-list_sort {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  text-transform: none;
  width: 176px;
  left: auto;
  right: -16px;
}
@media (max-width: 670px) {
  .blog-navigation-section-sub-list_sort {
    right: 0;
  }
}
.blog-navigation-section-sub-list__link {
  padding: 9px 16px;
  display: block;
}
.blog-navigation-section-sub-list__link:hover {
  background: #F2F2F2;
}
.blog-navigation-section-sub-list__link.disable {
  color: #A4AEB3;
  pointer-events: none;
}
.blog-navigation-section-sub-list__link.active {
  color: #00CCCC;
  pointer-events: none;
}

.blog-navigation-section-sub-list-close {
  position: absolute;
  top: 16px;
  right: 12px;
  z-index: 2;
}

.blog-navigation-section-search {
  margin-left: 100px;
  width: 300px;
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  border-radius: 4px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-right: 15px;
}
@media (max-width: 1400px) {
  .blog-navigation-section-search {
    margin-left: 30px;
  }
}
@media (max-width: 1250px) {
  .blog-navigation-section-search {
    width: 100%;
    margin-left: 0;
  }
}
.blog-navigation-section-search input {
  font-size: 16px;
  line-height: 16px;
  height: 100%;
  padding: 3px 10px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.blog-navigation-section-search input::-webkit-input-placeholder {
  color: #A4AEB3;
}
.blog-navigation-section-search input::-moz-placeholder {
  color: #A4AEB3;
}
.blog-navigation-section-search input:-ms-input-placeholder {
  color: #A4AEB3;
}
.blog-navigation-section-search input::-ms-input-placeholder {
  color: #A4AEB3;
}
.blog-navigation-section-search input::placeholder {
  color: #A4AEB3;
}

.popular-posts {
  width: 100%;
  background: #F8F8F8;
}

.popular-posts-wrap {
  width: 100%;
  padding: 30px 0;
}
.popular-posts-wrap h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #232221;
  margin-bottom: 30px;
  padding: 0 73px;
}
@media (max-width: 1023px) {
  .popular-posts-wrap h2 {
    padding: 0;
  }
}
@media (max-width: 500px) {
  .popular-posts-wrap h2 {
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 10px;
  }
}

.popular-posts-slider-wrapper {
  display: grid;
  grid-template-columns: 37px 1fr 37px;
  gap: 36px;
}
@media (max-width: 1023px) {
  .popular-posts-slider-wrapper {
    grid-template-columns: 1fr;
  }
}
.popular-posts-slider-wrapper .swiper-prev {
  z-index: 2;
}
@media (max-width: 1023px) {
  .popular-posts-slider-wrapper .swiper-prev {
    display: none;
  }
}
.popular-posts-slider-wrapper .swiper-next {
  z-index: 2;
}
@media (max-width: 1023px) {
  .popular-posts-slider-wrapper .swiper-next {
    display: none;
  }
}

.popular-posts-slider {
  width: 100%;
  position: relative;
  padding-bottom: 70px;
}
.popular-posts-slider .swiper-pagination {
  position: absolute;
  bottom: 14px;
  width: 100%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.popular-posts-slider .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #FFFFFF;
  border: 1px solid #E85B96;
  border-radius: 50%;
  margin: 0 6px;
}
.popular-posts-slider .swiper-pagination-bullet-active {
  background: #E85B96;
}
.popular-posts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background: #FFFFFF;
}
.popular-posts-item__image {
  width: 100%;
  margin-bottom: 10px;
}
.popular-posts-item__image img {
  width: 100%;
  height: 208px;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
.popular-posts-item__title {
  width: 100%;
  display: block;
  padding: 0 30px;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.005em;
  color: #232221;
  margin-bottom: 5px;
}
@media (max-width: 500px) {
  .popular-posts-item__title {
    padding: 0 10px;
    font-size: 16px;
  }
}
.popular-posts-item__text {
  width: 100%;
  padding: 0 30px;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  margin-bottom: 7px;
}
@media (max-width: 500px) {
  .popular-posts-item__text {
    padding: 0 10px;
  }
}

.popular-posts-item-top {
  width: 100%;
}

.popular-posts-item-tags {
  width: 100%;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 15px;
  line-height: 20px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #2B91D7;
  margin-bottom: 4px;
  text-transform: uppercase;
}
@media (max-width: 1300px) {
  .popular-posts-item-tags {
    font-size: 12px;
  }
}
@media (max-width: 500px) {
  .popular-posts-item-tags {
    padding: 0 10px;
  }
}
.popular-posts-item-tags__item {
  margin-right: 14px;
  margin-bottom: 10px;
}

.popular-posts-item-actions {
  width: 100%;
  padding: 0 30px 34px;
}
@media (max-width: 500px) {
  .popular-posts-item-actions {
    padding: 0 10px 20px;
  }
}

.popular-posts-item-info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 30px;
}
.popular-posts-item-info .date {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  color: #8F9A9F;
  display: block;
}

.popular-posts-item-info-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.popular-posts-item-info-right .coments,
.popular-posts-item-info-right .favorite {
  margin-left: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
}
.popular-posts-item-info-right .coments img,
.popular-posts-item-info-right .favorite img {
  margin-right: 8px;
}

.popular-posts-item-show {
  margin: 0 auto;
  max-width: 170px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  background: #00CCCC;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  height: 40px;
}
.popular-posts-item-show:hover {
  background: #00B9B9;
}
.popular-posts-item-show:active {
  background: #00AFAF;
}
.popular-posts-item-show:focus {
  background: #00AFAF;
  border: 2px solid #5BEDED;
}
.popular-posts-item-show:disabled {
  color: #8F9A9F;
  background: #D4E0E7;
}

.blog-section-block {
  width: 100%;
}

.blog-section-block-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 470px;
  padding: 44px 0;
  gap: 30px;
}
@media (max-width: 1300px) {
  .blog-section-block-wrap {
    grid-template-columns: 1fr 300px;
    gap: 20px;
  }
}
@media (max-width: 1050px) {
  .blog-section-block-wrap {
    grid-template-columns: 1fr 223px;
  }
}
@media (max-width: 760px) {
  .blog-section-block-wrap {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 550px) {
  .blog-section-block-wrap {
    padding: 20px 0;
  }
}

.blog-section-block-content {
  width: 100%;
}

.blog-section-item-post {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  border-radius: 3px;
  padding: 36px 66px 22px;
  margin-bottom: 36px;
}
@media (max-width: 1300px) {
  .blog-section-item-post {
    padding: 23px;
  }
}
@media (max-width: 500px) {
  .blog-section-item-post {
    padding: 12px 10px 20px;
    margin-bottom: 20px;
  }
}
.blog-section-item-post .popular-posts-item-tags,
.blog-section-item-post .popular-posts-item-actions {
  padding: 0;
}

.blog-section-item-post-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #232221;
  display: block;
  margin-bottom: 28px;
}
@media (max-width: 1300px) {
  .blog-section-item-post-title {
    font-size: 24px;
    line-height: 120%;
  }
}
@media (max-width: 500px) {
  .blog-section-item-post-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.blog-section-item-post-image {
  width: 100%;
  margin-bottom: 20px;
  vertical-align: bottom;
}

.blog-section-item-post-text {
  font-size: 24px;
  line-height: 32px;
  color: #232221;
  margin-bottom: 11px;
}
@media (max-width: 1300px) {
  .blog-section-item-post-text {
    font-size: 16px;
    line-height: 140%;
  }
}
@media (max-width: 500px) {
  .blog-section-item-post-text {
    font-size: 14px;
  }
}
.blog-section-item-post-text a {
  text-decoration: underline;
  color: #E85B96;
}

.blog-section-block-sidebar {
  width: 100%;
}

.blog-section-block-sidebar-best-pics {
  width: 100%;
  margin-bottom: 35px;
}
@media (max-width: 1300px) {
  .blog-section-block-sidebar-best-pics .blog-section-block-sidebar-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .blog-section-block-sidebar-best-pics .blog-section-block-sidebar-top span {
    margin-bottom: 5px;
  }
}

.blog-section-block-sidebar-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 17px;
}
@media (max-width: 500px) {
  .blog-section-block-sidebar-top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.blog-section-block-sidebar-top span {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: #232221;
  display: block;
}
@media (max-width: 1050px) {
  .blog-section-block-sidebar-top span {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .blog-section-block-sidebar-top span {
    text-align: center;
  }
}
.blog-section-block-sidebar-top a {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #2B91D7;
  display: block;
}
@media (max-width: 500px) {
  .blog-section-block-sidebar-top a {
    display: none;
  }
}

.blog-section-block-sidebar-best-pics-items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}
@media (max-width: 1300px) {
  .blog-section-block-sidebar-best-pics-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .blog-section-block-sidebar-best-pics-items {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 400px) {
  .blog-section-block-sidebar-best-pics-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-section-block-sidebar-best-pics-item {
  position: relative;
  border: 1px solid #D4E0E7;
  border-radius: 3px;
  overflow: hidden;
}
.blog-section-block-sidebar-best-pics-item:first-child {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media (max-width: 1300px) {
  .blog-section-block-sidebar-best-pics-item:first-child {
    grid-column-end: 4;
  }
}
@media (max-width: 760px) {
  .blog-section-block-sidebar-best-pics-item:first-child {
    grid-column-end: 3;
  }
}
@media (max-width: 400px) {
  .blog-section-block-sidebar-best-pics-item:first-child {
    grid-column-end: 4;
  }
}
.blog-section-block-sidebar-best-pics-item::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.blog-section-block-sidebar-best-pics-item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-section-block-sidebar-tags-items {
  width: 100%;
}

.blog-section-block-sidebar-tags-item {
  display: inline-block;
  font-size: 24px;
  line-height: 32px;
  color: #2B91D7;
  margin-right: 3px;
}
@media (max-width: 1300px) {
  .blog-section-block-sidebar-tags-item {
    font-size: 20px;
  }
}
.blog-section-block-sidebar-tags-item:hover {
  text-decoration: underline;
}
.blog-section-block-sidebar-tags-item:nth-child(3n+2) {
  text-transform: uppercase;
}
.blog-section-block-sidebar-tags-item:nth-child(4n+3) {
  font-size: 20px;
  text-transform: lowercase;
}
.blog-section-block-sidebar-tags-item:nth-child(odd) {
  font-weight: 600;
}

.blog-section-block-sidebar-pdfs-monthly {
  width: 100%;
  margin-bottom: 35px;
}

.blog-section-block-sidebar-pdfs-monthly-item {
  width: 100%;
  display: block;
  margin-bottom: 11px;
}
.blog-section-block-sidebar-pdfs-monthly-item img {
  width: 100%;
}

.blog-section-block-sidebar-pdfs-monthly-info {
  font-size: 16px;
  line-height: 24px;
  color: #E85B96;
  display: block;
}
@media (max-width: 500px) {
  .blog-section-block-sidebar-pdfs-monthly-info {
    text-align: center;
  }
}

.blog-section-block-sidebar-ex-club,
.blog-section-block-sidebar-quests,
.blog-section-block-sidebar-promotions,
.blog-section-block-sidebar-resent,
.blog-section-block-sidebar-poll {
  width: 100%;
  margin-bottom: 35px;
}

.blog-section-block-sidebar-ex-club-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1300px) {
  .blog-section-block-sidebar-ex-club-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 500px) {
  .blog-section-block-sidebar-ex-club-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.blog-section-block-sidebar-ex-club-content img {
  width: 48%;
}
@media (max-width: 1300px) {
  .blog-section-block-sidebar-ex-club-content img {
    width: auto;
    max-width: 100%;
    margin-bottom: 5px;
  }
}
.blog-section-block-sidebar-ex-club-content p {
  width: 50%;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
}
@media (max-width: 1300px) {
  .blog-section-block-sidebar-ex-club-content p {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .blog-section-block-sidebar-ex-club-content p {
    text-align: center;
  }
}

.blog-section-block-sidebar-quests-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1300px) {
  .blog-section-block-sidebar-quests-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 500px) {
  .blog-section-block-sidebar-quests-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.blog-section-block-sidebar-quests-content img {
  width: 159px;
}
@media (max-width: 1300px) {
  .blog-section-block-sidebar-quests-content img {
    width: auto;
    max-width: 100%;
    margin-bottom: 5px;
  }
}
.blog-section-block-sidebar-quests-content p {
  width: calc(100% - 173px);
  font-size: 16px;
  line-height: 24px;
  color: #232221;
}
@media (max-width: 1300px) {
  .blog-section-block-sidebar-quests-content p {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .blog-section-block-sidebar-quests-content p {
    text-align: center;
  }
}
.blog-section-block-sidebar-quests-content p a {
  color: #E85B96;
  text-decoration: underline;
}

.blog-section-block-sidebar-promotions-content,
.blog-section-block-sidebar-resent-content {
  width: 100%;
}
.blog-section-block-sidebar-promotions-content img,
.blog-section-block-sidebar-resent-content img {
  max-width: 100%;
}

.blog-section-block-sidebar-resent .blog-section-block-sidebar-top,
.blog-section-block-sidebar-poll .blog-section-block-sidebar-top {
  margin-bottom: 6px;
}

.blog-section-block-sidebar-poll p {
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  margin-bottom: 11px;
}

.blog-section-block-sidebar-resent-list {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  padding-left: 20px;
}
.blog-section-block-sidebar-resent-list li {
  margin-bottom: 12px;
}
.blog-section-block-sidebar-resent-list li a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.blog-section-block-sidebar-resent-list li a:hover {
  text-decoration: none;
}

.blog-section-block-sidebar-poll-content {
  width: 100%;
}
.blog-section-block-sidebar-poll-content .submit {
  background: #00CCCC;
  width: 170px;
  height: 40px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog-section-block-sidebar-poll-content .submit:hover {
  background: #00B9B9;
}
.blog-section-block-sidebar-poll-content .submit:active {
  background: #00AFAF;
}
.blog-section-block-sidebar-poll-content .submit:focus {
  background: #00AFAF;
  border: 2px solid #5BEDED;
}
.blog-section-block-sidebar-poll-content .submit:disabled {
  color: #8F9A9F;
  background: #D4E0E7;
}

.blog-section-block-sidebar-poll-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 20px;
}
.blog-section-block-sidebar-poll-label input {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.blog-section-block-sidebar-poll-label .check {
  width: 24px;
  min-width: 24px;
  height: 24px;
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 50%;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog-section-block-sidebar-poll-label .check:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: #E85B96;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog-section-block-sidebar-poll-label input:checked ~ .check {
  border: 1px solid #E85B96;
}
.blog-section-block-sidebar-poll-label input:checked ~ .check:before {
  opacity: 1;
}
.blog-section-block-sidebar-poll-label .text {
  font-size: 16px;
  line-height: 24px;
  color: #232221;
}

.blog-section-block-top {
  width: 100%;
  padding: 30px 0;
}
@media (max-width: 550px) {
  .blog-section-block-top {
    padding: 20px 0 10px;
  }
}

.blog-section-block-back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #E85B96;
  margin-bottom: 20px;
}
@media (max-width: 760px) {
  .blog-section-block-back {
    display: none;
  }
}
.blog-section-block-back svg {
  margin-right: 12px;
}

.blog-section-block-title {
  display: block;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #232221;
}
@media (max-width: 500px) {
  .blog-section-block-title {
    font-size: 18px;
    line-height: 120%;
  }
}

.blog-section-block-item-img {
  width: 100%;
  margin-bottom: 14px;
}

.blog-section-block-item-information {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.blog-section-block-item-information .date {
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  color: #A4AEB3;
  display: block;
  white-space: nowrap;
  margin-bottom: 14px;
}
@media (max-width: 500px) {
  .blog-section-block-item-information .date {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
.blog-section-block-item-information .popular-posts-item-tags {
  padding: 0;
}
@media (max-width: 500px) {
  .blog-section-block-item-information .popular-posts-item-tags__item {
    margin-right: 10px;
    margin-bottom: 5px;
  }
}

.blog-section-block-item-text {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  margin-bottom: 30px;
  max-width: 670px;
}
.blog-section-block-item-text a {
  color: #E85B96;
  text-decoration: underline;
}

.blog-section-block-item-info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 23px;
}
.blog-section-block-item-info .coments {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
  color: #8F9A9F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-right: 27px;
}
.blog-section-block-item-info .coments span {
  margin-right: 8px;
}
.blog-section-block-item-info .favorite {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
  color: #8F9A9F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.blog-section-block-item-info .favorite span {
  margin-right: 8px;
}
.blog-section-block-item-info .favorite .favorite-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.blog-section-block-item-info .favorite .favorite-link svg path {
  stroke: #8F9A9F;
  stroke-width: 2px;
}
.blog-section-block-item-info .favorite .favorite-link.active svg path {
  fill: #E85B96;
  stroke: #E85B96;
}

.blog-section-block-item-coments {
  width: 100%;
  max-width: 670px;
}

.blog-section-block-item-add-coment {
  width: 100%;
  padding: 18px 25px 30px;
  border: 1px solid #EBECEE;
}
@media (max-width: 550px) {
  .blog-section-block-item-add-coment {
    padding: 0;
    border: none;
    margin-bottom: 30px;
  }
}

.blog-section-block-item-coment-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  display: block;
  margin-bottom: 16px;
}

.blog-section-block-item-add-coment-block,
.blog-section-block-item-coments-item {
  width: 100%;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
}
.blog-section-block-item-add-coment-block .coment-photo,
.blog-section-block-item-coments-item .coment-photo {
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 50%;
}

.blog-section-block-item-add-coment-block.reply {
  width: auto;
  margin-left: 70px;
}
@media (max-width: 900px) {
  .blog-section-block-item-add-coment-block.reply {
    margin-left: 30px;
  }
}
@media (max-width: 550px) {
  .blog-section-block-item-add-coment-block.reply {
    margin-left: 14px;
  }
}

.blog-section-block-item-coments-item {
  padding-bottom: 10px;
  border-bottom: 1px solid #EBECEE;
  margin-bottom: 20px;
}
.blog-section-block-item-coments-item.reply {
  width: auto;
  margin-left: 70px;
}
@media (max-width: 900px) {
  .blog-section-block-item-coments-item.reply {
    margin-left: 30px;
  }
}
@media (max-width: 550px) {
  .blog-section-block-item-coments-item.reply {
    margin-left: 14px;
  }
}
.blog-section-block-item-coments-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.blog-section-block-item-coments-item-content {
  width: 100%;
}
.blog-section-block-item-coments-item-content .name {
  display: block;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  color: #E85B96;
  margin-bottom: 4px;
}
.blog-section-block-item-coments-item-content .replied {
  color: #A4AEB3;
}
.blog-section-block-item-coments-item-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  margin-bottom: 10px;
}
.blog-section-block-item-coments-item-content .reply {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #2B91D7;
}
.blog-section-block-item-coments-item-content .reply svg {
  margin-right: 5px;
}

.blog-section-block-item-add-coment-form {
  width: 100%;
}
.blog-section-block-item-add-coment-form textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #EBECEE;
  border-radius: 2px;
  min-height: 64px;
  -webkit-box-sizing: padding-box;
          box-sizing: padding-box;
  resize: vertical;
  padding: 5px 12px;
  margin-bottom: 24px;
  min-width: 100px;
}
.blog-section-block-item-add-coment-form .submit {
  width: 161px;
  height: 40px;
  background: #E85B96;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-right: 13px;
}
@media (max-width: 550px) {
  .blog-section-block-item-add-coment-form .submit {
    width: 100%;
    margin-right: 0;
  }
}
.blog-section-block-item-add-coment-form .cancel {
  width: 161px;
  height: 40px;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #E85B96;
  border: 1px solid #E85B96;
}
@media (max-width: 550px) {
  .blog-section-block-item-add-coment-form .cancel {
    width: 100%;
    margin-top: 10px;
  }
}

.blog-section-block-item-add-coment-form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 550px) {
  .blog-section-block-item-add-coment-form-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.blog2-section-block-wrap {
  display: block;
  padding: 37px 0 56px;
  max-width: 1170px;
  margin: 0 auto;
}
.blog2-section-block-wrap h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #232221;
  text-align: center;
  margin-bottom: 37px;
}
@media (max-width: 760px) {
  .blog2-section-block-wrap h2 {
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 13px;
  }
}

.blog2-section-block-wrap-items {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1023px) {
  .blog2-section-block-wrap-items {
    gap: 24px;
  }
}
@media (max-width: 760px) {
  .blog2-section-block-wrap-items {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.blog2-section-block-wrap-item {
  background: #FFFFFF;
  border: 1px solid #EBECEE;
  border-radius: 2px;
  padding: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1023px) {
  .blog2-section-block-wrap-item {
    padding: 0 17px 17px;
  }
}
@media (max-width: 500px) {
  .blog2-section-block-wrap-item {
    padding: 0 10px 20px;
  }
}

.blog2-section-block-wrap-item-top {
  width: 100%;
}
.blog2-section-block-wrap-item-top img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #D4E0E7;
  border-radius: 3px;
  margin-bottom: 10px;
  vertical-align: bottom;
}
@media (max-width: 1023px) {
  .blog2-section-block-wrap-item-top img {
    position: relative;
    width: calc(100% + 34px);
    left: -17px;
    height: 191px;
  }
}
@media (max-width: 760px) {
  .blog2-section-block-wrap-item-top img {
    height: auto;
  }
}
@media (max-width: 500px) {
  .blog2-section-block-wrap-item-top img {
    width: calc(100% + 20px);
    left: -10px;
  }
}
.blog2-section-block-wrap-item-top h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.005em;
  color: #232221;
  margin-bottom: 5px;
}
@media (max-width: 500px) {
  .blog2-section-block-wrap-item-top h3 {
    font-size: 16px;
    line-height: 120%;
  }
}
.blog2-section-block-wrap-item-top p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  margin-bottom: 30px;
}

.blog2-section-block-wrap-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 170px;
  height: 40px;
  background: #00CCCC;
  border-radius: 3px;
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog2-section-block-wrap-item-link:hover {
  background: #00B9B9;
}
.blog2-section-block-wrap-item-link:active {
  background: #00AFAF;
}
.blog2-section-block-wrap-item-link:focus {
  background: #00AFAF;
  border: 2px solid #5BEDED;
}
.blog2-section-block-wrap-item-link:disabled {
  color: #8F9A9F;
  background: #D4E0E7;
}

.blog-section-block-wrap-item2 {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  margin-top: -20px;
  padding-bottom: 56px;
}
.blog-section-block-wrap-item2 h1 {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  color: #232221;
  margin-bottom: 17px;
}
@media (max-width: 500px) {
  .blog-section-block-wrap-item2 h1 {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

.blog-section-block-wrap-item2-content {
  max-width: 870px;
}

.blog-section-block-wrap-item2-content-image {
  width: 100%;
  margin-bottom: 14px;
}

.blog-section-block-wrap-item2-content-text {
  max-width: 600px;
}
.blog-section-block-wrap-item2-content-text .title {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #232221;
  margin-bottom: 4px;
}
.blog-section-block-wrap-item2-content-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  margin-bottom: 25px;
}
.blog-section-block-wrap-item2-content-text p a {
  text-decoration: underline;
  color: #D23A7A;
}

.blog-recent-comments {
  width: 100%;
  background: #F8F8F8;
}

.blog-recent-comments-wrap {
  padding: 44px 0;
}
.blog-recent-comments-wrap h2 {
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 19px;
}

.blog-recent-comments-items {
  width: 100%;
  position: relative;
  padding-bottom: 70px;
}
.blog-recent-comments-items .swiper-pagination {
  position: absolute;
  bottom: 14px;
  width: 100%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.blog-recent-comments-items .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #FFFFFF;
  border: 1px solid #E85B96;
  border-radius: 50%;
  margin: 0 6px;
}
.blog-recent-comments-items .swiper-pagination-bullet-active {
  background: #E85B96;
}

.blog-recent-comments-items-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 37px 1fr 37px;
  gap: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1023px) {
  .blog-recent-comments-items-wrap {
    grid-template-columns: 1fr;
  }
}
.blog-recent-comments-items-wrap .swiper-prev {
  z-index: 2;
  margin-top: -70px;
}
@media (max-width: 1023px) {
  .blog-recent-comments-items-wrap .swiper-prev {
    display: none;
  }
}
.blog-recent-comments-items-wrap .swiper-next {
  z-index: 2;
  margin-top: -70px;
}
@media (max-width: 1023px) {
  .blog-recent-comments-items-wrap .swiper-next {
    display: none;
  }
}

.blog-recent-comments-item {
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  padding: 18px 16px 20px;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: auto;
}
.blog-recent-comments-item .top {
  width: 100%;
}
.blog-recent-comments-item a {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
  color: #2B91D7;
  text-align: center;
}
.blog-recent-comments-item a:hover {
  color: #1D81C6;
}
.blog-recent-comments-item .top p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 2px;
}
.blog-recent-comments-item .top .name {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #725BB3;
  display: block;
  margin-bottom: 16px;
}

.unsubscribe-section {
  width: 100%;
}

.unsubscribe-section-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 130px;
}
@media (max-width: 1350px) {
  .unsubscribe-section-wrap {
    gap: 80px;
  }
}
@media (max-width: 900px) {
  .unsubscribe-section-wrap {
    gap: 36px;
  }
}
@media (max-width: 750px) {
  .unsubscribe-section-wrap {
    grid-template-columns: 1fr;
  }
}

.unsubscribe-section-sidebar {
  padding-bottom: 50px;
}
@media (max-width: 750px) {
  .unsubscribe-section-sidebar {
    display: none;
  }
}

.unsubscribe-section-sidebar-item {
  width: 100%;
  padding: 15px 0;
  border-top: 0.5px dashed #979797;
}
.unsubscribe-section-sidebar-item .label {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  display: block;
  margin-bottom: 8px;
}

.unsubscribe-section-sidebar-list {
  list-style-type: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #8F9A9F;
}
.unsubscribe-section-sidebar-list li.active {
  color: #E85B96;
  text-decoration: none;
}
.unsubscribe-section-sidebar-list li:not(:last-child) {
  margin-bottom: 8px;
}
.unsubscribe-section-sidebar-list li a:hover {
  text-decoration: underline;
}
.unsubscribe-section-sidebar-list li a:active {
  color: #E85B96;
  text-decoration: none;
}

.unsubscribe-section-content h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #232221;
  margin-bottom: 40px;
}
@media (max-width: 500px) {
  .unsubscribe-section-content h2 {
    text-align: center;
    margin-bottom: 20px;
  }
}
.unsubscribe-section-content .ex-club-tarifs-items {
  gap: 23px;
}
@media (max-width: 1350px) {
  .unsubscribe-section-content .ex-club-tarifs-items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .unsubscribe-section-content .ex-club-tarifs-items {
    grid-template-columns: 1fr;
  }
}
.unsubscribe-section-content .ex-club-tarifs-items .ex-club-tarifs-item.active {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
@media (max-width: 1350px) {
  .unsubscribe-section-content .ex-club-tarifs-items .ex-club-tarifs-item.active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.unsubscribe-section-content .ex-club-tarifs-items .ex-club-tarifs-item-bottom {
  padding: 18px;
}

.active-subscribe-info {
  width: 100%;
  background: #EBEBEB;
  margin-bottom: 80px;
}
@media (max-width: 500px) {
  .active-subscribe-info {
    position: relative;
    left: -20px;
    width: calc(100% + 40px);
  }
}
@media (max-width: 1350px) {
  .active-subscribe-info {
    margin-bottom: 50px;
  }
}
@media (max-width: 1100px) {
  .active-subscribe-info {
    text-align: center;
  }
}
.active-subscribe-info__top {
  padding: 22px 30px;
  background: #F3F3F3;
}
@media (max-width: 500px) {
  .active-subscribe-info__top {
    padding: 18px;
  }
}
.active-subscribe-info__top p {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #232221;
}
@media (max-width: 1100px) {
  .active-subscribe-info__top p {
    font-size: 18px;
  }
}
.active-subscribe-info__top p span {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #E85B96;
  margin-left: 10px;
}
@media (max-width: 1100px) {
  .active-subscribe-info__top p span {
    display: block;
    font-size: 20px;
  }
}
.active-subscribe-info__bottom {
  padding: 16px 30px;
}
.active-subscribe-info__bottom p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  margin-bottom: 3px;
}
.active-subscribe-info__bottom a {
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  color: #2B91D7;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
}

.mobile-navigation {
  display: none;
}
@media (max-width: 750px) {
  .mobile-navigation {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    background: #FFFFFF;
    -webkit-box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.08);
            box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.08);
  }
}

.mobile-navigation-item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 52px;
  border-right: 1px solid #EBECEE;
}
.mobile-navigation-item:last-child {
  border-right: none;
}
.mobile-navigation-item .icon {
  position: relative;
}
.mobile-navigation-item .icon path,
.mobile-navigation-item .icon circle {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mobile-navigation-item .order {
  position: absolute;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  color: #E85B96;
  top: -12px;
  margin-left: 3px;
}
.mobile-navigation-item:hover, .mobile-navigation-item:active {
  background: #F8F8F8;
}
.mobile-navigation-item.active .icon path,
.mobile-navigation-item.active .icon circle {
  stroke: #E85B96;
}

.search-mobile-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  background: #F8F8F8;
  display: none;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  overflow: auto;
}
@media (max-width: 750px) {
  .search-mobile-block {
    display: block;
    z-index: 200;
  }
}

.search-mobile-block__top {
  width: 100%;
  padding: 20px;
  background: #F3F3F3;
  -webkit-box-shadow: 0px 1px 0px #EBEBEB;
          box-shadow: 0px 1px 0px #EBEBEB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 25px;
}
.search-mobile-block__top .clean-filters {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #8F9A9F;
  display: block;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
}

.search-mobile-block__top-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: #232221;
}
.search-mobile-block__top-close img {
  margin-right: 17px;
}

.search-mobile-block-wrap {
  width: 100%;
  padding: 0 20px;
}
.search-mobile-block-wrap .header-filter-search {
  margin-bottom: 18px;
}
.search-mobile-block-wrap .SumoSelect {
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  border-radius: 4px;
  height: 40px;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 18px;
}
.search-mobile-block-wrap .SumoSelect:hover {
  border: 1px solid #08B8B8;
}
.search-mobile-block-wrap .SumoSelect.open {
  border: 1px solid #08B8B8;
  background-color: rgba(25, 255, 255, 0.07);
}
.search-mobile-block-wrap .SumoSelect.disabled {
  border: 1px solid #A4AEB3;
  color: #A4AEB3;
}
.search-mobile-block-wrap .SumoSelect > .CaptionCont {
  background: none;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  border-radius: 4px;
  padding-left: 15px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-mobile-block-wrap .SumoSelect > .CaptionCont .search-txt {
    height: 100%;
    width: 100%;
}
.search-mobile-block-wrap .SumoSelect > .CaptionCont .placeholder {
  font-style: normal !important;
  font-size: 16px;
  line-height: 150%;
  color: #252525;
}
.search-mobile-block-wrap .SumoSelect > .CaptionCont label {
  background: none;
  width: 32px;
}
.search-mobile-block-wrap .SumoSelect > .CaptionCont label i {
  opacity: 1;
  background: url(/images/main/chevron-down.svg) no-repeat center/contain;
}
.search-mobile-block-wrap .SumoSelect .optWrapper {
  top: 100% !important;
  left: -1px;
  width: calc(100% + 2px);
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  border-radius: 0 0 4px 4px;
  -webkit-filter: drop-shadow(0px 4px 16px rgba(212, 224, 231, 0.5));
          filter: drop-shadow(0px 4px 16px rgba(212, 224, 231, 0.5));
  -webkit-box-shadow: none;
          box-shadow: none;
}
.search-mobile-block-wrap .SumoSelect .optWrapper .no-match {
    font-size: 14px;
}
.search-mobile-block-wrap .SumoSelect .optWrapper .options {
    max-height: 377px;
}
.search-mobile-block-wrap .SumoSelect .optWrapper .options::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.search-mobile-block-wrap .SumoSelect .optWrapper .options::-webkit-scrollbar-button {
  background-color: #666;
}
.search-mobile-block-wrap .SumoSelect .optWrapper .options::-webkit-scrollbar-track {
  background-color: #F2F2F2;
}
.search-mobile-block-wrap .SumoSelect .optWrapper .options::-webkit-scrollbar-track-piece {
  background-color: #ffffff;
}
.search-mobile-block-wrap .SumoSelect .optWrapper .options::-webkit-scrollbar-thumb {
  background: #00CCCC;
  border-radius: 8px;
}
.search-mobile-block-wrap .SumoSelect .optWrapper .options::-webkit-scrollbar-corner {
  background-color: #999;
}
.search-mobile-block-wrap .SumoSelect .optWrapper .options::-webkit-resizer {
  background-color: #666;
}
.search-mobile-block-wrap .SumoSelect .optWrapper .options .opt {
  padding-top: 9px;
  padding-bottom: 9px;
  border: none;
  background: #fff !important;
}
.search-mobile-block-wrap .SumoSelect .optWrapper .options .opt:hover {
  background: #F2F2F2 !important;
}
.search-mobile-block-wrap .SumoSelect .optWrapper .options .opt.selected {
  color: #00AFAF;
}
.search-mobile-block-wrap .SumoSelect .optWrapper .options .opt.selected span i {
  background-color: #EBE7FF !important;
  background-image: url(/images/main/check.svg) !important;
}
.search-mobile-block-wrap .SumoSelect .optWrapper .options .opt label span {
  display: none !important;
}
.search-mobile-block-wrap .SumoSelect.open {
  border-radius: 4px 4px 0 0;
}
.search-mobile-block-wrap .SumoSelect.open > .CaptionCont label {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header-filter-sale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  margin-right: 20px;
}
.header-filter-sale input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.header-filter-sale .check {
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  width: 17px;
  min-width: 17px;
  height: 17px;
  border-radius: 4px;
  margin-right: 10px;
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}
.header-filter-sale .text {
  font-size: 16px;
  line-height: 16px;
  color: #E85B96;
  white-space: nowrap;
}
.header-filter-sale input:checked ~ .check {
  background-color: #E85B96;
  border-color: #E85B96;
  background-image: url(/images/main/check.svg);
}

.header-filter-search-subblock {
  position: absolute;
  top: calc(100% + 14px);
  left: -100px;
  width: 400px;
  background: #fff;
  -webkit-filter: drop-shadow(0px 4px 16px rgba(80, 89, 95, 0.5));
          filter: drop-shadow(0px 4px 16px rgba(80, 89, 95, 0.5));
  z-index: 100;
  display: none;
}
@media (max-width: 1300px) {
  .header-filter-search-subblock {
    left: 0;
    width: 100%;
  }
}

.header-filter-search-subblock-item {
  width: 100%;
  padding: 11px 20px;
  border-bottom: 1px solid #D4E0E7;
}
@media (max-width: 375px) {
  .header-filter-search-subblock-item {
    padding: 11px;
  }
}

.header-filter-search-subblock-item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header-filter-search-subblock-item-top .label {
  font-weight: 400;
  font-size: 15px;
  line-height: 16px;
  color: #5D686F;
  display: block;
  margin-bottom: 5px;
}
.header-filter-search-subblock-item-top .label svg {
  margin-right: 10px;
}
.header-filter-search-subblock-item-top .link {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #2B91D7;
  display: block;
  margin-bottom: 5px;
}

.header-filter-search-subblock-item-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 56px 36px;
  margin-top: 10px;
}
@media (max-width: 375px) {
  .header-filter-search-subblock-item-row {
    grid-template-columns: 1fr 36px;
  }
}

.header-filter-search-subblock-item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.header-filter-search-subblock-item-info .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header-filter-search-subblock-item-info .author {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #5D686F;
  margin-right: 3px;
}
.header-filter-search-subblock-item-info .cost-block {
  display: none;
}
@media (max-width: 375px) {
  .header-filter-search-subblock-item-info .cost-block {
    display: block;
    width: 100%;
  }
}
.header-filter-search-subblock-item-info .cost-block .cost {
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  color: #000000;
  display: inline-block;
}
.header-filter-search-subblock-item-info .cost-block .old-cost {
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: #8F9A9F;
  text-decoration: line-through;
  display: inline-block;
}
.header-filter-search-subblock-item-info .cost-block .new-cost {
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  color: #F44D36;
  display: inline-block;
}
.header-filter-search-subblock-item-info .download {
  display: none;
}
@media (max-width: 375px) {
  .header-filter-search-subblock-item-info .download {
    display: block;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #E85B96;
  }
}
.header-filter-search-subblock-item-info .author-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #232221;
}
.header-filter-search-subblock-item-info .author-link:hover {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #2B91D7;
}
.header-filter-search-subblock-item-info img {
  width: 36px;
  min-width: 36px;
  height: 36px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
}

.header-filter-search-subblock-item-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-left: 1px solid #D4E0E7;
  padding: 5px;
}
@media (max-width: 375px) {
  .header-filter-search-subblock-item-download {
    display: none;
  }
}
.header-filter-search-subblock-item-download .cost-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.header-filter-search-subblock-item-download .cost-block .cost {
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  color: #000000;
  display: block;
  text-align: center;
}
.header-filter-search-subblock-item-download .cost-block .old-cost {
  font-weight: 400;
  font-size: 13px;
  line-height: 24px;
  color: #8F9A9F;
  display: block;
  margin: 0;
  text-decoration: line-through;
  text-align: center;
}
.header-filter-search-subblock-item-download .cost-block .new-cost {
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  color: #F44D36;
  text-align: center;
  display: block;
  margin: 0;
}

.header-filter-search-subblock-item-favorite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-left: 1px solid #D4E0E7;
}
@media (max-width: 375px) {
  .header-filter-search-subblock-item-favorite {
    border-left: none;
  }
}

.header-filter-search-subblock-close {
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  line-height: 16px;
  text-align: center;
  color: #8F9A9F;
  padding: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-bottom: 1px solid #E4E5E6;
}

.search-mobile-block-submit {
  width: calc(100% + 40px);
  height: 46px;
  margin-top: 20px;
  position: relative;
  left: -20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  background: #00CCCC;
  color: #FFFFFF;
  margin-bottom: 52px;
}

.mobile-search-open {
  overflow: hidden;
}
.mobile-search-open .search-mobile-block {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.popup-block {
  max-width: 392px;
  width: 98%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 9px 28px 8px rgba(0, 0, 0, 0.05), 0px 6px 16px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 9px 28px 8px rgba(0, 0, 0, 0.05), 0px 6px 16px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12);
  padding: 28px 30px 24px;
  display: none;
}
.popup-block .fancybox-button.fancybox-close-small {
  display: none;
}
.popup-block p {
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: #232221;
}
.popup-block p br {
  content: "";
  height: 3px;
  display: block;
}
.popup-block p b {
  font-weight: 600;
}
.popup-block p a {
  color: #2B91D7;
}

.popup-block-actions {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.popup-block-actions .cancel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 16px;
  background: #FFFFFF;
  border: 1px solid #E85B96;
  border-radius: 2px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #E85B96;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.popup-block-actions .cancel:hover {
  border-color: #DF387E;
}
.popup-block-actions .cancel:active {
  border-color: #D22970;
}
.popup-block-actions .delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 16px;
  background: #E85B96;
  border: 1px solid #E85B96;
  border-radius: 2px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-left: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.popup-block-actions .delete:hover {
  background-color: #DF387E;
  border-color: #DF387E;
}
.popup-block-actions .delete:active {
  background: #D22970;
  border-color: #D22970;
}

.popup-block-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 10px;
}
.popup-block-title img {
  margin-right: 10px;
}

.my-cart-section {
  width: 100%;
}

.my-cart-section-wrap {
  width: 100%;
}

.my-cart-section-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 40px;
}
@media (max-width: 476px) {
  .my-cart-section-top {
    margin-bottom: 30px;
    margin-top: 10px;
  }
}
.my-cart-section-top h2 {
  font-weight: 600;
  font-size: 36px;
  line-height: 19px;
  color: #232221;
}
@media (max-width: 476px) {
  .my-cart-section-top h2 {
    font-size: 28px;
  }
}
.my-cart-section-top a {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #2B91D7;
  display: block;
}

.my-cart-table {
  width: 100%;
  margin-bottom: 26px;
}

.my-cart-table-nav {
  width: 100%;
  display: grid;
  grid-template-columns: 70px 0.9fr 1.4fr 3.2fr 80px 1fr 70px;
  height: 54px;
}
@media (max-width: 1150px) {
  .my-cart-table-nav {
    grid-template-columns: 70px 1.2fr 2.5fr 3.2fr 80px 1fr 70px;
  }
}
@media (max-width: 1000px) {
  .my-cart-table-nav {
    grid-template-columns: 50px 1.2fr 2.5fr 3.2fr 70px;
  }
}
@media (max-width: 760px) {
  .my-cart-table-nav {
    grid-template-columns: 50px 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 476px) {
  .my-cart-table-nav {
    grid-template-columns: 30px 1fr 1fr 1fr 1fr;
  }
}
.my-cart-table-nav .my-cart-table-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.my-cart-table-nav .my-cart-table-col span {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #232221;
}
@media (max-width: 476px) {
  .my-cart-table-nav .my-cart-table-col_checkbox {
    display: none;
  }
}
@media (max-width: 760px) {
  .my-cart-table-nav .my-cart-table-col_image {
    grid-column-start: 2;
    grid-column-end: -1;
  }
}
@media (max-width: 476px) {
  .my-cart-table-nav .my-cart-table-col_image {
    grid-column-start: 1;
    border-right: 0.5px solid #D4E0E7 !important;
  }
}
@media (max-width: 760px) {
  .my-cart-table-nav .my-cart-table-col_information {
    display: none;
  }
}
@media (max-width: 760px) {
  .my-cart-table-nav .my-cart-table-col_price {
    display: none;
  }
}
.my-cart-table-nav .my-cart-table-col_tips span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1000px) {
  .my-cart-table-nav .my-cart-table-col_tips {
    display: none;
  }
}
@media (max-width: 760px) {
  .my-cart-table-nav .my-cart-table-col_tips {
    display: none;
  }
}
@media (max-width: 1000px) {
  .my-cart-table-nav .my-cart-table-col_actions {
    grid-row-start: 1;
    grid-row-end: 4;
  }
}
@media (max-width: 760px) {
  .my-cart-table-nav .my-cart-table-col_actions {
    display: none;
  }
}

.my-cart-table-col {
  border: 0.5px solid #D4E0E7;
}
.my-cart-table-col .question {
  position: relative;
  font-weight: 500;
  font-size: 12px !important;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #444444;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 14px;
  height: 14px;
  background: #E4E5E6;
  border-radius: 50%;
  margin-left: 4px;
  margin-top: -25px;
  cursor: help;
  z-index: 10;
}
.my-cart-table-col .question .question-text {
  position: absolute;
  top: 100%;
  right: 100%;
  background: #E4E5E6;
  width: 200px;
  padding: 10px;
  z-index: 10;
  text-align: left;
  line-height: 120%;
  display: none;
}
.my-cart-table-col .question:hover .question-text {
  display: block;
}
.my-cart-table-col_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1000px) {
  .my-cart-table-col_checkbox {
    grid-column-end: 1;
    grid-column-start: 2;
    grid-row-start: 1;
    grid-row-end: 4;
  }
}
@media (max-width: 760px) {
  .my-cart-table-col_checkbox {
    grid-column-end: 1;
    grid-column-start: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.my-cart-table-col_checkbox .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  width: 22px;
  min-width: 22px;
  height: 22px;
}
@media (max-width: 476px) {
  .my-cart-table-col_checkbox .checkbox {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
}
.my-cart-table-col_checkbox .checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.my-cart-table-col_checkbox .check {
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  width: 22px;
  min-width: 22px;
  height: 22px;
  border-radius: 4px;
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 476px) {
  .my-cart-table-col_checkbox .check {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
}
.my-cart-table-col_checkbox input:checked ~ .check {
  background-color: #E85B96;
  border: 1px solid #E85B96;
  background-image: url(/images/main/check.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.my-cart-table-col_checkbox input:checked:hover ~ .check {
  background-color: #E85B96;
  border: 1px solid #D22970;
  background-image: url(/images/main/check.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.my-cart-table-col_checkbox input:disabled ~ .check {
  background-color: #EBECEE;
  border: 1px solid #A4AEB3;
}
.my-cart-table-col_checkbox input:checked:disabled ~ .check {
  background-color: #EBECEE;
  border-color: #A4AEB3;
  background-image: url(/images/main/check.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.my-cart-table-col_checkbox input:hover ~ .check {
  border: 1px solid #E85B96;
  background: #FDEFF5;
}
.my-cart-table-col_checkbox input:focus ~ .check {
  outline: 1px solid #E85B96;
}
@media (max-width: 476px) {
  .my-cart-table-col_checkbox {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 10px;
  }
}
@media (max-width: 1000px) {
  .my-cart-table-col_image {
    grid-column-end: 2;
    grid-column-start: 3;
    grid-row-start: 1;
    grid-row-end: 4;
  }
}
@media (max-width: 1000px) and (max-width: 760px) {
  .my-cart-table-col_image {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-end: 3;
    grid-column-start: 2;
  }
}
@media (max-width: 1000px) and (max-width: 476px) {
  .my-cart-table-col_image {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    border-right: none !important;
  }
}
@media (max-width: 1000px) {
  .my-cart-table-col_information {
    grid-column-end: 3;
    grid-column-start: 4;
    grid-row-start: 1;
    grid-row-end: 4;
  }
}
@media (max-width: 1000px) and (max-width: 760px) {
  .my-cart-table-col_information {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 3;
    grid-column-end: -1;
  }
}
@media (max-width: 1000px) and (max-width: 476px) {
  .my-cart-table-col_information {
    grid-row-start: 2;
    grid-row-end: 3;
    border-left: none !important;
  }
}
@media (max-width: 1000px) {
  .my-cart-table-col_price {
    grid-column-end: 4;
    grid-column-start: 5;
    grid-row-start: 1;
    grid-row-end: 4;
  }
}
@media (max-width: 760px) {
  .my-cart-table-col_price {
    grid-column-end: 1;
    grid-column-start: -1;
    grid-row-start: 3;
    grid-row-end: 4;
  }
}
@media (max-width: 476px) {
  .my-cart-table-col_price {
    grid-row-start: 3;
    grid-row-end: 4;
  }
}
.my-cart-table-col_tips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1000px) {
  .my-cart-table-col_tips {
    grid-column-end: -1;
    grid-column-start: -2;
    grid-row-start: 1;
    grid-row-end: 2;
    min-height: 40px;
  }
}
@media (max-width: 760px) {
  .my-cart-table-col_tips {
    grid-row-start: 4;
    grid-row-end: 5;
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
@media (max-width: 476px) {
  .my-cart-table-col_tips {
    grid-row-start: 4;
    grid-row-end: 5;
  }
}
.my-cart-table-col_actions {
  grid-column-end: -1;
  grid-column-start: -3;
}
@media (max-width: 1000px) {
  .my-cart-table-col_actions {
    grid-column-start: -2;
    grid-row-start: 2;
    grid-row-end: 4;
  }
}
@media (max-width: 760px) {
  .my-cart-table-col_actions {
    grid-row-start: 4;
    grid-row-end: 5;
    grid-column-start: 3;
    grid-column-end: -1;
  }
}
@media (max-width: 476px) {
  .my-cart-table-col_actions {
    grid-row-start: 4;
    grid-row-end: 5;
  }
}

.my-cart-table-row_add-tips .my-cart-table-col_tips path {
  fill: #a4aeb2;
  stroke: #a4aeb2;
  stroke-width: 0.2;
}

.my-cart-table-row {
  width: 100%;
  display: grid;
  grid-template-columns: 70px 0.9fr 1.4fr 3.2fr 80px 1fr 70px;
}
@media (max-width: 1150px) {
  .my-cart-table-row {
    grid-template-columns: 70px 1.2fr 2.5fr 3.2fr 80px 1fr 70px;
  }
}
@media (max-width: 1000px) {
  .my-cart-table-row {
    grid-template-columns: 50px 1.2fr 2.5fr 3.2fr 70px;
  }
}
@media (max-width: 760px) {
  .my-cart-table-row {
    grid-template-columns: 50px 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 476px) {
  .my-cart-table-row {
    grid-template-columns: 30px 1fr 1fr 1fr 1fr;
    position: relative;
  }
}
@media (max-width: 476px) {
  .my-cart-table-row .my-cart-table-col_checkbox {
    grid-column-start: 1;
    grid-column-end: -1;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.my-cart-table-row:nth-child(even) {
  background: #F8F8F8;
}
.my-cart-table-row .my-cart-table-col_image {
  padding: 16px 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1300px) {
  .my-cart-table-row .my-cart-table-col_image {
    padding: 16px;
  }
}
@media (max-width: 600px) {
  .my-cart-table-row .my-cart-table-col_image {
    padding: 5px;
  }
}
.my-cart-table-row .my-cart-table-col_image img {
  width: 100%;
}
.my-cart-table-row .my-cart-table-col_information {
  padding: 16px 16px 16px 30px;
}
@media (max-width: 1300px) {
  .my-cart-table-row .my-cart-table-col_information {
    padding: 16px;
  }
}
@media (max-width: 600px) {
  .my-cart-table-row .my-cart-table-col_information {
    padding: 5px;
  }
}
.my-cart-table-row .my-cart-table-col_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  overflow: hidden;
}
.my-cart-table-row .my-cart-table-col_actions {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
}
@media (max-width: 1000px) {
  .my-cart-table-row .my-cart-table-col_actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 760px) {
  .my-cart-table-row .my-cart-table-col_actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.my-cart-table-row_ex-club {
  grid-template-columns: 70px 0.9fr 1.4fr 3.2fr 80px 1fr 70px;
}
@media (max-width: 1150px) {
  .my-cart-table-row_ex-club {
    grid-template-columns: 70px 1.2fr 2.5fr 3.2fr 80px 1fr 70px;
  }
}
@media (max-width: 1000px) {
  .my-cart-table-row_ex-club {
    grid-template-columns: 50px 1.2fr 2.5fr 3.2fr 70px;
  }
}
@media (max-width: 760px) {
  .my-cart-table-row_ex-club {
    grid-template-columns: 50px 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 476px) {
  .my-cart-table-row_ex-club {
    grid-template-columns: 30px 1fr 1fr 1fr 1fr;
  }
}
.my-cart-table-row_ex-club .my-cart-table-col_price {
  grid-column-start: 4;
  grid-column-end: -2;
}
@media (max-width: 760px) {
  .my-cart-table-row_ex-club .my-cart-table-col_price {
    grid-column-start: 1;
    grid-column-end: -1;
  }
}
.my-cart-table-row_ex-club .my-cart-table-col_actions {
  grid-column-start: -2;
  grid-column-end: -1;
}
@media (max-width: 1000px) {
  .my-cart-table-row_ex-club .my-cart-table-col_actions {
    grid-row-start: 1;
    grid-row-end: 4;
  }
  .my-cart-table-row_ex-club .my-cart-table-col_actions .my-cart-add-delete {
    height: 100%;
  }
}
@media (max-width: 760px) {
  .my-cart-table-row_ex-club .my-cart-table-col_actions {
    grid-column-start: 1;
    grid-column-end: -1;
    grid-row-start: 4;
    grid-row-end: 5;
  }
  .my-cart-table-row_ex-club .my-cart-table-col_actions .my-cart-add-delete {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .my-cart-table-row_ex-club .my-cart-price-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.my-cart-table-row_ex-club .my-cart-price-item::before {
  display: none;
}
.my-cart-table-row_ex-club .my-cart-price-item .tarif {
  text-decoration: none;
  pointer-events: none;
}
@media (max-width: 1000px) {
  .my-cart-table-row_ex-club .my-cart-price-item .tarif {
    width: auto;
  }
}
@media (max-width: 1000px) {
  .my-cart-table-row_ex-club .my-cart-price-item .tarif-info {
    width: 100%;
    text-align: left;
  }
}
.my-cart-table-row_prepaid {
  grid-template-columns: 70px 0.9fr 1.4fr 3.2fr 80px 1fr 70px;
}
@media (max-width: 1150px) {
  .my-cart-table-row_prepaid {
    grid-template-columns: 70px 1.2fr 2.5fr 3.2fr 80px 1fr 70px;
  }
}
@media (max-width: 1000px) {
  .my-cart-table-row_prepaid {
    grid-template-columns: 50px 1.2fr 2.5fr 3.2fr 70px;
  }
}
@media (max-width: 760px) {
  .my-cart-table-row_prepaid {
    grid-template-columns: 50px 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 476px) {
  .my-cart-table-row_prepaid {
    grid-template-columns: 30px 1fr 1fr 1fr 1fr;
  }
}
.my-cart-table-row_prepaid .my-cart-table-col_tips {
  width: 80px;
  justify-self: end;
}
.my-cart-table-row_prepaid .my-cart-table-col_price {
  grid-column-start: 4;
  grid-column-end: -2;
  padding: 13px;
}
@media (max-width: 760px) {
  .my-cart-table-row_prepaid .my-cart-table-col_price {
    grid-column-start: 1;
    grid-column-end: -1;
  }
}
.my-cart-table-row_prepaid .my-cart-table-col_price input {
  height: 36px;
  width: 112px;
  display: block;
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  border-radius: 2px;
  margin-right: 12px;
  padding: 6px 10px;
  color: #232221;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  background-image: url(/images/main/pen-def.svg);
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-size: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-right: 30px;
}
@media (max-width: 560px) {
  .my-cart-table-row_prepaid .my-cart-table-col_price input {
    grid-row-start: 1;
    grid-column-start: -2;
    grid-column-end: -1;
    width: 100%;
  }
}
.my-cart-table-row_prepaid .my-cart-table-col_price input::-webkit-input-placeholder {
  font-size: 0;
}
.my-cart-table-row_prepaid .my-cart-table-col_price input::-moz-placeholder {
  font-size: 0;
}
.my-cart-table-row_prepaid .my-cart-table-col_price input:-ms-input-placeholder {
  font-size: 0;
}
.my-cart-table-row_prepaid .my-cart-table-col_price input::-ms-input-placeholder {
  font-size: 0;
}
.my-cart-table-row_prepaid .my-cart-table-col_price input::placeholder {
  font-size: 0;
}
.my-cart-table-row_prepaid .my-cart-table-col_price input:hover {
  border: 1px solid #E85B96;
  background-image: url(/images/main/pen.svg);
}
.my-cart-table-row_prepaid .my-cart-table-col_price input:focus, .my-cart-table-row_prepaid .my-cart-table-col_price input.active {
  border: 1px solid #E85B96;
  background-color: #FDF2F7;
  background-image: url(/images/main/pen.svg);
}
.my-cart-table-row_prepaid .my-cart-table-col_price input.default {
  background-image: none;
  text-align: center;
}
.my-cart-table-row_prepaid .my-cart-table-col_actions {
  grid-column-start: -2;
  grid-column-end: -1;
}
@media (max-width: 1000px) {
  .my-cart-table-row_prepaid .my-cart-table-col_actions {
    grid-row-start: 1;
    grid-row-end: 4;
  }
  .my-cart-table-row_prepaid .my-cart-table-col_actions .my-cart-add-delete {
    height: 100%;
  }
}
@media (max-width: 760px) {
  .my-cart-table-row_prepaid .my-cart-table-col_actions {
    grid-column-start: 1;
    grid-column-end: -1;
    grid-row-start: 4;
    grid-row-end: 5;
  }
  .my-cart-table-row_prepaid .my-cart-table-col_actions .my-cart-add-delete {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .my-cart-table-row_prepaid .my-cart-price-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.my-cart-table-row_prepaid .my-cart-price-item::before {
  display: none;
}
.my-cart-table-row_prepaid .my-cart-price-item .tarif {
  text-decoration: none;
  pointer-events: none;
}
@media (max-width: 1000px) {
  .my-cart-table-row_prepaid .my-cart-price-item .tarif {
    width: auto;
  }
}
@media (max-width: 1000px) {
  .my-cart-table-row_prepaid .my-cart-price-item .tarif-info {
    width: 100%;
    text-align: left;
  }
}

.my-cart-table-col_information-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.my-cart-table-col_information-row .about-ex {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #8F9A9F;
  display: block;
  margin-top: 20px;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
}
@media (max-width: 476px) {
  .my-cart-table-col_information-row .about-ex {
    margin-top: 10px;
  }
}
.my-cart-table-col_information-row .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  display: block;
  margin-right: 6px;
}
.my-cart-table-col_information-row .autor {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
  color: #E85B96;
}
.my-cart-table-col_information-row .value {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #8F9A9F;
  display: block;
}
.my-cart-table-col_information-row .warn {
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: #F44D36;
  display: block;
  margin-top: 5px;
}

.my-cart-price-items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
@media (max-width: 1150px) {
  .my-cart-price-items {
    padding: 16px;
    display: block;
  }
}
@media (max-width: 476px) {
  .my-cart-price-items {
    padding: 5px 10px;
  }
}

.my-cart-price-item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  padding: 5px;
}
@media (max-width: 1150px) {
  .my-cart-price-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 30px;
  }
}
.my-cart-price-item .not-allowed {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #5D686F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 100%;
}
.my-cart-price-item::before {
  content: "";
  position: absolute;
  display: block;
  height: 1000px;
  border-right: 1px solid #D4E0E7;
  width: 1px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1150px) {
  .my-cart-price-item::before {
    display: none;
  }
}
.my-cart-price-item:last-child::before {
  display: none;
}
.my-cart-price-item .cost {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1150px) {
  .my-cart-price-item .cost {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: auto;
  }
}
.my-cart-price-item .base-cost {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  display: block;
  margin: 3px;
}
.my-cart-price-item .old-cost {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #8F9A9F;
  display: block;
  text-decoration: line-through;
  margin: 3px;
}
.my-cart-price-item .new-cost {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #F44D36;
  display: block;
  margin: 3px;
}
.my-cart-price-item .tarif {
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.01em;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
  color: #8F9A9F;
  display: block;
  text-align: center;
}
@media (max-width: 1150px) {
  .my-cart-price-item .tarif {
    white-space: nowrap;
  }
}
.my-cart-price-item .tarif-info {
  font-weight: 600;
  font-size: 15px;
  line-height: 17px;
  letter-spacing: 0.01em;
  color: #E85B96;
  text-align: center;
  margin-top: 5px;
}
@media (max-width: 1150px) {
  .my-cart-price-item .tarif-info {
    text-align: right;
  }
}
.my-cart-price-item .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-bottom: 5px;
}
@media (max-width: 1150px) {
  .my-cart-price-item .checkbox {
    position: absolute;
    left: 0;
  }
}
.my-cart-price-item .checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.my-cart-price-item .check {
  background: none;
  border: 1px solid #E85B96;
  width: 16px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.my-cart-price-item input:checked ~ .check {
  background-color: #fff;
  border: 5px solid #E85B96;
}
.my-cart-price-item input:checked:hover ~ .check {
  background-color: #fff;
  border: 5px solid #D22970;
}
.my-cart-price-item input:disabled ~ .check {
  background-color: #EBECEE;
  border: 1px solid #A4AEB3;
}
.my-cart-price-item input:checked:disabled ~ .check {
  background-color: #EBECEE;
  border-color: #A4AEB3;
}
.my-cart-price-item input:hover ~ .check {
  border: 1px solid #E85B96;
  background: #FDEFF5;
}
.my-cart-price-item input:focus ~ .check {
  outline: 1px solid #E85B96;
}

.my-cart-tips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.my-cart-tips svg {
  margin-bottom: 3px;
}
.my-cart-tips span {
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  display: block;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #2B91D7;
}
@media (max-width: 1000px) {
  .my-cart-tips span {
    display: none;
  }
}

.my-cart-add-wishlist {
  width: calc(100% - 70px);
  position: relative;
}
@media (max-width: 1000px) {
  .my-cart-add-wishlist {
    width: 100%;
    height: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    border-bottom: 1px solid #D4E0E7;
  }
}
@media (max-width: 760px) {
  .my-cart-add-wishlist {
    height: 100%;
    border-bottom: none;
    width: 50%;
    border-right: 2px solid #D4E0E7;
  }
}
@media (max-width: 476px) {
  .my-cart-add-wishlist {
    width: 100%;
    border-right: 1px solid #D4E0E7;
  }
}
.my-cart-add-wishlist button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  padding: 5px;
}
@media (max-width: 1000px) {
  .my-cart-add-wishlist button {
    min-height: 40px;
  }
}
@media (max-width: 760px) {
  .my-cart-add-wishlist button {
    min-height: 0;
  }
}
.my-cart-add-wishlist::before {
  content: "";
  position: absolute;
  display: block;
  height: 1000px;
  border-right: 1px solid #D4E0E7;
  width: 1px;
  top: 50%;
  right: -1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1000px) {
  .my-cart-add-wishlist::before {
    display: none;
  }
}
.my-cart-add-wishlist svg {
  margin-bottom: 5px;
}
.my-cart-add-wishlist span {
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #E85B96;
  text-align: center;
}
@media (max-width: 1000px) {
  .my-cart-add-wishlist span {
    display: none;
  }
}

.my-cart-add-delete {
  width: 70px;
}
@media (max-width: 1000px) {
  .my-cart-add-delete {
    width: 100%;
    height: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (max-width: 760px) {
  .my-cart-add-delete {
    width: 50%;
    height: 100%;
  }
}
@media (max-width: 476px) {
  .my-cart-add-delete {
    position: absolute;
    top: 12px;
    right: 10px;
    width: 16px !important;
    height: 16px !important;
    padding: 0;
  }
}
.my-cart-add-delete button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  padding: 5px;
}
@media (max-width: 1000px) {
  .my-cart-add-delete button {
    min-height: 40px;
  }
}
@media (max-width: 760px) {
  .my-cart-add-delete button {
    min-height: 0;
  }
}
@media (max-width: 476px) {
  .my-cart-add-delete button {
    padding: 0;
  }
}
.my-cart-add-delete svg {
  margin-bottom: 5px;
}
@media (max-width: 476px) {
  .my-cart-add-delete svg {
    width: 100%;
  }
}
.my-cart-add-delete span {
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #A4AEB3;
  text-align: center;
}
@media (max-width: 1000px) {
  .my-cart-add-delete span {
    display: none;
  }
}

.my-cart-table-bottom-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}
@media (max-width: 560px) {
  .my-cart-table-bottom-navigation {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.my-cart-table-bottom-navigation a {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  display: block;
  margin-right: 28px;
  margin-bottom: 5px;
}
@media (max-width: 560px) {
  .my-cart-table-bottom-navigation a {
    margin: 0;
  }
}
.my-cart-table-bottom-navigation a:hover {
  text-decoration: underline;
}
.my-cart-table-bottom-navigation a.disable {
  color: #8F9A9F;
  pointer-events: none;
}
.my-cart-table-bottom-navigation a.my-cart-table-bottom-navigation__wishlist {
  color: #2B91D7;
}
.my-cart-table-bottom-navigation a.my-cart-table-bottom-navigation__tip {
  color: #2B91D7;
}
@media (max-width: 560px) {
  .my-cart-table-bottom-navigation a.my-cart-table-bottom-navigation__tip {
    display: none;
  }
}
.my-cart-table-bottom-navigation a.my-cart-table-bottom-navigation__delete {
  color: #F44D36;
}
.my-cart-table-bottom-navigation a.disable {
    color: #8F9A9F;
    pointer-events: none;
}
.my-cart-tips-block {
  width: 100%;
  max-width: 970px;
  margin: 0 auto 45px;
  border: 1px solid #D4E0E7;
  border-radius: 2px;
  overflow: hidden;
}
.my-cart-tips-block.open .my-cart-tips-block-content {
  display: block;
}
.my-cart-tips-block.open .my-cart-tips-block-top-label {
  background: url(/images/main/minus.svg);
}

.my-cart-tips-block-top {
  width: 100%;
  background: #fff;
  cursor: pointer;
}

.my-cart-tips-block-top-wrap {
  width: 100%;
  padding: 9px;
  max-width: 860px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .my-cart-tips-block-top-wrap {
    padding: 10px 20px;
  }
}
@media (max-width: 500px) {
  .my-cart-tips-block-top-wrap {
    padding: 10px;
  }
}

.my-cart-tips-block-top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.my-cart-tips-block-top-left img {
  margin-right: 9px;
}
.my-cart-tips-block-top-left .title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #2B91D7;
  display: block;
}
.my-cart-tips-block-top-left p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #8F9A9F;
}
@media (max-width: 500px) {
  .my-cart-tips-block-top-left p {
    display: none;
  }
}

.my-cart-tips-block-top-label {
  width: 24px;
  min-width: 24px;
  height: 24px;
  background: url(/images/main/plus.svg);
}

.my-cart-tips-block-content {
  background: #F8F8F8;
  display: none;
}

.my-cart-tips-block-item {
  width: 100%;
  padding: 22px;
  border-bottom: 1px solid #D4E0E7;
  position: relative;
}
@media (max-width: 900px) {
  .my-cart-tips-block-item {
    padding-bottom: 90px;
  }
}
@media (max-width: 560px) {
  .my-cart-tips-block-item {
    padding: 15px;
    padding-bottom: 130px;
  }
}
.my-cart-tips-block-item:last-child {
  border-bottom: none;
}

.my-cart-tips-block-item-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 20px;
}

.my-cart-tips-block-item-nav-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.my-cart-tips-block-item-nav-left .related {
  display: block;
  width: 18px;
  min-width: 18px;
  height: 18px;
  background: url(/images/main/related.svg) no-repeat center/contain;
  margin-right: 26px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 560px) {
  .my-cart-tips-block-item-nav-left .related {
    margin-right: 10px;
  }
}
.my-cart-tips-block-item-nav-left .related.no-related {
  background: url(/images/main/related-disabled.svg) no-repeat center/contain;
}
.my-cart-tips-block-item-nav-left .related.no-related:hover {
  background: url(/images/main/related-disabled-hover.svg) no-repeat center/contain;
}
.my-cart-tips-block-item-nav-left .autor-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.my-cart-tips-block-item-nav-left .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  display: block;
  margin-right: 11px;
}
.my-cart-tips-block-item-nav-left .autor {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
  color: #E85B96;
  display: block;
}

.my-cart-tips-block-item-nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.my-cart-tips-block-item-nav-right .delete {
  display: block;
  margin-left: 25px;
}

.tips-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 900px) {
  .tips-form {
    position: absolute;
    bottom: 25px;
    width: 100%;
    left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 20px;
  }
}
@media (max-width: 560px) {
  .tips-form {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 10px;
    padding: 0 15px;
  }
}
.tips-form .submit {
  height: 36px;
  width: 110px;
  background: #E85B96;
  border-radius: 2px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media (max-width: 560px) {
  .tips-form .submit {
    grid-column-start: -2;
    grid-column-end: -1;
    width: 100%;
  }
}
.tips-form > input {
  height: 36px;
  width: 112px;
  display: block;
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  border-radius: 2px;
  margin-right: 12px;
  padding: 6px 10px;
  color: #232221;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  background-image: url(/images/main/pen-def.svg);
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-size: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-right: 30px;
}
@media (max-width: 560px) {
  .tips-form > input {
    grid-row-start: 1;
    grid-column-start: -2;
    grid-column-end: -1;
    width: 100%;
  }
}
.tips-form > input::-webkit-input-placeholder {
  font-size: 0;
}
.tips-form > input::-moz-placeholder {
  font-size: 0;
}
.tips-form > input:-ms-input-placeholder {
  font-size: 0;
}
.tips-form > input::-ms-input-placeholder {
  font-size: 0;
}
.tips-form > input::placeholder {
  font-size: 0;
}
.tips-form > input:hover {
  border: 1px solid #E85B96;
  background-image: url(/images/main/pen.svg);
}
.tips-form > input:focus, .tips-form > input.active {
  border: 1px solid #E85B96;
  background-color: #FDF2F7;
  background-image: url(/images/main/pen.svg);
}
.tips-form > input.default {
  background-image: none;
  text-align: center;
}

.procent-check {
  position: relative;
  display: block;
  margin-right: 8px;
}
@media (max-width: 560px) {
  .procent-check {
    width: 100%;
  }
}
.procent-check input {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  cursor: pointer;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.procent-check .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  height: 36px;
  width: 50px;
  display: block;
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 560px) {
  .procent-check .text {
    width: 100%;
  }
}
.procent-check input:checked ~ .text {
  background: #FDF2F7;
  border: 1px solid #E85B96;
}
.procent-check input:hover ~ .text {
  border: 1px solid #E85B96;
}

.my-cart-tips-block-item-images {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 18px;
  margin: 0 auto;
  max-width: 840px;
}
@media (max-width: 900px) {
  .my-cart-tips-block-item-images {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 560px) {
  .my-cart-tips-block-item-images {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}
.my-cart-tips-block-item-images .image {
  width: 100%;
}

.also-like {
  width: 100%;
  background: #F8F8F8;
}
.also-like .container {
  max-width: 1281px;
}

.also-like-wrap {
  width: 100%;
  padding: 20px 0 35px;
  position: relative;
}
@media (max-width: 1330px) {
  .also-like-wrap {
    padding: 20px 40px 35px;
  }
}
@media (max-width: 800px) {
  .also-like-wrap {
    padding: 20px 0;
  }
}
.also-like-wrap .also-like-slider-button {
  position: absolute;
  top: 50%;
  z-index: 3;
}
@media (max-width: 800px) {
  .also-like-wrap .also-like-slider-button {
    display: none;
  }
}
.also-like-wrap #also-like-slider-button-prev {
  left: -80px;
}
@media (max-width: 1440px) {
  .also-like-wrap #also-like-slider-button-prev {
    left: -40px;
  }
}
@media (max-width: 1330px) {
  .also-like-wrap #also-like-slider-button-prev {
    left: 0;
  }
}
.also-like-wrap #also-like-slider-button-next {
  right: -80px;
}
@media (max-width: 1440px) {
  .also-like-wrap #also-like-slider-button-next {
    right: -40px;
  }
}
@media (max-width: 1330px) {
  .also-like-wrap #also-like-slider-button-next {
    right: 0;
  }
}

.also-like-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 20px;
}
@media (max-width: 530px) {
  .also-like-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.also-like-top .title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
  color: #232221;
  display: block;
}
@media (max-width: 530px) {
  .also-like-top .title {
    margin-bottom: 16px;
  }
}
.also-like-top .also-like-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 530px) {
  .also-like-top .also-like-nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.also-like-top .also-like-nav a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #8F9A9F;
  display: block;
  margin-left: 20px;
}
@media (max-width: 530px) {
  .also-like-top .also-like-nav a {
    margin: 0 10px;
  }
}
.also-like-top .also-like-nav a.active {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #2B91D7;
}

.also-like-slider-wrap {
  width: 100%;
}

.also-like-slider {
  width: 100%;
}
@media (max-width: 800px) {
  .also-like-slider {
    padding-bottom: 50px;
  }
}
@media (max-width: 800px) {
  .also-like-slider .swiper-pagination {
    position: absolute;
    bottom: 20px;
    width: 100%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .also-like-slider .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #FFFFFF;
    border: 1px solid #E85B96;
    border-radius: 50%;
    margin: 0 6px;
  }
  .also-like-slider .swiper-pagination-bullet-active {
    background: #E85B96;
  }
}

.any-questions {
  display: block;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  color: #232628;
  margin-bottom: 45px;
}
.any-questions a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #2B91D7;
}

.my-cart-pay-block {
  width: 100%;
  max-width: 970px;
  margin: 0 auto 16px;
  padding: 22px 59px 38px;
  border: 1px solid #D4E0E7;
  border-radius: 2px;
}
@media (max-width: 970px) {
  .my-cart-pay-block {
    padding: 22px;
  }
}
@media (max-width: 760px) {
  .my-cart-pay-block {
    padding: 0;
  }
}
.my-cart-pay-block .eror-type {
  text-align: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #F44D36;
  display: block;
  margin-bottom: 8px;
}
.my-cart-pay-block .submit {
  background: #00CCCC;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 40px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 760px) {
  .my-cart-pay-block .submit {
    margin-bottom: 36px;
    max-width: 90%;
  }
}
.my-cart-pay-block .submit:hover {
  background: #00B9B9;
}
.my-cart-pay-block .submit:active {
  background: #00AFAF;
}
.my-cart-pay-block .submit:focus {
  background: #00AFAF;
  border: 2px solid #5BEDED;
}
.my-cart-pay-block .submit:disabled {
  color: #8F9A9F;
  background: #D4E0E7;
  pointer-events: none;
}

.my-cart-pay-block-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .my-cart-pay-block-wrap {
    display: block;
  }
}

.my-cart-pay-block-left {
  width: 48%;
  max-width: 312px;
}
@media (max-width: 760px) {
  .my-cart-pay-block-left {
    width: 100%;
    max-width: 100%;
    padding: 0 13px;
    margin-bottom: 30px;
  }
}
.my-cart-pay-block-left .send-gifts {
  width: 100%;
  background: #F2F2F2;
  border: 1px solid #E4E5E6;
  margin-bottom: 23px;
}
@media (max-width: 760px) {
  .my-cart-pay-block-left .send-gifts {
    position: relative;
    left: -13px;
    right: -13px;
    width: calc(100% + 26px);
  }
}
.my-cart-pay-block-left .send-gifts.open .send-gifts-content {
  display: block;
}
.my-cart-pay-block-left .send-gifts-content {
  display: none;
  width: 100%;
  max-width: 247px;
  margin: 0 auto;
  padding: 10px 10px 18px;
}
.my-cart-pay-block-left .send-gifts-content input,
.my-cart-pay-block-left .send-gifts-content textarea {
  display: block;
  width: 100%;
  height: 27px;
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  border-radius: 4px;
  margin-bottom: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 2px 10px;
}
.my-cart-pay-block-left .send-gifts-content input:hover,
.my-cart-pay-block-left .send-gifts-content textarea:hover {
  border: 1px solid #E85B96;
}
.my-cart-pay-block-left .send-gifts-content input:focus,
.my-cart-pay-block-left .send-gifts-content textarea:focus {
  background: #FFF8FB;
  border: 1px solid #E85B96;
}
.my-cart-pay-block-left .send-gifts-content input:active,
.my-cart-pay-block-left .send-gifts-content textarea:active {
  background: #fff;
  border: 1px solid #DF387E;
}
.my-cart-pay-block-left .send-gifts-content input:disabled,
.my-cart-pay-block-left .send-gifts-content textarea:disabled {
  background: #FFFFFF;
  border: 1px solid #A4AEB3;
  pointer-events: none;
}
.my-cart-pay-block-left .send-gifts-content input.eror,
.my-cart-pay-block-left .send-gifts-content textarea.eror {
  border: 1px solid #F44D36;
}
.my-cart-pay-block-left .send-gifts-content textarea {
  height: 55px;
  resize: vertical;
}
.my-cart-pay-block-left .send-gifts-top {
  padding: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  cursor: pointer;
}
.my-cart-pay-block-left .send-gifts-top p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #232221;
}
@media (max-width: 360px) {
  .my-cart-pay-block-left .send-gifts-top p {
    font-size: 14px;
    line-height: 120%;
    text-align: left;
  }
}
.my-cart-pay-block-left .send-gifts-top p a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #2B91D7;
}
.my-cart-pay-block-left .send-gifts-top img {
  margin-left: 8px;
}
.my-cart-pay-block-left .send-gifts-top .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-right: 10px;
}
.my-cart-pay-block-left .send-gifts-top .checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.my-cart-pay-block-left .send-gifts-top .check {
  background: #FFFFFF;
  border: 1px solid #E85B96;
  width: 18px;
  min-width: 18px;
  height: 18px;
  border-radius: 4px;
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.my-cart-pay-block-left .send-gifts-top input:checked ~ .check {
  background-color: #E85B96;
  border: 1px solid #E85B96;
  background-image: url(/images/main/check.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.my-cart-pay-block-left .send-gifts-top input:checked:hover ~ .check {
  background-color: #E85B96;
  border: 1px solid #D22970;
  background-image: url(/images/main/check.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.my-cart-pay-block-left .send-gifts-top input:disabled ~ .check {
  background-color: #EBECEE;
  border: 1px solid #A4AEB3;
}
.my-cart-pay-block-left .send-gifts-top input:checked:disabled ~ .check {
  background-color: #EBECEE;
  border-color: #A4AEB3;
  background-image: url(/images/main/check.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.my-cart-pay-block-left .send-gifts-top input:hover ~ .check {
  border: 1px solid #E85B96;
  background: #FDEFF5;
}
.my-cart-pay-block-left .send-gifts-top input:focus ~ .check {
  outline: 1px solid #E85B96;
}
.my-cart-pay-block-left .terms-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: justify;
  color: #000000;
}
.my-cart-pay-block-left .terms-checkbox a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #2B91D7;
}
.my-cart-pay-block-left .terms-checkbox .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-right: 14px;
}
.my-cart-pay-block-left .terms-checkbox .checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.my-cart-pay-block-left .terms-checkbox .check {
  background: #FFFFFF;
  border: 1px solid #E85B96;
  width: 18px;
  min-width: 18px;
  height: 18px;
  border-radius: 4px;
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.my-cart-pay-block-left .terms-checkbox input:checked ~ .check {
  background-color: #E85B96;
  border: 1px solid #E85B96;
  background-image: url(/images/main/check.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.my-cart-pay-block-left .terms-checkbox input:checked:hover ~ .check {
  background-color: #E85B96;
  border: 1px solid #D22970;
  background-image: url(/images/main/check.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.my-cart-pay-block-left .terms-checkbox input:disabled ~ .check {
  background-color: #EBECEE;
  border: 1px solid #A4AEB3;
}
.my-cart-pay-block-left .terms-checkbox input:checked:disabled ~ .check {
  background-color: #EBECEE;
  border-color: #A4AEB3;
  background-image: url(/images/main/check.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.my-cart-pay-block-left .terms-checkbox input:hover ~ .check {
  border: 1px solid #E85B96;
  background: #FDEFF5;
}
.my-cart-pay-block-left .terms-checkbox input:focus ~ .check {
  outline: 1px solid #E85B96;
}
.my-cart-pay-block-left .popup-ex-pay-metods {
  padding: 0;
  border: none;
}
.my-cart-pay-block-left .autorization-section-form-checkbox {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.my-cart-pay-block-left .autorization-section-form-checkbox p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0;
}
.my-cart-pay-block-left .autorization-section-form-checkbox p svg {
  margin-left: 15px;
}
.my-cart-pay-block-left .autorization-section-form-checkbox p span {
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: #717B80;
  width: 100%;
  margin-top: 5px;
}
.my-cart-pay-block-left .autorization-section-form-checkbox .checkbox {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
}
.my-cart-pay-block-left .autorization-section-form-checkbox .check {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  border: 1px solid #E85B96;
  border-radius: 50%;
  margin-right: 11px;
}
.my-cart-pay-block-left .autorization-section-form-checkbox input:checked ~ .check {
  background-color: #fff;
  border: 4px solid #E85B96;
  background-image: none;
}
.my-cart-pay-block-left .autorization-section-form-checkbox input:checked:hover ~ .check {
  background-color: #fff;
  border: 4px solid #D22970;
  background-image: none;
}
.my-cart-pay-block-left .autorization-section-form-checkbox input:disabled ~ .check {
  background-color: #EBECEE;
  border: 1px solid #A4AEB3;
}
.my-cart-pay-block-left .autorization-section-form-checkbox input:checked:disabled ~ .check {
  background-color: #EBECEE;
  border-color: #A4AEB3;
  background-image: none;
}
.my-cart-pay-block-left .autorization-section-form-checkbox input:hover ~ .check {
  border: 1px solid #E85B96;
  background: #FDEFF5;
}
.my-cart-pay-block-left .autorization-section-form-checkbox input:focus ~ .check {
  outline: 1px solid #E85B96;
}

.my-cart-pay-block-right {
  width: 48%;
  max-width: 360px;
}
@media (max-width: 760px) {
  .my-cart-pay-block-right {
    width: 100%;
    max-width: 100%;
    padding: 0 13px;
  }
}
.my-cart-pay-block-right .have-promocode {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #2B91D7;
  text-align: center;
  display: block;
  width: 100%;
  margin-bottom: 16px;
}
.my-cart-pay-block-right .popup-ex-pay-cupon-form {
  margin: 0 auto;
}
.my-cart-pay-block-right .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: #232628;
  display: block;
  margin-bottom: 27px;
  text-align: right;
}
@media (max-width: 760px) {
  .my-cart-pay-block-right .title {
    text-align: center;
  }
}

.my-cart-pay-block-list {
  width: 100%;
  margin-bottom: 14px;
}
.my-cart-pay-block-list__item {
  padding: 14px 32px;
  border-bottom: 1px solid #D4E0E7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #232628;
}
@media (max-width: 760px) {
  .my-cart-pay-block-list__item {
    padding: 12px 0;
  }
}
.my-cart-pay-block-list__item .promocode {
  width: 100%;
  display: block;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #5D686F;
  margin-top: 5px;
}
.my-cart-pay-block-list b {
  font-weight: 600;
}
.my-cart-pay-block-list .value {
  font-size: 20px;
  text-align: right;
}
.my-cart-pay-block-list .total {
  color: #E85B96;
}

.back-link {
  width: 100%;
  background: #F2F2F2;
  display: block;
  margin-bottom: 50px;
}
@media (max-width: 475px) {
  .back-link {
    margin-bottom: 35px;
  }
}
.back-link .container {
  display: block;
}

.back-link-wrap {
  padding: 18px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #E85B96;
}
.back-link-wrap svg {
  margin-right: 7px;
}

.pay-approval-section {
  width: 100%;
}

.pay-approval-section-wrap {
  width: 100%;
}

.pay-approval-section-table {
  width: 100%;
  max-width: 970px;
  margin: 0 auto 46px;
}

.pay-approval-section-table-navigation {
  width: 100%;
  display: grid;
  grid-template-columns: 0.8fr 2.2fr 1.1fr;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #232221;
}
@media (max-width: 475px) {
  .pay-approval-section-table-navigation .my-cart-table-col_information,
.pay-approval-section-table-navigation .my-cart-table-col_price {
    display: none;
  }
  .pay-approval-section-table-navigation .my-cart-table-col_image {
    grid-column-start: 1 !important;
    grid-column-end: -1 !important;
  }
}
.pay-approval-section-table-navigation .my-cart-table-col {
  padding: 10px;
  grid-column-start: auto;
  grid-column-end: auto;
  grid-row-start: auto;
  grid-row-end: auto;
}

.pay-approval-section-table-row {
  width: 100%;
  display: grid;
  grid-template-columns: 0.8fr 2.2fr 1.1fr;
}
@media (max-width: 475px) {
  .pay-approval-section-table-row {
    grid-template-columns: 2fr 2.2fr 1.1fr;
  }
  .pay-approval-section-table-row .my-cart-table-col_information {
    grid-column-start: 2 !important;
    grid-column-end: -1 !important;
  }
  .pay-approval-section-table-row .my-cart-table-col_price {
    grid-column-start: 1 !important;
    grid-column-end: -1 !important;
    grid-row-start: 2 !important;
    grid-row-end: 3 !important;
  }
  .pay-approval-section-table-row .my-cart-table-col_image {
    grid-column-start: 1 !important;
    grid-column-end: 2 !important;
  }
}
.pay-approval-section-table-row .my-cart-table-col {
  grid-column-start: auto;
  grid-column-end: auto;
  grid-row-start: auto;
  grid-row-end: auto;
}
.pay-approval-section-table-row:nth-child(even) {
  background: #F8F8F8;
}
.pay-approval-section-table-row .my-cart-table-col_image {
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.pay-approval-section-table-row .my-cart-table-col_image img {
  width: 100px;
  max-width: 100%;
}
.pay-approval-section-table-row .my-cart-table-col_information {
  padding: 12px;
}
.pay-approval-section-table-row .my-cart-table-col_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pay-approval-section-table-row .my-cart-table-col_price .my-cart-price-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 0;
}
.pay-approval-section-table-row .my-cart-table-col_price .my-cart-price-item .tarif-info {
  text-align: center;
}

.tips-total-table {
  width: 100%;
  max-width: 970px;
  margin: 0 auto 46px;
}

.tips-total-table-navigation {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #232221;
}
.tips-total-table-navigation .my-cart-table-col {
  padding: 12px;
}
@media (max-width: 475px) {
  .tips-total-table-navigation .my-cart-table-col_info {
    display: none;
  }
  .tips-total-table-navigation .my-cart-table-col_cost {
    grid-column-start: 1;
    grid-column-end: -1;
  }
}

.tips-total-table-row {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  background: #F8F8F8;
}
@media (max-width: 475px) {
  .tips-total-table-row {
    grid-template-columns: 1fr;
    border-bottom: 1px solid #D4E0E7;
  }
}
.tips-total-table-row .my-cart-table-col {
  padding: 12px;
}
@media (max-width: 475px) {
  .tips-total-table-row .my-cart-table-col {
    border: none;
  }
}
.tips-total-table-row .my-cart-table-col_info {
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 475px) {
  .tips-total-table-row .my-cart-table-col_info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 10px 10px 0;
  }
}
.tips-total-table-row .my-cart-table-col_info .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  display: block;
  margin-right: 6px;
}
.tips-total-table-row .my-cart-table-col_info .autor {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
  color: #E85B96;
  display: block;
}
.tips-total-table-row .my-cart-table-col_cost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.tips-total-table-row .my-cart-table-col_cost img {
  margin-right: 10px;
}

.pay-approval-total {
  width: 100%;
  border: 1px solid #D4E0E7;
  border-radius: 2px;
  max-width: 430px;
  margin: 0 auto 40px;
  padding: 16px 30px 30px;
}
@media (max-width: 475px) {
  .pay-approval-total {
    padding: 15px;
  }
}
.pay-approval-total .checkout {
  background: #00CCCC;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 40px;
  width: 100%;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pay-approval-total .checkout:hover {
  background: #00B9B9;
}
.pay-approval-total .checkout:active {
  background: #00AFAF;
}
.pay-approval-total .checkout:focus {
  background: #00AFAF;
  border: 2px solid #5BEDED;
}
.pay-approval-total .checkout:disabled {
  color: #8F9A9F;
  background: #D4E0E7;
}
.pay-approval-total .my-cart-pay-block-list {
  margin-bottom: 0px;
}

.pay-approval-total-gifts {
  width: 100%;
  background: #F8F8F8;
  border: 1px solid #D4E0E7;
}

.pay-approval-total-gifts-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
  border-bottom: 1px solid #D4E0E7;
}
@media (max-width: 475px) {
  .pay-approval-total-gifts-top {
    display: block;
  }
}
.pay-approval-total-gifts-top img {
  margin-right: 10px;
}
@media (max-width: 475px) {
  .pay-approval-total-gifts-top img {
    display: none;
  }
}
.pay-approval-total-gifts-top .label {
  font-weight: 400;
  font-size: 15px;
  line-height: 16px;
  color: #5D686F;
  display: block;
  max-width: 101px;
  margin-right: 7px;
}
@media (max-width: 475px) {
  .pay-approval-total-gifts-top .label {
    max-width: 100%;
    margin-bottom: 4px;
  }
}
.pay-approval-total-gifts-top .email {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  display: block;
}

.pay-approval-total-gifts-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 10px;
  padding-left: 50px;
  border-bottom: 1px solid #D4E0E7;
}
@media (max-width: 475px) {
  .pay-approval-total-gifts-message {
    display: block;
    padding: 10px;
  }
}
.pay-approval-total-gifts-message .label {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #5D686F;
  display: block;
  margin-right: 24px;
}
@media (max-width: 475px) {
  .pay-approval-total-gifts-message .label {
    margin-bottom: 4px;
  }
}
.pay-approval-total-gifts-message .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  display: block;
}

.pay-approval-total-gifts-anonymous {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 5px;
  padding-left: 50px;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #5D686F;
}
@media (max-width: 475px) {
  .pay-approval-total-gifts-anonymous {
    padding: 10px;
  }
}
.pay-approval-total-gifts-anonymous svg {
  margin-right: 4px;
}

.pay-approval-total-cost {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 310px;
  margin: 24px auto;
}
.pay-approval-total-cost .label {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: #232628;
  display: block;
}
.pay-approval-total-cost .value {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  text-align: right;
  text-transform: uppercase;
  color: #E85B96;
  display: block;
}
.pay-approval-total-cost .balance {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5D686F;
  display: block;
  width: 100%;
  margin-top: 5px;
}

.then-try-ex-popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  display: none;
  background: none;
  padding: 0;
  width: 98%;
  max-width: 630px;
}
.then-try-ex-popup .close {
  display: block;
  margin-left: auto;
  width: 33px;
}
.then-try-ex-popup .close path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.then-try-ex-popup .close:hover path {
  fill: #664DAE;
}
.then-try-ex-popup .fancybox-close-small {
  display: none;
}

.then-try-ex-popup-wrap {
  padding: 24px 59px 20px;
  background: linear-gradient(255.81deg, #5F45AA 0.63%, #755EB7 50.54%, #895EB1 100.45%);
  border-radius: 5px;
  position: relative;
}
@media (max-width: 625px) {
  .then-try-ex-popup-wrap {
    padding: 20px 15px;
  }
}
.then-try-ex-popup-wrap .left-bg {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 500px) {
  .then-try-ex-popup-wrap .left-bg {
    display: none;
  }
}
.then-try-ex-popup-wrap .right-bg {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 500px) {
  .then-try-ex-popup-wrap .right-bg {
    display: none;
  }
}
.then-try-ex-popup-wrap .gift {
  position: absolute;
  left: 10px;
  top: 50%;
}
.then-try-ex-popup-wrap .lotery {
  position: absolute;
  right: 20px;
  top: 70%;
}
.then-try-ex-popup-wrap .subtitle {
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 22px;
  line-height: 23px;
  color: #FFFFFF;
  margin-bottom: 17px;
  position: relative;
  z-index: 2;
}
.then-try-ex-popup-wrap .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 23px;
  text-align: center;
  color: #FFFFFF;
  display: block;
  margin-bottom: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}
.then-try-ex-popup-wrap .title img {
  margin: 0 10px;
}
.then-try-ex-popup-wrap .list-title {
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-size: 19px;
  line-height: 18px;
  text-transform: uppercase;
  color: #FFFFFF;
  display: block;
  margin-bottom: 18px;
}
.then-try-ex-popup-wrap .then-try-ex-popup-list {
  position: relative;
  z-index: 2;
  list-style-type: square;
  font-weight: 400;
  font-size: 19px;
  line-height: 18px;
  color: #FFFFFF;
  padding-left: 17px;
  margin-bottom: 30px;
}
.then-try-ex-popup-wrap .then-try-ex-popup-list li {
  margin-bottom: 14px;
}
.then-try-ex-popup-wrap .then-try-ex-popup-list li span {
  display: inline-block;
  font-family: "Atma", cursive;
  font-weight: 600;
  font-size: 18px;
  line-height: 19px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFD600;
}
.then-try-ex-popup-wrap .then-try-ex-popup-list li span.blue {
  color: #5BEDED;
  font-weight: 500;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
}
.then-try-ex-popup-wrap .then-try-ex-popup-list li::marker {
  color: #FFD600;
}
.then-try-ex-popup-wrap .then-try-ex-popup-list li:last-child::marker {
  color: #5BEDED;
}
.then-try-ex-popup-wrap .then-try-ex-popup-button {
  position: relative;
  z-index: 2;
  background: #00CCCC;
  height: 40px;
  -webkit-filter: drop-shadow(0px 4px 0px #059292);
          filter: drop-shadow(0px 4px 0px #059292);
  border-radius: 3px;
  width: 100%;
  max-width: 270px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 auto 17px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.then-try-ex-popup-wrap .then-try-ex-popup-button:hover {
  background: #00B9B9;
}
.then-try-ex-popup-wrap .then-try-ex-popup-button:active {
  background: #00AFAF;
  -webkit-box-shadow: inset 0px 1px 0px #5BEDED;
          box-shadow: inset 0px 1px 0px #5BEDED;
  -webkit-filter: drop-shadow(0px 2px 0px #059292);
          filter: drop-shadow(0px 2px 0px #059292);
}
.then-try-ex-popup-wrap .more-info {
  position: relative;
  z-index: 2;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #FFFFFF;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.8;
}
.then-try-ex-popup-wrap .more-info:hover {
  opacity: 1;
}
.then-try-ex-popup-wrap .more-info:active {
  color: #00CCCC;
  opacity: 1;
}

.then-try-ex-popup2 {
  display: none;
  padding: 0;
  width: 98%;
  max-width: 630px;
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF), linear-gradient(255.81deg, #5F45AA 0.63%, #755EB7 50.54%, #895EB1 100.45%);
  border: 5px solid #F5F2FB;
  border-radius: 5px;
}

.then-try-ex-popup-wrap2 {
  width: 100%;
}
.then-try-ex-popup-wrap2 .top {
  width: 100%;
  padding: 24px 56px 30px;
}
@media (max-width: 600px) {
  .then-try-ex-popup-wrap2 .top {
    padding: 30px 15px 0;
  }
}
.then-try-ex-popup-wrap2 .subtitle {
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 22px;
  line-height: 23px;
  color: #232221;
  margin-bottom: 17px;
  position: relative;
  z-index: 2;
}
.then-try-ex-popup-wrap2 .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 23px;
  text-align: center;
  color: #7E67C0;
  display: block;
  margin-bottom: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  z-index: 2;
}
.then-try-ex-popup-wrap2 .title img {
  margin: 0 10px;
}
.then-try-ex-popup-wrap2 .list-title {
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-size: 19px;
  line-height: 18px;
  text-transform: uppercase;
  color: #232221;
  display: block;
  margin-bottom: 18px;
}
.then-try-ex-popup-wrap2 .then-try-ex-popup-list {
  position: relative;
  z-index: 2;
  list-style-type: square;
  font-weight: 400;
  font-size: 19px;
  line-height: 18px;
  color: #232221;
  padding-left: 17px;
  margin-bottom: 30px;
}
.then-try-ex-popup-wrap2 .then-try-ex-popup-list li {
  margin-bottom: 14px;
}
.then-try-ex-popup-wrap2 .then-try-ex-popup-list li span {
  display: inline-block;
  font-family: "Atma", cursive;
  font-weight: 600;
  font-size: 18px;
  line-height: 19px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7E67C0;
}
.then-try-ex-popup-wrap2 .then-try-ex-popup-list li span.blue {
  color: #7E67C0;
  font-weight: 500;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
}
.then-try-ex-popup-wrap2 .then-try-ex-popup-list li::marker {
  color: #7E67C0;
}
.then-try-ex-popup-wrap2 .then-try-ex-popup-list li:last-child::marker {
  color: #5BEDED;
}
.then-try-ex-popup-wrap2 .bottom {
  width: 100%;
  padding: 24px 30px 20px;
  background: linear-gradient(0deg, #F5F2FB, #F5F2FB), linear-gradient(255.81deg, #5F45AA 0.63%, #755EB7 50.54%, #895EB1 100.45%);
}
@media (max-width: 550px) {
  .then-try-ex-popup-wrap2 .bottom {
    background: none;
  }
}
.then-try-ex-popup-wrap2 .bottom-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  color: #232221;
  margin-bottom: 24px;
  display: block;
}
@media (max-width: 600px) {
  .then-try-ex-popup-wrap2 .bottom-title {
    display: none;
  }
}
.then-try-ex-popup-wrap2 .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
}
@media (max-width: 550px) {
  .then-try-ex-popup-wrap2 .actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.then-try-ex-popup-wrap2 .actions .then-try-ex-popup-button {
  position: relative;
  z-index: 2;
  background: #00CCCC;
  height: 40px;
  border-radius: 3px;
  width: 278px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 550px) {
  .then-try-ex-popup-wrap2 .actions .then-try-ex-popup-button {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 16px;
  }
}
.then-try-ex-popup-wrap2 .actions .then-try-ex-popup-button:hover {
  background: #00B9B9;
}
.then-try-ex-popup-wrap2 .actions .then-try-ex-popup-button:active {
  background: #00AFAF;
}
.then-try-ex-popup-wrap2 .actions .more-info {
  position: relative;
  z-index: 2;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #232221;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.8;
}
.then-try-ex-popup-wrap2 .actions .more-info:hover {
  opacity: 1;
}
.then-try-ex-popup-wrap2 .actions .more-info:active {
  color: #00CCCC;
  opacity: 1;
}

.then-try-ex-popup2-tarifs {
  width: 100%;
  background: #FFFDFD;
  border: 1px solid #D4E0E7;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  overflow: hidden;
  padding: 10px 0;
  margin-bottom: 23px;
}
@media (max-width: 600px) {
  .then-try-ex-popup2-tarifs {
    display: none;
  }
}
.then-try-ex-popup2-tarifs .tarif {
  pointer-events: none;
  text-decoration: none;
}
.then-try-ex-popup2-tarifs .my-cart-price-item {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  -webkit-box-flex: inherit;
      -ms-flex-positive: inherit;
          flex-grow: inherit;
  padding: 0;
}
.then-try-ex-popup2-tarifs .my-cart-price-item .checkbox {
  position: relative;
}
.then-try-ex-popup2-tarifs .my-cart-price-item .tarif-info {
  text-align: center;
}

.my-wishlist-table {
  width: 100%;
  margin-bottom: 26px;
}

.my-wishlist-table-nav {
  width: 100%;
  display: grid;
  grid-template-columns: 70px 0.9fr 1.4fr 1.4fr 0.7fr 70px;
  height: 54px;
}
@media (max-width: 1150px) {
  .my-wishlist-table-nav {
    grid-template-columns: 70px 0.9fr 1.4fr 1.4fr 0.7fr 70px;
  }
}
@media (max-width: 1000px) {
  .my-wishlist-table-nav {
    grid-template-columns: 50px 1.2fr 2.5fr 1.6fr 70px;
  }
}
@media (max-width: 760px) {
  .my-wishlist-table-nav {
    grid-template-columns: 50px 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 476px) {
  .my-wishlist-table-nav {
    grid-template-columns: 30px 1fr 1fr 1fr 1fr;
  }
}
.my-wishlist-table-nav .my-wishlist-table-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.my-wishlist-table-nav .my-wishlist-table-col span {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #232221;
}
@media (max-width: 476px) {
  .my-wishlist-table-nav .my-wishlist-table-col_checkbox {
    display: none;
  }
}
@media (max-width: 760px) {
  .my-wishlist-table-nav .my-wishlist-table-col_image {
    grid-column-start: 2;
    grid-column-end: -1;
  }
}
@media (max-width: 476px) {
  .my-wishlist-table-nav .my-wishlist-table-col_image {
    grid-column-start: 1;
    border-right: 0.5px solid #D4E0E7 !important;
  }
}
@media (max-width: 1300px) {
  .my-wishlist-table-nav .my-wishlist-table-col_information {
    padding: 10px;
  }
}
@media (max-width: 760px) {
  .my-wishlist-table-nav .my-wishlist-table-col_information {
    display: none;
  }
}
@media (max-width: 760px) {
  .my-wishlist-table-nav .my-wishlist-table-col_price {
    display: none;
  }
}
.my-wishlist-table-nav .my-wishlist-table-col_tips span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1000px) {
  .my-wishlist-table-nav .my-wishlist-table-col_tips {
    display: none;
  }
}
@media (max-width: 760px) {
  .my-wishlist-table-nav .my-wishlist-table-col_tips {
    display: none;
  }
}
@media (max-width: 1000px) {
  .my-wishlist-table-nav .my-wishlist-table-col_actions {
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
@media (max-width: 760px) {
  .my-wishlist-table-nav .my-wishlist-table-col_actions {
    display: none;
  }
}

.my-wishlist-table-col {
  border: 0.5px solid #D4E0E7;
}
.my-wishlist-table-col .question {
  position: relative;
  font-weight: 500;
  font-size: 12px !important;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #444444;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 14px;
  height: 14px;
  background: #E4E5E6;
  border-radius: 50%;
  margin-left: 4px;
  margin-top: -25px;
  cursor: help;
  z-index: 10;
}
.my-wishlist-table-col .question .question-text {
  position: absolute;
  top: 100%;
  right: 100%;
  background: #E4E5E6;
  width: 200px;
  padding: 10px;
  z-index: 10;
  text-align: left;
  line-height: 120%;
  display: none;
}
.my-wishlist-table-col .question:hover .question-text {
  display: block;
}
.my-wishlist-table-col_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1000px) {
  .my-wishlist-table-col_checkbox {
    grid-column-end: 1;
    grid-column-start: 2;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
@media (max-width: 760px) {
  .my-wishlist-table-col_checkbox {
    grid-column-end: 1;
    grid-column-start: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
.my-wishlist-table-col_checkbox .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  width: 22px;
  min-width: 22px;
  height: 22px;
}
@media (max-width: 476px) {
  .my-wishlist-table-col_checkbox .checkbox {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
}
.my-wishlist-table-col_checkbox .checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.my-wishlist-table-col_checkbox .checkbox .check {
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  width: 22px;
  min-width: 22px;
  height: 22px;
  border-radius: 4px;
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 476px) {
  .my-wishlist-table-col_checkbox .checkbox .check {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
}
.my-wishlist-table-col_checkbox .checkbox input:checked ~ .check {
  background-color: #E85B96;
  border: 1px solid #E85B96;
  background-image: url(/images/main/check.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.my-wishlist-table-col_checkbox .checkbox input:checked:hover ~ .check {
  background-color: #E85B96;
  border: 1px solid #D22970;
  background-image: url(/images/main/check.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.my-wishlist-table-col_checkbox .checkbox input:disabled ~ .check {
  background-color: #EBECEE;
  border: 1px solid #A4AEB3;
}
.my-wishlist-table-col_checkbox .checkbox input:checked:disabled ~ .check {
  background-color: #EBECEE;
  border-color: #A4AEB3;
  background-image: url(/images/main/check.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.my-wishlist-table-col_checkbox .checkbox input:hover ~ .check {
  border: 1px solid #E85B96;
  background: #FDEFF5;
}
.my-wishlist-table-col_checkbox .checkbox input:focus ~ .check {
  outline: 1px solid #E85B96;
}
@media (max-width: 476px) {
  .my-wishlist-table-col_checkbox {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 10px;
  }
}
.my-wishlist-table-col_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 10px;
}
@media (max-width: 600px) {
  .my-wishlist-table-col_image {
    padding: 5px;
  }
}
.my-wishlist-table-col_image img {
  max-width: 100%;
}
@media (max-width: 1000px) {
  .my-wishlist-table-col_image {
    grid-column-end: 2;
    grid-column-start: 3;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
@media (max-width: 1000px) and (max-width: 760px) {
  .my-wishlist-table-col_image {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-end: 3;
    grid-column-start: 2;
  }
}
@media (max-width: 1000px) and (max-width: 476px) {
  .my-wishlist-table-col_image {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    border-right: none !important;
  }
}
.my-wishlist-table-col_type {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
}
.my-wishlist-table-col_information {
  padding: 10px 20px 10px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 1300px) {
  .my-wishlist-table-col_information {
    padding: 16px;
  }
}
@media (max-width: 600px) {
  .my-wishlist-table-col_information {
    padding: 5px;
  }
}
.my-wishlist-table-col_information .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  display: block;
  margin-right: 6px;
}
.my-wishlist-table-col_information .autor {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
  color: #E85B96;
  display: block;
}
.my-wishlist-table-col_information .value {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #8F9A9F;
  display: block;
}
@media (max-width: 1000px) {
  .my-wishlist-table-col_information {
    grid-column-end: 3;
    grid-column-start: 4;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
@media (max-width: 1000px) and (max-width: 760px) {
  .my-wishlist-table-col_information {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 3;
    grid-column-end: -1;
  }
}
@media (max-width: 1000px) and (max-width: 476px) {
  .my-wishlist-table-col_information {
    grid-row-start: 2;
    grid-row-end: 3;
    border-left: none !important;
  }
}
.my-wishlist-table-col_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
}
.my-wishlist-table-col_price .cost {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  display: block;
  margin: 5px 15px;
  text-align: center;
}
.my-wishlist-table-col_price .tarif {
  display: block;
  margin: 5px 15px;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.01em;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
  color: #8F9A9F;
  pointer-events: none;
  text-align: center;
}
@media (max-width: 1000px) {
  .my-wishlist-table-col_price {
    grid-column-end: 4;
    grid-column-start: 5;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
@media (max-width: 760px) {
  .my-wishlist-table-col_price {
    grid-column-end: 1;
    grid-column-start: -1;
    grid-row-start: 3;
    grid-row-end: 4;
    display: none;
  }
}
@media (max-width: 476px) {
  .my-wishlist-table-col_price {
    grid-row-start: 3;
    grid-row-end: 4;
  }
}
.my-wishlist-table-col_actions {
  grid-column-end: -1;
  grid-column-start: -3;
}
@media (max-width: 1000px) {
  .my-wishlist-table-col_actions {
    grid-column-start: -2;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
@media (max-width: 760px) {
  .my-wishlist-table-col_actions {
    grid-row-start: 4;
    grid-row-end: 5;
    grid-column-start: 3;
    grid-column-end: -1;
  }
}
@media (max-width: 476px) {
  .my-wishlist-table-col_actions {
    grid-row-start: 4;
    grid-row-end: 5;
  }
}

.my-wishlist-table-col-row {
  width: 100%;
  display: grid;
  grid-template-columns: 70px 0.9fr 1.4fr 1.4fr 0.7fr 70px;
  position: relative;
}
@media (max-width: 1150px) {
  .my-wishlist-table-col-row {
    grid-template-columns: 70px 0.9fr 1.4fr 1.4fr 0.7fr 70px;
  }
}
@media (max-width: 1000px) {
  .my-wishlist-table-col-row {
    grid-template-columns: 50px 1.2fr 2.5fr 1.6fr 70px;
  }
}
@media (max-width: 760px) {
  .my-wishlist-table-col-row {
    grid-template-columns: 50px 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 476px) {
  .my-wishlist-table-col-row {
    grid-template-columns: 30px 1fr 1fr 1fr 1fr;
  }
}
.my-wishlist-table-col-row:nth-child(even) {
  background: #F8F8F8;
}
@media (max-width: 476px) {
  .my-wishlist-table-col-row .my-wishlist-table-col_checkbox {
    grid-column-start: 1;
    grid-column-end: -1;
  }
}
.my-wishlist-table-col-row .my-cart-table-col_actions {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
}
@media (max-width: 1000px) {
  .my-wishlist-table-col-row .my-cart-table-col_actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 1000px) {
  .my-wishlist-table-col-row .my-cart-table-col_actions {
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
@media (max-width: 760px) {
  .my-wishlist-table-col-row .my-cart-table-col_actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    grid-column-start: 1;
    grid-column-end: -1;
    grid-row-start: 4;
    grid-row-end: 5;
  }
}

.my-wishlist-table-col_information-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.back-link2 {
  width: 100%;
  margin-bottom: 18px;
  margin-top: 10px;
}

.back-link2-wrap {
  width: 100%;
}
.back-link2-wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #E85B96;
}
.back-link2-wrap a svg {
  margin-right: 5px;
}

.section-image {
  width: 100%;
}

.section-image-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-bottom: 44px;
}
.section-image-wrap > .section-image-information-top {
  display: none;
}
@media (max-width: 765px) {
  .section-image-wrap > .section-image-information-top {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (max-width: 765px) {
  .section-image-wrap .section-image-information-top {
    display: none;
  }
}
@media (max-width: 765px) {
  .section-image-wrap {
    display: block;
  }
}

.section-image-left {
  width: calc(50% - 25px);
}
@media (max-width: 1200px) {
  .section-image-left {
    width: calc(50% - 20px);
  }
}
@media (max-width: 1020px) {
  .section-image-left {
    width: calc(60% - 20px);
  }
}
@media (max-width: 765px) {
  .section-image-left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.section-image-wrap--grid {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0,1fr) 435px;
  grid-column-gap: 50px;
  grid-template-rows: auto;
  grid-row-gap: 12px;
  grid-template-areas: 'images top' 'images author' 'images tabs' 'images dump' 'details other';
}


@media (max-width: 1200px) {
  .section-image-wrap--grid {
    grid-template-columns: minmax(0,1fr) 370px;
    grid-column-gap: 30px;
  }
}

@media (max-width: 769px) {
  .section-image-wrap--grid {
    grid-template-columns: minmax(0,1fr) 210px;
    grid-column-gap: 40px;
    grid-row-gap: 20px;
    grid-template-areas: 'top top' 'images images' 'tabs tabs' 'details author' 'details other' 'details dump';
  }
}

@media (max-width: 450px) {
  .section-image-wrap--grid {
    grid-template-columns: minmax(0,1fr);
    grid-gap: 0;
    grid-template-areas: 'top' 'images' 'tabs' 'author' 'other' 'details';
  }
}

.section-image-wrap__images {
  grid-area: images;
  position: relative;
}

.section-image-wrap__top {
  grid-area: top;
}

.section-image-wrap__author {
  grid-area: author;
}

.section-image-wrap__tabs {
  grid-area: tabs;
}

@media (max-width: 450px) {
  .section-image-wrap__tabs {
    margin-bottom: 35px;
  }
}

.section-image-wrap__details {
  grid-area: details;
  padding-right: 130px;
  position: relative;
}

@media (max-width: 1200px) {
  .section-image-wrap__details {
    padding-right: 0;
  }
}

.section-image-wrap__details::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% + 485px);
  height: 1px;
  background: #D4E0E7;
}

@media (max-width: 1200px) {
  .section-image-wrap__details::before {
    width: calc(100% + 390px);
  }
}

@media (max-width: 450px) {
  .section-image-wrap__details::before {
    content: none;
  }
}

.section-image-wrap__other {
  grid-area: other;
}

.section-image-left-sliders {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 6px;
}
@media (max-width: 1200px) {
  .section-image-left-sliders {
    display: block;
  }
  .section-image-wrap--grid .section-image-left-sliders {
    margin-bottom: 25px;
  }
}

@media (max-width: 450px) {
  .section-image-wrap--grid .section-image-left-sliders {
    margin-bottom: 35px;
  }
}

.section-image-left-content {
  width: calc(100% - 120px);
}
@media (max-width: 1400px) {
  .section-image-left-content {
    width: 100%;
  }
}
.section-image-left-content .ex-picture {
  margin-bottom: 6px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  color: #232221;
}
@media (max-width: 1400px) {
  .section-image-left-content .ex-picture {
    width: calc(100% - 120px);
  }
}
@media (max-width: 1200px) {
  .section-image-left-content .ex-picture {
    width: 100%;
  }
}

.view-full-version {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #2B91D7;
  text-align: center;
  margin-bottom: 12px;
}


.section-image-wrap--grid .view-full-version {
  width: calc(100% - 120px);
}

@media (max-width: 1400px) {
  .view-full-version {
    width: calc(100% - 120px);
  }
}
@media (max-width: 1200px) {
  .view-full-version {
    width: 100%;
  }

  .section-image-wrap--grid .view-full-version {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 95px;
  }
}

@media (max-width: 769px) {
  .section-image-wrap--grid .view-full-version {
    bottom: 95px;
  }
}

@media (max-width: 450px) {
  .section-image-wrap--grid .view-full-version {
    bottom: 105px;
  }
}


.create-withinpfd {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #E85B96;
  text-align: center;
  display: block;
  margin-bottom: 12px;
}
@media (max-width: 1400px) {
  .create-withinpfd {
    width: calc(100% - 120px);
  }
}
@media (max-width: 1200px) {
  .create-withinpfd {
    width: 100%;
  }
}

.section-image-left-big-slider {
  width: calc(100% - 120px);
}
@media (max-width: 1200px) {
  .section-image-left-big-slider {
    width: 100%;
    margin-bottom: 20px;
  }
  .section-image-wrap--grid .section-image-left-big-slider {
    margin-bottom: 50px;
  }
}
@media (max-width: 500px) {
  .section-image-left-big-slider {
    position: relative;
    left: -20px;
    width: calc(100% + 40px);
    margin-bottom: 10px;
  }
}

.section-image-left-big-slider-swiper {
  width: 100%;
  border: 1px solid #E4E5E6;
  height: 550px;
}
@media (max-width: 1200px) {
  .section-image-left-big-slider-swiper {
    width: 100%;
    height: auto;
    min-height: 320px;
  }
}
@media (max-width: 500px) {
  .section-image-left-big-slider-swiper {
    border: none;
  }
}
@media (max-width: 350px) {
  .section-image-left-big-slider-swiper {
    height: 320px;
  }
}
.section-image-left-big-slider-swiper .swiper-slide {
  height: auto;
}
.section-image-left-big-slider-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: bottom;
}

.section-image-left-big-slider-nav-wrap {
  width: 80px;
  height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.section-image-left-big-slider-nav-wrap--marketplace {
  width: 110px;
}
@media (max-width: 1200px) {
  .section-image-left-big-slider-nav-wrap {
    height: auto;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.section-image-left-big-slider-nav-wrap .swiper-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .section-image-left-big-slider-nav-wrap .swiper-prev {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    margin: 0;
  }
}
.section-image-left-big-slider-nav-wrap .swiper-prev:hover path {
    fill: #D22970;
}
.section-image-left-big-slider-nav-wrap .swiper-prev:disabled {
    cursor: default;
}
.section-image-left-big-slider-nav-wrap .swiper-prev:disabled path {
    fill: #8F9A9F;
}
.section-image-left-big-slider-nav-wrap .swiper-prev path {
    fill: #E85B96;
}
.section-image-left-big-slider-nav-wrap .swiper-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .section-image-left-big-slider-nav-wrap .swiper-next {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    margin: 0;
  }
}
.section-image-left-big-slider-nav-wrap .swiper-next:hover path {
    fill: #D22970;
}
.section-image-left-big-slider-nav-wrap .swiper-next:disabled {
    cursor: default;
}
.section-image-left-big-slider-nav-wrap .swiper-next:disabled path {
    fill: #8F9A9F;
}
.section-image-left-big-slider-nav-wrap .swiper-next path {
    fill: #E85B96;
}

.section-image-left-big-slider-nav {
  height: 468px;
  position: relative;
}
@media (max-width: 1200px) {
  .section-image-left-big-slider-nav {
    height: auto;
    width: 100%;
    margin: 0 12px;
  }
}
.section-image-left-big-slider-nav .swiper-slide {
  width: 100%;
  height: 80px !important;
  position: relative;
}
.section-image-left-big-slider-nav-wrap--marketplace .section-image-left-big-slider-nav .swiper-slide {
  height: 70px !important;
}
@media (max-width: 1200px) {
  .section-image-left-big-slider-nav .swiper-slide {
    height: auto !important;
  }
  .section-image-left-big-slider-nav .swiper-slide::before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%;
  }
}
.section-image-left-big-slider-nav .swiper-slide:hover::after {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(155, 80, 154, 0.3)), to(rgba(155, 80, 154, 0.3)));
  background: linear-gradient(0deg, rgba(155, 80, 154, 0.3), rgba(155, 80, 154, 0.3));
}
.section-image-left-big-slider-nav .swiper-slide.swiper-slide-thumb-active::after {
  outline: 2px solid #E85B96;
  outline-offset: -2px;
}
.section-image-left-big-slider-nav .swiper-slide.swiper-slide-thumb-active::after {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(155, 80, 154, 0.3)), to(rgba(155, 80, 154, 0.3)));
  background: linear-gradient(0deg, rgba(155, 80, 154, 0.3), rgba(155, 80, 154, 0.3));
}
.section-image-left-big-slider-nav .swiper-slide::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section-image-left-big-slider-nav .swiper-slide img {
  width: 100%;
  height: 80px;
  -o-object-fit: contain;
    object-fit: contain;
}

.section-image-left-big-slider-nav-wrap--marketplace .section-image-left-big-slider-nav .swiper-slide img {
  height: 70px;
}

@media (max-width: 1200px) {
  .section-image-left-big-slider-nav .swiper-slide img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}

.section-image-information {
  width: calc(50% - 25px);
}
@media (max-width: 1200px) {
  .section-image-information {
    width: calc(50% - 20px);
  }
}
@media (max-width: 1020px) {
  .section-image-information {
    width: calc(40% - 20px);
  }
}
@media (max-width: 765px) {
  .section-image-information {
    width: 100%;
  }
}

.section-image-wrap--grid .section-image-information {
  width: 100%;
}

.section-image-information__name {
  font-weight: 400;
  font-size: 28px;
  line-height: 38px;
  color: #232221;
  margin-right: 10px;
}
.section-image-information__add-wishlist {
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #E85B96;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-left: auto;
}
.section-image-information__add-wishlist svg {
  margin-left: 9px;
}

.section-image-information-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 10px;
}
@media (max-width: 756px) {
  .section-image-information-top {
    display: none !important;
  }
}

@media (max-width: 769px) {
  .section-image-wrap__top .section-image-information {
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
  }
}

.section-image-information-item {
  width: 100%;
  border-top: 1px solid #D4E0E7;
  padding: 12px 0;
}
.section-image-information-item__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  display: block;
  margin-bottom: 10px;
}
.section-image-information-item__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
}
.section-image-information-item__text a {
  color: #2B91D7;
}
.section-image-information-item__small-text a {
  color: #2B91D7;
}

.section-image-information-item__share {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.section-image-information-item__share a {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #FFFFFF;
  border: 1px solid #D4E0E7;
  border-radius: 4px;
  gap: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #2B91D7;
}

.section-image-information-author {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 11px;
}

.section-image-information-author-block-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 6px;
}
.section-image-information-author-block-item .label {
  font-weight: 400;
  color: #232221;
  display: block;
  margin-right: 6px;
}
.section-image-information-author-block-item .link {
  font-weight: 600;
  display: block;
  letter-spacing: 0.01em;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
  color: #E85B96;
}
.section-image-information-author-block-item .value {
  display: block;
  color: #8F9A9F;
}

.go-to-memberszone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #00CCCC;
}
.go-to-memberszone svg {
  margin-left: 8px;
}

.section-image-information-item-row .label {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #232221;
    margin-right: 10px;
}
.section-image-information-item-row .value {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #8F9A9F;
}

.section-image-information-item-row .label b {
  font-weight: 600;
}

.section-image-information-item-row {
  display: flex;
}

.section-image-tabs {
  border: 1px solid #D4E0E7;
  display: flex;
  flex-direction: column;
}

@media (max-width: 769px) {
  .section-image-tabs {
    max-width: 570px;
    margin: 0 auto;
  }
}

.section-image-tabs__title {
  display: none;
}

@media (max-width: 450px) {
  .section-image-tabs__title {
    display: block;
    padding: 10px;
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #232221;
    border-bottom: 1px solid #D4E0E7;
  }
}

.section-image-tabs__nav {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #D4E0E7;
}

@media (max-width: 450px) {
  .section-image-tabs__nav {
    display: none;
  }
}

.section-image-tabs__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #8F9A9F;
  background: transparent;
}

@media (max-width: 1200px) {
  .section-image-tabs__link {
    padding: 10px 13px;
  }
}

@media (max-width: 769px) {
  .section-image-tabs__link {
    padding: 15px 46px;
  }
}

.section-image-tabs__link:last-child {
  border-left: 1px solid #D4E0E7;
}

.section-image-tabs__link:first-child {
  border-right: 1px solid #D4E0E7;
  border-left: none;
}

.section-image-tabs__link--active {
  background: #F8F8F8;
  text-align: center;
  text-decoration-line: underline;
  color: #232221;
}

.section-image-tab {
  display: none;
}

@media (max-width: 450px) {
  .section-image-tab {
    display: flex;
    flex-direction: column;
  }
}

.section-image-tab--active {
  display: flex;
  flex-direction: column;
}

.section-image-license {
  display: flex;
  align-items: center;
  padding: 15px 25px;
}

.section-image-license:nth-child(odd) {
  background: #F8F8F8;
}

@media (max-width: 450px) {
  .section-image-license:nth-child(odd) {
    background: unset;
  }
  .section-image-license--gray,
  .section-image-license--gray:nth-child(odd){
    background: #F8F8F8;
  }
}

.section-image-license__name {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.section-image-license__name span:first-child {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #2B91D7;
}

.section-image-license__price {
  margin-right: 35px;
}

.section-image-license__cart {
  display: flex;
  align-items: center;
}

.section-image-table {
  width: 100%;
}

.section-image-table-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border: 1px solid #D4E0E7;
}
@media (max-width: 1200px) {
  .section-image-table-row {
    grid-template-columns: 1.2fr 1fr 58px;
  }
}
@media (max-width: 450px) {
  .section-image-table-row {
    grid-template-columns: 1.5fr 1fr 40px;
  }
}
.section-image-table-row:nth-child(odd) {
  background: #F8F8F8;
}
.section-image-table-row .buyExClub {
  grid-column-start: 2;
  grid-column-end: -1;
  padding: 11px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #000000;
  text-align: center;
}
@media (max-width: 450px) {
  .section-image-table-row .buyExClub {
    font-size: 12px;
    line-height: 120%;
  }
}

.section-image-table-license {
  border-right: 1px solid #D4E0E7;
  padding: 11px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 450px) {
  .section-image-table-license {
    padding: 5px 5px 5px 8px;
  }
}
.section-image-table-license .label {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  display: block;
  margin-right: 10px;
}
.section-image-table-license .value {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
  color: #2B91D7;
  display: block;
}
.section-image-table-license .value:hover {
  text-decoration: none;
}
.section-image-table-license .license-left,
.section-image-license__name span:nth-child(2) {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  text-align: right;
  color: #F44D36;
  display: block;
  margin-left: 10px;
}

.section-image-table-price {
  border-right: 1px solid #D4E0E7;
  padding: 11px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 450px) {
  .section-image-table-price {
    padding: 5px;
  }
}
.section-image-table-price .cost,
.section-image-license .cost {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  display: block;
  text-align: center;
}
.section-image-table-price .old-cost,
.section-image-license .old-cost{
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #8F9A9F;
  display: block;
  margin: 0 3px;
  text-decoration: line-through;
  text-align: center;
}
.section-image-table-price .new-cost,
.section-image-license .new-cost {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #F44D36;
  text-align: center;
  display: block;
  margin: 0 3px;
}

.section-image-table-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 11px 10px;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #E85B96;
}
.section-image-table-actions .download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.section-image-table-actions .download:hover {
  text-decoration: underline;
}
@media (max-width: 1200px) {
  .section-image-table-actions .download span {
    display: none;
  }
}
.section-image-table-actions .download svg {
  margin-left: 10px;
}
@media (max-width: 1200px) {
  .section-image-table-actions .download svg {
    margin: 0;
  }
}
.section-image-table-actions .add-to-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.section-image-table-actions .add-to-cart:hover {
  text-decoration: underline;
}
@media (max-width: 1200px) {
  .section-image-table-actions .add-to-cart span {
    display: none;
  }
}
.section-image-table-actions .add-to-cart svg {
  margin-left: 10px;
}
@media (max-width: 1200px) {
  .section-image-table-actions .add-to-cart svg {
    margin: 0;
  }
}

.copy-code {
  display: inline-block;
  position: relative;
  margin-top: 6px;
}
.copy-code-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #2B91D7;
}
.copy-code-button svg {
  margin-right: 5px;
}
.copy-code.open .copy-code-content {
  display: block;
}

.copy-code-content {
  position: absolute;
  top: 130%;
  left: 0;
  width: 250px;
  background: #F2F2F2;
  border: 1px solid #B7BFC3;
  -webkit-box-shadow: 0px 4px 10px rgba(143, 153, 158, 0.3);
          box-shadow: 0px 4px 10px rgba(143, 153, 158, 0.3);
  z-index: 10;
  max-height: 100px;
  overflow: auto;
  display: none;
}
.copy-code-content::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.copy-code-content::-webkit-scrollbar-button {
  background-color: #666;
}
.copy-code-content::-webkit-scrollbar-track {
  background-color: #F2F2F2;
}
.copy-code-content::-webkit-scrollbar-track-piece {
  background-color: #F2F2F2;
}
.copy-code-content::-webkit-scrollbar-thumb {
  background: #00CCCC;
  border-radius: 8px;
}
.copy-code-content::-webkit-scrollbar-corner {
  background-color: #999;
}
.copy-code-content::-webkit-resizer {
  background-color: #666;
}
.copy-code-content-copy {
  width: 100%;
  height: 28px;
  background: #E4E5E6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.copy-code-content code {
  word-wrap: break-word;
}

.more-image-section {
  width: 100%;
  margin-bottom: 37px;
}

.more-image-section-wrap {
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFFFFF), to(#FFFFFF)), #F8F8F8;
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF), #F8F8F8;
  border: 1px solid #D4E0E7;
  padding: 18px 24px 26px;
}
@media (max-width: 550px) {
  .more-image-section-wrap {
    padding: 18px 12px;
  }
}

.more-image-section-author {
  width: 100%;
  margin-bottom: 20px;
}
.more-image-section-author:last-child {
  margin-bottom: 0;
}

.more-image-section-author-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 14px;
}
.more-image-section-author-top .author {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #232221;
  display: block;
  margin-right: 10px;
}
.more-image-section-author-top .author a {
  color: #E85B96;
}
.more-image-section-author-top .see-all {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: block;
  text-align: right;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #E85B96;
}

.more-image-section-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 20px;
}

.more-image-section-content--marketplace {
  grid-template-columns: repeat(auto-fill, minmax(116px, 1fr));
}

@media (max-width: 550px) {
  .more-image-section-content {
    gap: 10px;
  }
}
.more-image-section-content__item {
  position: relative;
}
.more-image-section-content__item::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
  z-index: 2;
  position: relative;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(155, 80, 154, 0.3)), to(rgba(155, 80, 154, 0.3)));
  background: linear-gradient(0deg, rgba(155, 80, 154, 0.3), rgba(155, 80, 154, 0.3));
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.more-image-section-content--marketplace .more-image-section-content__item::before{
  padding-bottom: 66%;
}

.more-image-section-content__item:hover::before {
  opacity: 1;
}
.more-image-section-content__item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.popup-block2 .fancybox-button.fancybox-close-small {
  display: block;
}
.popup-block2 > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: #8F9A9F;
  margin-bottom: 16px;
}

.popup-block-form {
  width: 100%;
}
.popup-block-form .submit {
  width: 88px;
  height: 40px;
  background: #E85B96;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-left: 13px;
}
.popup-block-form .cancel {
  width: 88px;
  height: 40px;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #E85B96;
  border: 1px solid #E85B96;
}

.popup-block-form-actions {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.popup-block-form-row {
  width: 100%;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 13px;
  margin-bottom: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.popup-block-form-row.align-items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 25px;
}
.popup-block-form-row .label {
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  color: #232221;
  display: block;
}
.popup-block-form-row .value {
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  color: #5D686F;
}
.popup-block-form-row input {
  width: 100%;
  height: 46px;
  background-color: #F8F8F8;
  border: 1px solid #A4AEB3;
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 16px;
  line-height: 16px;
  color: #273841;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 430px) {
  .popup-block-form-row input {
    grid-column-start: 1;
    grid-column-end: -1;
  }
}
.popup-block-form-row input:active {
  border: 1px solid #E85B96;
}
.popup-block-form-row input:hover {
  border: 1px solid #E85B96;
}
.popup-block-form-row input:focus {
  outline: 2px solid #F495BD;
}
.popup-block-form-row input.invalid {
  border: 1px solid #F44D36;
}
.popup-block-form-row textarea {
  resize: none;
  width: 100%;
  height: 180px;
  background-color: #F8F8F8;
  border: 1px solid #A4AEB3;
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 16px;
  line-height: 16px;
  color: #273841;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 430px) {
  .popup-block-form-row textarea {
    grid-column-start: 1;
    grid-column-end: -1;
  }
}
.popup-block-form-row textarea:active {
  border: 1px solid #E85B96;
}
.popup-block-form-row textarea:hover {
  border: 1px solid #E85B96;
}
.popup-block-form-row textarea:focus {
  outline: 2px solid #F495BD;
}
.popup-block-form-row textarea.invalid {
  border: 1px solid #F44D36;
}

.popup-block2 {
  max-width: 475px;
}
.popup-block2 > img {
  display: block;
  margin: 10px auto 21px;
}
.popup-block2 > .label {
  display: block;
  margin-bottom: 22px;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #232221;
}
.popup-block2 > p {
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  text-align: center;
  color: #232221;
}
.license-head {
    margin-bottom: 80px;
}
.license-title {
    font-weight: 600;
    font-size: 36px;
    color: #232221;
    margin-bottom: 35px;
}
.license-desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #232628;
}
.license-desc a, .license-body__additional a {
    color: #2B91D7;
    font-weight: 600;
    text-decoration: underline;
}
.license-desc a:hover, .license-body__additional a:hover {
    text-decoration: none;
}
.license-desc a:active, .license-body__additional aactive {
    color: #1D81C6;
}
.license-body__container {
    max-width: 1030px;
    display: grid;
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}
.license-body__img {
    display: block;
    width: 100%;
    height: auto;
}
.license-body__desc {
    display: block;
    width: 100%;
    padding-top: 70px;
    padding-left: 30px;
    font-size: 18px;
    line-height: 20px;
    color: #232628;
}
.license-body__desc_cu_unlimited {
    padding-top: 0;
}
.license-body__desc p:not(:last-child) {
    margin-bottom: 16px;
}
.license-body__desc b {
    font-size: 20px;
}
.license-body__desc ul {
    padding-left: 18px;
}
.license-body__allowed {
    margin-top: 20px;
}
.license-body__forbidden {
    margin-top: 20px;
}
.license-body__additional {
    grid-column-start: 1;
    grid-column-end: 3;
    padding-bottom: 40px;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    text-align: justify;
    color: #232628;
    border-bottom: 1px solid #D4E0E7;
    margin-bottom: 40px;
}
.license-body__additional p:not(:last-child) {
    margin-bottom: 16px;
}
.license-allowed, .license-forbidden {
    background: #F3F3F3;
    width: 100%;
    padding: 30px;
    padding-top: 18px;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    text-align: justify;
    color: #232221;
    align-self: flex-start;
}
.license-allowed h3, .license-forbidden h3 {
    font: inherit;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.license-allowed h3 svg, .license-forbidden h3 svg {
    margin-right: 10px;
}
.license-allowed ul, .license-forbidden ul {
    padding-left: 18px;
}
.license-allowed p:not(:last-child), .license-forbidden p:not(:last-child) {
    margin-bottom: 16px;
}
.license-allowed span, .license-forbidden span {
    color: #F44D36;
}
.license-allowed h3 {
    color: #00AFAF;
}
.license-forbidden h3 {
    color: #F44D36;
}
.license-playlist {
    width: 100%;
    padding-bottom: 90px;
}
.license-playlist__container {
    display: grid;
    grid-template-columns: 1fr 370px;
    grid-gap: 30px;
    grid-template-areas: "title title" "video list" "desc desc";
}
.license-playlist__title {
    grid-area: title;
    font-weight: 600;
    font-size: 28px;
    line-height: 1;
    color: #232221;
    margin: 0;
}
.license-playlist__video {
    grid-area: video;
    height: 540px;
}
.license-playlist__list {
    grid-area: list;
}
.license-playlist__desc {
    grid-area: desc;
}
.license-video-desc h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: #232221;
    margin: 0;
}
.license-video-desc p {
    font-size: 16px;
    line-height: 20px;
    color: #8F9A9F;
    margin: 0;
}
.license-video-thumb {
    display: grid;
    cursor: pointer;
    width: 100%;
    padding: 10px 30px;
    background: #F8F8F8;
    grid-template-columns: 170px 1fr;
    grid-column-gap: 10px;
    grid-template-areas: "img title" "img author";
}
.license-video-thumb:hover {
    background: #E8E8E9;
}
.license-video-thumb img {
    grid-area: img;
    display: block;
    width: 100%;
    height: auto;
}
.license-video-thumb h3 {
    grid-area: title;
    align-self: flex-end;
    margin: 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    color: #232628;
}
.license-video-thumb span {
    grid-area: author;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #8F9A9F;
}
.license-video-thumb--active h3 {
    color: #1D81C6;
}
.license-video-list .swiper-scrollbar {
    background: #EBECEE;
    border-radius: 14px 14px 0 0;
}
.license-video-list .swiper-scrollbar-drag {
    background: #00CCCC;
    border-radius: 0 0 14px 14px;
    cursor: pointer;
}
.license-video-list .swiper-scrollbar-drag:hover {
    background: #00AFAF;
}
.license-video-list .swiper-scrollbar-drag:active {
    background: #00AFAF;
}
.license-video-list__slider {
    height: 100%;
}
.license-body__desc li, .license-body__allowed li, .license-body__forbidden li{
    list-style: disc;
}
@media screen and (max-width: 1025px) {
    .license-head {
        margin-bottom: 60px;
    }
    .license-title {
        font-size: 33px;
        margin-bottom: 25px;
    }
    .license-body__container {
        max-width: 100%;
    }
    .license-body__img {
        margin-left: 16px;
    }
    .license-body__desc {
        display: block;
        width: 100%;
        padding-top: 60px;
        padding-left: 10px;
        padding-right: 25px;
    }
    .license-body__additional {
        padding: 0 30px;
        padding-bottom: 35px;
        margin-bottom: 40px;
    }
    .license-playlist {
        padding-bottom: 80px;
    }
    .license-playlist__container {
        grid-template-columns: 1fr 300px;
    }
    .license-playlist__video {
        height: 360px;
    }
    .license-video-thumb {
        grid-template-columns: 116px 1fr;
    }
}
@media screen and (max-width: 769px) {
    .license-head {
        margin-bottom: 40px;
    }
    .license-body__container {
        padding: 0 30px;
        grid-template-columns: minmax(0, 1fr);
    }
    .license-body__img {
        max-width: 400px;
        margin: 0 auto;
    }
    .license-body__desc {
        padding: 0;
    }
    .license-body__allowed {
        margin: 0;
    }
    .license-body__forbidden {
        margin: 0;
    }
    .license-body__additional {
        grid-column-start: unset;
        grid-column-end: unset;
        padding-bottom: 35px;
        margin-bottom: 40px;
    }
    .license-playlist {
        padding-bottom: 60px;
    }
    .license-playlist__container {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        grid-gap: 20px;
        grid-template-areas: "title" "video" "desc" "list";
    }
    .license-playlist__video {
        grid-area: video;
        height: 395px;
    }
    .license-video-thumb {
        width: 150px;
        padding: 20px 15px;
        grid-template-columns: minmax(0, 1fr);
        grid-row-gap: 5px;
        grid-template-areas: "img" "title" "author";
        height: 100%;
        grid-auto-rows: max-content;
        align-items: flex-start;
    }
    .license-video-thumb img {
        margin-bottom: 5px;
    }
    .license-video-list {
        width: 100%;
    }
    .license-video-list__slide {
        width: auto;
        height: auto;
    }
    .license-video-list .swiper-scrollbar {
        display: none;
    }
}
@media screen and (max-width: 450px) {
    .license-title {
        font-size: 28px;
        text-align: center;
        line-height: 1;
        margin-bottom: 10px;
    }
    .license-desc {
        font-size: 16px;
    }
    .license-body__container {
        padding: 0;
        grid-gap: 0;
    }
    .license-body__img {
        max-width: calc(100% - 50px);
        margin: 0 25px;
        margin-bottom: 10px;
    }
    .license-body__desc {
        padding: 0 25px;
        font-size: 16px;
        margin-bottom: 25px;
    }
    .license-body__desc p:not(:last-child) {
        margin-bottom: 12px;
    }
    .license-body__additional {
        padding: 0 25px;
        padding-bottom: 30px;
        font-size: 16px;
    }
    .license-body__additional p:not(:last-child) {
        margin-bottom: 12px;
    }
    .license-forbidden {
        background: #EBEBEB;
        margin-bottom: 25px;
    }
    .license-playlist {
        padding-bottom: 30px;
    }
    .license-playlist__title {
        grid-area: title;
        font-size: 22px;
        line-height: 24px;
        text-align: center;
    }
    .license-playlist__video {
        height: calc((100vw - 40px) / 1.777);
    }
    .license-video-desc h3 {
        font-size: 18px;
    }
    .license-video-list__slider {
        padding-bottom: 46px;
        --swiper-pagination-bullet-size: 14px;
        --swiper-pagination-bullet-inactive-opacity: 1;
        --swiper-pagination-bullet-inactive-color: transparent;
        --swiper-pagination-color: #E85B96;
    }
    .license-video-list__slider .swiper-pagination-bullet {
        border: 1px solid #E85B96;
    }
    .license-video-list__slider .swiper-pagination {
        bottom: 0;
    }
}
.color_red {
    color: #F44D36;
}
/*# sourceMappingURL=style.css.map */