#terra-wrapper {
  font-family: "Roboto", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: #000;
}

#terra-wrapper .spin-wrapper {
  border: 3px solid red;
  -webkit-box-shadow: 0 0 10px;
  box-shadow: 0 0 10px;
  padding: 30px 10px 20px;
  margin: 0 auto;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

#terra-wrapper .spin-wrapper+.spin-result-wrapper+.order-wrapper {
  display: none;
}

#terra-wrapper .spin-wrapper b {
  font-size: 21px;
  line-height: 1.2;
  display: inline-block;
  margin: 0;
  padding: 0;
}

#terra-wrapper .spin-wrapper p {
  font-size: 21px;
  line-height: 1.2;
  margin: 0 0 15px;
  padding: 0;
  text-align: center !important;
}

#terra-wrapper .wheel {
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

#terra-wrapper .wheel-img {
  width: 100%;
  margin: 0;
  padding: 0;
}

#terra-wrapper .wheel-cursor {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: #fff;
  -webkit-box-shadow: 0 0 11px;
  box-shadow: 0 0 11px;
}

#terra-wrapper .wheel-cursor:before {
  content: "";
  position: absolute;
  top: -8%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  width: 0;
  height: 0;
  border-left: 9.5px solid transparent;
  border-right: 9.5px solid transparent;
  border-bottom: 17px solid #fff;

}

#terra-wrapper .cursor-text {
  font: 400 16px/18px "Times New Roman";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 1px solid #ccc;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-shadow: rgba(255, 255, 255, 1) 0 -2px 0 inset, rgba(255, 255, 255, 1) 0 2px 0 inset, rgba(0, 0, 0, .4) 0 0 5px;
  box-shadow: rgba(255, 255, 255, 1) 0 -2px 0 inset, rgba(255, 255, 255, 1) 0 2px 0 inset, rgba(0, 0, 0, .4) 0 0 5px;
  background: #fff;
  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;
  margin: 0;
  padding: 0;
}

#terra-wrapper .cursor-text:active {
  -webkit-box-shadow: rgba(0, 0, 0, .4) 0 0 5px inset;
  box-shadow: rgba(0, 0, 0, .4) 0 0 5px inset
}

#terra-wrapper .spin-result-wrapper {
  display: none;
  background-color: rgba(0, 0, 0, .6);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#terra-wrapper .popup-window {
  max-width: 400px;
  width: 93%;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  margin: 0 auto;
  background: #fff;
  padding: 40px 10px 20px;
  border-radius: 10px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: .7s ease 0s normal none 1 running terra-popup-appear;
  animation: .7s ease 0s normal none 1 running terra-popup-appear
}

@-webkit-keyframes terra-popup-appear {
  0% {
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%)
  }

  30% {
    -webkit-transform: translate(50%, 100px);
    transform: translate(50%, 100px)
  }

  100% {
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%)
  }
}

@keyframes terra-popup-appear {
  0% {
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%)
  }

  30% {
    -webkit-transform: translate(50%, 100px);
    transform: translate(50%, 100px)
  }

  100% {
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%)
  }
}

#terra-wrapper .popup-window::before {
  content: "";
  position: absolute;
  top: -38px;
  right: 50%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  width: 76px;
  height: 76px;
  background-color: #71c341;
  border-radius: 50%;
  -webkit-animation: .5s ease .6s normal backwards 1 running terra-popup-appear-before;
  animation: .5s ease .6s normal backwards 1 running terra-popup-appear-before
}

@-webkit-keyframes terra-popup-appear-before {
  0% {
    -webkit-transform: translateX(50%) scale(0);
    transform: translateX(50%) scale(0)
  }

  100% {
    -webkit-transform: translateX(50%) scale(1);
    transform: translateX(50%) scale(1)
  }
}

@keyframes terra-popup-appear-before {
  0% {
    -webkit-transform: translateX(50%) scale(0);
    transform: translateX(50%) scale(0)
  }

  100% {
    -webkit-transform: translateX(50%) scale(1);
    transform: translateX(50%) scale(1)
  }
}

