@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500&display=swap);
@charset "UTF-8";
body {
  display: flex;
  flex-flow: column nowrap;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  color: #000;
}

main {
  flex: 1 0 auto;
}

a {
  text-decoration: none;
}

.touch-device-display:not(.touch-device .touch-device-display), .touch-device .touch-device-none {
  display: none;
}

.qv-button {
  display: inline-flex;
  position: relative;
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  background: #de2a2a;
  border: 1px #de2a2a solid;
  border-radius: 10px;
  text-align: center;
  align-items: center;
  justify-content: space-evenly;
  vertical-align: middle;
  width: 164px;
  max-width: 100%;
  min-height: 48px;
  padding: 6px;
  cursor: pointer;
  letter-spacing: normal;
  text-decoration: none;
  transition: font-size 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
.qv-button:focus {
  outline: none;
}
.qv-button:disabled, .qv-button[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.qv-button:hover {
  text-decoration: none;
  font-size: 21px;
  color: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.qv-button--secondary {
  color: #de2a2a;
  background: #fff;
}
.qv-button--secondary:hover {
  color: #de2a2a;
}
.qv-button--transparent {
  background: none;
}
.qv-button--full-width {
  display: block;
  padding: 8px 0;
  margin: 16px 0;
  background-color: #ff1313;
  border: none;
  border-radius: 0;
  width: 100%;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  color: #fff;
}

.qv-input, .qv-input input {
  padding: 2px 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #4b4646;
  border: 1px solid #4b4646;
  border-radius: 8px;
  outline: none !important;
}
.qv-input::placeholder, .qv-input input::placeholder {
  color: #4b4646;
}
.qv-input:focus, .qv-input input:focus {
  color: #000;
  border: 1px solid #4b4646;
  box-shadow: none;
}
@media (min-width: 992px) {
  .qv-input, .qv-input input {
    font-size: 16px;
    padding: 6px 16px;
  }
}
.qv-input.invalid, .qv-input input.invalid {
  border-color: red;
}
.qv-input:disabled, .qv-input[disabled], .qv-input input:disabled, .qv-input input[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.qv-label {
  font-size: 14px;
  line-height: 1.4;
  color: #4b4646;
}
@media (min-width: 992px) {
  .qv-label {
    font-size: 16px;
  }
}
.qv-label--required::after {
  content: "*";
  color: red;
}

.qv-textarea {
  padding: 2px 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #4b4646;
  border: 1px solid #4b4646;
  border-radius: 8px;
  outline: none !important;
  padding: 8px;
  resize: none;
}
.qv-textarea::placeholder {
  color: #4b4646;
}
.qv-textarea:focus {
  color: #000;
  border: 1px solid #4b4646;
  box-shadow: none;
}
@media (min-width: 992px) {
  .qv-textarea {
    font-size: 16px;
    padding: 6px 16px;
  }
}
.qv-textarea.invalid {
  border-color: red;
}
.qv-textarea:disabled, .qv-textarea[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
@media (min-width: 992px) {
  .qv-textarea {
    padding: 16px;
  }
}

.qv-select {
  padding: 2px 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #4b4646;
  border: 1px solid #4b4646;
  border-radius: 8px;
  outline: none !important;
  padding-right: 32px;
  cursor: pointer;
}
.qv-select::placeholder {
  color: #4b4646;
}
.qv-select:focus {
  color: #000;
  border: 1px solid #4b4646;
  box-shadow: none;
}
@media (min-width: 992px) {
  .qv-select {
    font-size: 16px;
    padding: 6px 16px;
  }
}
.qv-select.invalid {
  border-color: red;
}
.qv-select:disabled, .qv-select[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
@media (min-width: 992px) {
  .qv-select {
    padding-right: 32px;
  }
}

.qv-check {
  cursor: pointer;
}
.qv-check input[type=checkbox] {
  cursor: pointer;
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid #4b4646;
}
.qv-check--round input[type=checkbox] {
  border-radius: 8px;
}
.qv-check input[type=checkbox]:checked {
  background-color: #de2a2a;
}
.qv-check input[type=checkbox]:focus {
  color: #000;
  border: 1px solid #4b4646;
  box-shadow: none;
}
.qv-check label {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
}
.qv-check input[type=checkbox].invalid + label {
  color: red;
}
@media (min-width: 992px) {
  .qv-check {
    padding-left: 30px;
  }
  .qv-check input[type=checkbox] {
    width: 20px;
    height: 20px;
    padding: 0;
    margin-left: -30px;
  }
}
.qv-check--is-asc-direction {
  padding-left: 26px;
}
.qv-check--is-asc-direction input[type=checkbox], .qv-check--is-asc-direction input[type=checkbox]:checked {
  width: 26px;
  height: 26px;
  margin: 0;
  margin-left: -26px;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 -1 14 14' fill='none'><path stroke='%23FF0000' stroke-width='2' d='M1 0.999999L7 10L12.7 1.51428L13 0.999999'/></svg>");
  background-size: 12px;
}
.qv-check--is-asc-direction input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 -1 14 14' fill='none' transform='rotate(180)'><path stroke='%23FF0000' stroke-width='2' d='M1 0.999999L7 10L12.7 1.51428L13 0.999999'/></svg>");
}

.qv-notice {
  display: flex;
  align-items: center;
  margin: 24px 0;
  font-size: 18px;
  font-weight: 700;
}
.qv-notice::before {
  width: 28px;
  height: 28px;
  margin-right: 12px;
}
.qv-notice--success {
  color: #0e971c;
}
.qv-notice--success::before {
  content: "";
  background: url("img/notice-success.png");
  background-size: contain;
}
@media (min-width: 992px) {
  .qv-notice {
    margin: 24px 0 32px;
    font-size: 20px;
  }
  .qv-notice::before {
    width: 39px;
    height: 39px;
    margin-right: 16px;
  }
}

body[data-aos-duration="50"] [data-aos], [data-aos][data-aos][data-aos-duration="50"] {
  animation-duration: 50ms;
}
body[data-aos-delay="50"] [data-aos], [data-aos][data-aos][data-aos-delay="50"] {
  animation-delay: 50ms;
}
body[data-aos-duration="100"] [data-aos], [data-aos][data-aos][data-aos-duration="100"] {
  animation-duration: 100ms;
}
body[data-aos-delay="100"] [data-aos], [data-aos][data-aos][data-aos-delay="100"] {
  animation-delay: 100ms;
}
body[data-aos-duration="150"] [data-aos], [data-aos][data-aos][data-aos-duration="150"] {
  animation-duration: 150ms;
}
body[data-aos-delay="150"] [data-aos], [data-aos][data-aos][data-aos-delay="150"] {
  animation-delay: 150ms;
}
body[data-aos-duration="200"] [data-aos], [data-aos][data-aos][data-aos-duration="200"] {
  animation-duration: 200ms;
}
body[data-aos-delay="200"] [data-aos], [data-aos][data-aos][data-aos-delay="200"] {
  animation-delay: 200ms;
}
body[data-aos-duration="250"] [data-aos], [data-aos][data-aos][data-aos-duration="250"] {
  animation-duration: 250ms;
}
body[data-aos-delay="250"] [data-aos], [data-aos][data-aos][data-aos-delay="250"] {
  animation-delay: 250ms;
}
body[data-aos-duration="300"] [data-aos], [data-aos][data-aos][data-aos-duration="300"] {
  animation-duration: 300ms;
}
body[data-aos-delay="300"] [data-aos], [data-aos][data-aos][data-aos-delay="300"] {
  animation-delay: 300ms;
}
body[data-aos-duration="350"] [data-aos], [data-aos][data-aos][data-aos-duration="350"] {
  animation-duration: 350ms;
}
body[data-aos-delay="350"] [data-aos], [data-aos][data-aos][data-aos-delay="350"] {
  animation-delay: 350ms;
}
body[data-aos-duration="400"] [data-aos], [data-aos][data-aos][data-aos-duration="400"] {
  animation-duration: 400ms;
}
body[data-aos-delay="400"] [data-aos], [data-aos][data-aos][data-aos-delay="400"] {
  animation-delay: 400ms;
}
body[data-aos-duration="450"] [data-aos], [data-aos][data-aos][data-aos-duration="450"] {
  animation-duration: 450ms;
}
body[data-aos-delay="450"] [data-aos], [data-aos][data-aos][data-aos-delay="450"] {
  animation-delay: 450ms;
}
body[data-aos-duration="500"] [data-aos], [data-aos][data-aos][data-aos-duration="500"] {
  animation-duration: 500ms;
}
body[data-aos-delay="500"] [data-aos], [data-aos][data-aos][data-aos-delay="500"] {
  animation-delay: 500ms;
}
body[data-aos-duration="550"] [data-aos], [data-aos][data-aos][data-aos-duration="550"] {
  animation-duration: 550ms;
}
body[data-aos-delay="550"] [data-aos], [data-aos][data-aos][data-aos-delay="550"] {
  animation-delay: 550ms;
}
body[data-aos-duration="600"] [data-aos], [data-aos][data-aos][data-aos-duration="600"] {
  animation-duration: 600ms;
}
body[data-aos-delay="600"] [data-aos], [data-aos][data-aos][data-aos-delay="600"] {
  animation-delay: 600ms;
}
body[data-aos-duration="650"] [data-aos], [data-aos][data-aos][data-aos-duration="650"] {
  animation-duration: 650ms;
}
body[data-aos-delay="650"] [data-aos], [data-aos][data-aos][data-aos-delay="650"] {
  animation-delay: 650ms;
}
body[data-aos-duration="700"] [data-aos], [data-aos][data-aos][data-aos-duration="700"] {
  animation-duration: 700ms;
}
body[data-aos-delay="700"] [data-aos], [data-aos][data-aos][data-aos-delay="700"] {
  animation-delay: 700ms;
}
body[data-aos-duration="750"] [data-aos], [data-aos][data-aos][data-aos-duration="750"] {
  animation-duration: 750ms;
}
body[data-aos-delay="750"] [data-aos], [data-aos][data-aos][data-aos-delay="750"] {
  animation-delay: 750ms;
}
body[data-aos-duration="800"] [data-aos], [data-aos][data-aos][data-aos-duration="800"] {
  animation-duration: 800ms;
}
body[data-aos-delay="800"] [data-aos], [data-aos][data-aos][data-aos-delay="800"] {
  animation-delay: 800ms;
}
body[data-aos-duration="850"] [data-aos], [data-aos][data-aos][data-aos-duration="850"] {
  animation-duration: 850ms;
}
body[data-aos-delay="850"] [data-aos], [data-aos][data-aos][data-aos-delay="850"] {
  animation-delay: 850ms;
}
body[data-aos-duration="900"] [data-aos], [data-aos][data-aos][data-aos-duration="900"] {
  animation-duration: 900ms;
}
body[data-aos-delay="900"] [data-aos], [data-aos][data-aos][data-aos-delay="900"] {
  animation-delay: 900ms;
}
body[data-aos-duration="950"] [data-aos], [data-aos][data-aos][data-aos-duration="950"] {
  animation-duration: 950ms;
}
body[data-aos-delay="950"] [data-aos], [data-aos][data-aos][data-aos-delay="950"] {
  animation-delay: 950ms;
}
body[data-aos-duration="1000"] [data-aos], [data-aos][data-aos][data-aos-duration="1000"] {
  animation-duration: 1000ms;
}
body[data-aos-delay="1000"] [data-aos], [data-aos][data-aos][data-aos-delay="1000"] {
  animation-delay: 1000ms;
}
body[data-aos-duration="1050"] [data-aos], [data-aos][data-aos][data-aos-duration="1050"] {
  animation-duration: 1050ms;
}
body[data-aos-delay="1050"] [data-aos], [data-aos][data-aos][data-aos-delay="1050"] {
  animation-delay: 1050ms;
}
body[data-aos-duration="1100"] [data-aos], [data-aos][data-aos][data-aos-duration="1100"] {
  animation-duration: 1100ms;
}
body[data-aos-delay="1100"] [data-aos], [data-aos][data-aos][data-aos-delay="1100"] {
  animation-delay: 1100ms;
}
body[data-aos-duration="1150"] [data-aos], [data-aos][data-aos][data-aos-duration="1150"] {
  animation-duration: 1150ms;
}
body[data-aos-delay="1150"] [data-aos], [data-aos][data-aos][data-aos-delay="1150"] {
  animation-delay: 1150ms;
}
body[data-aos-duration="1200"] [data-aos], [data-aos][data-aos][data-aos-duration="1200"] {
  animation-duration: 1200ms;
}
body[data-aos-delay="1200"] [data-aos], [data-aos][data-aos][data-aos-delay="1200"] {
  animation-delay: 1200ms;
}
body[data-aos-duration="1250"] [data-aos], [data-aos][data-aos][data-aos-duration="1250"] {
  animation-duration: 1250ms;
}
body[data-aos-delay="1250"] [data-aos], [data-aos][data-aos][data-aos-delay="1250"] {
  animation-delay: 1250ms;
}
body[data-aos-duration="1300"] [data-aos], [data-aos][data-aos][data-aos-duration="1300"] {
  animation-duration: 1300ms;
}
body[data-aos-delay="1300"] [data-aos], [data-aos][data-aos][data-aos-delay="1300"] {
  animation-delay: 1300ms;
}
body[data-aos-duration="1350"] [data-aos], [data-aos][data-aos][data-aos-duration="1350"] {
  animation-duration: 1350ms;
}
body[data-aos-delay="1350"] [data-aos], [data-aos][data-aos][data-aos-delay="1350"] {
  animation-delay: 1350ms;
}
body[data-aos-duration="1400"] [data-aos], [data-aos][data-aos][data-aos-duration="1400"] {
  animation-duration: 1400ms;
}
body[data-aos-delay="1400"] [data-aos], [data-aos][data-aos][data-aos-delay="1400"] {
  animation-delay: 1400ms;
}
body[data-aos-duration="1450"] [data-aos], [data-aos][data-aos][data-aos-duration="1450"] {
  animation-duration: 1450ms;
}
body[data-aos-delay="1450"] [data-aos], [data-aos][data-aos][data-aos-delay="1450"] {
  animation-delay: 1450ms;
}
body[data-aos-duration="1500"] [data-aos], [data-aos][data-aos][data-aos-duration="1500"] {
  animation-duration: 1500ms;
}
body[data-aos-delay="1500"] [data-aos], [data-aos][data-aos][data-aos-delay="1500"] {
  animation-delay: 1500ms;
}
body[data-aos-duration="1550"] [data-aos], [data-aos][data-aos][data-aos-duration="1550"] {
  animation-duration: 1550ms;
}
body[data-aos-delay="1550"] [data-aos], [data-aos][data-aos][data-aos-delay="1550"] {
  animation-delay: 1550ms;
}
body[data-aos-duration="1600"] [data-aos], [data-aos][data-aos][data-aos-duration="1600"] {
  animation-duration: 1600ms;
}
body[data-aos-delay="1600"] [data-aos], [data-aos][data-aos][data-aos-delay="1600"] {
  animation-delay: 1600ms;
}
body[data-aos-duration="1650"] [data-aos], [data-aos][data-aos][data-aos-duration="1650"] {
  animation-duration: 1650ms;
}
body[data-aos-delay="1650"] [data-aos], [data-aos][data-aos][data-aos-delay="1650"] {
  animation-delay: 1650ms;
}
body[data-aos-duration="1700"] [data-aos], [data-aos][data-aos][data-aos-duration="1700"] {
  animation-duration: 1700ms;
}
body[data-aos-delay="1700"] [data-aos], [data-aos][data-aos][data-aos-delay="1700"] {
  animation-delay: 1700ms;
}
body[data-aos-duration="1750"] [data-aos], [data-aos][data-aos][data-aos-duration="1750"] {
  animation-duration: 1750ms;
}
body[data-aos-delay="1750"] [data-aos], [data-aos][data-aos][data-aos-delay="1750"] {
  animation-delay: 1750ms;
}
body[data-aos-duration="1800"] [data-aos], [data-aos][data-aos][data-aos-duration="1800"] {
  animation-duration: 1800ms;
}
body[data-aos-delay="1800"] [data-aos], [data-aos][data-aos][data-aos-delay="1800"] {
  animation-delay: 1800ms;
}
body[data-aos-duration="1850"] [data-aos], [data-aos][data-aos][data-aos-duration="1850"] {
  animation-duration: 1850ms;
}
body[data-aos-delay="1850"] [data-aos], [data-aos][data-aos][data-aos-delay="1850"] {
  animation-delay: 1850ms;
}
body[data-aos-duration="1900"] [data-aos], [data-aos][data-aos][data-aos-duration="1900"] {
  animation-duration: 1900ms;
}
body[data-aos-delay="1900"] [data-aos], [data-aos][data-aos][data-aos-delay="1900"] {
  animation-delay: 1900ms;
}
body[data-aos-duration="1950"] [data-aos], [data-aos][data-aos][data-aos-duration="1950"] {
  animation-duration: 1950ms;
}
body[data-aos-delay="1950"] [data-aos], [data-aos][data-aos][data-aos-delay="1950"] {
  animation-delay: 1950ms;
}
body[data-aos-duration="2000"] [data-aos], [data-aos][data-aos][data-aos-duration="2000"] {
  animation-duration: 2000ms;
}
body[data-aos-delay="2000"] [data-aos], [data-aos][data-aos][data-aos-delay="2000"] {
  animation-delay: 2000ms;
}
body[data-aos-duration="2050"] [data-aos], [data-aos][data-aos][data-aos-duration="2050"] {
  animation-duration: 2050ms;
}
body[data-aos-delay="2050"] [data-aos], [data-aos][data-aos][data-aos-delay="2050"] {
  animation-delay: 2050ms;
}
body[data-aos-duration="2100"] [data-aos], [data-aos][data-aos][data-aos-duration="2100"] {
  animation-duration: 2100ms;
}
body[data-aos-delay="2100"] [data-aos], [data-aos][data-aos][data-aos-delay="2100"] {
  animation-delay: 2100ms;
}
body[data-aos-duration="2150"] [data-aos], [data-aos][data-aos][data-aos-duration="2150"] {
  animation-duration: 2150ms;
}
body[data-aos-delay="2150"] [data-aos], [data-aos][data-aos][data-aos-delay="2150"] {
  animation-delay: 2150ms;
}
body[data-aos-duration="2200"] [data-aos], [data-aos][data-aos][data-aos-duration="2200"] {
  animation-duration: 2200ms;
}
body[data-aos-delay="2200"] [data-aos], [data-aos][data-aos][data-aos-delay="2200"] {
  animation-delay: 2200ms;
}
body[data-aos-duration="2250"] [data-aos], [data-aos][data-aos][data-aos-duration="2250"] {
  animation-duration: 2250ms;
}
body[data-aos-delay="2250"] [data-aos], [data-aos][data-aos][data-aos-delay="2250"] {
  animation-delay: 2250ms;
}
body[data-aos-duration="2300"] [data-aos], [data-aos][data-aos][data-aos-duration="2300"] {
  animation-duration: 2300ms;
}
body[data-aos-delay="2300"] [data-aos], [data-aos][data-aos][data-aos-delay="2300"] {
  animation-delay: 2300ms;
}
body[data-aos-duration="2350"] [data-aos], [data-aos][data-aos][data-aos-duration="2350"] {
  animation-duration: 2350ms;
}
body[data-aos-delay="2350"] [data-aos], [data-aos][data-aos][data-aos-delay="2350"] {
  animation-delay: 2350ms;
}
body[data-aos-duration="2400"] [data-aos], [data-aos][data-aos][data-aos-duration="2400"] {
  animation-duration: 2400ms;
}
body[data-aos-delay="2400"] [data-aos], [data-aos][data-aos][data-aos-delay="2400"] {
  animation-delay: 2400ms;
}
body[data-aos-duration="2450"] [data-aos], [data-aos][data-aos][data-aos-duration="2450"] {
  animation-duration: 2450ms;
}
body[data-aos-delay="2450"] [data-aos], [data-aos][data-aos][data-aos-delay="2450"] {
  animation-delay: 2450ms;
}
body[data-aos-duration="2500"] [data-aos], [data-aos][data-aos][data-aos-duration="2500"] {
  animation-duration: 2500ms;
}
body[data-aos-delay="2500"] [data-aos], [data-aos][data-aos][data-aos-delay="2500"] {
  animation-delay: 2500ms;
}
body[data-aos-duration="2550"] [data-aos], [data-aos][data-aos][data-aos-duration="2550"] {
  animation-duration: 2550ms;
}
body[data-aos-delay="2550"] [data-aos], [data-aos][data-aos][data-aos-delay="2550"] {
  animation-delay: 2550ms;
}
body[data-aos-duration="2600"] [data-aos], [data-aos][data-aos][data-aos-duration="2600"] {
  animation-duration: 2600ms;
}
body[data-aos-delay="2600"] [data-aos], [data-aos][data-aos][data-aos-delay="2600"] {
  animation-delay: 2600ms;
}
body[data-aos-duration="2650"] [data-aos], [data-aos][data-aos][data-aos-duration="2650"] {
  animation-duration: 2650ms;
}
body[data-aos-delay="2650"] [data-aos], [data-aos][data-aos][data-aos-delay="2650"] {
  animation-delay: 2650ms;
}
body[data-aos-duration="2700"] [data-aos], [data-aos][data-aos][data-aos-duration="2700"] {
  animation-duration: 2700ms;
}
body[data-aos-delay="2700"] [data-aos], [data-aos][data-aos][data-aos-delay="2700"] {
  animation-delay: 2700ms;
}
body[data-aos-duration="2750"] [data-aos], [data-aos][data-aos][data-aos-duration="2750"] {
  animation-duration: 2750ms;
}
body[data-aos-delay="2750"] [data-aos], [data-aos][data-aos][data-aos-delay="2750"] {
  animation-delay: 2750ms;
}
body[data-aos-duration="2800"] [data-aos], [data-aos][data-aos][data-aos-duration="2800"] {
  animation-duration: 2800ms;
}
body[data-aos-delay="2800"] [data-aos], [data-aos][data-aos][data-aos-delay="2800"] {
  animation-delay: 2800ms;
}
body[data-aos-duration="2850"] [data-aos], [data-aos][data-aos][data-aos-duration="2850"] {
  animation-duration: 2850ms;
}
body[data-aos-delay="2850"] [data-aos], [data-aos][data-aos][data-aos-delay="2850"] {
  animation-delay: 2850ms;
}
body[data-aos-duration="2900"] [data-aos], [data-aos][data-aos][data-aos-duration="2900"] {
  animation-duration: 2900ms;
}
body[data-aos-delay="2900"] [data-aos], [data-aos][data-aos][data-aos-delay="2900"] {
  animation-delay: 2900ms;
}
body[data-aos-duration="2950"] [data-aos], [data-aos][data-aos][data-aos-duration="2950"] {
  animation-duration: 2950ms;
}
body[data-aos-delay="2950"] [data-aos], [data-aos][data-aos][data-aos-delay="2950"] {
  animation-delay: 2950ms;
}
body[data-aos-duration="3000"] [data-aos], [data-aos][data-aos][data-aos-duration="3000"] {
  animation-duration: 3000ms;
}
body[data-aos-delay="3000"] [data-aos], [data-aos][data-aos][data-aos-delay="3000"] {
  animation-delay: 3000ms;
}

.header {
  z-index: 1001;
}
.header__top {
  background-color: #f3f3f3;
  padding-top: 2px;
  padding-bottom: 2px;
}
@media (min-width: 576px) {
  .header__top {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.header__email {
  font-size: 14px;
  color: #a7a3a3;
  text-decoration: none;
}
.header__email:hover {
  color: #727272;
}
@media (min-width: 576px) {
  .header__email {
    font-size: 18px;
  }
}

.language-select {
  user-select: none;
}
.language-select__button {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0 16px;
  background-color: #fff;
  border: 1px solid #524b4b;
  border-radius: 8px;
}
@media (max-width: 575.98px) {
  .language-select__button {
    padding: 0;
    background-color: transparent;
    border: none;
  }
  .language-select__button::after {
    display: none;
  }
  .language-select__button .language-select__item-text {
    display: none;
  }
}
.language-select__item {
  display: flex;
  align-items: center;
}
.language-select__item-text {
  font-size: 18px;
  line-height: 24px;
  padding: 3px 8px;
}

.navigation__toggle-button {
  width: 42px;
  height: 42px;
  padding: 0;
  background-color: #f2f2f2;
  border: none;
  border-radius: 8px;
}
.navigation__toggle-button:hover {
  background-color: #e6e6e6;
}
.navigation__logo {
  max-width: 326px;
}
.navigation__menu {
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
  color: #000;
}
.navigation__menu .navigation__menu-item {
  padding: 8px;
}
.navigation__menu .navigation__menu-item .navigation__menu-link {
  color: #000;
}
.navigation__menu .navigation__menu-item .navigation__menu-link:hover {
  text-decoration: underline;
}
.navigation__menu .navigation__menu-item .navigation__menu-link.navigation__menu-link--button {
  display: inline-flex;
  position: relative;
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  background: #de2a2a;
  border: 1px #de2a2a solid;
  border-radius: 10px;
  text-align: center;
  align-items: center;
  justify-content: space-evenly;
  vertical-align: middle;
  width: 164px;
  max-width: 100%;
  min-height: 48px;
  padding: 6px;
  cursor: pointer;
  letter-spacing: normal;
  text-decoration: none;
  transition: font-size 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  width: auto;
  height: 42px;
  font-size: 1em;
  padding: 8px 16px;
}
.navigation__menu .navigation__menu-item .navigation__menu-link.navigation__menu-link--button:focus {
  outline: none;
}
.navigation__menu .navigation__menu-item .navigation__menu-link.navigation__menu-link--button:disabled, .navigation__menu .navigation__menu-item .navigation__menu-link.navigation__menu-link--button[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.navigation__menu .navigation__menu-item .navigation__menu-link.navigation__menu-link--button:hover {
  text-decoration: none;
  font-size: 21px;
  color: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.navigation__menu .navigation__menu-item .navigation__menu-link.navigation__menu-link--button--secondary {
  color: #de2a2a;
  background: #fff;
}
.navigation__menu .navigation__menu-item .navigation__menu-link.navigation__menu-link--button--secondary:hover {
  color: #de2a2a;
}
.navigation__menu .navigation__menu-item .navigation__menu-link.navigation__menu-link--button--transparent {
  background: none;
}
.navigation__menu .navigation__menu-item .navigation__menu-link.navigation__menu-link--button--full-width {
  display: block;
  padding: 8px 0;
  margin: 16px 0;
  background-color: #ff1313;
  border: none;
  border-radius: 0;
  width: 100%;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  color: #fff;
}
.navigation__menu .navigation__menu-item .navigation__menu-link.navigation__menu-link--button:hover {
  font-size: 1em;
}
.navigation__menu .navigation__menu-submenu-item {
  border-bottom: 1px solid #dcdcdc;
}
.navigation__menu .navigation__menu-submenu-item :last-child {
  border: none;
}
.navigation__menu .navigation__menu-submenu-item-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #000;
  padding: 8px;
  border-radius: 0;
}
.navigation__menu .navigation__menu-submenu-item-link:hover {
  background-color: transparent;
  color: #de2a2a;
}
@media (min-width: 992px) {
  .navigation__menu {
    position: static;
    background: none;
  }
  .navigation__menu-list {
    align-items: center;
  }
  .navigation__menu .navigation__menu-item {
    padding: 0;
  }
  .navigation__menu .navigation__menu-item .navigation__menu-link {
    padding-left: 20px;
    padding-right: 20px;
  }
  .navigation__menu .navigation__menu-item .navigation__menu-link--button {
    margin-left: 16px;
  }
}
@media (max-width: 991.98px) {
  .navigation__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
  }
  .navigation__menu * {
    border-color: transparent !important;
  }
}

.pagination {
  margin: 0;
}
.pagination li a, .pagination li a:hover,
.pagination li span,
.pagination li span:hover,
.pagination li .page-link,
.pagination li .page-link:hover,
.pagination .page-item a,
.pagination .page-item a:hover,
.pagination .page-item span,
.pagination .page-item span:hover,
.pagination .page-item .page-link,
.pagination .page-item .page-link:hover {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #000;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 4px;
  background-color: #fff;
  border: 1px solid #393434;
  box-sizing: border-box;
  border-radius: 5px !important;
  user-select: none;
}
.pagination li a:hover,
.pagination li span:hover,
.pagination li .page-link:hover,
.pagination .page-item a:hover,
.pagination .page-item span:hover,
.pagination .page-item .page-link:hover {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.pagination li.prev a,
.pagination li.prev span,
.pagination li.prev .page-link, .pagination li.next a,
.pagination li.next span,
.pagination li.next .page-link,
.pagination .page-item.prev a,
.pagination .page-item.prev span,
.pagination .page-item.prev .page-link,
.pagination .page-item.next a,
.pagination .page-item.next span,
.pagination .page-item.next .page-link {
  color: transparent !important;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 -1 14 14' fill='none' transform='rotate(90)'><path stroke='%23FF0000' stroke-width='2' d='M1 0.999999L7 10L12.7 1.51428L13 0.999999'/></svg>");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px;
}
.pagination li.next a,
.pagination li.next span,
.pagination li.next .page-link,
.pagination .page-item.next a,
.pagination .page-item.next span,
.pagination .page-item.next .page-link {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 -1 14 14' fill='none' transform='rotate(-90)'><path stroke='%23FF0000' stroke-width='2' d='M1 0.999999L7 10L12.7 1.51428L13 0.999999'/></svg>");
}
.pagination li.disabled a,
.pagination li.disabled span,
.pagination li.disabled .page-link,
.pagination .page-item.disabled a,
.pagination .page-item.disabled span,
.pagination .page-item.disabled .page-link {
  position: relative;
  pointer-events: none;
  overflow: hidden;
  background-color: #fff;
  border-color: #ccc;
}
.pagination li.disabled a::after,
.pagination li.disabled span::after,
.pagination li.disabled .page-link::after,
.pagination .page-item.disabled a::after,
.pagination .page-item.disabled span::after,
.pagination .page-item.disabled .page-link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
}
.pagination li.active a,
.pagination li.active span,
.pagination li.active .page-link,
.pagination .page-item.active a,
.pagination .page-item.active span,
.pagination .page-item.active .page-link {
  color: #ff1313;
  font-weight: 700;
  background-color: #fff;
  border: 1px solid #393434;
  border-width: 2px;
  pointer-events: none;
}

.rating-stars {
  position: relative;
  width: 100%;
  padding-bottom: calc(100% / var(--stars-count));
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 23' fill='%23BFBFBF'><path d='M20.3983 23.0002C18.0055 21.821 15.766 20.7338 13.5419 19.616C13.0818 19.3863 12.729 19.4016 12.2688 19.6313C10.0447 20.7491 7.78993 21.8517 5.42777 23.0002C5.70387 21.0554 5.84192 19.1872 6.25607 17.4109C6.70089 15.5427 6.40945 14.1645 4.84491 12.8935C3.43375 11.745 2.25267 10.2903 0.979562 8.97333C0.948885 8.94271 0.94889 8.88145 0.918213 8.75895C3.00427 8.39143 5.07499 7.94735 7.16105 7.71766C8.52619 7.56452 9.3238 7.02856 9.89133 5.75757C10.781 3.84343 11.8547 2.00586 12.8977 0.0457764C13.0664 0.3061 13.1891 0.489857 13.2812 0.673615C14.3395 2.67963 15.4286 4.67034 16.4409 6.70699C16.7017 7.22763 17.0545 7.42671 17.6067 7.51858C19.9228 7.90141 22.2389 8.31487 24.5551 8.71301C24.6778 8.72832 24.7852 8.75895 25.0152 8.8202C24.1409 9.72367 23.328 10.5659 22.515 11.3928C21.5487 12.3882 20.567 13.3529 19.6467 14.3636C19.432 14.5933 19.2939 15.0373 19.3399 15.3436C19.6467 17.8549 20.0302 20.3357 20.3983 23.0002Z'/></svg>");
  background-size: auto 100%;
  background-position: center right;
  transform: rotateY(180deg);
}
.rating-stars::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: var(--rate-percentage);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 23' fill='%23FFD600'><path d='M20.3983 23.0002C18.0055 21.821 15.766 20.7338 13.5419 19.616C13.0818 19.3863 12.729 19.4016 12.2688 19.6313C10.0447 20.7491 7.78993 21.8517 5.42777 23.0002C5.70387 21.0554 5.84192 19.1872 6.25607 17.4109C6.70089 15.5427 6.40945 14.1645 4.84491 12.8935C3.43375 11.745 2.25267 10.2903 0.979562 8.97333C0.948885 8.94271 0.94889 8.88145 0.918213 8.75895C3.00427 8.39143 5.07499 7.94735 7.16105 7.71766C8.52619 7.56452 9.3238 7.02856 9.89133 5.75757C10.781 3.84343 11.8547 2.00586 12.8977 0.0457764C13.0664 0.3061 13.1891 0.489857 13.2812 0.673615C14.3395 2.67963 15.4286 4.67034 16.4409 6.70699C16.7017 7.22763 17.0545 7.42671 17.6067 7.51858C19.9228 7.90141 22.2389 8.31487 24.5551 8.71301C24.6778 8.72832 24.7852 8.75895 25.0152 8.8202C24.1409 9.72367 23.328 10.5659 22.515 11.3928C21.5487 12.3882 20.567 13.3529 19.6467 14.3636C19.432 14.5933 19.2939 15.0373 19.3399 15.3436C19.6467 17.8549 20.0302 20.3357 20.3983 23.0002Z'/></svg>");
  background-size: auto 100%;
  background-position: center right;
}

.points-carousel {
  display: flex;
  flex-direction: column-reverse;
}
.points-carousel .carousel-indicators {
  flex: 0 0 auto;
  position: static;
  margin-bottom: 0;
}
.points-carousel .carousel-indicators button {
  border-radius: 50%;
}
.points-carousel .carousel-indicators button:only-child {
  opacity: 0;
}
.points-carousel .carousel-inner {
  flex: 0 1 100%;
  padding-bottom: 12px;
}
.points-carousel .carousel-item {
  height: 100%;
  overflow: hidden;
}
.points-carousel__list {
  display: flex;
  flex-flow: column wrap;
  height: 100%;
  max-height: 100%;
}
.points-carousel__item {
  position: relative;
  width: 100%;
  padding-left: 1em;
}
.points-carousel__item::before {
  content: "•";
  position: absolute;
  left: 0;
}

.footer {
  background: #1a1616;
  padding: 32px 16px 16px;
  color: #f8f7f7;
}
.footer__menu {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.footer__menu-item {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  padding: 0 12px;
  color: #f8f7f7;
  text-decoration: none;
}
.footer__menu-item:hover {
  color: #f8f7f7;
  text-decoration: underline;
}
.footer__sharing {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.footer__sharing-link {
  margin: 20px;
}
.footer__sharing-link:hover {
  transform: scale(1.1);
}
.footer__copyright {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  margin-top: 6px;
  text-align: center;
}

.topper {
  position: relative;
  min-height: 513px;
  display: flex;
}
.topper__pictures::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.23) 39.06%, rgba(0, 0, 0, 0.84) 96.04%);
}
.topper__image {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-image: url("/img/topper-image-mob.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
}
.topper__image-footnote {
  display: none;
  align-self: flex-end;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}
.topper__header {
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  color: #fff;
  margin-bottom: 16px;
}
.topper__header em {
  font-weight: 900;
  font-style: normal;
}
.topper__description {
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  color: #fff;
  margin-bottom: 16px;
}
.topper__buttons {
  margin-top: 18px;
}
.topper__buttons .qv-button {
  margin-bottom: 16px;
}
@media (max-width: 575.98px) {
  .topper__buttons .qv-button {
    width: 155px;
  }
}
.topper__reference {
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  color: #fff;
  margin-bottom: 16px;
}
.topper__reference a {
  color: #de2a2a;
  text-decoration: underline;
}
.topper__reference a:hover {
  color: #de2a2a;
  text-decoration: none;
}
@media (min-width: 992px) {
  .topper__pictures {
    position: relative;
  }
  .topper__pictures::before {
    content: "";
    position: absolute;
    top: -100%;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
    background-image: url("/img/topper-back.png");
    background-repeat: no-repeat;
    background-position: bottom right;
  }
  .topper__pictures::after {
    content: none;
  }
  .topper__image {
    top: -30px;
    bottom: 30px;
    right: 5px;
    background-image: url("/img/topper-image.png");
    background-position: center;
  }
  .topper__image-footnote {
    display: block;
    margin-left: 145px;
    margin-bottom: 25px;
  }
  .topper__header {
    font-size: 32px;
    line-height: 44px;
    color: #000;
  }
  .topper__header em {
    color: #de2a2a;
  }
  .topper__description {
    font-size: 20px;
    line-height: 28px;
    color: #000;
  }
  .topper__buttons {
    margin-top: 32px;
    margin-bottom: 8px;
  }
  .topper__reference {
    font-size: 20px;
    line-height: 28px;
    color: #000;
  }
}
@media (min-width: 1200px) {
  .topper {
    height: 626px;
  }
  .topper__image {
    top: -50px;
    bottom: 20px;
    right: 20px;
  }
  .topper__image-footnote {
    margin-left: 168px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1400px) {
  .topper__image {
    top: -50px;
    bottom: 50px;
    right: 50px;
  }
  .topper__image-footnote {
    margin-left: 190px;
    margin-bottom: 35px;
  }
}

.page {
  --page-header-min-height: 87px;
  --page-header-image-outlet-y: 8px;
}
.page, .page__content {
  padding-top: var(--page-header-image-outlet-y);
  overflow: hidden;
}
.page__header {
  display: flex;
  align-items: center;
  min-height: var(--page-header-min-height);
  color: #fff;
  background-color: #de2a2a;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 1;
  position: relative;
}
.page__header > .container > .row {
  height: 100%;
}
.page__header-image {
  margin: calc(-1 * var(--page-header-image-outlet-y)) 0;
  align-self: center;
}
.page__header-image img {
  height: calc(var(--page-header-min-height) + 2 * var(--page-header-image-outlet-y));
  width: auto;
  object-fit: contain;
}
.page__header-info {
  padding-top: 16px;
  padding-bottom: 16px;
  align-self: center;
}
.page__header-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
.page__header-subtitle {
  font-size: 16px;
  line-height: 22px;
  margin-top: 8px;
}
.page__header-subtitle :last-child {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .page {
    --page-header-min-height: 120px;
    --page-header-image-outlet-y: 12px;
  }
}
@media (min-width: 768px) {
  .page {
    --page-header-min-height: 160px;
    --page-header-image-outlet-y: 16px;
  }
  .page__header-title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (min-width: 992px) {
  .page {
    --page-header-min-height: 202px;
    --page-header-image-outlet-y: 26px;
  }
  .page__header-title {
    font-size: 32px;
    line-height: 44px;
  }
  .page__header-subtitle {
    font-size: 20px;
    line-height: 24px;
    margin-top: 12px;
  }
}
@media (min-width: 1200px) {
  .page__header-title {
    font-size: 36px;
    line-height: 50px;
  }
  .page__header-subtitle {
    font-size: 24px;
    line-height: 33px;
    margin-top: 12px;
  }
}

.whats-qvtogo {
  background-color: #f1f1f1;
}
.whats-qvtogo__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
}
.whats-qvtogo__description {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 16px;
}
.whats-qvtogo__pictogramms {
  max-width: 512px;
}
.whats-qvtogo__pic {
  max-width: 17%;
}
@media (min-width: 992px) {
  .whats-qvtogo__title {
    font-size: 36px;
    line-height: 50px;
  }
  .whats-qvtogo__description {
    font-size: 20px;
    line-height: 28px;
  }
}

.how-work {
  background: url("/img/europ-bg.png") repeat-x;
  background-position: center bottom;
}
.how-work__header {
  text-align: center;
}
.how-work__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
}
.how-work__item {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
  max-width: 375px;
  margin: 16px 0;
}
.how-work__item-image {
  height: auto;
  flex-shrink: 0;
}
.how-work__item--download .how-work__item-image {
  max-width: 165px;
}
.how-work__item--plugin .how-work__item-image {
  max-width: 125px;
}
.how-work__item--follow .how-work__item-image {
  max-width: 240px;
}
.how-work__item-description {
  text-align: center;
  font-size: 18px;
  line-height: 25px;
  margin-top: 16px;
}
.how-work__buttons {
  margin-top: 18px;
}
.how-work__buttons .qv-button {
  margin-bottom: 16px;
}
@media (max-width: 575.98px) {
  .how-work__buttons .qv-button {
    width: 155px;
  }
}
@media (min-width: 768px) {
  .how-work__title {
    font-size: 36px;
    line-height: 50px;
  }
  .how-work__item {
    max-width: 350px;
  }
  .how-work__item-image {
    height: 270px;
    object-fit: contain;
    object-position: top center;
  }
  .how-work__item--follow .how-work__item-image {
    object-position: center;
  }
}
@media (min-width: 992px) {
  .how-work__item {
    max-width: 380px;
  }
  .how-work__item-image {
    height: 330px;
  }
  .how-work__item--download .how-work__item-image {
    max-width: 204px;
  }
  .how-work__item--plugin .how-work__item-image {
    max-width: 154px;
  }
  .how-work__item--follow .how-work__item-image {
    max-width: 300px;
  }
  .how-work__item-description {
    font-size: 22px;
    line-height: 30px;
    margin-top: 22px;
  }
}

.features-togo {
  --feature-body-padding: 12px;
  --red-dot-size: 7px;
  --dashed-border-width: 3px;
}
.features-togo__header {
  text-align: center;
  color: #fff;
  background-color: #000;
}
.features-togo__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
}
.features-togo__feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--feature-body-padding);
}
.features-togo__feature-image {
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}
.features-togo__feature-image img {
  width: 100%;
  object-fit: contain;
}
.features-togo__feature-title {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 8px;
}
.features-togo__feature-description {
  font-size: 16px;
  line-height: 22px;
}
.features-togo__feature input[type=checkbox] {
  display: none;
}
@media (max-width: 575.98px) {
  .features-togo__feature-title::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
  }
  input[type=checkbox]:not(:checked) ~ .features-togo__feature-body .features-togo__feature-title::after {
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
  }
  input[type=checkbox]:not(:checked) ~ .features-togo__feature-body .features-togo__feature-description {
    display: none;
  }
  input[type=checkbox]:not(:checked) ~ .features-togo__feature-image {
    opacity: 0.8;
  }
  input[type=checkbox]:checked ~ .features-togo__feature-body .features-togo__feature-title::after {
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent;
  }
}
@media (max-width: 575.98px) {
  .features-togo__feature {
    padding-bottom: 0;
  }
  .features-togo__feature:last-child {
    position: relative;
    padding-bottom: 50px;
  }
  .features-togo__feature:last-child::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-left: var(--dashed-border-width) dashed #dbdbdb;
    height: 50px;
    transform: translateX(-50%);
  }
  .features-togo__feature:last-child::after {
    display: block;
    width: var(--red-dot-size);
    height: var(--red-dot-size);
    border-radius: 50%;
    background-color: #de2a2a;
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
  }
}
@media (min-width: 576px) {
  .features-togo {
    --feature-body-padding: 24px;
    --red-dot-size: 11px;
    --dashed-border-width: 5px;
  }
  .features-togo__feature:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .features-togo__feature-image {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .features-togo__feature-image img {
    max-width: 288px;
  }
  .features-togo__feature:nth-child(even) .features-togo__feature-image {
    border-top: var(--dashed-border-width) dashed #dbdbdb;
  }
  .features-togo__feature-body {
    border-left: var(--dashed-border-width) dashed #dbdbdb;
  }
  .features-togo__feature:nth-child(odd) .features-togo__feature-body {
    border-top: var(--dashed-border-width) dashed #dbdbdb;
  }
  .features-togo__feature-title::before {
    display: block;
    width: var(--red-dot-size);
    height: var(--red-dot-size);
    border-radius: 50%;
    background-color: #de2a2a;
    content: "";
    position: absolute;
    transform: translateY(calc(0.5em - 50%)) translateX(calc(-50% - var(--dashed-border-width) / 2 - var(--feature-body-padding)));
  }
  .features-togo__feature:first-child {
    border-left: var(--dashed-border-width) dashed #dbdbdb;
  }
  .features-togo__feature:first-child .features-togo__feature-body {
    border: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  .features-togo__feature:first-child .features-togo__feature-body::before, .features-togo__feature:first-child .features-togo__feature-body::after {
    content: "";
    flex: 1 0 var(--feature-body-padding);
    width: var(--dashed-border-width);
  }
  .features-togo__feature:first-child .features-togo__feature-body::before {
    background: #fff;
    transform: translateX(calc(0px - var(--dashed-border-width) - var(--feature-body-padding)));
    margin-bottom: -0.5em;
  }
  .features-togo__feature:last-child .features-togo__feature-body {
    position: relative;
  }
  .features-togo__feature:last-child .features-togo__feature-body::after {
    display: block;
    width: var(--red-dot-size);
    height: var(--red-dot-size);
    border-radius: 50%;
    background-color: #de2a2a;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(50%) translateX(calc(-50% - var(--dashed-border-width) / 2));
  }
}
@media (min-width: 992px) {
  .features-togo {
    --feature-body-padding: 40px;
    --red-dot-size: 15px;
    --dashed-border-width: 7px;
  }
  .features-togo__title {
    font-size: 36px;
    line-height: 50px;
  }
  .features-togo__feature-image img {
    max-width: 390px;
    max-height: 330px;
  }
  .features-togo__feature-title {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 24px;
  }
  .features-togo__feature-description {
    font-size: 26px;
    line-height: 36px;
  }
}

.reseller-program__header {
  text-align: center;
  color: #fff;
  background-color: #de2a2a;
}
.reseller-program__header .container {
  max-width: 335px;
}
.reseller-program__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
}
.reseller-program__subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}
.reseller-program__block {
  width: 338px;
  max-width: 100%;
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.reseller-program__block-header {
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  color: #302f2e;
  text-align: center;
  margin-bottom: 30px;
}
.reseller-program__block-icon {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-bottom: 30px;
}
.reseller-program__block-icon-image {
  width: 43px;
  height: 40px;
  background-color: #ff1313;
  border-radius: 12px;
  object-fit: contain;
  padding: 7px;
  margin-bottom: 5px;
}
.reseller-program__block-icon-name {
  color: #292727;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
}
.reseller-program__block-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  margin-bottom: 32px;
}
.reseller-program__block-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}
.reseller-program__block-buttons .qv-button {
  margin-bottom: 10px;
}
@media (max-width: 991.98px) {
  .reseller-program__block-buttons .qv-button {
    font-size: 16px;
    line-height: 22px;
    min-height: 28px;
  }
}
@media (min-width: 576px) {
  .reseller-program__block {
    width: 460px;
  }
}
@media (min-width: 992px) {
  .reseller-program__header .container {
    max-width: 540px;
  }
  .reseller-program__title {
    font-size: 36px;
    line-height: 50px;
  }
  .reseller-program__subtitle {
    font-size: 20px;
    line-height: 27px;
  }
  .reseller-program__block {
    width: 575px;
    padding: 50px;
  }
  .reseller-program__block-header {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 40px;
  }
  .reseller-program__block-icon {
    margin-bottom: 40px;
  }
  .reseller-program__block-icon-image {
    width: 74px;
    height: 68px;
    padding: 12px;
    margin-bottom: 8px;
  }
  .reseller-program__block-icon-text {
    font-size: 16px;
    line-height: 22px;
  }
  .reseller-program__block-text {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 44px;
  }
  .reseller-program__block-buttons {
    padding-bottom: 0;
  }
  .reseller-program__block-buttons .qv-button {
    margin-bottom: 10px;
  }
}

