body,
html {
  margin: 0;
}

.ruletka-p {
  text-indent: 0;
  color: #000;
  text-align: center !important;
  margin: 10px;
  line-height: 25px;
  font-weight: 700;
  padding-bottom: 0 !important;
}

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

.spin-wrapper .ruletka-p {
  margin-bottom: 15px;
}

.danger-text {
  color: red;
  font-weight: 700;
}

.wheel {
  width: 380px !important;
  margin: 0 auto;
  position: relative;
}

.wheel img {
  max-width: 100%;
  margin-bottom: 13px;
}

.wheel-img {
  -webkit-transition: 4s;
  -o-transition: 4s;
  transition: 4s;
}

.wheel-cursor {
  position: absolute;
  width: 35% !important;
  height: 35%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cursor-text {
  position: absolute;
  z-index: 2;
  display: inline-block;
  width: 45% !important;
  height: 45%;
  font: 16px Arial !important;
  line-height: 61px !important;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  background-color: #ccc;
  border: 1px solid #ccc;
  top: 48%;
  left: 50%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: #fff 0 -2px 0 inset, #fff 0 2px 0 inset,
    rgba(0, 0, 0, 0.4) 0 0 5px;
  box-shadow: #fff 0 -2px 0 inset, #fff 0 2px 0 inset,
    rgba(0, 0, 0, 0.4) 0 0 5px;
  background: #fff;
}

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

.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();
  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-heading {
  font-size: 40px;
  margin-bottom: 20px;
}

.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;
  cursor: pointer;
  outline: medium;
}

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

.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;
}

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

@media all and (max-width: 520px) {
  .wheel {
    width: 280px !important;
  }
  .cursor-text {
    line-height: 45px !important;
    font-size: 12px !important;
  }
  .close-popup {
    right: 0;
  }
}

@media screen and (max-width: 345px) {
  .wheel {
    width: 250px !important;
  }
  .cursor-text {
    line-height: 40px !important;
    font-size: 11px !important;
  }
}

@media screen and (max-width: 600px) {
  .order_block img {
    width: 60%;
  }
}

@media screen and (max-width: 600px) {
  .cursor-text {
    top: 47%;
  }
}

@media screen and (max-width: 400px) {
  .order_block img {
    width: 80%;
  }
}