#terra-wrapper .popup-window::after {
  content: "";
  position: absolute;
  top: -14px;
  right: 50%;
  -webkit-transform: translateX(50%) rotate(-45deg);
  transform: translateX(50%) rotate(-45deg);
  margin: 0 auto;
  width: 43px;
  height: 15px;
  border-width: medium medium 4px 4px;
  border-style: none none solid solid;
  border-color: currentcolor currentcolor #fff #fff;
  -o-border-image: none;
  border-image: none;
  -webkit-transition: opacity 1s ease 0s;
  transition: opacity 1s ease 0s;
  -webkit-animation: .5s ease .6s normal backwards 1 running terra-popup-appear-after;
  animation: .5s ease .6s normal backwards 1 running terra-popup-appear-after
}

@-webkit-keyframes terra-popup-appear-after {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@keyframes terra-popup-appear-after {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

#terra-wrapper .close-popup {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-animation: .5s ease .6s normal backwards 1 running terra-popup-close;
  animation: .5s ease .6s normal backwards 1 running terra-popup-close;
}

@-webkit-keyframes terra-popup-close {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 0;
  }

  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 1;
  }
}

@keyframes terra-popup-close {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 0;
  }

  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 1;
  }
}

#terra-wrapper .close-popup:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%) rotate(135deg);
  transform: translate(50%, -50%) rotate(135deg);
  width: 3px;
  height: 25px;
  background: #000;
}

#terra-wrapper .close-popup:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%) rotate(-135deg);
  transform: translate(50%, -50%) rotate(-135deg);
  width: 3px;
  height: 25px;
  background: #000;
}

#terra-wrapper .popup-heading {
  display: inline-block;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
  padding: 0 !important
}

#terra-wrapper .popup-text {
  color: #414141;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  text-align: center !important;
  margin: 15px 0 20px;
  padding: 0;
}

#terra-wrapper .popup-button {
  color: #fff !important;
  display: inline-block;
  background-color: #71c341;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  outline: 0;
  text-decoration: none;
  padding: 10px 75px;
  margin: 0;
}

#terra-wrapper .super-rotation {
  -webkit-animation-name: terra-super-rotation;
  animation-name: terra-super-rotation;
  -webkit-animation-duration: 7s;
  animation-duration: 7s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out
}

@-webkit-keyframes terra-super-rotation {
  70% {
    -webkit-transform: rotate(1783deg);
    transform: rotate(1783deg)
  }

  100% {
    -webkit-transform: rotate(1774deg);
    transform: rotate(1774deg)
  }
}

@keyframes terra-super-rotation {
  70% {
    -webkit-transform: rotate(1783deg);
    transform: rotate(1783deg)
  }

  100% {
    -webkit-transform: rotate(1774deg);
    transform: rotate(1774deg)
  }
}

#terra-wrapper .order-wrapper {
  margin: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

#terra-wrapper .dir {
  direction: rtl;
}

#terra-wrapper .prod-wrapper {
  max-width: 200px;
  margin: 0;
  position: relative;
  text-align: center;
}

.order-inner {
  max-width: 420px;
}

#terra-wrapper .prod-wrapper img {
  display: block;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
}

#terra-wrapper .price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font: 700 19px/1.3 "Arial", sans-serif;
  text-align: center;
  width: 165px;
  height: 110px;
  position: absolute;
  top: -90px;
  right: -10px;
  color: #000;
  box-shadow: rgba(0, 0, 0, 50%) 0px 3px 16px;
  transform: rotateZ(-7deg);
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, rgb(238, 165, 19) 0%, rgb(253, 237, 19) 100%);
  border-width: 2px;
  border-style: solid;
  border-color: rgb(255, 255, 255);
  border-image: initial;
  border-radius: 19%;
}

#terra-wrapper .price span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
  color: #000;
}

