*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: Manrope;
  src: url(../../fonts/Manrope-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Manrope;
  src: url(../../fonts/Manrope-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Manrope;
  src: url(../../fonts/Manrope-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Comfortaa;
  src: url(../../fonts/Comfortaa-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

.popup__wrp .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 35px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  border: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 5px 5px 0
}

.popup__wrp .btn-round {
  border-radius: 82px;
  position: relative;
  z-index: 1;
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s
}

.popup__wrp .btn-round:hover {
  background: #ff9811
}

.popup__wrp .btn-round:hover::after {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px)
}

.popup__wrp .btn-round::before {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  background: #9c6824;
  border-radius: 82px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 203, 17, .5)), to(rgba(255, 203, 17, 0))), #ff9811;
  background: -o-linear-gradient(top, rgba(255, 203, 17, .5) 0, rgba(255, 203, 17, 0) 100%), #ff9811;
  background: linear-gradient(180deg, rgba(255, 203, 17, .5) 0, rgba(255, 203, 17, 0) 100%), #ff9811;
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s
}

.popup__wrp .btn-round::after {
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s;
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  background: #9c6824;
  border-radius: 82px;
  left: 0;
  right: 0;
  bottom: -3px;
  z-index: -2
}

.popup__wrp input:not([type=checkbox]),
.popup__wrp input:not([type=radio]),
.popup__wrp textarea {
  outline: 0;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0
}

.popup__wrp input[type=submit] {
  border: none;
  cursor: pointer
}

.popup__wrp input:not([type=checkbox]),
.popup__wrp input:not([type=radio]),
.popup__wrp select,
.popup__wrp textarea {
  border: 1px solid #a4a4a4;
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s;
  border-radius: 31px;
  width: 100%;
  outline: 0;
  padding: 15px 22px;
  font-size: 16px;
  line-height: 170%;
  color: #000;
  background: #f7f7f7
}

.popup__wrp input:not([type=checkbox])::-webkit-input-placeholder,
.popup__wrp input:not([type=radio])::-webkit-input-placeholder,
.popup__wrp select::-webkit-input-placeholder,
.popup__wrp textarea::-webkit-input-placeholder {
  color: #909090
}

.popup__wrp input:not([type=checkbox])::-moz-placeholder,
.popup__wrp input:not([type=radio])::-moz-placeholder,
.popup__wrp select::-moz-placeholder,
.popup__wrp textarea::-moz-placeholder {
  color: #909090
}

.popup__wrp input:not([type=checkbox]):-ms-input-placeholder,
.popup__wrp input:not([type=radio]):-ms-input-placeholder,
.popup__wrp select:-ms-input-placeholder,
.popup__wrp textarea:-ms-input-placeholder {
  color: #909090
}

.popup__wrp input:not([type=checkbox])::-ms-input-placeholder,
.popup__wrp input:not([type=radio])::-ms-input-placeholder,
.popup__wrp select::-ms-input-placeholder,
.popup__wrp textarea::-ms-input-placeholder {
  color: #909090
}

.popup__wrp input:not([type=checkbox])::placeholder,
.popup__wrp input:not([type=radio])::placeholder,
.popup__wrp select::placeholder,
.popup__wrp textarea::placeholder {
  color: #909090
}

.popup__wrp .input,
.popup__wrp .textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.popup__wrp .input-icon__wrap,
.popup__wrp .textarea-icon__wrap {
  position: relative
}

.popup__wrp .input-icon__wrap .icon,
.popup__wrp .textarea-icon__wrap .icon {
  position: absolute;
  top: 15px;
  left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 20px;
  height: 20px
}

.popup__wrp .input-icon__wrap input,
.popup__wrp .input-icon__wrap textarea,
.popup__wrp .textarea-icon__wrap input,
.popup__wrp .textarea-icon__wrap textarea {
  width: 100%;
  padding: 15px 22px 15px 40px !important
}

.popup__wrp .form__field {
  margin-bottom: 18px
}

.popup__wrp .form__field span.label {
  font-weight: 600;
  margin-bottom: 2px
}

.popup__wrp .form__submit .btn {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}


/*.popup__wrp {
  font-family: Manrope, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s;
  overflow-y: auto;
  overscroll-behavior-y: contain
}*/

.popup__wrp:target {
  opacity: 1;
  pointer-events: all
}

.popup__wrp .popup {
  max-width: 440px;
  position: relative;
  width: 100%;
  background: #fff;
  padding: 35px 35px 45px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: auto;
  border-radius: 8px
}

.popup__wrp .popup-close {
  position: absolute;
  top: 20px;
  right: 20px
}