.contact-us {
  background-color: #f8f7f7;
}
.contact-us .container {
  max-width: 460px;
}
.contact-us__header {
  text-align: center;
}
.contact-us__header .container {
  max-width: 310px;
}
.contact-us__header a {
  color: #de2a2a;
  text-decoration: none;
}
.contact-us__header a:hover {
  text-decoration: underline;
}
.contact-us__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
}
@media (min-width: 992px) {
  .contact-us .container {
    max-width: 585px;
  }
  .contact-us__title {
    font-size: 36px;
    line-height: 50px;
  }
}

.tour__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tour__description {
  color: #232323;
}
.tour__languages {
  color: #ff1313;
}
.tour__languages img {
  margin: 0 6px;
}
.tour__reviews {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.tour__reviews-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}
.tour__reviews-stars {
  width: 6em;
}
.tour__reviews-rating {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 21px;
  padding: 8px 24px;
  background-color: #f5f8ff;
  border-radius: 24px;
}
.tour__reviews-rating .tour__reviews-stars {
  width: 140px;
}
.tour__reviews-count {
  font-size: 16px;
  line-height: 22px;
  color: #545454;
}
.tour__reviews-stat {
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  color: #545454;
}
.tour__reviews-stat-item {
  display: flex;
  align-items: center;
  margin-top: 18px;
}
.tour__reviews-stat-item-label {
  flex: 0 0 auto;
}
.tour__reviews-stat-item-percentage {
  flex: 0 0 24px;
  max-width: 24px;
}
.tour__reviews-stat-item-bar {
  flex: 1 1 100%;
  height: 1em;
  background-color: #f5f8ff;
  margin: 0 8px;
  border-radius: 0.5em;
  overflow: hidden;
}
.tour__reviews-stat-item-bar::after {
  content: "";
  display: flex;
  height: 100%;
  width: var(--stat-bar-percentage);
  background-color: #ffd600;
  border-radius: 0.5em;
}