#terra-wrapper .discount {
  display: inline-block;
  width: 100%;
  height: auto;
  border: none;
  border-radius: 0;
  font-size: 18px !important;
  line-height: 1.3 !important;
  text-transform: none;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  color: #000;
}

#terra-wrapper .al-cost-promo,
#terra-wrapper .al-cost-promo-test,
#terra-wrapper .al-cost-promo-null {
  text-decoration: line-through;
}

#terra-wrapper .price .al-cost,
#terra-wrapper .price .al-cost-test {
  font-size: 24px;
  color: red;
  border-bottom: 2px solid #d31812;
  margin: 0 auto;
  padding: 0;
}

#terra-wrapper .offer-wrapper div {
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  letter-spacing: normal;
  color: inherit;
  margin: 0 0 3px;
  background: transparent;
}

#terra-wrapper .offer-wrapper .timer {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin: 5px 0 0;
  direction: ltr;
}

#terra-wrapper .timer span {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  font-family: inherit;
  margin: 0 5px;
  color: red;
}

#terra-wrapper .offer-wrapper {}

#terra-wrapper .offer-wrapper div:last-child {
  margin-bottom: 15px;
}

#terra-wrapper .al-form {
  display: inline-block;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

#terra-wrapper .al-form .label {
  margin-bottom: 5px;
  background: transparent;
  color: #000;
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  width: auto;
  height: auto;
  border-radius: 0;
  cursor: text;
  border: none;
  padding: 0;
  display: block;
}

#terra-wrapper .al-form .label:hover {
  color: inherit;
  background: inherit;
}

#terra-wrapper .al-form .input-wrapper {
  width: 100%;
  position: relative;
  margin: 0 auto 20px;
}

#terra-wrapper .order-wrapper .phone-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  direction: ltr;
}

#terra-wrapper .order-wrapper .phone-code input[name=areacode] {
  max-width: 55px;
  margin-right: 10px;
  padding: 5px;
  text-align: center;
  background: #fff;
}

#terra-wrapper .al-form input,
#terra-wrapper .al-form select {
  display: block;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  width: 100% !important;
  height: 45px;
  border: 2px solid grey;
  border-radius: 5px;
  margin: 0;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #000;
}

#terra-wrapper .dir .al-form input,
#terra-wrapper .dir .al-form select {
  direction: ltr;
  text-align: right;
}

#terra-wrapper .al-form input::-webkit-input-placeholder {
  color: grey;
}

#terra-wrapper .al-form input:-ms-input-placeholder {
  color: grey;
}

#terra-wrapper .al-form input::-ms-input-placeholder {
  color: grey;
}

#terra-wrapper .al-form input::placeholder {
  color: grey;
}

#terra-wrapper .al-form .input-wrapper .error {
  border: 1px solid red;
  padding-top: 6px;
}

#terra-wrapper .al-form .input-wrapper .validator__tooltip+.error {
  border: 2px solid grey;
  padding-top: 0;
}

#terra-wrapper .al-form .input-wrapper label {
  display: none;
  pointer-events: none;
  z-index: 1;
}

#terra-wrapper .al-form .input-wrapper .error+label {
  display: block;
  width: 100%;
  height: 100%;
  color: red;
  font-size: 11px;
  line-height: 17px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  padding-left: 10px;
  overflow: hidden;
}

#terra-wrapper .dir .al-form .input-wrapper .error+label {
  left: initial;
  right: 10px;
  text-align: right;
}

#terra-wrapper .al-form .input-wrapper .validator__tooltip+.error+label {
  display: none;
}

#terra-wrapper .al-form .input-wrapper .error+label:before,
#terra-wrapper .al-form .input-wrapper .error+label:after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 3px;
  height: 21px;
  background-color: red
}

#terra-wrapper .dir .al-form .input-wrapper .error+label:before,
#terra-wrapper .dir .al-form .input-wrapper .error+label:after {
  right: initial;
  left: 30px;
}

#terra-wrapper .al-form .input-wrapper .error+label:before {
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg)
}

