.order_block {
  display: none;
  text-align: center !important;
}

.order_block img {
  width: 20%;
}

.order_block h3 {
  font: bold 18px Arial !important;
  background: 0 0;
}

.time_remains {
  font-size: 1.1em;
  color: red;
  font-weight: 700;
}

.spin-result-wrapper {
  display: none;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  top: 0;
  z-index: 999;
  left: 0;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
}

.pop-up-window {
  position: relative;
  max-width: 400px;
  right: 0;
  left: 0;
  top: 40%;
  margin: 0 auto;
  background: #fff none repeat scroll 0 0;
  text-align: center;
  padding: 10px;
  padding-top: 70px;
  padding-bottom: 20px;
  border-radius: 10px;
  animation: 0.7s ease 0s normal none 1 running pop-up-appear;
}

.close-popup {
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url("cross.svg");
  background-size: 100%;
  top: -40px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px #fff;
  box-shadow: 0 0 10px #fff;
  right: -40px;
  cursor: pointer;
}

.pop-up-text {
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 30px;
  text-align: center !important;
}

.pop-up-button {
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 10px 20%;
  font-size: 20px;
  border-radius: 5px;
  background-color: #71c341;
  color: #fff !important;
  border: medium none;
  cursor: pointer;
  outline: medium none;
}

.pop-up-window {
  position: relative;
  max-width: 400px;
  right: 0;
  left: 0;
  top: 40%;
  margin: 0 auto;
  background: #fff none repeat scroll 0 0;
  text-align: center;
  padding: 10px;
  padding-top: 70px;
  padding-bottom: 20px;
  border-radius: 10px;
  animation: 0.7s ease 0s normal none 1 running pop-up-appear;
}

.pop-up-window::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  top: -55px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #71c341;
  border-radius: 50%;
  animation: 0.5s ease 0.6s normal backwards 1 running pop-up-appear-before;
}

.pop-up-window::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 20px;
  top: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-width: medium medium 4px 4px;
  border-style: none none solid solid;
  border-color: currentcolor currentcolor #fff #fff;
  -moz-border-top-colors: none;
  -moz-border-right-colors: none;
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  border-image: none;
  transform: rotate(-45deg);
  transition: opacity 1s ease 0s;
  animation: 0.5s ease 0.6s normal backwards 1 running pop-up-appear-after;
}

