.doors__container {
    display: flex;
    justify-content: space-between;
  }

  .box {
    perspective: 500px;
    position: relative;
    width: calc(33% - 5px);
    padding-bottom: 70%;
    /* height: 400px; */
    box-shadow: inset -1px -1px 0 1px #191919, inset 1px 1px 0 1px #191919;
  }

  .door {
    width: 100%;
    height: 100%;
  }

  .door,
  .hi {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .hi {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .door {
    background-image: url(../images/door1.png);
    background-repeat: no-repeat;
    transform: rotateY(0deg);
    display: inline-block;
    transition: all 0.75s ease;
    transform-origin: 0% 0%;
    cursor: pointer;
    background-size: 100% 100%;
  }

  #door__1 {
    background-image: url(../images/door1.png);
  }

  #door__2 {
    background-image: url(../images/door2.png);
  }

  #door__3 {
    background-image: url(../images/door3.png);
  }

  .door:hover {
    transform: rotateY(-30deg);
  }

  .door.open {
    transform: rotateY(-85deg);
  }

  .doors__sales {
    position: relative;
    font-size: 46px;
    font-weight: 700;
    color: red;
    border-radius: 30px;
    padding: 30px 5px;
    box-shadow: 0 1px 2px 2px #7f7878;
  }

  .doors__title {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    font-size: 22px;
    margin-bottom: 25px;
    background-color: #3a4752;
    padding: 10px;
    border-radius: 0.5em;
  }
  .spin-result-wrapper {
    display: none;
    padding: 0 15px;
    -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, .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: .7s ease 0s normal none 1 running pop-up-appear
}

.close-popup {
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url(../fonts/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-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-button:hover {
  opacity: 0.8;
}
.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: .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: .5s ease .6s normal backwards 1 running pop-up-appear-before;
    -webkit-animation: .5s ease .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: .5s ease .6s normal backwards 1 running pop-up-appear-after
}

@keyframes pop-up-appear {
    0% {
        transform: translateY(-2000px);
        -webkit-transform: translateY(-2000px);
        -moz-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        -o-transform: translateY(-2000px)
    }

    30% {
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px)
    }

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0)
    }
}

@keyframes pop-up-appear-before {
    0% {
        transform: scale(0);
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0)
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1)
    }
}

@keyframes pop-up-appear-after {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

  @media (max-width: 767px) {
    .doors__sales {
      font-size: 20px;
      font-weight: 700;
      color: red;
      border-radius: 30px;
      padding: 10px;
    }
    /* .box {
      height: 300px;
    } */
  }

  @media (max-width: 479px) {

    .doors__sales {
      font-size: 25px;
      font-weight: 700;
      color: red;
      border-radius: 30px;
    }
    /* .box {
      height: 260px;
    } */

  }
  .order_block {
    display: block;
  }