b,
body,
div,
figure,
footer,
h1,
h3,
header,
html,
img,
nav,
p,
span,
strong {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

body {
  line-height: 1;
  font-family: sans-serif;
}

figure,
footer,
header,
nav {
  display: block;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

* {
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f2f2f2;
  position: relative;
}

img {
  max-width: 100%;
}

a {
  color: #b88b58;
  text-decoration: none;
}

.Body {
  font-size: 18px;
  line-height: 22px;
}

@media only screen and (min-width: 48em) {
  .Body {
    font-size: 20px;
    line-height: 27px;
  }
}

.Body > * {
  max-width: 980px;
}

.Body:last-child > :last-child {
  margin-bottom: 0;
}

.Body a {
  color: inherit;
  box-shadow: inset 0 -1px #b88b58;
}

.Body a:hover {
  color: #b88b58;
}

.Body p {
  margin-bottom: 15px;
}

.Body h3 {
  margin-top: 18px;
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 700;
}

.Menu {
  display: none;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

@media only screen and (min-width: 64em) {
  .Menu {
    font-size: 13px;
    display: block;
    height: 45px;
    width: 100%;
    letter-spacing: 1px;
    background-color: #262626;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.Menu-item {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  text-align: center;
  -o-transition: color 0.15s ease-out;
  transition: color 0.15s ease-out;
}

@media only screen and (min-width: 64em) {
  .Menu-item {
    padding: 0 15px;
    border-bottom: 0;
  }
}

@media only screen and (min-width: 64em) {
  .Menu-item:last-of-type {
    border-right: none;
  }
}

@media only screen and (min-width: 64em) {
  .Menu-item:hover {
    color: #999;
    background-color: inherit;
  }
}

.Menu-link {
  -o-transition: color 0.15s ease-out;
  transition: color 0.15s ease-out;
  text-decoration: none;
  color: #fff;
  position: relative;
  line-height: 45px;
  top: 1px;
}

.Menu-item:hover .Menu-link {
  color: #999;
}

.Header {
  position: relative;
  height: 45px;
  background-color: #262626;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  z-index: 2;
}

@media only screen and (min-width: 64em) {
  .Header {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 63.9375em) {
  .Header .HeaderButton--chat {
    display: none;
  }
}

.Header-left {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-basis: 16%;
  -ms-flex-preferred-size: 16%;
  flex-basis: 16%;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 100%;
}

.Header-center {
  height: 100%;
  display: none;
}

.menu-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-button img {
  max-height: 90%;
}

@media only screen and (min-width: 64em) {
  .menu-button {
    display: none;
  }
  .Header-center {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-grow: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
}

.Header-right {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 100%;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-flex-basis: 16%;
  -ms-flex-preferred-size: 16%;
  flex-basis: 16%;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.HeaderButton {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-width: 45px;
  height: 100%;
  padding: 0 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  fill: currentColor;
  border: 0;
  background: 0 0;
  margin: 0;
  cursor: pointer;
}

.HeaderButton:active {
  outline-width: 0;
}

.HeaderButton:hover {
  color: #999;
}

.HeaderButton::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-right: 1px solid #676767;
}

@media only screen and (min-width: 64em) {
  .HeaderButton::after {
    top: 10px;
    bottom: 10px;
  }
}

.HeaderButton-link {
  display: block;
  padding-top: 2px;
  text-transform: uppercase;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
}

.HeaderButton-link::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}

.HeaderButton--chat {
  font-size: 13px;
  letter-spacing: 0.05em;
}

.Copyright {
  padding: 0 12px;
  line-height: 1.2;
}

@media only screen and (min-width: 64em) {
  .Copyright {
    padding: 0;
  }
}

.Copyright-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 0 auto;
  padding: 13px 0 12px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.Copyright-container a:hover {
  color: rgba(255, 255, 255, 0.5);
}

@media only screen and (min-width: 48em) {
  .Copyright-container {
    max-width: 675px;
    padding: 10px 0 18px;
    border-top: 1px solid #505050;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    text-align: left;
  }
}

@media only screen and (min-width: 64em) {
  .Copyright-container {
    max-width: 860px;
  }
}

.Copyright-container a {
  color: #fff;
}

.Copyright-block {
  padding-top: 13px;
  font-size: 17px;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-flex-basis: 20%;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
}

@media only screen and (min-width: 48em) {
  .Copyright-block {
    padding-top: 0;
    border-top: 0;
  }
}

.Copyright-block:last-child {
  text-align: right;
}

.MaterialTag {
  position: relative;
  z-index: 30;
  display: inline-block;
  vertical-align: top;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: 2px;
  font-weight: 700;
  line-height: 1;
  color: #b88b58;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media only screen and (max-width: 32em) {
  .MaterialTag {
    height: 15px;
    line-height: 15px;
    padding: 0 5px;
    font-size: 10px;
    letter-spacing: 0.5px;
  }
}

span.MaterialTag {
  cursor: default;
  pointer-events: none;
}

@media only screen and (min-width: 32em) {
  .MaterialTag--medium {
    height: 20px;
    line-height: 20px;
    padding: 0 7px;
    letter-spacing: 1px;
    font-size: 12px;
  }
}

.MaterialTag--solid {
  color: #fff;
  background: #b88b58;
  border-color: #b88b58;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

.MaterialMeta {
  display: inline-block;
  font-size: 12px;
  line-height: 14px;
  color: grey;
  margin-right: 12px;
  padding-left: 18px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 12px;
  font-weight: 400;
}

@media only screen and (min-width: 48em) {
  .MaterialMeta {
    font-size: 15px;
    line-height: 18px;
    margin-right: 15px;
  }
}

.MaterialMeta--time {
  background-size: 12px 12px;
  background-image: url(../img/1fkqy3hauftlt37g7rx0sjmafb.svg);
}

.MediaMaterialHeader {
  max-width: 840px;
}

.MediaMaterialHeader-first {
  color: #000;
  line-height: 27px;
}

@media only screen and (min-width: 48em) {
  .MediaMaterialHeader-first {
    line-height: 38px;
  }
}

.MediaMaterialHeader-first,
.MediaMaterialHeader-separator {
  -o-transition: color 0.25s ease-out;
  transition: color 0.25s ease-out;
  font-size: 24px;
  font-weight: 700;
}

@media only screen and (min-width: 48em) {
  .MediaMaterialHeader-first,
  .MediaMaterialHeader-separator {
    font-size: 36px;
  }
}

.MediaMaterial {
  background-color: #fff;
  padding: 12px;
}

@media only screen and (min-width: 48em) {
  .MediaMaterial {
    padding: 25px 15px 20px;
  }
}

.MediaMaterial-header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 650px;
  margin: 0 auto 18px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media only screen and (min-width: 63.125em) {
  .MediaMaterial-header {
    max-width: 1000px;
    margin-bottom: 25px;
  }
}

.MediaMaterial-tag {
  margin-bottom: 5px;
}

@media only screen and (min-width: 48em) {
  .MediaMaterial-tag {
    margin-bottom: 11px;
  }
}

.MediaMaterial-meta {
  margin-top: 12px;
}

@media only screen and (min-width: 48em) {
  .MediaMaterial-meta {
    margin-top: 12px;
  }
}

.MediaMaterial-materialContent {
  width: 100%;
  max-width: 650px;
}

.MediaMaterial-body {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
}

@media only screen and (min-width: 63.125em) {
  .MediaMaterial-body {
    max-width: 1000px;
  }
}

@media only screen and (min-width: 48em) {
  .MediaMaterial--fullWidth .MediaMaterial-header {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}

.MediaMaterial--fullWidth .MediaMaterial-materialContent {
  max-width: none;
}

.Material {
  padding: 12px 0 0;
}

@media only screen and (min-width: 48em) {
  .Material {
    padding: 15px 0 0;
  }
}

.Material-shadow {
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  z-index: 300;
  background-color: rgba(0, 0, 0, 0.15);
}

.Material-shadow--top {
  top: 0;
}

.Material-container {
  background: #fff;
  position: relative;
}

@media only screen and (min-width: 48em) {
  .Body h3 {
    margin-top: 35px;
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 27px;
  }
}

.MaterialContent--bannerless .Body > * {
  margin-right: auto;
  margin-left: auto;
}

.MaterialContent .Figure {
  margin-right: -12px;
  margin-left: -12px;
}

@media only screen and (min-width: 40.625em) {
  .MaterialContent .Figure {
    margin-right: auto;
    margin-left: auto;
  }
}

.Figure {
  margin: 15px -12px;
}

.Figure img {
  display: block;
  margin: 5px auto;
}

@media only screen and (min-width: 48em) {
  .Figure {
    margin: 27px auto 20px;
  }
}

@media only screen and (min-width: 75em) {
  .Figure {
    max-width: 650px;
  }
}

.Figure img {
  max-width: 100%;
  vertical-align: bottom;
}

@media only screen and (min-width: 40.625em) {
  .Figure img {
    border-radius: 2px;
  }
}

.Figure-caption {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding: 7px 12px 0;
  font-size: 15px;
  line-height: 17px;
}

@media only screen and (min-width: 40.625em) {
  .Figure-caption {
    padding-right: 0;
    padding-left: 0;
    font-size: 16px;
    line-height: 18px;
  }
}

.App {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  transition: -webkit-transform 0.25s ease-out;
  -o-transition: -o-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out,
    -o-transform 0.25s ease-out;
}

.App-content,
.App-footer {
  transition: -webkit-transform 0.25s ease-out;
  -o-transition: -o-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out,
    -o-transform 0.25s ease-out;
}

.App-footer {
  position: relative;
  z-index: 1;
}

.App-content {
  position: relative;
  z-index: 1;
  overflow: visible;
  background-color: #f2f2f2;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.App-header {
  position: relative;
  z-index: 200;
}

.App--isMaterial .App-content {
  background-color: #e6e6e6;
}

.Footer {
  color: #999;
  background-color: #252525;
}

.ava-img {
  width: 50px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

.Body a {
  color: #00f;
  box-shadow: none;
}

.Body a:hover {
  box-shadow: none;
  cursor: pointer;
}

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

input {
  outline: 0;
}

input:active {
  outline: 0;
}

:focus {
  outline: 0;
}

button:active,
button:focus {
  outline: 0 !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

.ord_button {
  background-color: #fa3d3d;
  color: #fff !important;
  display: inline-block;
  padding: 10px 30px;
  font-size: 22px !important;
  box-shadow: 2px 3px 8px #999;
  text-decoration: none !important;
  border-radius: 8px;
  border: 3px solid #fff;
  margin: 20px 0 30px;
  line-height: 27px;
  text-transform: uppercase;
  transition: all 0.3s ease-in 0s;
  text-shadow: 1px 1px 0 #565656;
  font-weight: 500;
}

.ord_button:hover {
  background-color: #772133;
  box-shadow: 2px 3px 3px #999;
  text-decoration: none !important;
  transform: scale(1.1);
}

.bottom-menu {
  height: 50px;
  display: none;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  box-sizing: border-box;
  background-color: #4aa224;
  padding: 5px 0;
  z-index: 100;
}

.bottom-menu-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  float: left;
  width: 54%;
  height: 40px;
  margin-left: 5%;
}

.bottom-menu-left-foto {
  display: flex;
  justify-content: center;
  width: 12%;
  float: left;
  max-height: 100%;
}

.bottom-menu-left-foto img {
  display: block;
}

.bottom-menu-left-text {
  color: #fff;
  font-size: 14px;
  width: 85%;
  float: right;
  margin-left: 3%;
  margin-top: 0;
  line-height: 1.4;
}

.bottom-menu-left::after {
  content: "";
  display: block;
  clear: both;
}

.bottom-menu-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 30%;
  float: right;
  margin-right: 5%;
  height: 40px;
}

.bottom-menu-right a {
  display: inline-block;
  float: right;
  font-size: 11px;
  color: #000;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 3px;
  background: transparent
    linear-gradient(to bottom, #ffd500 0, #ffb700 49%, #ffa100 100%) repeat
    scroll 0 0;
}

.bottom-menu::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 599px) {
  .bottom-menu {
    display: block;
  }
}

.disklaymer {
  font-size: 13px;
  padding: 10px;
  opacity: 0.3;
}

.center {
  text-align: center;
}

.comment-text {
  margin-left: 10px;
  border-left: 2px solid rgba(0, 0, 0, 0.15);
  padding-left: 10px;
}

.mw350 {
  width: 100% !important;
  max-width: 350px !important;
}

.mw450 {
  width: 100% !important;
  max-width: 450px !important;
}

#order_form {
  background: white;
  padding: 20px;
  max-width: 670px;
  padding-bottom: 85px;
  font-family: Arial;
  margin: 20px;
  background-image: url(../img/formbg.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin: 0 auto;
}

#order_form div {
  background: transparent !important;
}

#order_form h2 {
  margin: 25px 0 0 0;
  padding: 0;
  line-height: 32px;
  border: none;
}

#order_form label {
  width: auto;
  display: block;
  padding: 5px 0 5px 0;
  font-weight: bold;
  font-size: 16px;
}

#order_form .order_form_pole {
  padding: 10px;
  margin: 10px;
  text-align: center;
}

#order_form input,
#order_form select {
  box-sizing: border-box;
  font-size: 21px;
  padding: 15px;
  border-radius: 3px;
  border: 2px solid #e9d7dc;
  max-width: 300px;
  width: 100%;
  outline: none !important;
}

#order_form span {
  font-size: 18px;
}

#order_form button {
  display: block;
  margin: 0 auto;
  padding: 20px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px 0 rgba(129, 150, 160, 0.45);
  border-radius: 5px;
  background-color: #0299ff;
  background-position: 1.35em 0.94em;
  background-size: 1em;
  background-repeat: no-repeat;
  transition: all 0.15s ease-in-out;
  border: none;
  cursor: pointer;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

#order_form button:hover {
  background-color: #017acc;
}

