* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none
}

body {
  font-family: Arial, helvetica neue, Helvetica, sans-serif;
  background: #fafafa
}

a {
  color: #23527c;
  text-decoration: underline
}

a:hover {
  color: #b0493b
}

.container {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  position: relative
}

.nav {
  background: #ff0032;
  line-height: 40px
}

.wheel {
  text-align: center;
}

.wheel__title,
.prize__title {
  margin-bottom: 0.8em;
  font-size: 1.5em;
  font-weight: bold;
}
.undertext{
  margin-top: 40px;
  padding-bottom: 20px;
  text-align: center;
}
.wheel__wrapper {
  padding: 1em;
  border: 2px solid #ff7426;
  margin: 2em 0;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.order__title {
  font-size: 1.1em;
  font-weight: bold;
}

.wheel__pic {
  position: relative;
}

.prize-wheel {
  -webkit-transition: 4s;
  -o-transition: 4s;
  transition: 4s;
}

.wheel__cursor {
  width: 158px;
  height: 158px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
@media (max-width: 500px) {
  .wheel__cursor {
    width: 130px;
    height: 130px;
  }
}

.wheel__cursor-text {
  font-size: 14px;
  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;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 45%;
  height: 45%;
  border-radius: 100%;
  background-color: #fff;
  -webkit-box-shadow: white 0 -2px 0 inset, white 0 2px 0 inset, rgba(0, 0, 0, 0.4) 0 0 5px;
  box-shadow: white 0 -2px 0 inset, white 0 2px 0 inset, rgba(0, 0, 0, 0.4) 0 0 5px;
  text-transform: uppercase;
  font-weight: bold;
}

.spin {
  -webkit-animation: spin 7s ease-in-out forwards;
  animation: spin 7s ease-in-out forwards;
}

@-webkit-keyframes spin {
  70% {
    -webkit-transform: rotate(1783deg);
    transform: rotate(1783deg);
  }
  100% {
    -webkit-transform: rotate(1774deg);
    transform: rotate(1774deg);
  }
}

@keyframes spin {
  70% {
    -webkit-transform: rotate(1783deg);
    transform: rotate(1783deg);
  }
  100% {
    -webkit-transform: rotate(1774deg);
    transform: rotate(1774deg);
  }
}
.order {
  display: none;
}

.order__product {
  position: relative;
  text-align: center;
}
/*popup*/


@-webkit-keyframes toUp {
  100% {
    top: 50%;
  }
}

@keyframes toUp {
  100% {
    top: 50%;
  }
}
.article__button {
  margin-top: 30px; }
  @media (min-width: 992px) {
    .article__button {
      margin-top: 45px; } }
  

      .button {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 23px 25px;
        font-weight: 700;
        font-size: 16px;
        text-align: center;
        text-decoration: none;
        color: #ffffff;
        background-color: #315efb;
        box-shadow: 0px 5px 25px 0px #315efb;
        border-radius: 8px;
        border: none;
        transition: all .3s ease-out; }
        .button:hover, .button:active, .button:focus {
          box-shadow: none;
          cursor: pointer; 
        }
      
.popup__body{
  display: block;
}

.popup__title {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

.popup__text {
  padding-bottom: 1em;
}

.popup__icon {
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 4.2em;
  height: 4.2em;
  border-radius: 100%;
  color: #fff;
}
.popup__icon.prize {
  background-color: #59c12d;
}
.popup__icon.prize:before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 2.2em;
  height: 1.1em;
  border-left: 3px solid;
  border-bottom: 3px solid;
}
.popup__icon.false {
  background-color: #ff7426;
}
.popup__icon.false:before,
.popup__icon.false:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 2.2em;
  height: 2px;
  background-color: #fff;
}
.popup__icon.false:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup__icon.false:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav li {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  padding: 0 8px
}

.nav li a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  -moz-transition: .3s;
  transition: .3s
}

.nav li a:hover {
  color: #afd8f0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  -moz-transition: .3s;
  transition: .3s
}

.social {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%)
}

.social li {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px
}

.social li .facebook {
  color: #3b5998
}

.social li .youtube {
  color: #d8362a
}

.social li .twitter {
  color: #55bfee
}

.content {
  display: block;
  width: 80%;
  background: #fff;
  padding: 25px 10px;
  margin: 0 auto
}

.soc_crumbs {
  font-size: 0;
  background: #eee;
  padding: 5px
}

.soc_crumbs .soc_img {
  display: inline-block;
  vertical-align: middle;
  width: 50%
}

.content .soc_crumbs .soc_img img {
  width: auto;
  margin-bottom: 0
}

.soc_crumbs span {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  font-size: 13px;
  text-align: right
}

.content h1 {
  text-align: center;
  margin-bottom: 16px; font-size:30px !important
}

