@charset "UTF-8";

/* BEGIN FONTS*/

@font-face {
  font-family: "Lato";
  src: url(/fonts/Lato/Lato-Regular.ttf);
}
@font-face {
  font-family: "LatoExtraBold";
  src: url(/fonts/Lato/Lato-ExtraBold.ttf);
}
/* END FONTS*/

/* BEGIN NORMALIZE*/

body a {
  text-decoration: none;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  margin: 0;
  height: 100%;
}

/* Sections
     ========================================================================== */

/**
   * Remove the margin in all browsers.
   */

body {
  margin: 0;
  height: 100%;
}

/**
   * Render the `main` element consistently in IE.
   */

main {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
     ========================================================================== */

/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

a {
  background-color: transparent;
}

b,
strong {
  font-weight: bolder;
}

/* Embedded content
     ========================================================================== */

/**
   * Remove the border on images inside links in IE 10.
   */

img {
  border-style: none;
}

/* Forms
     ========================================================================== */

/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */


/* Interactive
     ========================================================================== */


/* Misc
     ========================================================================== */


/* END NORMALIZE*/

/* BEGIN BASE*/

body {
  position: relative;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 40px;
  height: 100%;
  margin: 0;
}

body.lock {
  overflow: hidden;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.container {
  max-width: 100%;
  margin: 0 auto;
}

a {
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F7F7F7;
}

.underlined {
  text-decoration: underline;
}

.form-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

.fader-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  background-color: rgba(72, 72, 72, 0.4);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popup.open,
.popup.active {
  opacity: 1;
  visibility: visible;
}

.popup.open .popup__content,
.popup.active .popup__content {
  -webkit-transform: perspective(600px) translate(0px, 0px) rotateX(0deg);
          transform: perspective(600px) translate(0px, 0px) rotateX(0deg);
  opacity: 1;
}

.popup__heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 23px;
}

.popup__heading_modal {
  margin-bottom: 13px;
}

.popup__form {
  max-width: 520px;
  max-height: 780px;
  height: auto;
  width: 500px;
  /*background-color: #F4F3F3;*/
  background-color: #FFFFFF;
  border-radius: 25px;
  padding: 21px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  font-size: 16px;
}

.popup__form .popup-btn:last-of-type {
  background-color: #9DD2A5;
}
.popup__form .popup-btn:first-of-type {
  background-color: #49965D;
}
.popup__form .popup-btn:last-of-type:hover {
  background-color: #5a6;
}
.popup__form .popup-btn:first-of-type:hover {
  background-color: #070;
}

.popup__form .form-row .popup-input {
  max-width: 100px;
}

.popup__form .maxwidth {
  max-width: 100%;
  width: 100%;
}

.popup__form .primary-btn_outlined {
  padding: 5px 30px;
}

.popup__form .primary-btn_outlined.selected {
  font-weight: 800;
}

.dialog_form {
  text-align: center;
  width: auto;
}

.dialog_form .dialog_buttons {
  display: inline-flex;
  align-content: stretch;
  align-items: stretch;
  align-self: center;
}

.dialog_form .dialog_button {
  align-self: center;
  margin: 0 20px;
}

.popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.popup__form {
  position: absolute;
  z-index: 999;
}

.no_wrap {
  white-space: nowrap;
}

.col4 {
  width: 25%;
}

.result_title {
  font-weight: bold;
  margin: 5px auto;
}

/* END BASE*/

/* BEGIN HEADER*/

@-webkit-keyframes smoothScroll {
  0% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }

  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes smoothScroll {
  0% {
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }

  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.opros__heading{
  margin-top: 40px;
}

/* END HEADER*/

/* BEGIN FOOTER*/

/* END FOOTER*/

/* BEGIN BROWSER CHECK*/

/* END BROWSER CHECK*/

/* BEGIN BUTTON*/

.btn {
  position: relative;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 12px;
  background: #49965D;
  color: #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  /*font-family: "HelveticaNeue", sans-serif;*/
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  cursor: pointer;
  z-index: 10;
  margin: 3px auto;
  width: 100%;
}

.btn:active,
.btn :focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: none;
}

.btn.fw {
  width: 100%;
}

.btn label {
  cursor: pointer;
  white-space: nowrap;
}

.orange-gradient {
  background: linear-gradient(143deg, #F2520B 0%, #FFA944 100%);
  color: white;
  font-weight: 800;
}

.tabs-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;

  padding: 0;

}

.primary-btn, .popup-btn, .promo-btn {
  background: #49965D;
  color: white;
  font-size: 12px;
  padding: 8px 12px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.popup-btn, .promo-btn {
  font-size: 14px;
  border-radius: 10px;
  margin: 5px 0;
  padding: 16px;
}

.primary-btn:hover, .popup-btn:hover {
  background-color: #070;
}

.primary-btn_outlined {
  background-color: white;
  border-radius: 10px;
  -webkit-box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.05);
  padding: 10px;
  color: #868D94;
  font-size: 12px;
  border: 1px solid transparent;
}

.primary-btn_outlined.selected {
  -webkit-box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.02);
  /*font-family: "Montserrat-Bold", sans-serif;*/
  color: #000000;
  background-color: #ECECEC;
}

