@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&family=Roboto+Condensed:wght@300&display=swap');
html {
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}
*,
*::before,
*::after {
  box-sizing: inherit;
  font-family: inherit;
  margin: 0;
  padding: 0;
}
address {
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
ul {
  list-style-type: none;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1370px;
  padding: 0 15px;
  margin: 0 auto;
}
.button {
  cursor: pointer;
  background-image: linear-gradient(to top, #0073d5 0%, #5fc5e9 100%);
  font-size: 23px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 60px;
  border-radius: 30px;
  color: #fff;
  transition: transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
@media (max-width: 530px) {
  .button {
    padding: 15px 50px;
    font-size: 20px;
  }
}
.button.uppercase {
  text-transform: uppercase;
}
.button.small {
  padding: 12px 47px;
  font-size: 17px;
  font-weight: 400;
}
@media (max-width: 475px) {
  .button.small {
    padding: 12px 40px;
  }
}
input.invalid,
select.invalid {
  transition: all 0.3s ease-in-out;
  border: 1px solid firebrick!important;
  color: firebrick!important;
}
input.invalid::placeholder,
select.invalid::placeholder {
  color: firebrick!important;
}
label.invalid {
  transition: all 0.3s ease-in-out;
  color: firebrick!important;
}
::-webkit-scrollbar {
  width: 10px;
  border-radius: 10px;
  background: transparent;
}
::-webkit-scrollbar-track {
  background: #f9f9f9;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #5fc5e9;
  border-radius: 10px;
}
.header {
  height: 350px;
  background: url("/i/bg/header-bg.png") center center / cover no-repeat;
  color: #fff;
}
@media (max-width: 450px) {
  .header {
    height: 200px;
  }
}
.header .wrapper {
  padding-top: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 355px) {
  .header .wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.header .wrapper .logo {
  margin-right: 20px;
}
@media (max-width: 685px) {
  .header .wrapper .logo .image {
    width: 130px;
  }
}
@media (max-width: 450px) {
  .header .wrapper .logo .image {
    width: 100px;
    margin-right: 10px;
  }
}
.header .wrapper .content {
  display: flex;
  width: 1120px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1220px) {
  .header .wrapper .content {
    flex-wrap: wrap;
  }
}
@media (max-width: 685px) {
  .header .wrapper .content {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media (max-width: 355px) {
  .header .wrapper .content {
    align-items: center;
  }
}
.header .wrapper .content .descr {
  text-transform: uppercase;
}
@media (max-width: 1220px) {
  .header .wrapper .content .descr {
    font-size: 16px;
  }
}
@media (max-width: 685px) {
  .header .wrapper .content .descr {
    display: none;
  }
}
.header .wrapper .content .descr span {
  color: #daebfd;
}
.header .wrapper .content .phone-block {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 5px 5px 0 0;
  transition: background-color 0.1s;
}
@media (max-width: 576px) {
  .header .wrapper .content .phone-block {
    padding: 5px;
    margin-bottom: 5px;
  }
}
.header .wrapper .content .phone-block.active {
  background: #4094d9;
}
.header .wrapper .content .phone-block .whatsapp {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  position: relative;
}
@media (max-width: 576px) {
  .header .wrapper .content .phone-block .whatsapp {
    margin-right: 5px;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 450px) {
  .header .wrapper .content .phone-block .whatsapp {
    width: 25px;
    height: 25px;
  }
}
.header .wrapper .content .phone-block .whatsapp::after {
  content: '';
  width: 1px;
  height: 90%;
  background: #ffffff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -7px;
  border-radius: 2px;
}
@media (max-width: 576px) {
  .header .wrapper .content .phone-block .whatsapp::after {
    display: none;
  }
}
.header .wrapper .content .phone-block .whatsapp .icon {
  width: 100%;
  height: 100%;
  transition: transform 0.2s;
}
.header .wrapper .content .phone-block .whatsapp .icon:hover {
  transform: translateY(-2px);
}
.header .wrapper .content .phone-block .phone {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s;
}
.header .wrapper .content .phone-block .phone:hover {
  transform: translateY(-1px);
}
@media (max-width: 1220px) {
  .header .wrapper .content .phone-block .phone {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .header .wrapper .content .phone-block .phone {
    font-size: 30px;
  }
}
@media (max-width: 450px) {
  .header .wrapper .content .phone-block .phone {
    font-size: 22px;
  }
}
.header .wrapper .content .phone-block .arrow {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
@media (max-width: 576px) {
  .header .wrapper .content .phone-block .arrow {
    width: 20px;
    height: 20px;
  }
}
.header .wrapper .content .phone-block .arrow.active {
  transform: rotate(180deg);
}
.header .wrapper .content .phone-block .arrow .icon {
  width: 100%;
  height: 100%;
}
.header .wrapper .content .phone-block .more-phones {
  display: none;
  background: #4094d9;
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  padding: 10px 10px 10px 65px;
  border-radius: 0 0 5px 5px;
}
@media (max-width: 576px) {
  .header .wrapper .content .phone-block .more-phones {
    padding: 5px 5px 5px 40px;
    top: 40px;
  }
}
@media (max-width: 450px) {
  .header .wrapper .content .phone-block .more-phones {
    top: 35px;
    padding: 5px 5px 5px 35px;
  }
}
.header .wrapper .content .phone-block .more-phones .phone {
  display: block;
  margin-bottom: 10px;
}
.header .wrapper .content .phone-block .more-phones .phone:last-child {
  margin-bottom: 0;
}
.header .wrapper .content .address {
  padding-left: 40px;
  position: relative;
}
@media (max-width: 1220px) {
  .header .wrapper .content .address {
    display: flex;
  }
  .header .wrapper .content .address span {
    margin-left: 10px;
  }
}
@media (max-width: 1220px) and (max-width: 685px) {
  .header .wrapper .content .address {
    width: auto;
    padding-left: 0;
    margin-bottom: 10px;
  }
  .header .wrapper .content .address::before {
    display: none;
  }
}
@media (max-width: 1220px) and (max-width: 500px) {
  .header .wrapper .content .address {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
@media (max-width: 576px) {
  .header .wrapper .content .address {
    display: none;
  }
}
.header .wrapper .content .address::before {
  content: '';
  width: 27px;
  height: 36px;
  background: url("/i/icons/map-marker.png") no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header .wrapper .content .address span {
  color: #daebfd;
}
.header .wrapper .content .header-button {
  cursor: pointer;
  width: 217px;
  height: 42px;
  background-color: #499ee1;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  border-radius: 30px;
  transition: transform 0.2s;
}
.header .wrapper .content .header-button:hover {
  transform: translateY(-2px);
}
@media (max-width: 500px) {
  .header .wrapper .content .header-button {
    width: 200px;
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .header .wrapper .content .header-button {
    width: 150px;
    height: 35px;
    font-size: 10px;
  }
}
.promo {
  background: url("/i/bg/promo-bg.png") center center / cover no-repeat;
  height: 700px;
}
@media (max-width: 530px) {
  .promo {
    height: 600px;
  }
}
.promo .container {
  position: relative;
}
.promo .content {
  margin-top: -60px;
  height: 580px;
  max-width: 610px;
  background: url("/i/bg/promo-logo-banner.png") no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .promo .content {
    max-width: unset;
    width: 100%;
    background-position: center center;
  }
}
@media (max-width: 530px) {
  .promo .content {
    background-size: contain;
    height: 500px;
  }
}
.promo .content .volumes {
  font-size: 28px;
  font-weight: 300;
  color: #797d7f;
  margin-bottom: 10px;
}
@media (max-width: 530px) {
  .promo .content .volumes {
    font-size: 20px;
  }
}
.promo .content .title {
  font-size: 54px;
  color: #2674c4;
  font-weight: 800;
  text-align: center;
  line-height: 1;
  margin-bottom: 30px;
}
@media (max-width: 530px) {
  .promo .content .title {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
.promo .content .title span {
  color: #9f1825;
  font-size: 44px;
}
@media (max-width: 530px) {
  .promo .content .title span {
    font-size: 30px;
  }
}
.promo .img {
  position: absolute;
  right: 0;
  top: -20px;
  z-index: -1;
}
@media (max-width: 1320px) {
  .promo .img {
    top: auto;
    bottom: -90px;
  }
}
@media (max-width: 1320px) {
  .promo .img img {
    width: 550px;
  }
}
@media (max-width: 1140px) {
  .promo .img img {
    width: 350px;
  }
}
@media (max-width: 768px) {
  .promo .img img {
    display: none;
  }
}
.products {
  padding-top: 270px;
  margin-top: -180px;
  background: url("/i/bg/products-bg.png") center center / cover no-repeat;
  min-height: 1310px;
}
@media (max-width: 1370px) {
  .products {
    padding-bottom: 100px;
  }
}
@media (max-width: 976px) {
  .products {
    background: url("/i/bg/products-bg_mobile.png") center center / cover no-repeat;
  }
}
@media (max-width: 450px) {
  .products {
    min-height: unset;
    padding-top: 150px;
  }
}
.products .tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 460px) {
  .products .tabs {
    flex-direction: column;
    align-items: center;
  }
}
.products .tabs .tab {
  font-size: 26px;
  margin: 20px;
  cursor: pointer;
  border-bottom: 1px dashed #af0e0e;
  color: #af0e0e;
}
@media (max-width: 576px) {
  .products .tabs .tab {
    margin: 10px;
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .products .tabs .tab {
    text-align: center;
    width: fit-content;
    margin: 0 0 10px 0;
  }
  .products .tabs .tab:last-child {
    margin-bottom: 0;
  }
}
.products .tabs .tab.active {
  color: #fff;
  border-bottom-color: transparent;
}
.products .items {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 1220px) {
  .products .items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .products .items {
    grid-template-columns: 1fr;
  }
}
.products .items.active {
  display: grid;
}
.products .items .item {
  padding: 40px 35px 30px 35px;
  height: 375px;
  background-color: #e8f6fe;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1220px) {
  .products .items .item {
    padding: 20px;
  }
}
@media (max-width: 400px) {
  .products .items .item {
    align-items: center;
  }
}
@media (max-width: 360px) {
  .products .items .item {
    padding: 10px;
    height: 320px;
  }
}
.products .items .item .img {
  max-width: 160px;
  margin-right: 45px;
  object-fit: cover;
}
@media (max-width: 1360px) {
  .products .items .item .img {
    margin-right: 10px;
    max-width: 150px;
  }
}
@media (max-width: 800px) {
  .products .items .item .img {
    max-width: 200px;
  }
}
@media (max-width: 400px) {
  .products .items .item .img {
    margin-right: 15px;
    max-width: 120px;
    height: 80%;
  }
}
@media (max-width: 360px) {
  .products .items .item .img {
    margin-right: 10px;
    max-width: 100px;
    height: 60%;
  }
}
.products .items .item .content {
  display: flex;
  flex-direction: column;
  color: #0b0b0b;
  padding-top: 10px;
}
@media (max-width: 800px) {
  .products .items .item .content {
    width: 100%;
  }
}
.products .items .item .content .title {
  font-weight: 600;
  font-size: 19px;
  max-width: 150px;
  margin-bottom: 55px;
}
@media (max-width: 800px) {
  .products .items .item .content .title {
    width: 100%;
  }
}
.products .items .item .content .price {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
}
.products .items .item .content .price.additional {
  font-size: 11px;
  margin-top: 8px;
}
.products .items .item .content .price.additional span {
  font-size: 18px;
}
.products .items .item .content .price span {
  font-weight: 600;
  display: block;
  font-size: 24px;
}
.products .items .item .content .button {
  margin-top: auto;
  margin-bottom: 5px;
}
@media (max-width: 400px) {
  .products .items .item .content .button {
    margin-top: 32px;
  }
}
.products .items .item.hit {
  background-color: #fedae0;
}
.products .items .item.hit .title {
  margin-bottom: 10px;
}
.products .items .item.hit .hit-label {
  background-color: #af0e0e;
  width: 115px;
  height: 25px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.products .benefits-list {
  margin-top: 25px;
  padding: 0 0 25px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.products .benefits-list .item {
  margin: 0 15px 15px;
  color: #e8f6fe;
  font-size: 19px;
  padding-left: 40px;
  position: relative;
}
@media (max-width: 1370px) {
  .products .benefits-list .item {
    font-size: 16px;
  }
}
@media (max-width: 1120px) {
  .products .benefits-list .item {
    margin-right: 0;
  }
}
.products .benefits-list .item::before {
  content: '';
  width: 25px;
  height: 25px;
  background: url("/i/icons/check.png") no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.benefits {
  text-align: center;
  background: url("/i/bg/benefits-bg.jpg") center center / cover no-repeat;
  padding: 140px 0;
  color: #0d55af;
}
@media (max-width: 700px) {
  .benefits {
    padding: 20px 0;
  }
}
.benefits .items {
  display: flex;
  justify-content: space-around;
  max-width: 1285px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.benefits .items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 950px) {
  .benefits .items .item {
    margin-bottom: 10px;
  }
}
.benefits .items .item .img {
  width: 142px;
  height: 142px;
  background: #0074cb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.benefits .items .item .descr {
  font-size: 15px;
  font-weight: 700;
}
.benefits .items .item.text {
  font-size: 19px;
  max-width: 280px;
  font-weight: 600;
}
@media (max-width: 950px) {
  .benefits .items .item.text {
    max-width: unset;
    order: 1;
    width: 100%;
    margin-top: 20px;
  }
}
.benefits .items .item.text p:first-child {
  line-height: 1.2;
}
.benefits .items .item.text p:last-child {
  margin-top: 25px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.faq {
  background: url("/i/bg/faq-bg.jpg") center center / cover no-repeat;
}
@media (max-width: 976px) {
  .faq {
    background: url("/i/bg/faq-bg_mobile.png") center center / cover no-repeat;
  }
}
.faq .items {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 160px 35px;
}
@media (max-width: 700px) {
  .faq .items {
    padding: 80px 35px;
  }
}
@media (max-width: 600px) {
  .faq .items {
    justify-content: center;
  }
}
.faq .items .item {
  color: #fff;
  text-align: center;
}
@media (max-width: 1150px) {
  .faq .items .item {
    margin-bottom: 20px;
  }
}
.faq .items .item .img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.faq .items .item .title {
  margin-bottom: 20px;
  font-size: 16px;
  text-transform: uppercase;
}
.faq .items .item .text {
  font-size: 16px;
  text-align: left;
  max-width: 260px;
  height: 180px;
  display: flex;
  flex-direction: column;
}
.faq .items .item .text p {
  line-height: 1.2;
}
.faq .items .item .text p:not(:last-child) {
  margin-bottom: 16px;
}
.question {
  text-align: center;
  background: url("/i/bg/question-bg.png") center center / cover no-repeat;
  padding-top: 130px;
  height: 500px;
}
@media (max-width: 700px) {
  .question {
    padding-top: 40px;
    height: 440px;
  }
}
.question .title {
  font-size: 34px;
  color: #479ce0;
  font-weight: 600;
  margin-bottom: 5px;
}
.question .text {
  font-size: 16px;
  color: #161616;
  margin-bottom: 25px;
}
.question .form {
  display: flex;
  justify-content: center;
}
@media (max-width: 650px) {
  .question .form {
    flex-direction: column;
  }
}
.question .form .input {
  border: 1px solid #499ee1;
  border-radius: 30px;
  width: 315px;
  height: 60px;
  padding: 20px 20px 20px 40px;
  font-size: 17px;
  font-weight: 300;
  color: #499ee1;
  margin-right: 30px;
}
@media (max-width: 650px) {
  .question .form .input {
    margin-bottom: 20px;
    width: 100%;
  }
}
.question .form .input::placeholder {
  color: #499ee1;
  font-size: 17px;
}
.question .form .button {
  height: 60px;
  font-size: 17px;
}
.footer {
  background: url("/i/bg/footer-bg.png") center center / cover no-repeat;
  height: 420px;
  margin-top: -130px;
  padding-top: 300px;
  color: #fff;
  font-size: 17px;
}
@media (max-width: 1080px) {
  .footer {
    padding-top: 240px;
  }
}
@media (max-width: 700px) {
  .footer {
    padding-top: 160px;
    font-size: 15px;
  }
}
@media (max-width: 393px) {
  .footer {
    height: unset;
    padding-bottom: 50px;
  }
}
.footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 18px;
}
@media (max-width: 700px) {
  .footer .wrapper {
    flex-wrap: wrap;
    position: relative;
  }
}
@media (max-width: 393px) {
  .footer .wrapper {
    position: unset;
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .footer .wrapper .copyright {
    width: 140px;
    height: 150px;
  }
  .footer .wrapper .copyright br {
    display: none;
  }
  .footer .wrapper .copyright span {
    display: block;
  }
  .footer .wrapper .copyright span:first-child {
    margin-bottom: 25px;
  }
}
@media (max-width: 393px) {
  .footer .wrapper .copyright {
    height: auto;
    width: auto;
    margin-bottom: 10px;
  }
}
.footer .wrapper .contacts {
  display: flex;
}
@media (max-width: 1080px) {
  .footer .wrapper .contacts {
    flex-direction: column;
    justify-content: space-between;
    height: 150px;
  }
}
.footer .wrapper .contacts .item {
  padding-left: 45px;
  position: relative;
  margin-right: 75px;
}
@media (max-width: 1230px) {
  .footer .wrapper .contacts .item {
    margin-right: 20px;
  }
}
@media (max-width: 700px) {
  .footer .wrapper .contacts .item {
    margin-right: 0;
  }
}
.footer .wrapper .contacts .item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
}
.footer .wrapper .contacts .item:last-child {
  margin-right: 0;
}
.footer .wrapper .contacts .address::before {
  width: 30px;
  height: 36px;
  background-image: url("/i/icons/map-marker-footer.png");
}
.footer .wrapper .contacts .links::before {
  width: 36px;
  height: 36px;
  background-image: url("/i/icons/phone.png");
}
.footer .wrapper .contacts .links a {
  display: block;
}
.footer .wrapper .contacts .instagram::before {
  width: 36px;
  height: 36px;
  background-image: url("/i/icons/instagram.png");
}
.footer .wrapper .developer {
  text-align: right;
}
@media (max-width: 700px) {
  .footer .wrapper .developer {
    position: absolute;
    bottom: 0;
  }
}
@media (max-width: 393px) {
  .footer .wrapper .developer {
    position: unset;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .footer .wrapper .developer br {
    display: none;
  }
}
.popup-overlay {
  height: 100%;
  display: none;
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("/i/bg/popup-bg.jpg") center center / cover no-repeat;
}
.popup {
  display: none;
  width: 440px;
  min-height: 600px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #e8f6fe;
  border-radius: 40px;
}
@media (max-width: 460px) {
  .popup {
    width: 90%;
  }
}
.popup .wrapper .popup-header {
  background: url("/i/bg/popup-header-bg.png") bottom center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  padding: 30px 0 35px 0;
  border-radius: 40px 40px 0 0;
}
.popup .wrapper .popup-content {
  padding: 20px 40px 30px;
}
.popup .wrapper .popup-content .block:not(:last-child) {
  margin-bottom: 25px;
}
.popup .wrapper .popup-content .block.has-container {
  display: none;
}
.popup .wrapper .popup-content .block.has-container.active {
  display: block;
}
.popup .wrapper .popup-content .block .checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.popup .wrapper .popup-content .block .checkbox .checkmark {
  background-color: #fff;
  border: 2px solid #0079bf;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  position: relative;
  overflow: hidden;
}
.popup .wrapper .popup-content .block .checkbox .checkmark::before {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 5px;
  width: 6px;
  height: 12px;
  border: solid #0079bf;
  border-width: 0 3px 3px 0;
  transform: rotate(40deg);
  opacity: 0;
  transition: top 0.1s ease-in-out, opacity 0.1s ease-in-out;
}
.popup .wrapper .popup-content .block .checkbox .text {
  font-size: 21px;
  color: #2674c4;
  line-height: 1;
}
.popup .wrapper .popup-content .block .checkbox.checked .checkmark::before {
  top: 1px;
  opacity: 1;
}
.popup .wrapper .popup-content .block .title {
  font-size: 22px;
  color: #2674c4;
  line-height: 1;
  margin-bottom: 15px;
}
.popup .wrapper .popup-content .block .content {
  display: flex;
}
.popup .wrapper .popup-content .block .content select,
.popup .wrapper .popup-content .block .content input {
  appearance: none;
  outline: none;
  width: 100%;
  height: 55px;
  border-radius: 30px;
  border: 1px solid #499ee1;
  background-color: #ffffff;
  font-size: 17px;
  font-weight: 300;
  color: #499ee1;
  padding: 0 25px;
}
.popup .wrapper .popup-content .block .content .city {
  background: #fff url("/i/icons/select-arrow.png") 320px center no-repeat;
  cursor: pointer;
  position: relative;
}
.popup .wrapper .popup-content .block .content .city::before {
  content: '';
  width: 18px;
  height: 10px;
  position: absolute;
  right: 0;
}
@media (max-width: 460px) {
  .popup .wrapper .popup-content .block .content .city {
    background: #fff url("/i/icons/select-arrow.png") calc(100% - 20px) center no-repeat;
  }
}
.popup .wrapper .popup-content .block .content .product-name {
  cursor: pointer;
  background-color: #98d0f7;
  font-size: 19px;
  font-weight: 600;
  color: #0b0b0b;
  border: none;
  outline: none;
  border-radius: 4px 0 0 4px;
  width: 85%;
}
.popup .wrapper .popup-content .block .content .product-name:disabled {
  cursor: auto;
}
.popup .wrapper .popup-content .block .content .count {
  text-align: center;
  border-radius: 0 4px 4px 0;
  width: 15%;
  border: 3px solid #98d0f7;
  position: relative;
}
.popup .wrapper .popup-content .block .content .count .input {
  width: 100%;
  height: 100%;
  padding: 10px;
  border-radius: 0;
  border: none;
  font-weight: 600;
}
.popup .wrapper .popup-content .block .content .count .count-btns {
  width: 15px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.popup .wrapper .popup-content .block .content .count .count-btns .count-btn {
  display: flex;
  justify-content: center;
  align-content: center;
  font-weight: 700;
  height: 50%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  color: #98d0f7;
}
.popup .wrapper .popup-content .block .content .count .count-btns .count-btn:hover {
  background-color: #f9f9f9;
}
.popup .wrapper .popup-content .block .content .floor-items {
  display: flex;
  flex-wrap: wrap;
}
.popup .wrapper .popup-content .block .content .floor-items .floor-item {
  width: 20%;
  margin-bottom: 10px;
}
.popup .wrapper .popup-content .block .content .floor-items .elevator {
  margin-top: 5px;
}
.popup .wrapper .order {
  border-top: 1px solid #8cc3ed;
  padding: 30px 40px 40px 40px;
}
.popup .wrapper .order .sum {
  font-size: 31px;
  font-weight: 600;
  color: #0b0b0b;
  text-align: center;
  margin-bottom: 20px;
}
.popup .wrapper .order .button {
  padding: 15px 20px;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}
.popup .wrapper .loader {
  position: relative;
  width: 100%;
  height: 440px;
}
.popup .wrapper .loader::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url("/i/icons/loader.svg") no-repeat;
  width: 200px;
  height: 200px;
}
.popup .close {
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  color: #555c62;
  transform: rotate(45deg);
  position: absolute;
  top: -15px;
  right: -15px;
}
@media (max-height: 800px) {
  .popup .close {
    right: 0px;
  }
}
.popup.order {
  height: 95%;
  min-height: unset;
}
.popup.order .wrapper {
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100%;
}
.popup.order .wrapper::-webkit-scrollbar {
  display: none;
}
.popup.callback {
  min-height: unset;
}
@media (max-height: 800px) {
  .popup.callback .popup-header {
    padding: 40px 0;
  }
}
@media (max-height: 800px) {
  .popup.callback .order {
    padding: 40px;
  }
}
.popup.success {
  width: 400px;
  height: 100px;
  min-height: unset;
  padding: 20px;
}
.popup.success .wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
.popup.success .wrapper .icon {
  height: 100%;
  margin-right: 20px;
}
.popup.success .wrapper .text {
  color: #2674c4;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.loader {
  display: none;
  width: 200px;
  height: 200px;
  background: url("/i/icons/loader.svg") center center / cover no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.whatsapp-button {
  width: 70px;
  height: 70px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(225deg, #25d366 50%, #128c7e 100%);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}
.whatsapp-button:hover {
  transform: translateY(-2px);
}
