@charset "UTF-8";
@import "./fontAwesome.css"; /*** 

====================================================================
	Reset
====================================================================

***/
html {
  scroll-behavior: smooth;
}

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*** 
  ====================================================================
      Global Settings
  ====================================================================
   ***/
body {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: #000;
  line-height: 1.7em;
  font-weight: 400;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
}

.auto__container {
  position: relative;
  max-width: 1082px;
  margin: 0 auto;
  padding: 0 30px;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  color: #3c3c3b;
}
h2.mb-30 {
  margin-bottom: 30px;
}

h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
  color: #3c3c3b;
  font-family: "PT Sans", sans-serif;
}
h3.sm {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
}
h3.uniq {
  color: #70c34a;
}

h4 {
  font-family: "Montserrat";
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}
h4.uniq {
  color: #70c34a;
}

h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  text-transform: uppercase;
  font-family: "PT Sans", sans-serif;
  color: #3c3c3b;
}
h6.med {
  font-size: 14px;
  line-height: 18px;
}
h6.sm {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  text-transform: uppercase;
  color: #3c3c3b;
}

p.big {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  font-family: "PT Sans", sans-serif;
  text-transform: uppercase;
  color: #3c3c3b;
}
p.xxsm {
  font-weight: 400;
  font-size: 8px;
  line-height: 10px;
  text-align: center;
  text-transform: uppercase;
  color: #b1b1b1;
}

