/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

html, body {
  height: 100%;
}

body, input, textarea {
  font-family: "Open Sans", sans-serif;
}

a:hover {
  text-decoration: none;
}

img {
  border: 0;
}

.content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 37px;
}
.content.full {
  max-width: 1920px;
  padding: 0;
}
.content.big {
  max-width: 1240px;
}

h1, .h1 {
  font-weight: 700;
  font-size: 34px;
  line-height: 40px;
  letter-spacing: -0.02em;
}

.big_title {
  font-size: 3.5em;
}

.title {
  font-size: 2em;
  margin-bottom: 40px;
}

.title2 {
  font-size: 2.5em;
}

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

.jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.va-m {
  vertical-align: middle;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.va-b {
  vertical-align: bottom;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.ta-r {
  text-align: right;
}

.ta-c {
  text-align: center;
}

.w100 {
  width: 100%;
}

.btn {
  padding: 14px 45px;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  font-size: 1.2em;
  background: #E60E81;
  color: white;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.btn:hover {
  background: black;
}

.cross {
  position: relative;
  width: 15px;
  height: 15px;
}
.cross:before, .cross:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background: white;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cross:after {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.gamburger {
  display: inline-block;
  position: relative;
  height: 20px;
  width: 20px;
  border-bottom: 3px solid black;
  -webkit-transition: all 0.4s linear 0s;
  -o-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}
.gamburger:after, .gamburger:before {
  content: "";
  left: 0;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 66%;
  background-color: black;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.gamburger:before {
  top: 30%;
}
.gamburger.active {
  border-bottom: 3px solid transparent;
}
.gamburger.active:after {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 67%;
}
.gamburger.active:before {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 63%;
}

.input-cols .col {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

@media (max-width: 900px) {
  h1, .h1 {
    font-size: 24px;
  }

  .content {
    padding: 0 20px;
  }
}
@media (max-width: 740px) {
  .btn {
    font-size: 1em;
    padding: 10px 30px;
  }
}
.cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cols .col {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cols.p10 {
  margin-left: -10px;
  width: calc(100% + 20px);
}
.cols.p10 .col {
  padding: 10px;
}
.cols.p15 {
  margin-left: -15px;
  width: calc(100% + 30px);
}
.cols.p15 .col {
  padding: 15px;
}
.cols.p30 {
  margin-left: -30px;
  width: calc(100% + 60px);
}
.cols.p30 .col {
  padding: 30px;
}

.cols-2 .col {
  width: 50%;
}

.cols-3 .col {
  width: 33.333%;
}

.cols-4 .col {
  width: 25%;
}

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

@media (max-width: 900px) {
  .col-t-1 {
    width: 8.3333333333%;
  }

  .col-t-2 {
    width: 16.6666666667%;
  }

  .col-t-3 {
    width: 25%;
  }

  .col-t-4 {
    width: 33.3333333333%;
  }

  .col-t-5 {
    width: 41.6666666667%;
  }

  .col-t-6 {
    width: 50%;
  }

  .col-t-7 {
    width: 58.3333333333%;
  }

  .col-t-8 {
    width: 66.6666666667%;
  }

  .col-t-9 {
    width: 75%;
  }

  .col-t-10 {
    width: 83.3333333333%;
  }

  .col-t-11 {
    width: 91.6666666667%;
  }

  .col-t-12 {
    width: 100%;
  }
}
@media (max-width: 740px) {
  .col-p-1 {
    width: 8.3333333333%;
  }

  .col-p-2 {
    width: 16.6666666667%;
  }

  .col-p-3 {
    width: 25%;
  }

  .col-p-4 {
    width: 33.3333333333%;
  }

  .col-p-5 {
    width: 41.6666666667%;
  }

  .col-p-6 {
    width: 50%;
  }

  .col-p-7 {
    width: 58.3333333333%;
  }

  .col-p-8 {
    width: 66.6666666667%;
  }

  .col-p-9 {
    width: 75%;
  }

  .col-p-10 {
    width: 83.3333333333%;
  }

  .col-p-11 {
    width: 91.6666666667%;
  }

  .col-p-12 {
    width: 100%;
  }

  .cols-p-2 .col {
    width: 50%;
  }
}
.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}
.wrapper img {
  max-width: 100%;
}

.band {
  width: 1280;
  min-height: 400px;
  margin: 0 auto;
  border: 1px solid blue;
}

.js-lazy-load {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  -o-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
.js-lazy-load.load-image {
  opacity: 1;
}

.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  will-change: transform;
}

.js-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  z-index: 11;
}
.js-to-top img, .js-to-top .svg {
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.js-to-top:hover .svg {
  opacity: 0.8;
}
.js-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* header begin */
.header {
  width: 100%;
  position: relative;
}
.header-top {
  position: relative;
}
.header-top .content {
  height: 116px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header-top__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.header__logo {
  margin-right: 26px;
}
.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 43px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-menu-block {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 11;
  background: #fff;
}
.header-menu li a {
  color: inherit;
  text-decoration: none;
  height: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  line-height: 0.8;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-weight: 600;
  text-transform: uppercase;
}
.header-menu li a:hover, .header-menu li a.active {
  background: #000;
  color: #fff;
}
.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-video {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: -5px;
}
.header-video-wrap {
  position: relative;
  padding-bottom: 31.25%;
}

.round-text {
  position: relative;
  margin-left: -15%;
}
.round-text img, .round-text .svg {
  width: 100%;
  shape-rendering: geometricPrecision;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
}
.round-text img:first-child, .round-text .svg:first-child {
  position: absolute;
  left: 0;
  top: 0;
  animation: round-text 13.2s linear infinite reverse;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.round-text img:last-child, .round-text .svg:last-child {
  -webkit-animation: round-text 13.2s linear infinite;
          animation: round-text 13.2s linear infinite;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

.mobile-btn {
  display: none;
}

@-webkit-keyframes round-text {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes round-text {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media (max-width: 900px) {
  .header-menu {
    font-size: 0.9em;
  }
}
@media (max-width: 740px) {
  .header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 12;
    background: #fff;
  }
  .header-menu {
    display: block;
    height: auto;
  }
  .header-menu li a {
    padding: 0 20px;
    border-bottom: 1px solid #e6e6e6;
  }
  .header-top {
    border-bottom: 1px solid #e6e6e6;
  }

  .header-top .content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-top__logo {
    position: relative;
    left: 0;
    top: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .header-top__logo img {
    height: 50px;
  }

  .mobile-btn {
    display: block;
  }

  .header-menu-block {
    top: 75px;
    display: none;
  }
  .header-menu-block.fixed {
    position: fixed;
    left: 0;
    width: 100%;
  }
  .header-menu-block .content {
    padding: 0;
  }
}
.clear {
  clear: both;
}

/* footer begin */
.footer {
  background: #000;
  padding-top: 36px;
  color: #fff;
}

.footer-slider {
  background: #fff;
  pointer-events: none;
}
.footer-slider .slick-list {
  direction: rtl;
}
.footer-slider-itm img, .footer-slider-itm .svg {
  height: 70px;
  width: auto;
}
.footer-slider .slick-arrow {
  display: none;
}

.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  text-align: center;
  padding: 28px 0 60px;
  gap: 50px;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
}
.footer-content a {
  color: inherit;
  text-decoration: none;
}
.footer-content a:hover {
  text-decoration: underline;
}

@media (max-width: 740px) {
  .footer-content {
    display: block;
    padding-bottom: 20px;
  }

  .footer-itm {
    margin-bottom: 10px;
  }

  .footer-slider-itm img, .footer-slider-itm .svg {
    height: 35px;
  }
}
.top-block {
  margin: 43px 0 150px;
}
.top-block img {
  width: 100%;
}
.top-block-text {
  border-top: 1px solid #000;
  margin-top: 30px;
  padding-top: 30px;
  margin-left: 24px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 12px;
  line-height: 23px;
}
.top-block-text p {
  margin-bottom: 25px;
}

.product-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 19px 1fr 19px 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 19px 57px;
  width: 48%;
}

@media (max-width: 740px) {
  .product-list {
    -ms-grid-rows: 1fr 19px;
    grid-template-rows: 1fr;
  }
}

.product-list-itm {
  display: block;
  position: relative;
  border: 1px solid #000;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.product-list-itm__img {
  display: block;
  background-position: center;
  background-size: contain;
  padding-bottom: 131%;
}

.product-block {
  margin-bottom: 100px;
}
.product-block__banner {
  padding-left: 57px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  width: 52%;
}
.product-block__banner-itm {
  padding-bottom: 155%;
  background-position: center;
  background-size: cover;
  margin-bottom: 25px;
}
.product-block__banner__title {
  margin-bottom: 14px;
  text-transform: uppercase;
}
.product-block__banner__desc {
  font-size: 12px;
  line-height: 23px;
  text-transform: uppercase;
}

.list-itm__img {
  padding-bottom: 167%;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
}
.list-itm .h1 {
  margin-bottom: 17px;
}
.list-itm p {
  font-weight: 400;
  font-size: 12px;
  line-height: 23px;
  text-transform: uppercase;
}

.list-block {
  margin-bottom: 60px;
}

.collection-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.collection-list .col {
  width: 37%;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.collection-list .col:nth-child(2) {
  width: 24%;
}
.collection-list .col:nth-child(2) .collection-itm__img {
  padding-bottom: 167%;
}

.collection-itm {
  position: relative;
  margin-bottom: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.collection-itm__img {
  padding-bottom: 165%;
  background-position: center;
  background-size: cover;
}
.collection-itm__name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 7px;
  text-align: center;
  background: #000;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 1100px) {
  .collection-itm__name {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media (max-width: 900px) {
  .list-itm__img {
    margin-bottom: 15px;
  }
  .list-itm .h1 {
    margin-bottom: 5px;
  }
  .list-itm p {
    font-size: 10px;
    line-height: 1.6;
  }
}
@media (max-width: 740px) {
  .top-block-text {
    margin-left: 0;
  }

  .round-text {
    margin-left: 0;
    margin-top: -40%;
  }

  .top-block {
    margin-bottom: 20px;
  }

  .product-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-block .product-list {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
  .product-block__banner {
    padding-left: 0;
    margin-bottom: 25px;
    width: 100%;
  }

  .collection-list {
    display: block;
  }
  .collection-list .col {
    width: 100% !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 10px;
  }
  .collection-list .col:nth-child(2) .collection-itm__name {
    height: 28px;
    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;
  }

  .collection-itm {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 10px;
  }
  .collection-itm__name {
    font-size: 10px;
  }
}
/* модалка просмотр изображений */

body.lock {
  position: relative;
  overflow: hidden;
}

.modal {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 15px;
  overflow-y: auto;
  background: rgba(0,0,0,.6);
}

.modal * {
  box-sizing: border-box;
}

.modal__inner {
  position: relative;
  background-color: #fff;
  margin: auto;
  padding: 30px;
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 41px;
  height: 41px;
  border: 0;
  background: 0 0;
  cursor: pointer;
}

.modal__close svg {
  fill: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.modal__close:focus svg,.modal__close:hover svg {
  fill: #E60E81;
}

.modal-view {
  padding: 0;
}

.modal-view__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width:  767px) {
  .modal-view__inner {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.modal-view {
  padding: 0;
}

.modal-view__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .modal-view__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.modal-view__top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 50px;
  padding-left: 50px;
  width: calc(100% - 70px);
  max-width: calc(100vh - 60px);
  height: calc(100vh - 60px);
  margin: 0 auto;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}

@media (max-width: 767px) {
  .modal-view__top {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}

.modal-view__thumb {
  position: relative;
  max-width: 100%;
}

@media (max-width: 575px) {
  .modal-view__thumb {
    padding: 0 20px;
  }
}

.modal-view__thumb-container {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 70px;
  height: 470px;
  max-height: calc(100vh - 60px);
}

@media (max-width: 767px) {
  .modal-view__thumb-container {
    height: 70px;
    width: 100%;
    max-width: 470px;
    margin: 0 auto;
  }
}

.modal-view__top-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  max-width: calc(100vh - 60px);
}

.modal-view__top-list, .modal-view__thumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modal-view__thumb-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: auto;
}

@media (max-width: 767px) {
  .modal-view__thumb-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.modal-view__top-item {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  padding-bottom: 100%;
  background-color: #fff;
}

.modal-view__thumb-item {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 70px;
  min-width: 70px;
  height: 70px;
  min-height: 70px;
  padding: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modal-view__thumb-item.swiper-slide-thumb-active {
  border: 2px solid #E60E81;
  border-radius: 5px;
}

.modal-view__top-item img,
.modal-view__thumb-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
}

.modal-view__thumb-item img {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
}

.modal-view__top-nav {
  position: absolute;
  z-index: 2;
  top: calc(50% - 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 16px 1px rgba(0, 26, 52, 0.16);
          box-shadow: 0 4px 16px 1px rgba(0, 26, 52, 0.16);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modal-view__top-nav--prev {
  left: 15px;
  -webkit-transform: scale(-1);
          transform: scale(-1);
}

@media (max-width: 767px) {
  .modal-view__top-nav--prev {
    left: 0;
  }
}

.modal-view__top-nav--next {
  right: 10px;
}

@media (max-width: 767px) {
  .modal-view__top-nav--next {
    right: 0;
  }
}

.modal-view__top-nav svg {
  fill: #000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modal-view__top-nav:hover {
  background-color: #E60E81;
}

.modal-view__top-nav:hover svg {
  fill: #ffffff;
}

.modal-view__top-nav.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.modal-view__thumb-nav {
  position: absolute;
  left: 0;
  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;
  width: 70px;
  height: 30px;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
}

@media (max-width: 767px) {
  .modal-view__thumb-nav {
    width: 30px;
    height: 30px;
  }
}

.modal-view__thumb-nav--prev {
  bottom: 100%;
}

@media (max-width: 767px) {
  .modal-view__thumb-nav--prev {
    top: calc(50% - 15px);
    left: -30px;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
}

@media (max-width: 575px) {
  .modal-view__thumb-nav--prev {
    left: -10px;
  }
}

.modal-view__thumb-nav--prev svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@media (max-width: 767px) {
  .modal-view__thumb-nav--prev svg {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

.modal-view__thumb-nav--next {
  top: 100%;
}

@media (max-width: 767px) {
  .modal-view__thumb-nav--next {
    top: calc(50% - 15px);
    left: auto;
    right: -30px;
  }
}

@media (max-width: 575px) {
  .modal-view__thumb-nav--next {
    right: -10px;
  }
}

.modal-view__thumb-nav--next svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media (max-width: 767px) {
  .modal-view__thumb-nav--next svg {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

.modal-view__thumb-nav:hover svg {
  fill: #E60E81;
}

.modal-view__thumb-nav.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

/*# sourceMappingURL=style.css.map */