#order_form button:active {
  position: relative;
  top: 1px;
}

@media screen and (max-width: 480px) {
  #order_form label {
    font-size: 14px;
  }
  #order_form button {
    font-size: 16px;
  }
  #order_form {
    padding: 10px;
  }
  #order_form .order_form_pole {
    padding: 0;
    margin: 2px;
  }
}

@media screen and (max-width: 459px) {
  #order_form input,
  #order_form select {
    width: 80%;
  }
}

@media screen and (max-width: 349px) {
  #order_form input {
    font-size: 17px;
  }
}

#order_form_place img {
  max-width: 100px;
  display: block;
  margin: 20px 0;
}

form h2 {
  font-size: 30px;
  margin-block-start: 0.83em !important;
  margin-block-end: 0.83em !important;
}

form .count {
  display: block;
  margin-bottom: 10px;
}

.timelimit {
  margin-bottom: 20px;
}

.timelimit b {
  display: inline-block;
  background: url(../img/timerIcon2.png) no-repeat;
  padding-left: 14px;
  color: red;
  vertical-align: middle;
  background-position-y: 5px;
  font-size: 18px;
}

.disklaymer {
  font-size: 13px;
  padding: 10px;
  opacity: 0.3;
}

.center {
  text-align: center;
}

input,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.spin-wrapper,
.order_block,
.pop-up-window {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ruletka-p {
  text-indent: 0;
  color: #000;
  text-align: center;
  margin: 15px;
  line-height: 25px;
  font-weight: 400;
}

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

.spin-wrapper .ruletka-p {
  margin-bottom: 15px;
}

.danger-text {
  color: red;
  font-weight: 700;
}

.wheel {
  width: 380px !important;
  margin: 0 auto;
  position: relative;
}

.wheel img {
  max-width: 100%;
  margin-bottom: 0;
}

.wheel-img {
  -webkit-transition: 4s;
  -o-transition: 4s;
  transition: 4s;
}

.wheel-cursor {
  position: absolute;
  width: 35% !important;
  height: 35%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cursor-text {
  position: absolute;
  z-index: 2;
  display: inline-block;
  width: 45% !important;
  height: 45%;
  font: 16px Arial !important;
  line-height: 61px !important;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  background-color: #ccc;
  border: 1px solid #ccc;
  top: 49%;
  left: 50%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -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, 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, 0.4) 0 0 5px;
  background: #fff;
}

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

.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 0 normal none 1 running pop-up-appear;
}