.tour-shop .page__header {
  margin-bottom: calc(-1 * var(--page-header-image-outlet-y));
}
.tour-shop__filterbar {
  padding-top: 16px;
  padding-bottom: 16px;
}
.tour-shop__filterbar-filter {
  display: flex;
  align-items: center;
  padding: 0;
}
.tour-shop__filterbar-filter .navbar-toggler {
  padding: 0;
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
}
.tour-shop__filterbar-filter .navbar-toggler img {
  margin-right: 8px;
}
.tour-shop__filterbar-filter .navbar-toggler:focus {
  box-shadow: none;
}
.tour-shop__filterbar-filter-label {
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
}
.tour-shop__filterbar-filter-item {
  padding: 8px;
  min-width: 168px;
}
.tour-shop__filterbar-sort {
  display: flex;
  align-items: center;
  padding: 0;
}
.tour-shop__filterbar-sort-label {
  font-size: 16px;
  line-height: 22px;
  margin-right: 8px;
}
.tour-shop__filterbar-sort-options {
  margin: 0 8px;
}
.tour-shop__filterbar-sort-options select {
  padding: 0 8px;
  border: none;
  background: none;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #000;
}
.tour-shop__filterbar-sort-options select:focus {
  border: none;
}
.tour-shop__filterbar-sort-options select option {
  font-weight: 400;
}
@media (min-width: 992px) {
  .tour-shop__filterbar {
    padding-top: 38px;
    padding-bottom: 32px;
  }
  .tour-shop__filterbar-filter-label {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    margin-right: 60px;
  }
  .tour-shop__filterbar-filter-item {
    padding: 0;
    margin-right: 40px;
  }
  .tour-shop__filterbar-filter-item select {
    font-size: 19px;
  }
  .tour-shop__filterbar-sort-label {
    font-size: 22px;
    line-height: 30px;
  }
  .tour-shop__filterbar-sort-options select {
    font-size: 22px;
    line-height: 30px;
  }
}
.tour-shop__bottombar {
  padding: 8px 0;
  margin: 16px 0;
  background-color: #ff1313;
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  text-transform: uppercase;
}
.tour-shop__bottombar-control {
  display: flex;
  align-items: center;
}
.tour-shop__bottombar-label {
  padding-right: 12px;
  white-space: nowrap;
}
.tour-shop__bottombar .qv-select {
  text-align: center;
  font-size: 16px;
  padding: 0 22px 0 3px;
  background-position: right 3px center;
}
.tour-shop .tour {
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
  line-height: 22px;
}
.tour-shop .tour:nth-child(odd) {
  background-color: #f2f2f2;
}
.tour-shop .tour__title {
  font-weight: 500;
}
.tour-shop .tour__title-price {
  font-weight: 400;
}
.tour-shop .tour__languages {
  font-size: 14px;
  line-height: 19px;
}
.tour-shop .tour__languages span {
  display: inline-block;
  margin-left: 8px;
}
@media (max-width: 575.98px) {
  .tour-shop .tour__languages span {
    display: block;
    margin-left: 0;
  }
}
.tour-shop .tour__languages img {
  height: 12px;
  margin: 0 10px 0 0;
}
.tour-shop .tour__reviews-stars {
  margin-bottom: 6px;
}
.tour-shop .tour__reviews-count {
  font-size: 16px;
  line-height: 22px;
  color: #000;
  text-decoration: underline;
}
.tour-shop .tour__reviews-count:hover {
  text-decoration: none;
}
@media (max-width: 575.98px) {
  .tour-shop .tour .qv-button {
    font-size: 16px;
    line-height: 22px;
    min-height: 36px;
  }
}
@media (min-width: 576px) {
  .tour-shop .tour__title {
    font-size: 19px;
    line-height: 22px;
  }
}
@media (min-width: 992px) {
  .tour-shop .tour {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 22px;
    line-height: 30px;
  }
  .tour-shop .tour__title {
    font-size: 32px;
    line-height: 44px;
  }
  .tour-shop .tour__languages {
    font-size: 24px;
    line-height: 33px;
  }
  .tour-shop .tour__languages span {
    margin-left: 12px;
  }
  .tour-shop .tour__languages img {
    height: 18px;
    margin: 0 16px 0 0;
  }
  .tour-shop .tour__reviews-stars {
    margin-bottom: 8px;
  }
  .tour-shop .tour__price {
    font-size: 41px;
    line-height: 56px;
    color: #333;
  }
}

