/*
  Colors
*/
/*
  Width
*/
/*
  Space
*/
/*
	Shadow
*/
.casco {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #efefef;
  padding: 45px 0 0;
  position: relative;
}
.casco__aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
}
.casco__aside .container {
  position: relative;
}
.casco__image {
  display: none;
  padding: 0;
}
.casco__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.casco__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  padding: 0 24px;
  width: 100%;
  padding: 30px;
  background-color: #fff;
}
.casco__content {
  padding: 30px;
  width: 100%;
}
.casco__content p {
  font-size: 16px;
  font-weight: 400;
  color: #736c6c;
  text-align: left;
}
.casco__form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 35px;
  max-width: 470px;
}
.casco__form.-hidden {
  display: none;
}
.casco__form.-center {
  align-items: center;
  gap: 20px;
}
.casco__form.-height {
  min-height: unset;
}
.casco__form__introduction {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}
.casco__form__item {
  position: relative;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  width: 100%;
  height: 55px;
  padding: 5px;
}
.casco__form__item.-invalid {
  border: 1px solid #aa001f;
}
.casco__form__item.-invalid .error__content {
  position: absolute;
  display: block;
  z-index: 2;
  margin: 4px 12px;
}
.casco__form__item.-hidden {
  display: none;
}
.casco__form__input {
  border: none;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 500;
  padding: 0 18px;
  text-transform: uppercase;
}
div.casco__form__input {
  border: 1px solid #aa001f;
}