.button {
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.button.light {
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: #3c3c3b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 22px;
}
.button.light svg {
  width: 22px;
  margin-right: 24px;
  height: 20px;
}
.button.primary {
  background: #70c34a;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 22px;
}
.button.primary svg {
  width: 22px;
  height: 20px;
  margin-left: 24px;
}
.button.primary:disabled {
  background: #b1b1b1;
}
.button.bordered {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 3px solid #70c34a;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  line-height: 21px;
  background: #fff;
  text-align: center;
  text-transform: uppercase;
  color: #70c34a;
  padding: 15px 40px;
}
.button:hover {
  opacity: 0.8;
}
.button.light {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid transparent;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  line-height: 21px;
  background: #fff;
  text-align: center;
  text-transform: uppercase;
  color: #3c3c3b;
  padding: 15px 40px;
}

.error-stripe {
  color: #f44336;
}

.input {
  position: relative;
  margin-bottom: 30px;
}
.input.center input {
  text-align: center;
}
.input__row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -10px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.input__row2:last-child {
  margin-bottom: 0;
}
.input__row2 .input {
  margin: 10px !important;
  width: calc(50% - 20px);
}
.input__row2 .input.w100 {
  width: calc(100% - 20px);
}
.input__row2 .autocomplete {
  width: calc(100% - 20px);
  margin: 10px !important;
}
.input__row2 .autocomplete__input::before {
  display: none;
}
.input__row2 .custom-select {
  margin: 10px !important;
  width: calc(50% - 20px);
}
.input__row3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -7px 20px -7px;
}
.input__row3 .input {
  margin: 0 7px;
  width: calc(35% - 14px);
}
.input__row3 .input.w30 {
  margin: 0 7px;
  width: calc(30% - 14px);
}
.input__row3 .autocomplete {
  margin: 0 7px;
  width: calc(35% - 14px);
}
.input__row3 .custom-select {
  margin: 0 7px;
  width: calc(30% - 14px);
}
.input__row4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -7px 15px -7px;
}
.input__row4 .input {
  margin: 0 7px;
  width: calc(50% - 14px);
}
.input__row4 .custom-select {
  margin: 0 7px;
  width: calc(50% - 14px);
}
.input input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 10px 20px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: #3c3c3b;
}
.input input:focus + .input__label {
  display: none;
}
.input input[type=number] {
  -moz-appearance: textfield;
}
.input input::-webkit-outer-spin-button, .input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input__label {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: #8b8b8b;
  position: absolute;
  left: 20px;
  top: 10px;
  pointer-events: none;
}
.input__label.remove {
  display: none;
}
.input__label.required::after {
  position: relative;
  top: -3px;
  left: 1px;
  display: inline-block;
  content: "*";
  color: #70c34a;
}
.input.search input {
  padding-right: 40px;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
.input.search span {
  width: 15px;
  height: 15px;
  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;
  background: transparent;
  top: 50%;
  right: 20px;
  position: absolute;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.input.search span svg {
  width: 100%;
  height: 100%;
}
.input.card input {
  padding-right: 40px;
}
.input.card span {
  width: 19px;
  height: 15px;
  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;
  background: transparent;
  top: 50%;
  right: 20px;
  position: absolute;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  color: #b1b1b1;
}
.input.card span svg {
  width: 100%;
  height: 100%;
}
.input.quest {
  position: relative;
}
.input.quest input {
  padding-right: 35px;
}
.input.quest .tool {
  top: 50%;
  right: 12px;
  position: absolute;
  z-index: 3;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  cursor: pointer;
}
.input.quest .tool__btn {
  width: 15px;
  height: 15px;
  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;
  background: transparent;
  position: relative;
}
.input.quest .tool__btn svg {
  width: 100%;
  height: 100%;
  color: #b1b1b1;
}
.input.quest .tool__content {
  padding: 4px;
  background: rgba(60, 60, 59, 0.75);
  position: absolute;
  left: 50%;
  bottom: calc(80% + 2px);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  opacity: 0;
  width: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.input.quest .tool__content p {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  color: #ffffff;
}
.input.quest .tool:hover .tool__btn svg {
  color: #70c34a;
}
.input.quest .tool:hover .tool__content {
  opacity: 1;
  bottom: calc(100% + 2px);
}

.check {
  position: relative;
  min-height: 30px;
}
.check input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.check input:checked + label::after {
  opacity: 1;
}
.check label {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: #3c3c3b;
  padding-left: 50px;
  position: relative;
  display: block;
}
.check label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
.check label::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 24px;
  border-bottom: 4px solid #70c34a;
  border-right: 4px solid #70c34a;
  border-radius: 1px;
  top: calc(50% - 4px);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  left: 12px;
  opacity: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.check.start {
  margin-bottom: 20px;
}
.check.start label {
  text-transform: inherit;
}
.check.start label::before {
  -webkit-transform: unset;
  transform: unset;
  top: 0;
}
.check.start label:after {
  top: -2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.radio {
  position: relative;
}
.radio input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.radio input:checked + label {
  background: #70c34a;
  color: #fff;
}
.radio label {
  display: block;
  text-align: center;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  text-transform: uppercase;
  color: #3c3c3b;
  padding: 40px 24px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}

main {
  overflow: hidden;
  padding-top: 123.66px;
}

.radioC {
  position: relative;
  margin-bottom: 16px;
}
.radioC:last-child {
  margin-bottom: 0;
}
.radioC input {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  cursor: pointer;
  opacity: 0;
  z-index: 1;
}
.radioC input:checked + label:after {
  opacity: 1;
}
.radioC label {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase;
  color: #3c3c3b;
  padding-left: 52px;
  display: block;
}
.radioC label::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 30px;
  height: 30px;
  content: "";
  border-radius: 50%;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  display: flerx;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.radioC label::after {
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 7px;
  width: 16px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  content: "";
  background: #70c34a;
  opacity: 0;
}

.footer {
  background-color: #f0f0f0;
  color: #6d6d6d;
  padding: 100px 0 50px 0;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer__inner-col {
  width: calc(25% - 15px);
  max-width: 230px;
}
.footer__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer__image img {
  width: 100%;
}
.footer__text {
  margin-bottom: 40px;
}
.footer__text:last-child {
  margin-bottom: 0;
}
.footer__copy {
  padding: 60px 0 0 0;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: #fff;
}
.header .auto__container {
  max-width: 1260px;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation-name: sticky;
          animation-name: sticky;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.2509803922);
}
.header__inner {
  padding: 18px 0;
  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;
}
.header__inner-logo {
  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;
  width: 105px;
}
.header__inner-logo img {
  width: 100%;
}
.header__inner > .button {
  display: none;
}

@-webkit-keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.nav__outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__inner li {
  margin-right: 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;
}
.nav__inner li:last-of-type {
  margin-right: 0;
}
.nav__inner li a {
  font-size: 15px;
  line-height: 19px;
  font-weight: 500;
  color: #3c3c3b;
  padding: 12px 10px;
  text-transform: uppercase;
}
.nav__inner li a:hover {
  color: #70c34a;
  opacity: 1;
}
.nav__inner .button {
  padding: 12px 22px;
  margin-left: 8px;
  color: #3c3c3b;
}
.nav__inner .button:last-child {
  border-color: #6199bf;
  margin-left: 15px;
}
.nav__inner .dropdown {
  position: relative;
}
.nav__inner .dropdown:hover .dropdown__inner {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.nav__inner .dropdown:hover > a {
  color: #70c34a;
}
.nav__inner .dropdown:hover > a span::before {
  -webkit-transform: translateY(-30%) rotate(-45deg);
          transform: translateY(-30%) rotate(-45deg);
  border-color: #70c34a;
}
.nav__inner .dropdown a {
  position: relative;
  padding-right: 30px;
}
.nav__inner .dropdown a span::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #3c3c3b;
  border-right: 2px solid #3c3c3b;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.nav__inner .dropdown__inner {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  padding: 12px 8px;
  background-color: #141d21;
  border-top: 3px solid #70c34a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateY(40%);
          transform: translateY(40%);
  border-radius: 0 0 8px 8px;
}
.nav__inner .dropdown__inner a {
  padding: 10px 15px;
  letter-spacing: -0.009em;
  color: #e9e9eb;
  white-space: nowrap;
}
.nav__inner .dropdown__inner a::before {
  display: none;
}
.nav__inner .dropdown__inner a:hover {
  color: #70c34a;
  opacity: 1;
}
.nav__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.burger {
  display: none;
}

.custom-select select {
  display: none;
}

.custom-select {
  position: relative;
}
.custom-select.required .select-selected::after {
  content: " *";
  color: #70c34a;
}

.select-selected {
  background-color: #fff;
}

.select-selected:before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
  right: 10px;
  width: 10px;
  background: #d9d9d9;
  height: 6px;
  z-index: 4;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}

.select-selected.select-arrow-active:before {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.select-selected.select-arrow-active {
  border-bottom: none;
  border: 4px 4px 0 0;
}

.select-selected {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 10px 20px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: #3c3c3b;
}
.select-selected span {
  color: #70c34a;
}

.select-items div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 10px 20px;
  background: #ffffff;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: #8b8b8b;
}

.select-items {
  position: absolute;
  background-color: #ffffff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  -webkit-animation-name: select;
  animation-name: select;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: #f2f3f5;
}

.select-items::-webkit-scrollbar {
  width: 10px;
}

.select-items::-webkit-scrollbar-track {
  background: #ededed;
  border-radius: 10px;
}

.select-items::-webkit-scrollbar-thumb {
  background: #aeaeae;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

/*!
 * 
 * ../css/litepicker.css
 * Litepicker v2.0.12 (https://github.com/wakirin/Litepicker)
 * Package: litepicker (https://www.npmjs.com/package/litepicker)
 * License: MIT (https://github.com/wakirin/Litepicker/blob/master/LICENCE.md)
 * Copyright 2019-2021 Rinat G.
 *     
 * Hash: 2f11f1f0300ea13b17b5
 * 
 */
:root {
  --litepicker-container-months-color-bg: #fff;
  --litepicker-container-months-box-shadow-color: #ddd;
  --litepicker-footer-color-bg: #fafafa;
  --litepicker-footer-box-shadow-color: #ddd;
  --litepicker-tooltip-color-bg: #fff;
  --litepicker-month-header-color: #333;
  --litepicker-button-prev-month-color: #9e9e9e;
  --litepicker-button-next-month-color: #9e9e9e;
  --litepicker-button-prev-month-color-hover: #70c34a;
  --litepicker-button-next-month-color-hover: #70c34a;
  --litepicker-month-width: calc(var(--litepicker-day-width) * 7);
  --litepicker-month-weekday-color: #9e9e9e;
  --litepicker-month-week-number-color: #9e9e9e;
  --litepicker-day-width: 38px;
  --litepicker-day-color: #333;
  --litepicker-day-color-hover: #70c34a;
  --litepicker-is-today-color: #f44336;
  --litepicker-is-in-range-color: #bbdefb;
  --litepicker-is-locked-color: #9e9e9e;
  --litepicker-is-start-color: #fff;
  --litepicker-is-start-color-bg: #70c34a;
  --litepicker-is-end-color: #fff;
  --litepicker-is-end-color-bg: #70c34a;
  --litepicker-button-cancel-color: #fff;
  --litepicker-button-cancel-color-bg: #9e9e9e;
  --litepicker-button-apply-color: #fff;
  --litepicker-button-apply-color-bg: #70c34a;
  --litepicker-button-reset-color: #909090;
  --litepicker-button-reset-color-hover: #70c34a;
  --litepicker-highlighted-day-color: #333;
  --litepicker-highlighted-day-color-bg: #ffeb3b;
}

.show-week-numbers {
  --litepicker-month-width: calc(var(--litepicker-day-width) * 8);
}

.litepicker {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8em;
  display: none;
}

.litepicker button {
  border: none;
  background: none;
}

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

.litepicker .container__months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: var(--litepicker-container-months-color-bg);
  border-radius: 5px;
  -webkit-box-shadow: 0 0 5px var(--litepicker-container-months-box-shadow-color);
  box-shadow: 0 0 5px var(--litepicker-container-months-box-shadow-color);
  width: calc(var(--litepicker-month-width) + 10px);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.litepicker .container__months.columns-2 {
  width: calc(var(--litepicker-month-width) * 2 + 20px);
}

.litepicker .container__months.columns-3 {
  width: calc(var(--litepicker-month-width) * 3 + 30px);
}

.litepicker .container__months.columns-4 {
  width: calc(var(--litepicker-month-width) * 4 + 40px);
}

.litepicker .container__months.split-view .month-item-header .button-previous-month,
.litepicker .container__months.split-view .month-item-header .button-next-month {
  visibility: visible;
}

.litepicker .container__months .month-item {
  padding: 5px;
  width: var(--litepicker-month-width);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.litepicker .container__months .month-item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 500;
  padding: 10px 5px;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--litepicker-month-header-color);
}

.litepicker .container__months .month-item-header div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.litepicker .container__months .month-item-header div > .month-item-name {
  margin-right: 5px;
}

.litepicker .container__months .month-item-header div > .month-item-year {
  padding: 0;
}

.litepicker .container__months .month-item-header .reset-button {
  color: var(--litepicker-button-reset-color);
}

.litepicker .container__months .month-item-header .reset-button > svg {
  fill: var(--litepicker-button-reset-color);
}

.litepicker .container__months .month-item-header .reset-button * {
  pointer-events: none;
}

.litepicker .container__months .month-item-header .reset-button:hover {
  color: var(--litepicker-button-reset-color-hover);
}

.litepicker .container__months .month-item-header .reset-button:hover > svg {
  fill: var(--litepicker-button-reset-color-hover);
}

.litepicker .container__months .month-item-header .button-previous-month,
.litepicker .container__months .month-item-header .button-next-month {
  visibility: hidden;
  text-decoration: none;
  padding: 3px 5px;
  border-radius: 3px;
  -webkit-transition: color 0.3s, border 0.3s;
  transition: color 0.3s, border 0.3s;
  cursor: default;
}

.litepicker .container__months .month-item-header .button-previous-month *,
.litepicker .container__months .month-item-header .button-next-month * {
  pointer-events: none;
}

.litepicker .container__months .month-item-header .button-previous-month {
  color: var(--litepicker-button-prev-month-color);
}

.litepicker .container__months .month-item-header .button-previous-month > svg,
.litepicker .container__months .month-item-header .button-previous-month > img {
  fill: var(--litepicker-button-prev-month-color);
}

.litepicker .container__months .month-item-header .button-previous-month:hover {
  color: var(--litepicker-button-prev-month-color-hover);
}

.litepicker .container__months .month-item-header .button-previous-month:hover > svg {
  fill: var(--litepicker-button-prev-month-color-hover);
}

.litepicker .container__months .month-item-header .button-next-month {
  color: var(--litepicker-button-next-month-color);
}

.litepicker .container__months .month-item-header .button-next-month > svg,
.litepicker .container__months .month-item-header .button-next-month > img {
  fill: var(--litepicker-button-next-month-color);
}

.litepicker .container__months .month-item-header .button-next-month:hover {
  color: var(--litepicker-button-next-month-color-hover);
}

.litepicker .container__months .month-item-header .button-next-month:hover > svg {
  fill: var(--litepicker-button-next-month-color-hover);
}

.litepicker .container__months .month-item-weekdays-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-column-align: center;
      justify-self: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: var(--litepicker-month-weekday-color);
}

.litepicker .container__months .month-item-weekdays-row > div {
  padding: 5px 0;
  font-size: 85%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: var(--litepicker-day-width);
  text-align: center;
}

.litepicker .container__months .month-item:first-child .button-previous-month {
  visibility: visible;
}

.litepicker .container__months .month-item:last-child .button-next-month {
  visibility: visible;
}

.litepicker .container__months .month-item.no-previous-month .button-previous-month {
  visibility: hidden;
}

.litepicker .container__months .month-item.no-next-month .button-next-month {
  visibility: hidden;
}

.litepicker .container__days {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-grid-column-align: center;
      justify-self: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: center;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.litepicker .container__days > div,
.litepicker .container__days > a {
  padding: 5px 0;
  width: var(--litepicker-day-width);
}

.litepicker .container__days .day-item {
  color: var(--litepicker-day-color);
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
  -webkit-transition: color 0.3s, border 0.3s;
  transition: color 0.3s, border 0.3s;
  cursor: default;
}

.litepicker .container__days .day-item:hover {
  color: var(--litepicker-day-color-hover);
  -webkit-box-shadow: inset 0 0 0 1px var(--litepicker-day-color-hover);
  box-shadow: inset 0 0 0 1px var(--litepicker-day-color-hover);
}

.litepicker .container__days .day-item.is-today {
  color: var(--litepicker-is-today-color);
}

.litepicker .container__days .day-item.is-locked {
  color: var(--litepicker-is-locked-color);
}

.litepicker .container__days .day-item.is-locked:hover {
  color: var(--litepicker-is-locked-color);
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: default;
}

.litepicker .container__days .day-item.is-in-range {
  background-color: var(--litepicker-is-in-range-color);
  border-radius: 0;
}

.litepicker .container__days .day-item.is-start-date {
  color: var(--litepicker-is-start-color);
  background-color: var(--litepicker-is-start-color-bg);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.litepicker .container__days .day-item.is-start-date.is-flipped {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.litepicker .container__days .day-item.is-end-date {
  color: var(--litepicker-is-end-color);
  background-color: var(--litepicker-is-end-color-bg);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.litepicker .container__days .day-item.is-end-date.is-flipped {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.litepicker .container__days .day-item.is-start-date.is-end-date {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.litepicker .container__days .day-item.is-highlighted {
  color: var(--litepicker-highlighted-day-color);
  background-color: var(--litepicker-highlighted-day-color-bg);
}

.litepicker .container__days .week-number {
  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;
  color: var(--litepicker-month-week-number-color);
  font-size: 85%;
}

.litepicker .container__footer {
  text-align: right;
  padding: 10px 5px;
  margin: 0 5px;
  background-color: var(--litepicker-footer-color-bg);
  -webkit-box-shadow: inset 0px 3px 3px 0px var(--litepicker-footer-box-shadow-color);
  box-shadow: inset 0px 3px 3px 0px var(--litepicker-footer-box-shadow-color);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.litepicker .container__footer .preview-date-range {
  margin-right: 10px;
  font-size: 90%;
}

.litepicker .container__footer .button-cancel {
  background-color: var(--litepicker-button-cancel-color-bg);
  color: var(--litepicker-button-cancel-color);
  border: 0;
  padding: 3px 7px 4px;
  border-radius: 3px;
}

.litepicker .container__footer .button-cancel * {
  pointer-events: none;
}

.litepicker .container__footer .button-apply {
  background-color: var(--litepicker-button-apply-color-bg);
  color: var(--litepicker-button-apply-color);
  border: 0;
  padding: 3px 7px 4px;
  border-radius: 3px;
  margin-left: 10px;
  margin-right: 10px;
}

.litepicker .container__footer .button-apply:disabled {
  opacity: 0.7;
}

.litepicker .container__footer .button-apply * {
  pointer-events: none;
}

.litepicker .container__tooltip {
  position: absolute;
  margin-top: -4px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: var(--litepicker-tooltip-color-bg);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  font-size: 11px;
  pointer-events: none;
  visibility: hidden;
}

.litepicker .container__tooltip:before {
  position: absolute;
  bottom: -5px;
  left: calc(50% - 5px);
  border-top: 5px solid rgba(0, 0, 0, 0.12);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: "";
}

.litepicker .container__tooltip:after {
  position: absolute;
  bottom: -4px;
  left: calc(50% - 4px);
  border-top: 4px solid var(--litepicker-tooltip-color-bg);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}

.basket {
  position: relative;
}
.basket__btn {
  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;
  width: 40px;
  position: relative;
  height: 40px;
  cursor: pointer;
  margin-left: 24px;
}
.basket__btn img {
  width: 100%;
}
.basket__btn span {
  width: 20px;
  height: 20px;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  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;
  border-radius: 50%;
  background: #70c34a;
  bottom: -5px;
  left: -5px;
  position: absolute;
}
.basket__dropdown {
  position: absolute;
  top: -15px;
  right: 0;
  width: 345px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  padding: 0 10px 16px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
  -webkit-animation-name: basket;
          animation-name: basket;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}
.basket__dropdown .button {
  width: calc(100% - 30px);
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center !important;
  display: block;
  margin: 0 15px !important;
}
.basketHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
  padding: 10px 16px;
  margin-bottom: 10px;
}
.basketHeader .basket__btn {
  width: 32px;
  height: 32px;
  margin-left: 0;
}
.basketItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
.basketItems {
  max-height: 200px;
  overflow: auto;
}
.basketItem__th {
  width: 50%;
}
.basketItem__th:last-child {
  width: 40%;
}
.basketItem__th:last-child h6 {
  text-align: right;
  padding-right: 24px;
}
.basketItem__th h6 {
  text-align: left;
}
.basketItem__col {
  width: 60%;
}
.basketItem__col p {
  text-transform: uppercase;
}
.basketItem__col:last-child {
  width: 40%;
}
.basketItem__price {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.basketItem__remove {
  width: 16px;
  height: 16px;
  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;
  background: transparent;
  cursor: pointer;
  margin-left: 8px;
}
.basketItem__remove img {
  width: 100%;
}
.basketTotal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  border-top: 1px solid #d9d9d9;
}
.basketTotal h6 {
  width: 40%;
  text-align: left;
}
.basketTotal__info {
  text-align: left;
  width: 60%;
}
.basketTotal__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.basket.active .basket__dropdown {
  display: block;
}

.autocomplete {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}
.autocomplete.active {
  z-index: 10;
}
.autocomplete.active .autocomplete__options {
  display: block;
  z-index: 10;
}
.autocomplete__input {
  position: relative;
}
.autocomplete__input::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
  right: 10px;
  width: 10px;
  background: #d9d9d9;
  height: 6px;
  z-index: 4;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.autocomplete__input input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 10px 20px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: #3c3c3b;
}
.autocomplete__input.search input {
  padding-right: 40px;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
.autocomplete__input.search span {
  width: 15px;
  height: 15px;
  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;
  background: transparent;
  top: 50%;
  right: 20px;
  position: absolute;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.autocomplete__input.search span svg {
  width: 100%;
  height: 100%;
}
.autocomplete__options {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  background: #fff;
  display: none;
}
.autocomplete__options h6 {
  color: rgba(60, 60, 59, 0.5);
  text-align: left;
  padding: 10px 20px;
}
.autocomplete ul {
  display: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  max-height: 200px;
  overflow-y: auto;
}
.autocomplete ul.has-suggestions {
  display: block;
}
.autocomplete ul li {
  padding: 10px 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
  color: #3c3c3b;
}
.autocomplete ul li:hover {
  background: rgba(112, 195, 74, 0.4);
}

.amountC {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
.amountC__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(50% - 10px);
}
.amountC__radio {
  width: calc(33.3% - 7px);
  position: relative;
}
.amountC__radio input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.amountC__radio input:checked + label {
  background: #70c34a;
  color: #fff;
}
.amountC__radio label {
  padding: 9.5px;
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  font-family: "PT Sans", sans-serif;
  line-height: 21px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  color: #8b8b8b;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
.amountC__input {
  width: calc(50% - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 9.5px 20px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.amountC__input label {
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: #8b8b8b;
}
.amountC__input-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: baseline;
      align-content: baseline;
}
.amountC__input-row span {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 4px;
}
.amountC__input-row input {
  width: 50px;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: #3c3c3b;
  padding: 0;
  border-bottom: 2px solid #8b8b8b;
}
.amountC__input-row input::-webkit-input-placeholder {
  color: #8b8b8b;
  opacity: 1;
}
.amountC__input-row input::-moz-placeholder {
  color: #8b8b8b;
  opacity: 1;
}
.amountC__input-row input:-ms-input-placeholder {
  color: #8b8b8b;
  opacity: 1;
}
.amountC__input-row input::-ms-input-placeholder {
  color: #8b8b8b;
  opacity: 1;
}
.amountC__input-row input::placeholder {
  color: #8b8b8b;
  opacity: 1;
}
.amountC__input.active {
  border-bottom: 3px solid #70c34a;
}
.amountC__added {
  padding: 9.5px 20px;
  background: rgba(112, 195, 74, 0.25);
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #3c3c3b;
}

.errorM {
  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;
  margin-top: 10px;
}
.errorM img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  min-width: 22px;
}
.errorM p {
  text-transform: uppercase;
  font-family: "PT Sans", sans-serif;
}

.addedToBasket {
  display: none;
}
.addedToBasket.active {
  display: block;
}

@-webkit-keyframes basket {
  0% {
    margin-top: 30px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes basket {
  0% {
    margin-top: 30px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(49, 49, 49, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 100;
  display: none;
  padding: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: auto;
}
.modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal__inner {
  margin: auto;
  width: 100%;
  max-width: 980px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px;
}
.modal__inner-content {
  max-width: 760px;
  margin: 0 auto;
}
.modal__inner-content h2 {
  margin-bottom: 20px;
}
.modal__inner-content h3.sm {
  max-width: 682px;
  margin: 0 auto 20px auto;
}
.modal__inner-content .button {
  width: 100%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  max-width: 204px;
}
.modal__inner-content p.big {
  padding-left: 52px;
  margin-bottom: 20px;
}
.modal__inner-content h6 {
  text-align: left;
}
.modal__inner-content h6.uniq {
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
}
.modal__inner-content h6.uniq span {
  font-weight: 400;
  font-size: 10px;
  font-style: italic;
  line-height: 13px;
  text-transform: uppercase;
  color: #70c34a;
  left: 0;
  position: absolute;
  bottom: 0;
}
.modal__inner-content .check {
  margin-bottom: 10px;
}
.modal__inner-content .check:last-child {
  margin-bottom: 0;
}
.modal__inner-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 360px;
  margin: 0 auto;
}
.modal__inner-btns .button {
  width: calc(50% - 10px);
  padding: 15px;
  margin: 0;
}
.modal__inner-btns .button:first-child {
  padding: 12px;
}
.modal__image {
  width: 183px;
  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;
  margin: 0 auto 20px auto;
}
.modal__table {
  max-width: 360px;
  margin: 0 auto 20px auto;
}
.modal__table p {
  color: #3c3c3b;
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: inherit;
}
.modal__table p strong {
  font-weight: 700;
  display: block;
}
.modal__table h6 {
  color: #3c3c3b;
  font-family: "PT Sans", sans-serif;
  text-transform: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.modal__table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 8px;
}
.modal__table-row h6 {
  font-weight: 400;
  width: 118px;
  margin-right: 12px;
}
.modal__table-row p {
  width: calc(100% - 130px);
}
.modal__table span.space {
  display: block;
  height: 20px;
}
.modal .guar__text {
  max-width: 542px;
  margin: 0 auto;
}
.modal .guar__text p {
  color: #3c3c3b;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}
.modal h4 {
  margin-bottom: 20px;
  text-align: center;
}

.steps {
  padding-top: 30px 0;
}
.steps__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 75px;
}
.steps__inner {
  padding: 0 0 40px 0;
}
.stepsItem {
  width: calc(16.6% - 15px);
  max-width: 60px;
  position: relative;
  text-align: center;
  pointer-events: none;
}
.stepsItem::before {
  position: absolute;
  top: 50%;
  right: 100%;
  height: 4px;
  background: #b1b1b1;
  content: "";
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  width: 150px;
}
.stepsItem:first-child::before {
  display: none;
}
.stepsItem.passedIcon .stepsItem__icon {
  background: rgba(112, 195, 74, 0.5);
}
.stepsItem.passedIcon h6.sm {
  color: rgba(112, 195, 74, 0.5);
}
.stepsItem.passedIcon::before {
  background: rgba(112, 195, 74, 0.5);
}
.stepsItem.activeIcon .stepsItem__icon {
  background: #70c34a;
}
.stepsItem.activeIcon h6.sm {
  color: #70c34a;
}
.stepsItem.activeIcon::before {
  background: #70c34a;
}
.stepsItem__icon {
  width: 60px;
  margin: 0 auto;
  height: 60px;
  border-radius: 50%;
  background: #b1b1b1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.stepsItem__icon.uniq img {
  width: 60px;
}
.stepsItem__icon img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.stepsItem h6 {
  position: absolute;
  top: calc(100% + 10px);
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.form {
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.25);
  display: none;
  -webkit-animation: 0.2s linear tabs;
          animation: 0.2s linear tabs;
}
.form__inner {
  padding: 62px 52px;
}
.form__header.mb-30 {
  margin-bottom: 30px;
}
.form__header.center {
  text-align: center;
  max-width: 410px;
  margin: 0 auto;
}
.form__header.center p {
  text-transform: uppercase;
}
.form__header.center p strong {
  display: block;
}
.form__header-image {
  width: 326px;
  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;
  margin: 0 auto 10px auto;
}
.form__header-image img {
  width: 100%;
}
.form__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form.active {
  display: block;
}
.form h2.uniq {
  padding-bottom: 15px;
  margin-bottom: 30px;
  position: relative;
}
.form h2.uniq span {
  font-weight: 400;
  font-size: 10px;
  font-style: italic;
  line-height: 13px;
  text-transform: uppercase;
  color: #70c34a;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: 0;
}
.form h6.uniq {
  padding-bottom: 15px;
  margin-bottom: 5px;
  position: relative;
}
.form h6.uniq span {
  font-weight: 400;
  font-size: 10px;
  font-style: italic;
  line-height: 13px;
  text-transform: uppercase;
  color: #70c34a;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: 0;
}

.payment__total {
  padding: 16px 0;
  border-top: 2px solid #70c34a;
  border-bottom: 2px solid #70c34a;
  margin-bottom: 20px;
}
.payment__total-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.payment--big {
  max-width: 751px;
  margin: 0 auto;
}
.payment--big .input__row2 {
  margin: 0 -10px 10px -10px !important;
}
.payment--big .input__row2 .input {
  width: calc(50% - 20px) !important;
  margin: 10px !important;
}
.payment--big .input__row2 .input.w100 {
  margin: 10px !important;
  width: calc(100% - 20px) !important;
}
.payment--big .input__row2 .autocomplete {
  width: calc(100% - 20px) !important;
  margin: 10px !important;
}
.payment--big .input__row3 {
  margin: 0 -10px 10px -10px !important;
}
.payment--big .input__row3 .custom-select {
  width: calc(33.3% - 20px) !important;
  margin: 10px !important;
}
.payment--big .input__row3 .autocomplete {
  width: calc(35% - 20px) !important;
  margin: 10px !important;
}
.payment--big .input__row3 .input {
  width: calc(33.3% - 20px) !important;
  margin: 10px !important;
}
.payment--big .input__row3 .input.w30 {
  width: calc(30% - 20px) !important;
  margin: 10px !important;
}
.payment--big .input__row3 .input.w35 {
  width: calc(35% - 20px) !important;
  margin: 10px !important;
}
.payment--big .input__row3 .input.w100 {
  margin: 10px !important;
  width: calc(100% - 20px) !important;
}
.payment--sm {
  max-width: 362px;
  margin: 0 auto;
}
.payment__more {
  max-width: 315px;
  margin: 0 auto;
}
.payment .errorM {
  margin-bottom: 40px;
}
.payment .errorM p {
  margin: 0 !important;
}
.payment__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.payment__radios .donation__btn {
  width: calc(50% - 10px);
}
.payment .form__header {
  max-width: 610px;
  margin: 0 auto;
}
.payment .form__header span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  font-weight: 400;
  font-size: 10px;
  line-height: 13px;
  text-transform: uppercase;
  color: #70c34a;
  bottom: 0;
}
.payment .form__header.uniq {
  padding-bottom: 22px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}
.payment .form__header.uniq h2 {
  margin-bottom: 20px;
}
.payment__event {
  display: none;
}
.payment__event.active {
  display: block;
}
.payment__event p {
  text-transform: uppercase;
  font-family: "PT Sans", sans-serif;
  text-align: center;
  margin-bottom: 40px;
}
.payment__event p button {
  background: transparent;
  text-transform: uppercase;
  font-family: "PT Sans", sans-serif;
  color: #70c34a;
}
.payment__quests p.big {
  text-align: center;
  margin-bottom: 20px;
}
.payment__quests p.big a {
  color: #70c34a;
  font-weight: 700;
}
.payment__quests .radioC {
  margin: 0 10px;
}
.payment__quests .radioC__row {
  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;
  margin-bottom: 20px;
}
.payment .input__row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -10px 20px -10px;
}
.payment .input__row2 .input {
  margin: 0 10px !important;
  width: calc(50% - 20px);
}

.payment .entry .Email {
  margin: 0 10px !important;
  width: calc(65% - 20px) !important;
}

.payment .entry .Phone {
  margin: 0 10px !important;
  width: calc(35% - 20px) !important;
}

.applePay__item {
  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;
  margin-bottom: 20px;
}
.applePay__item img {
  width: 80px;
}
.applePay__item h6 {
  margin: 0 10px 0 0 !important;
}
.applePay h6.med {
  margin-bottom: 20px;
}

.confirmation {
  max-width: 928px;
  margin: 0 auto;
}
.confirmation__info {
  padding: 7px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 2px solid #70c34a;
  margin-bottom: 20px;
}
.confirmation__table {
  margin: 0 -10px;
}
.confirmation__table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.confirmation__table-row.thead {
  border-bottom: 2px solid #70c34a;
}
.confirmation__table-row.thead h6 {
  margin: 0 !important;
}
.confirmation__table-item {
  padding: 10px;
  width: 25%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
.confirmation__table-item h6 {
  text-align: inherit;
}
.confirmation__table-item:first-child {
  text-align: left;
}
.confirmation__table-item:last-child {
  text-align: right;
}
.confirmation__total {
  border-top: 2px solid #70c34a;
  padding: 13px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.confirmation__total:last-of-type {
  border-bottom: 2px solid #70c34a;
  margin-bottom: 40px;
}
.confirmation__total-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 240px;
}
.confirmation__total h6 {
  margin: 0 !important;
}
.confirmation--container h6 {
  text-align: center;
}
.confirmation h6 {
  margin-bottom: 16px;
}
.confirmation h3 {
  font-family: "PT Sans", sans-serif;
}
.confirmation .form__header {
  margin-bottom: 16px;
}
.confirmation .form__header h2 {
  margin-bottom: 16px;
}
.confirmation .form__header p strong {
  margin-bottom: 16px;
  display: block;
}

.preferences .form__header {
  text-align: center;
  margin-bottom: 54px;
}
.preferences__how {
  margin-bottom: 54px;
}
.preferences__how-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 640px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  margin: 0 auto;
}
.preferences__how-row .check {
  width: calc(33.3% - 10px);
  margin: 5px;
}
.preferences__how-row .check:nth-child(3) {
  max-width: 120px;
}
.preferences__how-row .check:nth-child(2) {
  max-width: 180px;
}
.preferences__how-row .check:nth-child(5) {
  max-width: 180px;
}
.preferences__how .button {
  padding: 0;
  width: calc(33.3% - 10px);
  margin: 5px;
  font-family: "PT Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  background: none;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  font-size: 16px;
  line-height: 21px;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #70c34a;
  max-width: 120px;
}
.preferences__pre {
  text-align: center;
  margin-bottom: 30px;
}
.preferences__pre p.big {
  color: #3c3c3b;
}

.gift__from {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #70c34a;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 16px;
}
.gift__from span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  text-decoration-line: underline;
  text-transform: uppercase;
}
.gift__from svg {
  width: 94px;
  height: 23px;
  margin: 0 20px;
}
.gift__from-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 34px;
  line-height: 41px;
  text-transform: uppercase;
}
.gift__from-title.bold {
  font-weight: 700;
}
.gift .form__body {
  margin-bottom: 30px;
  max-width: 800px;
  margin: 0 auto 30px auto;
}
.gift .form__body p {
  padding-left: 52px;
  text-transform: uppercase;
}
.gift h6.uniq {
  text-align: left;
  margin-bottom: 12px;
}
.gift h6.uniq span {
  left: 0;
  transform: translate(0, 0);
  -moz-ransform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
.gift .check {
  margin-bottom: 10px;
}
.gift .check:last-child {
  margin-bottom: 0;
}

.donateBlockNext:disabled {
  background: #d9d9d9;
  border: 2px solid #d9d9d9;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  color: #fff;
}

.donation {
  padding: 100px 0 80px 0;
}
.donation--med {
  padding: 0;
  max-width: 660px;
  margin: 0 auto;
}
.donation h2 {
  margin-bottom: 50px;
}
.donation h2.mb30 {
  margin-bottom: 30px;
}
.donation__inner {
  min-height: 320px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-animation: 0.2s linear tabs;
          animation: 0.2s linear tabs;
  margin-bottom: 20px;
}
.donation__selects {
  margin: 0 auto 0 auto;
  max-width: 928px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.donation__selects .radio {
  width: calc(33.3% - 20px);
}
.donation__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
.donation__btns .radio {
  width: calc(25% - 10px);
}
.donation__btns .radio label {
  padding: 9.5px;
}
.donation__btn {
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  text-transform: uppercase;
  color: #3c3c3b;
  width: calc(33.3% - 15px);
  max-width: 166px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  cursor: pointer;
}
.donation__btn.active {
  color: #fff;
  background: #70c34a;
}
.donation__event {
  margin-bottom: 30px;
}
.donation__event .input {
  margin-bottom: 30px;
}
.donation__event .input:last-child {
  margin-bottom: 0;
}
.donation__event .custom-select {
  margin-bottom: 30px;
}
.donation__event .custom-select:last-child {
  margin-bottom: 0;
}
.donation__footer {
  max-width: 427px;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.donation__footer.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.donation__footer .button {
  padding: 10px 20px;
}
.donation__footer .button:disabled {
  background: #d9d9d9;
  border: 2px solid #d9d9d9;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  color: #fff;
}
.donation__methods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 20px auto;
  max-width: 928px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.donation__methods .radio {
  width: calc(50% - 10px);
  max-width: unset;
}
.donation__methods .radio label {
  padding: 9.5px;
}

.qty-button {
  padding: 5px 8px !important;
  font-size: 16px !important;
  border: none;
  cursor: pointer;
}
.qty-column {
  display: flex;
  gap: 4px;
  align-items: center !important;
  margin: 0;
}
.qty-input {
  width: 40px !important;
  max-width: 80px !important;
  /* min-width: 80px; */
  text-align: center;
  margin-left: 4px;
  padding: 8px 0px !important;
}

.summary__table {
  width: 100%;
  overflow-y: auto;
  padding-bottom: 10px;
  border-bottom: 2px solid #70c34a;
  /* Hide scrollbar for IE, Edge and Firefox */
}
.summary__table::-webkit-scrollbar {
  display: none;
}
.summary__table {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.summary__table table {
  width: 100%;
  border-collapse: collapse;
}
.summary__table table th {
  padding: 10px;
  font-weight: 700;
  border-bottom: 2px solid #70c34a;
}
.summary__table table td {
  font-weight: 400;
  padding: 5px 30px;
}
.summary__table table th,
.summary__table table td {
  font-family: "PT Sans", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  text-transform: uppercase;
  color: #3c3c3b;
}
.summary__table table th:first-child,
.summary__table table td:first-child {
  padding: 10px 16px 10px 0;
  text-align: left;
}
.summary__table table th:last-child,
.summary__table table td:last-child {
  padding: 10px 0 10px 16px;
  text-align: right;
}
.summary__tips-row {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.summary__tips-row:last-child {
  margin-bottom: 0;
}
.summary__tips-row .tool {
  cursor: pointer;
  margin-right: 10px;
  position: relative;
}
.summary__tips-row .tool__btn {
  width: 15px;
  height: 15px;
  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;
  background: transparent;
  position: relative;
}
.summary__tips-row .tool__btn svg {
  width: 100%;
  height: 100%;
  color: #b1b1b1;
}
.summary__tips-row .tool__content {
  padding: 4px;
  background: rgba(60, 60, 59, 0.75);
  position: absolute;
  top: 50%;
  right: calc(80% + 2px);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  opacity: 0;
  width: 120px;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.summary__tips-row .tool__content p {
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  color: #ffffff;
}
.summary__tips-row .tool:hover .tool__btn svg {
  color: #70c34a;
}
.summary__tips-row .tool:hover .tool__content {
  opacity: 1;
  right: calc(100% + 2px);
}
.summary__tips-row .input {
  margin: 0;
}
.summary__tips-row .input.tips {
  width: 80px;
}
.summary__tips-row .input.tips input {
  padding: 10px 10px 10px 24px;
}
.summary__tips-row .input.tips span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 10px;
}
.summary__more {
  border-bottom: 2px solid #70c34a;
  padding: 20px 0;
}
.summary__more-col {
  width: calc(50% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.summary__more-col.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.summary__more-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.summary__more .check {
  width: 50% d;
}
.summary__more .check label {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: #3c3c3b;
}
.summary__more .amountC {
  width: 100%;
  margin: 0;
}
.summary__more .amountC__input {
  padding: 9.5px;
}
.summary__more .amountC__input label {
  font-size: 14px;
  line-height: 18px;
}
.summary__more .amountC__input-row span {
  font-size: 13px;
  line-height: 15px;
}
.summary__more .amountC__input-row input {
  font-size: 13px;
  line-height: 15px;
  width: 30px;
}
.summary__more .select-selected {
  padding: 6px 32px 6px 24px;
  position: relative;
}
.summary__more .select-selected::before {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  content: "£";
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: #b1b1b1;
}
.summary__more .select-items div {
  padding: 6px 32px 6px 24px;
  position: relative;
}
.summary__more .select-items div::before {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  content: "£";
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: #b1b1b1;
}
.summary__total {
  max-width: 312px;
  width: 100%;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 30px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.summary__total-variant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 200px;
  margin-bottom: 6px;
}
.summary__total-variant:last-child {
  margin-bottom: 0;
}
.summary .form__header {
  margin-bottom: 16px;
}
.summary .form__body {
  margin-bottom: 30px;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


.preferredCollectionDay {
  width: 100%;
  height: 42px;
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  color: #959191;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 21px;
  padding: 10px 20px;
}

.preferredCollectionDay > option[value=""][disabled] {
  display: none;
}

.preferredCollectionDayOption {
  color: black;
}

@-webkit-keyframes tabs {
  0% {
    margin-top: 20px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}

@keyframes tabs {
  0% {
    margin-top: 20px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
@media (max-width: 1250px) {
  main {
    padding-top: 105.14px;
  }

  .header__inner {
    padding: 15px 0;
  }
  .header__inner-logo {
    width: 90px;
  }

  .nav__inner li {
    margin-right: 8px;
  }
  .nav__inner li a {
    font-size: 13px;
    line-height: 16px;
    padding: 8px 6px;
  }
  .nav__inner .dropdown__inner {
    padding: 10px 5px;
  }
  .nav__inner .dropdown__inner a {
    padding: 10px 14px;
  }
  .nav__inner .dropdown a {
    padding-right: 25px;
  }
  .nav__inner .dropdown a span::before {
    right: 10px;
  }
  .nav__inner .button {
    padding: 8px 14px;
    margin-left: 10px;
    font-size: 13px;
    line-height: 16px;
  }
  .nav__inner .button:last-child {
    margin-left: 10px;
  }
}
@media (max-width: 1180px) {
  .summary__table table th,
.summary__table table td {
    font-size: 14px;
    line-height: 16px;
  }
  .summary__more .check label {
    font-size: 14px;
    line-height: 18px;
  }

  .donation {
    padding: 80px 0;
  }
}
@media (max-width: 1024px) {
  body.active {
    overflow: hidden;
  }

  .nav {
    position: fixed;
    top: 105.14px;
    left: 0;
    width: 100%;
    height: calc(100% - 105.14px);
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .nav.active {
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    z-index: 1;
    padding: 30px 20px 20px 20px;
    height: 100%;
    overflow-y: auto;
    background: #fff;
    box-sizing: border-box;
  }
  .nav__inner-buttons {
    width: 100%;
    max-width: 180px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: auto 0 0 0;
  }
  .nav__inner li {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin: 0;
  }
  .nav__inner li:last-of-type {
    margin-bottom: 40px;
  }
  .nav__inner li a {
    width: 100%;
    font-size: 15px;
    line-height: 19px;
    padding: 16px 0;
    border-radius: 8px;
  }
  .nav__inner .dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav__inner .dropdown:hover a span::before {
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
  }
  .nav__inner .dropdown a {
    padding: 14px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .nav__inner .dropdown a span {
    position: relative;
    padding-right: 24px;
  }
  .nav__inner .dropdown__inner {
    width: 100%;
    position: static;
    min-width: unset;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: 0.8s ease;
    transition: 0.8s ease;
    padding: 0 0 0 10px;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translate(0);
            transform: translate(0);
    border-radius: 0;
    border: unset;
    max-height: 0;
    overflow: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    pointer-events: all;
  }
  .nav__inner .dropdown__inner.active {
    max-height: 400px;
  }
  .nav__inner .dropdown__inner a {
    padding: 12px 0;
    letter-spacing: -0.009em;
    color: #b1b1b1;
    white-space: nowrap;
    border-top: 1px solid rgba(182, 189, 197, 0.1215686275);
  }
  .nav__inner .dropdown__inner a:hover {
    color: #70c34a;
    opacity: 1;
  }
  .nav__inner .tabBtn {
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
  }
  .nav__inner .tabBtn.active {
    color: #70c34a;
  }
  .nav__inner .tabBtn.active span::before {
    -webkit-transform: translateY(-30%) rotate(-45deg) !important;
            transform: translateY(-30%) rotate(-45deg) !important;
    border-color: #70c34a;
  }
  .nav__inner .button {
    width: 100%;
    margin: 0 0 20px 0;
    font-size: 15px;
    line-height: 19px;
    padding: 9px 22px;
  }
  .nav__inner .button:last-child {
    margin: 0;
  }

  .burger {
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    position: relative;
    width: 28px;
    height: 28px;
    margin-left: 20px;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger::before {
    top: 20%;
    width: 100%;
    height: 3px;
    background-color: #3c3c3b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    border-radius: 4px;
  }
  .burger span {
    top: 50%;
    width: 100%;
    height: 3px;
    background-color: #3c3c3b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-ransform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    border-radius: 4px;
  }
  .burger::after {
    bottom: 20%;
    width: 100%;
    height: 3px;
    background-color: #3c3c3b;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    border-radius: 4px;
  }
  .burger.active::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger.active span {
    opacity: 0;
  }
  .burger.active::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
  }

  .summary__table table th {
    white-space: nowrap;
  }
  .summary__table table td {
    padding: 5px 16px;
  }
  .summary__table table th,
.summary__table table td {
    font-size: 12px;
    line-height: 14px;
  }
  .summary__more-row:first-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .summary__more-row:first-child .check {
    width: 100%;
    margin-bottom: 20px;
  }
  .summary__more-row:first-child .summary__more-col {
    width: 100%;
  }

  .donation {
    padding: 0;
  }
  .donation h2 {
    margin-bottom: 80px;
  }
  .donation__selects {
    margin-bottom: 60px;
  }
}
@media (max-width: 840px) {
  .steps {
    padding-top: 24px;
  }
  .steps__header {
    padding-bottom: 40px;
  }

  .form__inner {
    padding: 42px 20px;
  }

  .preferences .form__header {
    margin-bottom: 32px;
  }
  .preferences__how {
    margin-bottom: 32px;
  }

  .donation {
    padding: 0;
  }
  .donation h2 {
    margin-bottom: 80px;
  }
  .donation__selects {
    margin-bottom: 60px;
  }

  .gift__from.long svg {
    width: 70px;
    height: 24px;
  }
  .gift__from.long .gift__from-title {
    font-size: 24px;
    line-height: 32px;
  }
  .footer__image {
    max-width: 240px;
  }
  .footer__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
  }
  .footer__inner-col {
    width: calc(50% - 30px);
    margin: 15px;
    max-width: 320px;
  }
  h2.mb-30 {
    margin-bottom: 10px;
  }

  h6.sm {
    font-size: 9px;
    line-height: 12px;
  }

  .autocomplete__options h6 {
    font-size: 14px;
    line-height: 20px;
  }

  .radio label {
    padding: 24px;
  }

  .radioC label {
    font-size: 14px;
    line-height: 24px;
  }

  .check {
    min-height: 20px;
  }
  .check label {
    font-size: 12px;
    line-height: 16px;
    padding-left: 30px;
  }
  .check label::before {
    width: 20px;
    height: 20px;
  }
  .check label:after {
    width: 6px;
    left: 8px;
    height: 14px;
    border-bottom: 3px solid #70c34a;
    border-right: 3px solid #70c34a;
  }

  .input__row4 {
    margin: 0 -7px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .input__row4 .input,
.input__row4 .custom-select {
    width: calc(50% - 14px);
    margin: 7px !important;
  }
  .input__row2 {
    margin: 0 -7px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .input__row2 .input,
.input__row2 .custom-select {
    width: calc(50% - 14px);
    margin: 7px !important;
  }
}
@media (max-width: 700px) {
  .amountC__input:has(.qty-row) {
    margin-top: 15px;
  }
  
  .form__footer.full {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form__footer.full .button {
    width: 100%;
    text-align: center;
    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;
    margin-bottom: 10px;
  }
  .form__footer.full .button:last-child {
    margin-bottom: 0;
  }

  .donation__selects {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .donation__selects .radio {
    width: 100%;
    margin-bottom: 30px;
  }
  .donation__event .custom-select {
    margin-bottom: 20px;
  }
  .donation .amountC {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
  .donation .amountC__radios {
    width: 100%;
    margin-bottom: 20px;
  }
  .donation .amountC__input {
    width: 100%;
  }

  .preferences .form__header p.big {
    font-size: 14px;
    line-height: 20px;
  }
  .preferences .form__body p.big {
    font-size: 14px;
    line-height: 20px;
  }

  .preferences__how-row .check {
    width: calc(50% - 10px);
    max-width: unset !important;
  }
  .preferences__how-row .button {
    max-width: unset !important;
    font-size: 14px;
    width: calc(50% - 10px) !important;
    line-height: 18px;
  }

  .gift .form__body p {
    padding-left: 0;
  }
  .gift__from.long svg {
    display: none;
  }
  .gift__from.long .gift__from-title {
    font-size: 18px;
    line-height: 24px;
    margin: 0 10px;
  }

  body {
    font-size: 12px;
    line-height: 16px;
  }

  h6 {
    font-size: 14px;
    line-height: 16px;
  }

  h3 {
    font-size: 18px;
    line-height: 21px;
  }

  .input {
    margin-bottom: 20px;
  }

  .radio label {
    padding: 22px;
  }

  .modal__inner-content p.big {
    padding-left: 0;
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 540px) {
  .amountC__input:has(.qty-row) {
    margin-top: 15px;
  }
  
  main {
    padding-top: 88.44px;
  }

  .steps {
    padding-top: 0;
  }
  .steps__inner {
    padding-bottom: 16px;
  }
  .steps__header {
    padding-bottom: 37px;
    overflow: hidden;
  }
  .stepsItem {
    max-width: 40px;
    width: calc(50% - 5px);
  }
  .stepsItem h6 {
    top: calc(100% + 5px);
  }
  .stepsItem::before {
    width: 55px;
  }
  .stepsItem__icon {
    width: 40px;
    height: 40px;
  }
  .stepsItem__icon img {
    width: 18px;
    height: 18px;
  }

  .confirmation__total-row {
    max-width: 200px;
  }
  .confirmation__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .confirmation__info p.big {
    margin-bottom: 20px;
  }
  .confirmation__info p.big:last-child {
    margin-bottom: 0;
  }
  .confirmation__table {
    overflow-x: auto;
    /* Hide scrollbar for IE, Edge and Firefox */
  }
  .confirmation__table::-webkit-scrollbar {
    display: none;
  }
  .confirmation__table {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .confirmation__table-item {
    width: 100px;
    min-width: 100px;
  }

  .payment__total {
    padding: 10px 0;
  }
  .payment--big .input__row3 .autocomplete {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
  }
  .payment--big .input__row2 .autocomplete {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
  }
  .payment .input__row2 {
    margin: 0 !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .payment .input__row2 .input,
.payment .input__row2 .custom-select {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
  }
  .payment .input__row2 .input:last-child,
.payment .input__row2 .custom-select:last-child {
    margin: 0 0 20px 0 !important;
  }
  .payment .input__row2 .input.w100,
.payment .input__row2 .custom-select.w100 {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
  }
  .payment .input__row3 {
    margin: 0 !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .payment .input__row3 .input,
.payment .input__row3 .custom-select {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
  }
  .payment .input__row3 .input:last-child,
.payment .input__row3 .custom-select:last-child {
    margin: 0 0 20px 0 !important;
  }
  .payment .input__row3 .input.w100,
.payment .input__row3 .custom-select.w100 {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
  }
  .payment .input__row3 .input.w35,
.payment .input__row3 .custom-select.w35 {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
  }
  .payment .input__row3 .input.w30,
.payment .input__row3 .custom-select.w30 {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
  }
  .payment__radios .donation__btn {
    margin-bottom: 0;
  }

  .preferences .form__header p.big {
    font-size: 12px;
    line-height: 16px;
  }
  .preferences .form__body p.big {
    font-size: 12px;
    line-height: 16px;
  }
  .preferences__how-row {
    margin-bottom: 20px;
  }
  .preferences__pre {
    margin-bottom: 20px;
  }

  .form__header-image {
    width: 190px;
    margin-bottom: 16px;
  }

  .gift .form__body {
    margin-bottom: 16px;
  }
  .gift__from span {
    font-size: 8px;
    line-height: 11px;
  }
  .gift__from svg {
    width: 60px;
    margin: 0 10px;
  }
  .gift__from-title {
    font-size: 24px;
    line-height: 30px;
  }
  .gift h2 {
    font-size: 18px;
    line-height: 21px;
    max-width: 250px;
    margin: 0 auto 32px auto;
  }

  .summary__table table th {
    white-space: nowrap;
  }
  .summary__table table td {
    padding: 5px 10px;
  }
  .summary__total {
    max-width: unset;
  }
  .summary .form__body {
    margin-bottom: 0;
  }
  .summary__more .amountC {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .summary__more .amountC__radios {
    margin-bottom: 8px;
    width: 100%;
  }
  .summary__more .amountC__input {
    width: 100%;
  }
  .summary__more .check label {
    font-size: 12px;
    line-height: 16px;
  }

  .donation__event .custom-select {
    margin-bottom: 10px;
  }
  .donation__btn {
    max-width: unset;
    width: 100%;
  }
  .donation__inner {
    min-height: 300px;
  }
  .donation__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .donation__footer .button {
    width: 100%;
    margin: 0 0 10px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .donation__footer .button:last-child {
    margin-bottom: 0;
  }

  .form {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.25);
    margin: 0 -30px;
  }
  .form__inner {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    min-height: calc(100vh - 200px);
    padding: 40px 30px;
  }
  .form__footer {
    margin-top: auto;
  }

  h6.sm {
    font-size: 7px;
    line-height: 10px;
  }

  .radioC label {
    font-size: 12px;
    line-height: 20px;
  }

  h2 {
    font-size: 21px;
    line-height: 25px;
  }

  h3.sm {
    font-size: 16px;
    line-height: 22px;
  }

  .errorM p.big {
    font-size: 12px;
    line-height: 16px;
  }

  .modal {
    padding: 0;
  }
  .modal__inner {
    padding: 30px;
  }
  .modal__inner-content p.big {
    font-size: 12px;
    line-height: 20px;
  }

  .input {
    margin-bottom: 20px;
  }
  .input__row4 {
    margin: 0 !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .input__row4 .input,
.input__row4 .custom-select {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
  }
  .input.card span {
    right: 10px;
    width: 12px;
    height: 10px;
  }
  .input.search span {
    right: 10px;
    width: 12px;
    height: 10px;
  }
  .input.quest .tool {
    right: 10px;
  }
  .input.quest .tool__content {
    right: 0;
    left: unset;
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .input.quest .tool__content p {
    font-size: 12px;
    line-height: 16px;
  }

  .autocomplete__options h6 {
    font-size: 14px;
    line-height: 20px;
  }

  .header__inner-logo {
    width: 70px;
  }

  .nav {
    top: 88.44px;
    height: calc(100% - 88.44px);
  }

  .basket__btn {
    width: 32px;
    height: 32px;
  }
  .basket__dropdown {
    position: fixed;
    top: 88.44px;
    left: 0;
    height: calc(100% - 88.44px);
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 20px;
  }
  .basketHeader .basket__btn {
    display: none;
  }
}
@media (max-width: 380px) {
  .amountC__input:has(.qty-row) {
    margin-top: 15px;
  }
  
  .auto__container {
    padding: 0 16px;
  }

  .form {
    margin: 0 -16px;
  }
  .form__inner {
    padding: 24px 16px;
  }
}