body.noscroll {
  margin: 0;
  height: 100vh;
  overflow: hidden;
}

body {
  background: #fff;
}

html.is-locked,html.is-locked body {
  height: calc(var(--window-inner-height) - 1px);
  overflow: hidden;
  box-sizing: border-box;
}

#container_video {
  position: relative;
  z-index: 2;
}

#container_video.fullscreen {
  background: #000;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

#container_video.fullscreen video {
  max-height: 100vh;
}

#video {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
}

#container_video.fullscreen #video {
  width: 90%;
  max-width: 100%;
  height: 100%;
}

#popup,#play {
  display: none;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  z-index: 2;
  height: 150px;
}

#play {
  display: block;
}

#play h4:first-child {
  margin-bottom: 60px;
}

#popup>div,#play>div {
  position: relative;
  background-color: rgba(0, 207, 47, 0.75);
  padding: 5px 20px;
  margin: 0 auto;
  width: 30%;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  cursor: pointer;
}

#popup>div {
  width: 40%;
  background-color: rgba(255, 0, 0, 0.75);
}

@media (max-width:600px) {
  #popup>div,  #play>div {
    width: 80%;
    height: 100%;
  }
}

#order {
  display: none;
  margin: 0 auto;
}

#order h1 {
  font-size: 4em;
  text-align: center;
  margin-top: 30%;
}

#close {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 2;
  background-image: url(../images/close.svg);
  background-size: cover;
}

.main_header {
  font-size: 45px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  font-weight: black;
  line-height: 1.3;
  margin-bottom: 20px;
}

.green_bg {
  color: white;
  background-color: green;
}

/* form */

@keyframes marching-ants {
  0% {
    background-position: 0 0, 10px 100%, 0 10px, 100% 0;
  }

  100% {
    background-position: 10px 0, 0 100%, 0 0, 100% 10px;
  }
}

* {
  box-sizing: border-box;
}

@media screen and (max-width: 500px) {
  .main_header {
    font-size: 25px;
  }

  #popup {
    font-size: 14px;
  }
}

.ring-loading {
  width: 10px;
  height: 10px;
  padding: 15px !important;
  border: 7px dashed #000;
  border-radius: 100%;
  display: none;
  margin: 10px auto !important;
  animation: 1.5s cubic-bezier(.17, .37, .43, .67) .3s infinite loadingD;
}

@keyframes loadingD {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#progress-container {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: rgba(204, 204, 204, 0.4);
  z-index: 10;
  display: none;
}

#progress-container.small-video {
  max-width: 900px;
  left: 50%;
  transform: translateX(-50%);
}

#progress {
  height: 100%;
  width: 0%;
  background-color: rgb(216, 54, 68);
}

#popup-btn {
  position: absolute;
  top: 3px;
  right: 22%;
  background-color: rgba(255, 0, 0, 0.75);
  padding: 5px 20px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  display: none;
}

@media (max-width: 1000px) {
  #progress-container {
    bottom: -10px;
  }
}

@media (max-width: 700px) {
  #popup-btn {
    right: initial;
    left: 10px;
    font-size: 16px;
  }
}