.casco__form__input.-birthday {
  background: white;
  cursor: pointer;
}
.casco__form__label {
  position: absolute;
  top: -20px;
  left: 12px;
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  background: #fff;
}
.casco__form__checkboxes {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}
.casco__form__disclaimer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 8px 0 0 0;
  padding: 0;
  width: 100%;
  text-align: left;
}
.casco__form__disclaimer__button {
  color: #3e3e3e;
  cursor: pointer;
}
.casco__form__disclaimer.-hidden {
  display: none;
}
.casco__form__disclaimer.-black p {
  color: #3e3e3e;
}
.casco__form__disclaimer p {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.3px;
  color: #3e3e3e;
}
.casco__form__disclaimer p span {
  font-weight: 700;
  color: #3e3e3e;
  text-decoration: underline;
}
.casco__form__disclaimer p span:hover {
  cursor: pointer;
}
.casco__form__disclaimer .checkbox {
  margin: 0 10px 0 0;
}
.casco__form__disclaimer .checkbox__input:hover {
  border: 1px solid #9C9C9C;
}
.casco__form__disclaimer .checkbox__input.-invalid {
  border: 1px solid #691412;
}
.casco__form__disclaimer__svg {
  display: inline-block;
  width: 7px;
}
.casco__form__disclaimer.-spacing {
  padding: 0 0 22px 0;
  border-bottom: 1px solid #ede9e9;
}
.casco__form__hidden {
  display: none;
}
.casco__form__hidden.-active {
  display: block;
}
.casco__form__buttons {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.casco__form__buttons:disabled {
  background-color: #736c6c;
  cursor: not-allowed;
}
.casco__form__button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  border: 0;
  border-radius: 8px;
  background-color: #b61539;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.casco__form__button:hover {
  background-color: #8e0f2a;
}
.casco__form__button.-back {
  color: #736c6c;
  background-color: #fff;
  border: 1px solid #736c6c;
}
.casco__form__button:disabled {
  background-color: #736c6c;
  cursor: not-allowed;
}
.casco__form__button.-loading {
  position: relative;
  color: transparent;
}
.casco__form__button.-loading::after {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid #fff;
  border-top-color: #b61539;
  /* Spinner color */
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.casco__form__timer {
  position: relative;
  text-align: center;
  width: 100%;
}
.casco__form__timer__text {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.casco__form__circle {
  top: 0;
  right: 0;
  transform: rotateY(-180deg) rotateZ(-90deg);
}
.casco__form__circle.-animation circle {
  animation: countdown 60s linear;
}
.casco__form__circle circle {
  stroke-dashoffset: 0px;
  stroke-dasharray: 172.5px;
  stroke-linecap: round;
  stroke-width: 3px;
  stroke: red;
}
.casco__form__circle__text {
  display: inline-block;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
.casco__form__why {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
}
.casco__form__why:hover {
  cursor: pointer;
}
.casco__form__phone {
  color: #b61539;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  width: 100%;
  text-align: center;
}
.casco__form__phone:hover {
  cursor: pointer;
}
.casco__form__error {
  margin: 0;
  color: #b61539;
  font-size: 16px;
  font-weight: 700;
}
.casco__form__error__text {
  margin: 0;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}
@keyframes countdown {
  from {
    stroke-dashoffset: 0px;
    stroke: black;
  }
  to {
    stroke-dashoffset: 172.5px;
    stroke: black;
  }
}
.casco__table {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
@media only screen and (min-width: 769px) {
  .casco {
    padding: 60px 0 0;
  }
}
@media only screen and (min-width: 1200px) {
  .casco {
    padding: 60px 0 25px 0;
  }
  .casco .-mobile {
    display: none;
  }
  .casco__aside {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    align-self: center;
    margin: auto;
    gap: 14px;
    max-width: 1249px;
  }
  .casco__image {
    padding: 0 40px 0 0;
    display: block;
  }
  .casco__image img {
    min-height: 735px;
  }
  .casco__wrapper {
    max-width: 470px;
    min-height: 735px;
    align-items: stretch;
  }
  .casco__form {
    min-height: 735px;
  }
  .casco__form__buttons {
    flex-direction: row;
    justify-content: space-between;
  }
  .casco__form__button.-back {
    width: 125px;
  }
  .casco__form__button.-repeat {
    width: 250px;
  }
}
@media only screen and (min-width: 1280px) {
  .casco__table {
    max-width: 1249px;
  }
}
@media only screen and (min-width: 1440px) {
  .casco__wrapper {
    width: 1249px;
  }
  .casco__content {
    align-items: flex-start;
    max-width: 1249px;
  }
}
/*
  Colors
*/
/*
  Width
*/
/*
  Space
*/
/*
	Shadow
*/
.content-load {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 0 -130px 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.content-load.-offer .content__loader {
  align-items: center;
}
.content-load.-offer .content__loader__area {
  align-items: center;
}
.content__loader {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 695px;
}
.content__loader__area {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 32px 0;
  overflow: hidden;
}
.content__loader__logo {
  margin: 0 0 50px 0;
  width: 50px;
  height: auto;
  animation: opacity 1s linear infinite alternate;
}
.content__loader__text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 32px;
  width: 100%;
  min-height: 126px;
  background-color: #f8f3f4;
}
.content__loader__text img {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 2px 20px 0 0;
  height: auto;
}
.content__loader__text img.-key {
  width: 11px;
}
.content__loader__text img.-suitcase {
  width: 23px;
}
.content__loader__text p {
  margin: 0;
  color: #474242;
  font-size: 16px;
  font-size: 1rem;
  line-height: 23px;
  line-height: 1.4375rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  text-rendering: optimizeLegibility;
  font-smooth: always;
  font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
}
.content__loader__balls {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 240px;
  height: 26px;
}
.content__loader__ball {
  position: absolute;
  top: -100px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  width: 26px;
  height: 100px;
  transform-origin: center center;
}
.content__loader__ball:before {
  content: "";
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #b61539;
}
.content__loader__ball.-left {
  left: 71px;
  animation: leftBall 1.5s 0s ease-in-out infinite normal;
}
.content__loader__ball.-left:before {
  animation: leftBallAnim 1.5s 0s ease infinite normal;
}
.content__loader__ball.-center {
  left: 50%;
  transform: translateX(-50%);
}
.content__loader__ball.-center:before {
  animation: center 1.5s 0.65s infinite normal;
}
.content__loader__ball.-right {
  right: 71px;
  animation: rightBall 1.5s 0s ease-in-out infinite normal;
}
.content__loader__ball.-right:before {
  animation: rightBallAnim 1.5s 0s ease infinite normal;
}

.-hidden {
  display: none;
}

@keyframes opacity {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes center {
  0% {
    background-color: #b61539;
  }
  25% {
    background-color: #d8d8d8;
  }
  50% {
    background-color: #b61539;
  }
  75% {
    background-color: #d8d8d8;
  }
  100% {
    background-color: #b61539;
  }
}
@keyframes leftBall {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(75deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes leftBallAnim {
  0% {
    background-color: #d8d8d8;
  }
  25% {
    background-color: #d8d8d8;
  }
  50% {
    background-color: #d8d8d8;
  }
  75% {
    background-color: #b61539;
  }
  100% {
    background-color: #b61539;
  }
}
@keyframes rightBall {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-75deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes rightBallAnim {
  0% {
    background-color: #b61539;
  }
  25% {
    background-color: #b61539;
  }
  50% {
    background-color: #b61539;
  }
  75% {
    background-color: #d8d8d8;
  }
  100% {
    background-color: #d8d8d8;
  }
}
@media only screen and (min-width: 1280px) {
  .content__loader {
    padding: 100px 0;
    width: 90%;
  }
}
/*
  Colors
*/
/*
  Width
*/
/*
  Space
*/
/*
	Shadow
*/
.popups {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1050;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0 14px;
}
.popups.-hidden {
  display: none;
}
.popups__aside {
  width: 100%;
  max-height: 570px;
  padding: 20px 10px 45px 25px;
  height: auto;
  background-color: #fff;
}
.popups__aside.-hidden {
  display: none;
}
.popups__header {
  padding: 0 0 20px 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.popups__logo {
  width: 175px;
  height: 40px;
}
.popups__close {
  cursor: pointer;
}
.popups__text {
  width: 100%;
  max-height: 385px;
  padding: 0 40px 0 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.popups__text::-webkit-scrollbar {
  width: 5px;
  border-radius: 8px;
}
.popups__text::-webkit-scrollbar-thumb {
  background-color: #b61539;
  border: 1px solid #b61539;
  border-radius: 8px;
}
.popups__text::-webkit-scrollbar-track {
  background-color: #D9D9D9;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
}
.popups__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.popups__content h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
.popups__content p {
  margin: 20px 0 0 0;
  color: #736C6C;
  font-weight: 500;
}
.popups__content * {
  text-align: left;
  font-size: 16px;
}
.popups__download {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  cursor: pointer;
}
.popups__download__text {
  color: #000;
  font-size: 14px;
  font-weight: 700;
}
@media only screen and (min-width: 769px) {
  .popups {
    padding: 0;
  }
  .popups__aside {
    width: 695px;
  }
}