.close-popup {
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url(../img/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-heading {
  font-size: 40px;
  margin-bottom: 20px;
}

.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;
}

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

.pop-up-window {
  position: relative;
  max-width: 400px;
  right: 0;
  left: 0;
  top: 25%;
  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 0 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 0;
  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;
}

@media all and (max-width: 520px) {
  .wheel {
    width: 280px !important;
  }
  .cursor-text {
    line-height: 45px !important;
    font-size: 12px !important;
  }
  .close-popup {
    right: 0;
  }
}

@media screen and (max-width: 345px) {
  .wheel {
    width: 250px !important;
  }
  .cursor-text {
    line-height: 40px !important;
    font-size: 11px !important;
  }
}

.super-rotation {
  -webkit-animation-name: super-rotation;
  animation-name: super-rotation;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

@-webkit-keyframes super-rotation {
  70% {
    -webkit-transform: rotate(1787deg);
    transform: rotate(1787deg);
  }
  100% {
    -webkit-transform: rotate(1774deg);
    transform: rotate(1760deg);
  }
}

@keyframes super-rotation {
  70% {
    -webkit-transform: rotate(1787deg);
    transform: rotate(1787deg);
  }
  100% {
    -webkit-transform: rotate(1620deg);
    transform: rotate(1760deg);
  }
}

/* @media(max-width: 992px) { */
/* .comment { */
/* display: none; */
/* } */
/* } */

select {
  -webkit-appearance: none;
  /* Webkit */
  -moz-appearance: none;
  /* FF */
  -ms-appearance: none;
  /* Edge */
  appearance: none;
  /* Future */

  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 1em;
  background-image: url("../img/arrow-down.png");
}

select::-ms-expand {
  display: none;
}