.tour-details .title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}
.tour-details__info {
  padding-top: 6px;
  padding-bottom: 40px;
  font-size: 20px;
  line-height: 28px;
  background: url("/img/europ-bg.png") repeat-x;
  background-position: center bottom;
}
.tour-details__points {
  display: flex;
  flex-direction: column;
  height: 430px;
  margin-top: calc(-1 * var(--page-header-image-outlet-y));
  padding: 32px 20px 20px;
  background-color: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
}
.tour-details__points .title {
  margin-left: 4px;
  margin-bottom: 24px !important;
}
.tour-details__points .points-carousel {
  flex: 1 1 100%;
  max-height: 100%;
  min-height: 0;
}
.tour-details__reviews-header {
  padding: 36px 0;
  text-align: center;
  color: #fff;
  background-color: #2e2a2a;
}
.tour-details__reviews-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
}
.tour-details__reviews-block {
  width: 100%;
  min-width: 390px;
  padding: 24px 48px 48px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
}
.tour-details__form .title {
  font-size: 26px;
  line-height: 36px;
  font-weight: 500;
}
.tour-details__form .title em {
  color: #de2a2a;
  font-style: normal;
}
@media (min-width: 576px) {
  .tour-details__form {
    padding: 16px 24px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
  }
}
.tour-details__comments-bottombar {
  display: flex;
  justify-content: flex-end;
}
.tour-details .tour__description {
  margin-bottom: 16px;
}
.tour-details .tour__languages {
  font-size: 24px;
  line-height: 33px;
}
.tour-details .tour__languages img {
  height: 17px;
  margin: 0 8px;
}
@media (min-width: 768px) {
  .tour-details__info {
    padding-top: 16px;
  }
  .tour-details__points {
    height: 520px;
    padding: 90px 20px 20px;
    margin-top: -90px;
  }
}
@media (min-width: 992px) {
  .tour-details__points {
    padding: 90px 40px 20px;
  }
}
@media (min-width: 1200px) {
  .tour-details .title {
    margin-bottom: 16px;
  }
  .tour-details__info {
    padding-top: 30px;
    padding-bottom: 90px;
  }
  .tour-details__points {
    height: 520px;
    padding: 90px 50px 20px;
    margin-top: -90px;
  }
  .tour-details .tour__description {
    margin-bottom: 45px;
  }
}