.content h2 {
  font-size: 20px;
  border-bottom: 3px solid #168de2;
  padding-bottom: 15px
}

.content .photo_block {
  font-size: 0;
  width: 100%;
  max-width: 100%
}

.content .photo_block img {
  display: inline-block;
  vertical-align: top;
  width: 50%
}

.btn {
  background: rgb(52, 152, 219) -webkit-gradient(linear, left top, left bottom, from(rgb(52, 152, 219)), to(rgb(41, 128, 185))) repeat scroll 0% 0%;
  background: rgb(52, 152, 219) -webkit-linear-gradient(top, rgb(52, 152, 219), rgb(41, 128, 185)) repeat scroll 0% 0%;
  background: rgb(52, 152, 219) -moz-linear-gradient(top, rgb(52, 152, 219), rgb(41, 128, 185)) repeat scroll 0% 0%;
  background: rgb(52, 152, 219) -o-linear-gradient(top, rgb(52, 152, 219), rgb(41, 128, 185)) repeat scroll 0% 0%;
  background: rgb(52, 152, 219) linear-gradient(to bottom, rgb(52, 152, 219), rgb(41, 128, 185)) repeat scroll 0% 0%;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  border-radius: 28px;
  font-family: Arial;
  color: #fff;
  font-size: 22px;
  padding: 10px 20px;
  text-decoration: none;
  cursor: pointer;
  display: block;
  text-align: center;
  width: 310px;
  max-width: 90%;
  margin: 20px auto
}

.btn:hover {
  background: rgb(60, 176, 253) -webkit-gradient(linear, left top, left bottom, from(rgb(60, 176, 253)), to(rgb(52, 152, 219))) repeat scroll 0% 0%;
  background: rgb(60, 176, 253) -webkit-linear-gradient(top, rgb(60, 176, 253), rgb(52, 152, 219)) repeat scroll 0% 0%;
  background: rgb(60, 176, 253) -moz-linear-gradient(top, rgb(60, 176, 253), rgb(52, 152, 219)) repeat scroll 0% 0%;
  background: rgb(60, 176, 253) -o-linear-gradient(top, rgb(60, 176, 253), rgb(52, 152, 219)) repeat scroll 0% 0%;
  background: rgb(60, 176, 253) linear-gradient(to bottom, rgb(60, 176, 253), rgb(52, 152, 219)) repeat scroll 0% 0%;
  text-decoration: none;
  color: #fff
}

.content p,
.content img,
.content h1,
.content h2 {
  margin-bottom: 16px
}

.content p {
  line-height: 1.5625
}

.content img {
  display: block;
  margin: 0 auto;

  max-width: 100%
}

.content .prod {
  width: 365px;
  max-width: 90%;
  margin: 0 auto 16px
}

.content .list {
  margin-bottom: 16px
}

.content .list p {
  margin-bottom: 0
}

.social_block {
  border: 2px solid #e6e6e6;
  padding: 20px;
  margin-bottom: 20px
}

.content .social_block span {
  font-weight: 700;
  display: block;
  margin-bottom: 16px
}

.content .social_block img {
  width: auto;
  margin: 0
}

.quantity {
  color: #45688e;
  font-weight: 700;
  padding: 2px 3px 1px;
  background: #dae2e8;
  margin-bottom: 20px
}

.comment {
  border-bottom: none;
  padding-bottom: 15px;
  margin-bottom: 15px
}

.content .comment .avatar {
  width: 48px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: top
}

.comm_text {
  display: inline-block;
  vertical-align: top;
  width: -webkit-calc(100% - 85px);
  width: -moz-calc(100% - 85px);
  width: calc(100% - 85px)
}

.content .comm_text .user_name {
  color: #2b587a;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 0
}

.content .comm_text .text {
  font-size: 15px
}

.content .comm_text .time {
  color: #999;
  margin-bottom: 0
}

.sidebar {
  display: inline-block;
  vertical-align: top;
  width: 27%;
  background: #fff;
  padding: 25px 0 0
}

.sidebar img {
  width: 100%;
  margin-bottom: 16px
}

.sidebar a {
  text-decoration: none
}

.sidebar p {
  font-weight: 700;
  margin-bottom: 16px
}

.footer {
  padding: 20px 1.5%;
  margin: 0 auto;
  background: #ebebeb none repeat scroll 0% 0%;
  text-align: center
}

.burg {
  display: none
}



.popup .article__button{
  margin-top: 40px;
}