.primary-btn_transparent {
  background-color: rgba(34, 163, 34, 0.1);
  color: black;
  font-size: 14px;
}

.primary-btn_transparent:hover {
  background-color: #22A322;
}

.btn > input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.clear-button .cross-circle_svg__icon {
  border-radius: 100%;
  height: 16px;
  outline-offset: 4px;
  transition: outline-offset 150ms;
  width: 16px;
}

.clear-button {
  margin: 0px;
  padding: 0px;
  background: none;
  border: medium;
  font: inherit;
  cursor: pointer;
  position: absolute;
  right: 0px;
  height: 16px;
  width: 16px;
}

/* END BUTTON*/

.link-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* BEGIN MEDIA*/

/* END MEDIA*/

.no-scroll {
  overflow: hidden;
}

.center {
  text-align: center;
}

.has-error {
  border-color: red;
  color: red;
}

.buttons_disabled {
  cursor: default !important;
  background: #AAA9A1 !important;
}

.text_disabled {
  cursor: default !important;
  background: #868D94 !important;
}

.cursor_normal {
  cursor: default !important;
}

.back_lay {
  position:fixed;
  background:rgba(255,255,255,0.4);
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin:auto;
  z-index:99;
  display:none;
}
.lds-ring_wrap {
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width: 80px;
  height: 80px;
  margin:auto;
  z-index:99;
  display:none;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fed;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fed transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.page-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #F7941D;
  height: 100vh;
}

.page-cart__item {
  position: relative;
  display: flex;
  z-index: 10;
  top: 20%;
}

.form-row .block_left {
  position: absolute;
  left: 20%;
  width: 30%;
}

.form-row .title {
  max-width: 90%;
  font-family: "LatoExtraBold", sans-serif;
}

.form-row .buttons {
  margin-top: 10%;
  display: inline-flex;
  max-width: 100%;
}

.form-row .buttons a:first-child {
  margin-right: 10px;
}

.form-row .buttons a:last-child {
  margin-left: 10px;
}

.form-row .buttons a img {
  object-fit: contain;
}

.desktop {
  display: flex;
}
.mobile {
  display: none;
}

@media screen and (max-width: 1380px){
  .form-row .block_left {
    margin-top: -20px;
  }
  .form-row .title {
    font-size: 36px;
  }
}

@media screen and (max-width: 1280px){
  .form-row .block_left {
    margin-top: -30px;
  }
  .form-row .title {
    font-size: 32px;
  }
}

@media screen and (max-width: 1152px){
  .form-row .block_left {
    margin-top: -40px;
  }
  .form-row .title {
    font-size: 28px;
  }
}

@media screen and (max-width: 1024px){
  .form-row .block_left {
    margin-top: -50px;
  }
  .form-row .title {
    font-size: 25px;
  }
}

@media screen and (max-width: 620px){
  .container {
    margin: 0;
    padding: 0;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: flex;
  }
  .page-cart__item {
    top: 23%;
  }
  .form-row {
    margin: unset;
  }

  .form-row .block {
    margin: auto;
    position: absolute;
    width: 100%;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .form-row .block_left {
    margin-top: unset;
  }

  .form-row .title {
    text-align: center;
    font-weight: 800;
    letter-spacing: -2%;
    font-size: 31px;
  }

  .form-row .buttons {
    margin-top: 3%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60%;
  }
  .form-row .buttons a {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .form-row .buttons a:first-child {
    margin-right: 0px;
  }
  
  .form-row .buttons a:last-child {
    margin-left: 0px;
  }
}

@media screen and (max-width: 360px) {
  .page-cart__item {
    top: 22%;
  }
  .form-row .buttons {
    margin-top: 2%;
    width: 50%;
  }
   .form-row .title {
    font-size: 28px;
   }
}