.comment__header {
  display: flex;
}
.comment__header * + * {
  margin-left: 8px;
}
.comment__author {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #de2a2a;
}
.comment__date {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #242424;
}
.comment__text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #323232;
  white-space: pre-line;
  padding: 8px 18px;
  margin-bottom: 16px;
  background-color: #f2f2f2;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}

.cart-page__header {
  background-color: #de2a2a;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.cart-page__header .page__header {
  min-height: 80px;
  box-shadow: none;
}
.cart-page__header .page__header-info {
  padding-top: 8px;
  padding-bottom: 8px;
}
.cart-page__header .page__header-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cart-page__header .page__header-title {
    font-size: 26px;
    line-height: 36px;
  }
}
.cart-page__summary {
  position: relative;
}
.cart-page__summary .cart-summary {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.cart-page__cart-item:nth-child(odd) {
  background-color: #f2f2f2;
}
@media (min-width: 992px) {
  .cart-page__header {
    background-color: transparent;
    box-shadow: none;
  }
  .cart-page__cart-item:nth-child(odd) {
    background-color: transparent;
  }
  .cart-page__cart-item .cart-item {
    position: relative;
    padding-bottom: 36px;
  }
  .cart-page__cart-item .cart-item::after {
    position: absolute;
    content: "";
    display: block;
    bottom: 0;
    left: 32px;
    right: 0;
    border-bottom: 1px solid #000;
  }
  .cart-page__cart-item:last-child .cart-item::after {
    border-bottom: 1px solid transparent;
  }
  .cart-page__summary-wrapper {
    padding: 16px;
    width: 380px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    background-color: #fff;
    position: absolute;
    right: -1px;
    top: -81px;
    z-index: 5;
  }
  .cart-page__summary .cart-summary {
    padding: 0;
    box-shadow: none;
  }
}
@media (min-width: 1200px) {
  .cart-page__summary-wrapper {
    padding: 22px;
    width: 424px;
  }
}

.cart-item {
  padding: 24px 0;
}
.cart-item__image {
  display: block;
  height: 200px;
  width: 194px;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}
.cart-item__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}
.cart-item__title span img {
  height: 15px;
  margin-right: 8px;
}
.cart-item__info-item {
  font-size: 16px;
  line-height: 20px;
  color: #353535;
  margin-bottom: 8px;
}
.cart-item__info-value {
  font-weight: 700;
}
.cart-item .qv-button {
  text-transform: uppercase;
}
.cart-item--mini .cart-item__image {
  max-height: 100px;
  width: auto;
}
.cart-item--mini .cart-item__label {
  display: block;
  margin-top: -25px;
  margin-right: -10px;
  margin-left: auto;
}
.cart-item--mini .cart-item__title {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 0;
  color: #000;
}
.cart-item--mini .cart-item__title span {
  display: inline-block;
}
.cart-item--mini .cart-item__title span img {
  height: 10px;
  margin-right: 4px;
}
.cart-item--mini .cart-item__info-item {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #000;
  margin-bottom: 0;
}
.cart-item--mini .cart-item__info-value {
  font-weight: 700;
}
.cart-summary {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #322f2f;
  padding: 18px;
}
.cart-summary__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}
.cart-summary__lead {
  color: #737272;
  margin-bottom: 18px;
}
.cart-summary__list {
  padding: 8px 0;
  border-top: 1px solid #696969;
  border-bottom: 1px solid #696969;
}
.cart-summary__item, .cart-summary__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0;
}
.cart-summary__label {
  margin-right: 16px;
}
.cart-summary__value {
  font-weight: 700;
}
.cart-summary__subtotal {
  margin-top: 24px;
}
.cart-summary__subtotal .cart-summary__label {
  font-weight: 600;
}