@keyframes pop-up-appear {
  0% {
    transform: translateY(-2000px);
  }

  30% {
    transform: translateY(100px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pop-up-appear-before {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes pop-up-appear-after {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.pop-up-button:hover {
  color: #fff !important;
  text-decoration: none !important;
}

body {
  min-width: auto;
}



.door__container {
  display: flex;
  justify-content: space-around;
}

.box {
  perspective: 500px;
  position: relative;
}

.box,
.door {
  width: 190px;
  height: 400px;
  box-shadow: inset -1px -1px 0 1px #191919, inset 1px 1px 0 1px #191919;
}

.door,
.hi {
  position: absolute;
  top: 0;
  left: 0;
}

.door {
  background-image: url("door.png");
  background-repeat: no-repeat;
  transform: rotateY(0);
  display: inline-block;
  transition: all 0.75s ease;
  transform-origin: 0 0;
  cursor: pointer;
}

#door__2 {
  background-image: url("door2.png");
}

#door__3 {
  background-image: url("door3.png");
}

.door:hover {
  transform: rotateY(-30deg);
}

.door.open {
  transform: rotateY(-85deg);
}

.door__sales {
  position: relative;
  font-size: 46px !important;
  font-weight: 700 !important;
  color: red !important;
  border-radius: 30px !important;
  padding: 30px 5px !important;
  box-shadow: 0 1px 2px 2px #7f7878;
}

.door__title {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  font-size: 22px !important;
  margin-bottom: 25px;
  background-color: #3a4752;
  padding: 10px !important;
  border-radius: 0.5em;
}

@media (max-width: 840px) {
  .door__sales {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: red !important;
    border-radius: 30px !important;
  }

  .box,
  .door {
    width: 95px;
    height: 200px;
  }

  .door {
    background-image: url("media_door.png?v1");
  }

  #door__2 {
    background-image: url("media_door2.png?v1");
  }

  #door__3 {
    background-image: url("xmedia_door3.png?v1");
  }
}

@media (max-width: 360px) {
  .box + .box {
    margin-left: 15px;
  }

  .door__sales {
    font-size: 25px !important;
    font-weight: 700 !important;
    color: red !important;
    border-radius: 30px !important;
  }
}

header {
  height: auto;
}

main {
  margin-top: 0;
}

.vk-container {
  font-family: tahoma, arial, verdana, sans-serif;
  font-size: 15px;
  color: #000;
  text-decoration: none;
}

.vk-header {
  background: #dae2e8 none repeat scroll 0 0;
  padding: 4px 4px 4px 6px;
  margin-bottom: 10px;
}

.vk-header-text {
  padding: 2px 3px 1px;
  line-height: 100%;
  color: #45688e;
  font-weight: 700;
}

.vk-comment-load {
  margin-bottom: 15px;
  position: relative;
  border-bottom: 1px solid #dae1e8;
  padding-bottom: 15px;
}

.vk-avatar img {
  float: left;
  margin-right: 10px;
  border-radius: 50%;
}

.vk-comment-name {
  color: #a40000;
  font-weight: 700;
  font-size: 14px;
  margin-left: 59px;
}

.vk-comment-text {
  margin-left: 70px;
  margin-top: 10px;
}

.screenLock {
  position: fixed;
  width: 100%;
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  top: 0;
  left: 0;
  z-index: 99999;
  display: none;
}

.msg > h2 {
  color: #000;
  text-align: left;
  font-size: 19px;
  margin-left: 40px;
  margin-bottom: 30px;
  margin-top: -10px;
}

.box {
  display: flex;
}

.hi {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.order_block img {
  width: auto;
}

.input-roulette {
  font-size: 22px;
  -webkit-appearance: none;
  appearance: none;
  border: 1px #bbb solid;
}

@media (max-width: 767px) {
  .order_block img {
    width: auto;
  }

  .w_collection_title {
    font-size: 24px !important;
  }
}

@media (max-width: 480px) {
  .w_block p {
    font-size: 18px !important;
  }
}

.screenLock {
  position: fixed;
  width: 100%;
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  top: 0;
  left: 0;
  z-index: 99999;
  display: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.msg {
  box-sizing: border-box;
  max-width: 781px;
  text-align: center;
  width: 94%;
  max-height: 535px;
  background: #3c72b5;
  background: -moz-linear-gradient(-45deg, #3c72b5 0, #7b9fcc 100%);
  background: -webkit-gradient(
    left top,
    right bottom,
    color-stop(0, #3c72b5),
    color-stop(100%, #7b9fcc)
  );
  background: -webkit-linear-gradient(-45deg, #3c72b5 0, #7b9fcc 100%);
  background: -o-linear-gradient(-45deg, #3c72b5 0, #7b9fcc 100%);
  background: -ms-linear-gradient(-45deg, #3c72b5 0, #7b9fcc 100%);
  background: linear-gradient(135deg, #3c72b5 0, #7b9fcc 100%);
  font-family: Roboto !important;
  position: relative;
  border: 5px solid #ddd;
  padding: 0 2%;
}

.comeback-close {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 30px;
  cursor: pointer;
  color: #b22222;
  display: block;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  box-shadow: 0 0 9px 0 #000;
  background: url("close.png") no-repeat -4px -2px;
}

.comeback-btn {
  display: inline-block;
  max-width: 380px;
  margin: 10px auto 33px;
  font-size: 23px;
  line-height: 100%;
  text-decoration: none;
  color: #fff;
  background-color: #3c72b5;
  text-transform: uppercase;
  font-family: sans-serif;
  font-weight: 700;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 5px;
  padding: 15px 15px !important;
  transition-duration: 0.3s;
}

.comeback-btn:hover {
  color: #3c72b5;
  background-color: #fff;
}

@media (max-width: 737px) {
  .msg {
    width: 95%;
    left: auto;
    margin: 0 auto;
    top: 0;
    padding-bottom: 30px;
    text-align: center;
  }

  .comeback-btn {
    font-size: 16px;
    margin: 0 auto;
  }
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
figcaption,
figure,
footer,
header,
main,
nav {
  display: block;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

b {
  font-weight: 700;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 20px;
}

button,
input {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button {
  text-transform: none;
}

button,
html input[type="button"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

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

input {
  line-height: normal;
}

input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/*! Flickity v2.1.0
https://flickity.metafizzy.co
---------------------------------------------- */

.Page-header {
  box-sizing: border-box;
}

@media only screen and (min-width: 568px) and (max-width: 767px),
  only screen and (max-width: 567px) {
  .Page-header {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media only screen and (min-width: 768px) {
  .Page-header {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .Page-header {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (min-width: 1280px) {
  .Page-header {
    padding-left: calc((100% - 1200px) / 2);
    padding-right: calc((100% - 1200px) / 2);
  }
}

@media only screen and (min-width: 568px) and (max-width: 767px),
  only screen and (max-width: 567px) {
  .Page-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) {
  .Page-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media only screen and (min-width: 1024px) {
  .Page-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media only screen and (min-width: 1280px) {
  .Page-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.Page-header:first-child {
  margin-top: 0;
}

.Page-navigation {
  width: 100%;
}

.Page-header {
  position: relative;
}

.Page-header {
  min-height: 45px;
  margin-bottom: 10px;
}

.Page-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  min-width: 100%;
  z-index: 10;
}

@media only screen and (max-width: 567px),
  only screen and (min-width: 568px) and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 1023px) {
  .Page-header {
    padding: 0;
  }
}

.Page-logo {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.Page-logo img {
  display: block;
  width: auto;
}

@media only screen and (max-width: 567px),
  only screen and (min-width: 568px) and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 1023px) {
  .Page-header {
    position: fixed;
  }

  .Page-logo {
    min-width: 100%;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .Page-logo > a:nth-child(n),
  .Page-logo > img:nth-child(n) {
    display: none;
  }

  .Page-logo > a:nth-child(1),
  .Page-logo > img:nth-child(1) {
    display: block;
  }

  .Page-logo > a:first-child:last-child,
  .Page-logo > img:first-child:last-child {
    display: block;
  }
}

@media only screen and (min-width: 1024px) {
  .Page-header {
    -ms-flex-pack: center;
    justify-content: center;
  }

  .Page-navigation {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }

  header .Page-social {
    position: absolute;
    top: 10px;
    right: 20px;
  }
}

@media only screen and (min-width: 1280px) {
  header .Page-social {
    right: calc((100% - 1200px) / 2);
  }
}

@media only screen and (max-width: 567px),
  only screen and (min-width: 568px) and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 1023px) {
  .Page-navigationOverlay {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    max-width: 0;
    height: calc(100vh - 45px);
    background: #fff;
    transition: max-width 0.5s ease;
    overflow: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .Page-navigationOverlay .Page-navigation {
    -ms-flex-order: 5;
    order: 5;
  }

  .Page-navigationOverlay .Page-social {
    -ms-flex-order: 10;
    order: 10;
    padding: 20px;
    text-align: center;
  }
}

@media only screen and (min-width: 1024px) {
  .Page-navigationOverlay {
    display: -ms-flexbox;
    display: flex;
    min-height: 45px;
    width: 100%;
    -ms-flex: 1;
    flex: 1;
  }
}

@keyframes logoGrow {
  0% {
    overflow: hidden;
    height: 0;
  }

  100% {
    overflow: hidden;
    height: 95px;
  }
}

.Page-header {
  padding-top: 0;
  padding-bottom: 0;
}

.Navigation {
  width: 100%;
}

.Navigation-items {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 567px),
  only screen and (min-width: 568px) and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 1023px) {
  .Navigation [data-element-contains-navigationitempinned] > .NavigationItem {
    background-color: #fdfdbd;
  }
}

@media only screen and (min-width: 1024px) {
  .Navigation {
    height: 100%;
  }

  .Navigation-items {
    -ms-flex-pack: start;
    justify-content: flex-start;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .Navigation-items-item {
    margin-right: 15px;
    display: -ms-flexbox;
    display: flex;
  }

  .Navigation [data-element-contains-navigationitempinned] {
    margin-left: auto;
  }
}

.NavigationItem-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
}

@media only screen and (max-width: 567px),
  only screen and (min-width: 568px) and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 1023px) {
  header .NavigationItem-text-link {
    width: 100%;
  }
}

@media only screen and (min-width: 1024px) {
  [data-element-contains-navigationitempinned] .NavigationItem {
    border: 0;
    height: 100%;
    margin-right: 10px;
  }

  [data-element-contains-navigationitempinned]
    .NavigationItem
    > .NavigationItem-text {
    margin: 0;
    height: 100%;
  }

  [data-element-contains-navigationitempinned]
    .NavigationItem
    > .NavigationItem-text
    a {
    color: #242424;
    display: inline-block;
    height: auto;
    font-family: Roboto, "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    max-width: 100%;
    overflow: hidden;
    text-transform: uppercase;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  [data-element-contains-navigationitempinned]
    .NavigationItem
    > .NavigationItem-text
    a:before {
    content: "|";
    display: inline-block;
    margin-right: 5px;
  }
}

@media screen and (max-width: 767px) {
  .Page-logo {
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .Page-logo a {
    max-width: 140px;
    width: 100%;
  }

  .Page-logo a img {
    width: 100%;
  }
}

@media only screen and (max-width: 567px),
  only screen and (min-width: 568px) and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 1023px) {
  .Page-header {
    background: #cf102d;
    border-bottom: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .Page-header {
    background-color: #cf102d;
  }

  .Page-header {
    border-bottom: solid 1px transparent;
  }

  .Page-logo {
    -ms-flex-pack: center;
    justify-content: center;
  }

  .Page-header:before {
    background: #fff;
    height: 0;
    min-width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .Page-header {
    border-bottom: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .Page-social {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 567px),
  only screen and (min-width: 568px) and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 1023px) {
  .Page-navigationOverlay .Page-navigation {
    -ms-flex-order: 5;
    order: 5;
  }

  .Page-navigationOverlay .Page-social {
    -ms-flex-order: 10;
    order: 10;
    padding: 20px;
    text-align: center;
  }
}

.icon {
  font-family: icomoon;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media only screen and (max-width: 567px),
  only screen and (min-width: 568px) and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 1023px) {
  .Navigation-items-item {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 1024px) {
  .Navigation {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
  }
}

.NavigationItem {
  font-family: Mulish, sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.NavigationItem-text {
  text-transform: uppercase;
}

@media only screen and (max-width: 567px),
  only screen and (min-width: 568px) and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 1023px) {
  .NavigationItem {
    font-size: 1.6rem;
    font-weight: 400;
    padding-bottom: 0;
    list-style-type: none;
    text-align: left;
    border-bottom: solid 1px #ddd;
  }

  .NavigationItem-text {
    font-weight: 300;
  }

  .NavigationItem-text a {
    padding: 10px 20px;
    display: block;
    font-size: 0.7em;
    color: #242424;
    text-decoration: none;
  }
}

@media only screen and (max-width: 567px) and only screen and (min-width: 1024px),
  only screen and (min-width: 568px) and (max-width: 767px) and only screen and (min-width: 1024px),
  only screen and (min-width: 768px) and (max-width: 1023px) and only screen and (min-width: 1024px) {
  .NavigationItem-text a[href]:hover,
  .NavigationItem-text a[href]:visited:hover {
    color: #242424;
  }
}

@media only screen and (min-width: 1024px) {
  .NavigationItem-text a {
    color: #fff !important;
    text-decoration: none;
    height: 45px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }

  .NavigationItem-text a:after {
    content: "";
    width: 0;
    position: absolute;
    height: 3px;
    bottom: 0;
    background: 0 0;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s width ease;
  }

  .NavigationItem-text a:hover:after {
    width: 100%;
    background: #fff;
    transition: 0.5s width ease;
  }
}

@media only screen and (min-width: 1024px) and only screen and (min-width: 1024px) {
  .NavigationItem-text a[href]:hover,
  .NavigationItem-text a[href]:visited:hover {
    color: #fff;
  }
}

[data-element-contains-navigationitempinned]
  .NavigationItem
  > .NavigationItem-text
  a[href] {
  color: #242424;
  font-family: Mulish, sans-serif;
  font-weight: 400;
}

@media only screen and (min-width: 1024px) {
  [data-element-contains-navigationitempinned]
    .NavigationItem
    > .NavigationItem-text
    a[href] {
    color: #ffb;
    font-size: 14px;
  }

  [data-element-contains-navigationitempinned]
    .NavigationItem
    > .NavigationItem-text
    a[href],
  [data-element-contains-navigationitempinned]
    .NavigationItem
    > .NavigationItem-text
    a[href]:before {
    color: #ffb;
  }

  [data-element-contains-navigationitempinned]
    .NavigationItem
    > .NavigationItem-text
    a[href]:hover {
    border-color: transparent;
  }
}

[data-element-contains-navigationitempinned] .NavigationItem {
  max-width: 100%;
}

[data-element-contains-navigationitempinned]
  .NavigationItem
  .NavigationItem-text
  a[href] {
  color: #ffb !important;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  [data-element-contains-navigationitempinned]
    .NavigationItem
    > .NavigationItem-text
    a[href] {
    color: #000;
    font-size: 0.7em;
  }
}

@media (min-width: 1024px) {
  .Page-logo {
    height: 95px;
    min-width: 100vw;
    animation-timeline: auto;
    animation-range-start: normal;
    animation-range-end: normal;
    background: rgb(255, 255, 255);
    animation: 0.5s ease 0s 1 normal none running logoGrow;
  }
}

@media (max-width: 1024px) {
  .Page-header {
    position: fixed;
    top: 0;
    left: 0;
  }

  .show-main {
    margin-top: 50px;
  }
}

.x_country_select {
  display: none !important;
}
.old-price {
  text-decoration: line-through;
}

.new-price {
  color: red;
  font-weight: 700;
}
.block-center {
  text-align: center;
}
.comm__img {
  max-width: 350px;
  width: 100%;
}
.w_collection_items img.main-hero {
  max-width: 650px;
  width: 100%;
}