#terra-wrapper .al-form .input-wrapper .error+label:after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg)
}

.btn-wrapper {
  text-align: center;
}

#terra-wrapper .order-wrapper .terra-btn,
.btn-wrapper .terra-btn {
  width: 100%;
  display: inline-block;
  margin: 0 auto 15px;
  padding: 15px;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  color: #fff !important;
  background: #de0606 !important;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

#terra-wrapper .order-wrapper .terra-btn:hover,
.terra-btn:hover {
  opacity: 0.8;
}

#terra-wrapper .time-remains {
  margin-top: 15px;
  margin-bottom: 0;
}

#terra-wrapper .time-remains p {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center !important;
  text-transform: inherit;
  padding: 0;
  margin: 0;
  color: inherit;
  border: none;
}

#terra-wrapper .time-remains span {
  color: red;
  /* font-size: 22px; */
  line-height: 1.2;
  font-weight: 700;
  font-family: inherit;
}

#terra-wrapper .med {
  background-image: url(../img/formbg.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 30px 20px 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#terra-wrapper .med img {
  max-width: 100px;
  width: 100%;
}

#terra-wrapper .med h2 {
  color: #333;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  padding: 0;
  margin: 5px 0 0 0;
}

#terra-wrapper .med span {
  display: inline-block;
  color: blue;
  font-size: 14px;
  line-height: 1.2;
  margin: 3px auto;
  background: transparent;
}

#terra-wrapper .med p {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #000;
}

#terra-wrapper .med p a {
  color: blue;
  text-decoration: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

#terra-wrapper .med p .al-cost-promo {
  color: inherit;
  text-decoration: none;
  border: none;
  text-decoration: line-through;
}

#terra-wrapper .med p .al-cost {
  color: red;
  text-decoration: none;
  border: none;
}

#terra-wrapper .med .frame {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  margin: 7px 10px 15px;
  padding: 10px;
  border: 2px solid #0299ff;
}

#terra-wrapper .med .al-form {
  max-width: 300px;
}

#terra-wrapper .med .al-form .label {
  font-size: 16px;
  font-weight: 700;
}

#terra-wrapper .med .al-form input,
#terra-wrapper .med .al-form select {
  border: 2px solid #e9d7dc;
  border-radius: 3px;
}

#terra-wrapper .med .terra-btn {
  background: #0299ff !important;
  font-size: 20px;
  font-weight: 700;
  border-radius: 5px;
  margin: 10px 0 20px;
  -webkit-box-shadow: 0 4px 15px 0 rgb(129 150 160 / 45%);
  box-shadow: 0 4px 15px 0 rgb(129 150 160 / 45%);
}

#terra-wrapper .med .additional {
  max-width: 440px;
  font-size: 14px;
  margin: 0 auto;
}

.name_link_style {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
}

.blockRedLine3103 {
  display: none !important;
}

.center {
  text-align: center !important;
}

.center img {
  margin: 0 auto 15px;
  display: block;
}

.cont-img {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  display: block;
}

.ro-notes {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  color: #000;
  font-size: 16px;
}

.ro-terms {
  margin-bottom: 15px;
  padding: 0;
  text-align: center;
}

.ro-terms li {
  list-style: none;
}

.ro-form {
  margin-bottom: 0;
  display: block;
  text-align: center;
  font-size: 16px;
}

@media(max-width: 980px) {
  .cont-img {
    width: 500px;
  }

  .cont-img--gel {
    width: 300px;
  }
}

@media(max-width: 767px) {

  #terra-wrapper .prod-wrapper,
  .prod {
    max-width: 170px !important;
  }
}

@media(max-width: 639px) {
  #terra-wrapper .order-wrapper {
    padding-top: 10px;
    flex-direction: column;
    gap: 15px;
  }

  #terra-wrapper .prod-wrapper {
    padding-top: 100px;
  }

  #terra-wrapper .price {
    top: 0;
  }
}