.qv-modal {
  padding: 8px;
}
.qv-modal__dialog {
  max-width: 391px;
  margin-left: auto;
  margin-right: auto;
}
.qv-modal__content {
  min-height: 363px;
}
.qv-modal__footer {
  display: flex;
  justify-content: space-between;
}
.qv-modal__footer .qv-button {
  max-width: calc(50% - 8px);
}
.qv-modal .listen-dialog__header {
  position: absolute;
  width: 100%;
  height: 220px;
  background-image: linear-gradient(180deg, rgba(156, 156, 156, 0) 0%, #000 99.1%), url("/img/modal-ruines-bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.qv-modal .listen-dialog__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 40px;
  padding-bottom: 8px;
}
.qv-modal .listen-dialog__images {
  position: relative;
}
.qv-modal .listen-dialog__images-plugger {
  position: absolute;
  bottom: 1%;
  left: 73%;
}
.qv-modal .listen-dialog__text {
  text-align: right;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
  margin-left: 16px;
  padding-bottom: 70px;
}

.cart-form .qv-modal .cart-form-dialog__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 70px;
}
.cart-form .qv-modal .cart-form-dialog__footer {
  padding-top: 8px;
}
.cart-form .qv-modal .cart-form-dialog__label {
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  color: #000;
  margin-top: 8px;
  margin-bottom: 24px;
}
.cart-form .qv-modal .cart-form-dialog .qv-select,
.cart-form .qv-modal .cart-form-dialog .qv-input,
.cart-form .qv-modal .cart-form-dialog .qv-check {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 30px;
}
.cart-form .qv-modal .cart-form-dialog .qv-select label,
.cart-form .qv-modal .cart-form-dialog .qv-input label,
.cart-form .qv-modal .cart-form-dialog .qv-check label {
  font-size: 16px;
  line-height: 21px;
}
.cart-form .qv-modal .cart-form-dialog .qv-select[type=number],
.cart-form .qv-modal .cart-form-dialog .qv-input[type=number],
.cart-form .qv-modal .cart-form-dialog .qv-check[type=number] {
  padding-right: 6px;
  width: 80px;
}
.cart-form .qv-modal .cart-form-dialog--success .cart-form-dialog__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cart-form .qv-modal .cart-form-dialog--success .cart-form-dialog__body img {
  margin-bottom: 24px;
}
.cart-form .qv-modal .cart-form-dialog--success .cart-form-dialog__message {
  font-size: 20px;
  line-height: 27px;
  font-weight: 500;
}