@media all and (max-width:1000px) {
	.comments { padding:0 10px 0 10px !important;}

  .social,
  .soc_crumbs,
  .sidebar,
  .social_block,
  .nav li {
    display: none
  }

  .content {
    width: 100%
  }

  .logo {
    font-size: 50px;
    margin: 5px auto
  }

  .content h1 {
    font-size: 22px
  }

  .btn {
    font-size: 18px
  }

  .burg {
    display: block;
    margin: 0 auto;
    text-align: center
  }

  .burg img {
    width: 40px;
    margin-top: 2px
  }

  .popup {
    width: 315px;
    height: auto;
    padding: 10px
  }

  .popup img {
    width: 170px;
    margin: 0 auto;
    display: block
  }

  .popup .text {
    width: 100%
  }

  .popup h1 {
    margin-bottom: 16px;
    font-size: 20px
  }

  .popup .text p {
    font-size: 15px;
    margin-bottom: 10px
  }

  .popup .popup_btn {
    font-size: 16px
  }
}

.time {
  margin-top: 10px;
}
.in-timer-new-bl .time { margin-top:0}

.user_name {
  margin-bottom: 10px;
}

.comments {
  padding: 0;
}

#order_form {
  background-image: url("//viposidn.com/content/9tpVlcCUVFkGidt/images/formbg.jpeg");
  padding: 20px;
  max-width: 600px;
  margin: 20px auto;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-bottom: 25px;
  text-align: center;
  font-family: Arial;
}

#order_form h2 {
  margin: 15px 0 0 0;
  padding: 0px;
  line-height: 32px;
  border: none;
}

#order_form span {
  display: inline-block;
}

#order_form div {
  background: transparent !important;
}

#order_form .order_form_pole {
  padding: 5px;
  margin: 0px;
}

#order_form label {
  width: 230px;
  margin: 0 auto;
  display: block;
  padding: 5px 0 5px 0;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

#order_form input,
#order_form select {
  font-size: 21px;
  padding: 15px;
  border-radius: 3px;
  border: 2px solid #e9d7dc;
  max-width: 300px;
  width: 100%;
  background: #fff;
}

#order_form button {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px 0 rgb(129 150 160 / 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;
  text-transform: uppercase;
}

#order_form .price {
  color: red;
  font-weight: 700;
  font-size: 16px !important;
}

.avatar {
  width: 70px;
  height: 70px; margin-right:5px;
}

#order_form select::-ms-expand {
  display: none;
}
#order_form select {
    -webkit-appearance: none;
    appearance: none;
    background: url("//viposidn.com/content/9tpVlcCUVFkGidt/images/customselect.png") center right 15px no-repeat, #ffffff;
}



.wrap-s{ overflow:hidden; min-width:320px}

.header{position:relative;top:0;left:0;width:100%;padding:0;background-color:rgba(1,3,10,.68);-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.2),0 0 0 1px rgba(0,0,0,.05);box-shadow:0 2px 4px 0 rgba(0,0,0,.2),0 0 0 1px rgba(0,0,0,.05);z-index:100;box-sizing:border-box}
.header .container{position:relative;min-height:60px;display:flex;align-items:center;justify-content:center;max-width:800px;margin:0 auto;padding:0 15px}
.header .container{position:relative}
.search-s{position:absolute;top:50%;left:15px;margin:-15px 0 0 0}
.search-s a{display:block;width:30px;height:30px;background:url(ico-s.svg) no-repeat;background-size:cover}
.menu-s{position:absolute;top:50%;right:15px;margin:-16px 0 0 0}
.menu-s a{display:block;width:30px;height:30px;background:url(menu.svg) no-repeat}
.logo img{display:block;margin:0 auto;height:40px}

body { font-size:20px}


footer {
    padding: 1em 0;
    background-color: #59c12d;
    text-align: center;
}

footer{padding:1em 0;background-color:#59c12d;text-align:center; margin-left:-10px; margin-right:-10px; margin-top:20px}
.copy-pilsen{display:flex;align-items:center;justify-content:center;color:#fff}
.copy-pilsen img{display:block;margin-left:10px;height:28px}
.copy-pilsen p{margin:0;font-size:14px;padding:0}


.comments__title{margin-bottom:.9em;font-size:1.5em;font-weight:700;text-align:center}
.order__form{max-width:500px;margin:0 auto}
.comments__form-row{margin-bottom:1.1em}
.comments__form-row label{display:block;margin-bottom:10px;font-weight:400}
.comments__form-row input,.comments__form-row textarea{display:block;padding:10px;border:none;border-bottom:1px solid #838383;border-radius:5px;text-align:center;width:100%;outline:0;font-size:16px}
.comments__form-row textarea{resize:none;height:80px}
.comments__form{max-width:500px;margin:40px auto}
.calc{max-width:500px;margin:0 auto}
.comments__form-row input[type=file]{text-align:left}
.line { height:1px; margin-bottom:20px; max-width:940px; margin:0 auto; border-top:1px solid #999}
.quantity { padding:5px 10px}
.btn { text-decoration: none; color:#fff; font-weight:700}