.popup__wrp .popup .section-h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 36px;
  line-height: 110%
}

.popup__wrp .popup-close a {
  font-size: 48px;
  text-decoration: none;
}

.popup-quiz {
  padding-top: 45px !important;
  max-width: 1000px !important
}

.popup-quiz .popup-content {
  position: relative
}

.popup-quiz .progress-bar__wrap.is-active {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2
}

.popup-quiz .form__fields {
  max-width: 440px;
  margin: 0 auto
}

.popup-quiz__tabs .tab {
  display: none
}

.popup-quiz__tabs .tab.is-active {
  display: block
}

.popup-quiz__tabs .tab-desc {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600
}

.popup-quiz__tabs .tab-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.popup-quiz__tabs .tab-items.images {
  margin: 0 -15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.popup-quiz__tabs .tab-items__item {
  position: relative;
  width: 100%;
  border-radius: 8px;
  padding: 10px;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
  background: #f0f3f4;
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s;
  margin-bottom: 15px
}

.popup-quiz__tabs .tab-items__item:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .25);
  box-shadow: 0 0 10px rgba(0, 0, 0, .25)
}

.popup-quiz__tabs .tab-items__item.image .label-text {
  padding: 20px 10px 5px
}

.popup-quiz__tabs .tab-items__item .check-elem {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  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
}

.popup-quiz__tabs .tab-items__item .label-text {
  display: block;
  padding: 10px 10px 10px 42px;
  z-index: 1;
  position: relative
}

.popup-quiz__tabs .tab-items__item .label-text::before {
  content: "✓";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  margin-right: 10px;
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #e3e3e3;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}

.popup-quiz__tabs .tab-items__item img {
  position: relative;
  z-index: 1;
  width: 158px;
  height: 158px;
  border-radius: 8px
}

.popup-quiz__tabs .tab-items__item .check {
  position: absolute;
  background: #1e9c62;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s
}

.popup-quiz__tabs .tab-items__item input {
  display: none
}

.popup-quiz__tabs .tab-items__item input:checked+.label-text {
  color: #fff
}

.popup-quiz__tabs .tab-items__item input:checked+.label-text::before {
  color: #1e9c62;
  border: 1px solid #1e9c62
}

.popup-quiz__tabs .tab-items__item input:checked~.check {
  opacity: 1
}

.popup-quiz__tabs .tab-items__item.image {
  width: 180px;
  margin: 0 15px 30px;
  text-align: center
}

.popup-quiz__tabs .tab-items__item.image .label-text::before {
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 1px solid #e3e3e3
}

.popup-quiz__nav {
  margin-top: 20px;
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.popup-quiz__nav.is-hidden {
  display: none
}

.popup-quiz__nav .prev {
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px
}

.popup-quiz__nav .prev.is-active {
  opacity: 1;
  pointer-events: all
}

.popup-quiz__nav .next {
  margin: 0 auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.popup-quiz__nav .steps {
  width: 100%;
  margin-top: 20px;
  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;
  color: #9296a5;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%
}

.popup-quiz__nav .steps>* {
  color: #000
}

.popup-quiz__nav .steps-current {
  margin-left: 5px
}

.popup-quiz__nav .steps-all::before {
  display: inline-block;
  content: "из";
  margin: 0 5px
}

@-webkit-keyframes auto-progress {
  0% {
    width: 0%
  }

  100% {
    width: 100%
  }
}

@keyframes auto-progress {
  0% {
    width: 0%
  }

  100% {
    width: 100%
  }
}

.progress-desc {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase
}

.progress-bar__wrap {
  display: none
}

.progress-bar__wrap.is-active {
  display: block
}

.progress-bar {
  background-color: #fff;
  height: 20px;
  margin: 50px auto;
  border-radius: 25px;
  width: 100%
}

.progress-bar-inner {
  display: block;
  height: 20px;
  width: 0%;
  background: #1e9c62;
  border-radius: 25px;
  position: relative;
  background-size: 30px 30px;
  background-image: -o-linear-gradient(315deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
}

.progress-bar-inner.animated {
  -webkit-animation: 5s linear infinite auto-progress;
  animation: 5s linear infinite auto-progress
}

.badge {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7da3a1;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  padding: 10px 20px;
  width: 100%;
  font-size: 14px;
  line-height: 20px
}

.badge-icon {
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 20px
}

.badge-icon svg {
  fill: #fff
}

@media screen and (min-width: 830px) {
    .popup-quiz__nav .prev, .popup-quiz__nav .steps {
        width: auto;
        -ms-flex-preferred-size: 200px;
        flex-basis: 200px;
        margin: 0
    }

    .popup-quiz__nav .steps {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}