.checkout-form__wrapper {
  display: flex;
  overflow: hidden;
}
.checkout-form__step {
  flex: 0 0 100%;
  width: 100%;
  transition: margin 300ms;
  padding: 1px;
}
.checkout-form .qv-label {
  font-size: 16px;
  line-height: 16px;
  margin-top: 16px;
  margin-bottom: 8px;
  padding-left: 4px;
}
.checkout-form .qv-input,
.checkout-form .qv-select {
  font-size: 16px;
  padding: 6px;
}
@media (min-width: 768px) {
  .checkout-form .qv-input,
.checkout-form .qv-select {
    max-width: 348px;
  }
}
.checkout-form .qv-check {
  margin-top: 16px;
  padding-left: 30px;
}
.checkout-form .qv-check input[type=checkbox] {
  width: 20px;
  height: 20px;
  padding: 0;
  margin-left: -30px;
}
.checkout-form .qv-check label {
  color: #000;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
}
.checkout-form__buttons {
  margin-top: 32px;
  margin-bottom: 20px;
}
.checkout-form__message {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: #828282;
}
.checkout-form__message img {
  margin-right: 10px;
}
.checkout-form__title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}
.checkout-payment {
  width: 100%;
  height: 200px;
  background-color: cyan;
}
.checkout-page__cart, .checkout-page__summary {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.checkout-page__cart {
  padding: 16px 32px;
}
.checkout-page__cart-titel {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #322f2f;
}
.checkout-page__cart--resume .checkout-page__cart-item a {
  display: none;
}
.checkout-page__cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid #696969;
  font-weight: 700;
}
.checkout-page__message-title {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .checkout-page__message-title {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
.checkout-page__message-text {
  font-size: 16px;
}
@media (min-width: 992px) {
  .checkout-page__message-text {
    font-size: 18px;
  }
}
.checkout-indicators {
  display: flex;
  --indicator-gray: #dcdcdc;
}
.checkout-indicators__step {
  flex: 1 1 100%;
}
.checkout-indicators__step-point {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}
.checkout-indicators__step-point::before, .checkout-indicators__step-point::after {
  flex: 1 1 100%;
  content: "";
  display: block;
  max-width: 16px;
  height: 2px;
  background-color: var(--indicator-gray);
}
.active .checkout-indicators__step-point::before, .active .checkout-indicators__step-point::after {
  max-width: 26px;
}
.checkout-indicators__step-num {
  flex: 0 0 auto;
  color: #444;
  font-size: 16px;
  line-height: 1;
  background-color: var(--indicator-gray);
  margin: 6px 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.active .checkout-indicators__step-num {
  width: 44px;
  height: 44px;
  margin: 0;
  background: radial-gradient(#fff61d 0, #fff61d 16px, #fff 16px, #fff 20px, var(--indicator-gray) 20px);
}
.passed .checkout-indicators__step-num, .finished .checkout-indicators__step-num {
  background: #a2f07b url("/img/icon-check.png") center no-repeat;
  color: transparent;
}
.finished .checkout-indicators__step-num {
  width: 44px;
  height: 44px;
  margin: 0;
  background-image: url("/img/icon-check.png"), radial-gradient(#a2f07b 0, #a2f07b 16px, #fff 16px, #fff 20px, #a2f07b 20px);
}
.checkout-indicators__step-title {
  color: #444;
  font-size: 16px;
  line-height: 18.75px;
  text-align: center;
}
.active .checkout-indicators__step-title, .finished .checkout-indicators__step-title {
  font-weight: 500;
}
.page__header .checkout-indicators__step {
  --indicator-gray: #a8a89f;
  flex: 1 1 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding-left: 8px;
}
.page__header .checkout-indicators__step-point::before, .page__header .checkout-indicators__step-point::after {
  display: none;
}
.page__header .checkout-indicators__step-num {
  color: #fff;
  font-size: 20px;
}
.page__header .checkout-indicators__step-title {
  font-size: 20px;
  line-height: 27.64px;
  color: #fff;
  padding: 0 8px;
}
.page__header .checkout-indicators__step::after {
  content: "";
  width: 39px;
  height: 2px;
  background-color: var(--indicator-gray);
}
.page__header .checkout-indicators__step:last-child::after {
  display: none;
}
.page__header .active .checkout-indicators__step-num {
  color: #000;
  font-weight: 700;
  width: 32px;
  height: 32px;
  background: #fff61d;
}
.page__header .passed .checkout-indicators__step-num {
  width: 32px;
  height: 32px;
  background: #a2f07b url("/img/icon-check.png") center no-repeat;
  color: transparent;
}
.page__header .finished .checkout-indicators__step-num {
  color: transparent;
}
