@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "Montserrat-Light";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff");
}
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
}
@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: "Montserrat-Medium";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
}
@font-face {
  font-weight: 500;
  font-style: normal;
  font-family: "Montserrat-SemiBold";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
}
@font-face {
  font-weight: bold;
  font-style: normal;
  font-family: "Montserrat-Bold";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
}
body {
  margin: 0px;
}

html {
  font-family: "Inter", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  background: white;
  z-index: 1000;
}
header .header-container {
  display: flex;
  padding: 20px 10vw;
  align-items: center;
}
header .header-container .header-logo {
  display: flex;
}
header .header-container .header-logo:nth-child(2) {
  margin-right: auto;
}
header .header-container .header-logo:nth-child(2) img {
  max-width: 250px;
}
header .header-container .header-logo img {
  width: inherit;
  max-width: 105px;
  max-height: 50px;
}
header .header-container .header-tel-block {
  display: flex;
  flex-direction: column;
  margin: 0 40px;
}
header .header-container .header-tel-block .tel-top {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 28px;
  text-align: center;
  color: #000000;
  opacity: 0.7;
}
header .header-container .header-tel-block .tel-bottom {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #000000;
  opacity: 0.7;
}
header .header-container .header-icon {
  margin: 0px 0px 0px 10px;
}

#main {
  padding-top: 75px;
}
#main .main-title {
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  line-height: 70px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.02em;
  color: #000000;
  justify-content: center;
  margin: 15px auto;
}
#main .main-container {
  background: url(../img/bg-pay.png);
  min-height: 90vh;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#main .main-container .main-form {
  margin: 0px auto;
  padding: 40px 50px;
  max-width: 510px;
  height: fit-content;
  background: #FFFFFF;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}
#main .main-container .main-form .main-form-title {
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  color: #000000;
  margin-bottom: 7px;
}
#main .main-container .main-form .textfield input {
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  box-shadow: 0px 4px 18px rgba(140, 140, 140, 0.16);
  border-radius: 12px;
  margin: 10px 0px;
}
#main .main-container .main-form .textfield:nth-child(4) {
  margin-bottom: 20px;
}
#main .main-container .main-form .button {
  border: 1px solid #C0C0C0;
  border-radius: 25px;
  padding: 11px 33px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  width: fit-content;
  margin: 20px auto 0;
  cursor: pointer;
}

.textfield {
  position: relative;
  box-sizing: border-box;
  min-width: 300px;
  margin: 0;
  padding: 0;
  border: none;
}
.textfield__label {
  position: absolute;
  top: 22px;
  left: 15px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: rgba(77, 77, 77, 0.5);
  user-select: none;
  cursor: text;
}
.textfield__label::after {
  position: relative;
  top: -3px;
  left: 1px;
  display: inline-block;
  content: "";
  color: #d0011b;
}
.textfield__input {
  display: block;
  box-sizing: border-box;
  height: 48px;
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  background: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  outline: none;
  transition: all 0.25s linear;
}
.textfield__input:focus {
  border-color: #3a82c6;
}
.textfield__input:disabled {
  border-color: #e6e6e6;
  background: #f9fafb;
}
.textfield__input::placeholder {
  color: transparent;
}
.textfield__input:focus + .textfield__label, .textfield__input:valid + .textfield__label, .textfield__input:disabled + .textfield__label {
  display: none;
}

#pay {
  padding-top: 75px;
}
#pay .pay-container {
  background: url("../img/bg-pay.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0px;
  display: flex;
  flex-direction: column;
}
#pay .pay-container .pay-title {
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  line-height: 42px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.02em;
  color: #000000;
  justify-content: center;
  margin: 15px auto 0px;
}
#pay .pay-container .pay-subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #000000;
  justify-content: center;
  margin: 15px auto 5px;
}
#pay .pay-container .pay-columns {
  display: flex;
  flex-direction: row;
  max-width: 1100px;
  margin: 10px auto;
}
#pay .pay-container .pay-columns .pay-column {
  background: #F8F8F8;
  border-radius: 8px;
  margin: 10px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.4));
  display: flex;
  flex-direction: column;
  padding: 20px 30px 40px;
  min-width: 30vw;
}
#pay .pay-container .pay-columns .pay-column .pay-col-title {
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 28px;
  text-align: center;
  color: #000000;
}
#pay .pay-container .pay-columns .pay-column .pay-col-subtitle {
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  text-align: center;
  color: #000000;
  margin-bottom: 10px;
}
#pay .pay-container .pay-columns .pay-column .pay-col-description {
  margin: 10px 0px;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #000000;
}
#pay .pay-container .pay-columns .pay-column .pay-col-description img {
  width: 20px;
}
#pay .pay-container .pay-columns .pay-column .pay-col-bottom {
  display: flex;
  flex-direction: row;
  margin-top: auto;
  align-items: center;
}
#pay .pay-container .pay-columns .pay-column .pay-col-bottom .pay-col-price {
  margin-top: 30px;
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 32px;
  color: #000000;
  margin-right: auto;
}
#pay .pay-container .pay-columns .pay-column .pay-col-bottom .pay-col-button {
  border: 1px solid #C0C0C0;
  padding: 11px 33px;
  border-radius: 1000px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  height: fit-content;
  cursor: pointer;
  margin-top: 30px;
}

footer {
  background: #FFF8F6;
}
footer .footer-decoration {
  width: 100%;
}
footer .footer-container {
  display: flex;
  flex-direction: row;
  margin: 30px 120px 0;
  border-bottom: 1px solid rgba(130, 129, 129, 0.2);
  padding: 0 0 11px;
  justify-content: space-between;
}
footer .footer-container .footer-col {
  display: flex;
  flex-direction: column;
  width: 27%;
}
footer .footer-container .footer-col .footer-logo {
  width: 90vw;
  max-width: 320px;
  margin-bottom: 30px;
}
footer .footer-container .footer-col .footer-info-text {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #454545;
  margin-bottom: 27px;
}
footer .footer-container .footer-col .footer-info-text a {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: justify;
  color: #454545;
}
footer .footer-container .footer-col .footer-info-text:last-child {
  margin-bottom: 11px;
}
footer .footer-container .footer-col .footer-text-black {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  color: #000000;
  text-decoration: unset;
  margin-bottom: 16px;
}
footer .footer-container .footer-col .footer-link {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  color: #0E00A9;
  margin-bottom: 16px;
  text-decoration: unset;
  cursor: pointer;
}
footer .footer-container .footer-col .footer-address {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 33px;
  color: #454545;
  margin-bottom: 16px;
}
footer .footer-container .footer-col .footer-address span {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #000000;
}
footer .footer-container .footer-col .footer-payment-signs {
  width: 90vw;
  max-width: 320px;
}
footer .footer-container .footer-col:last-child {
  align-items: center;
  justify-content: center;
}
footer .footer-disclaimer {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #454545;
  margin-top: 16px;
  padding-bottom: 16px;
}

@media screen and (max-width: 1200px) {
  footer .footer-container {
    padding: 28px;
    margin: 0;
    flex-direction: column;
  }
  footer .footer-container .footer-col {
    width: 100%;
  }
}
@media screen and (max-width: 1080px) {
  .header-tel-block {
    display: none !important;
  }
  .textfield {
    min-width: unset;
  }
}
@media screen and (max-width: 980px) {
  .pay-columns {
    flex-direction: column !important;
  }
  .pay-col-bottom {
    flex-direction: column !important;
  }
  .pay-col-price {
    margin-right: unset !important;
  }
}
@media screen and (max-width: 768px) {
  .header-logo:nth-child(1) {
    margin-right: auto;
  }
  .header-logo:nth-child(2) {
    display: none !important;
  }
  input {
    width: -webkit-fill-available;
  }
  .custom-select {
    max-width: 80vw !important;
  }
}
#form-agree, #form-agree2 {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

#form-agree-label, #form-agree-label2 {
  position: relative;
  cursor: pointer;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #B2B2B2;
  margin: 20px 0px 10px;
}

#form-agree-label a, #form-agree-label2 a {
  color: #0d9ffc;
}

#form-agree-label:before, #form-agree-label2:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #b2b2b2;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

#form-agree:checked + #form-agree-label:after, #form-agree2:checked + #form-agree-label2:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 5px;
  height: 14px;
  border: solid #FC0D27;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
  width: 90%;
  background: #FFFFFF;
  box-shadow: 0px 4px 18px rgba(140, 140, 140, 0.14);
  border-radius: 12px;
  padding: 50px;
}
.form-block .form-title {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #000000;
  margin: 0 auto;
}
.form-block .form-description {
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  text-align: center;
  color: #000000;
  margin: 15px auto 25px;
}
.form-block .form-input {
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  box-sizing: border-box;
  box-shadow: 0px 4px 18px rgba(140, 140, 140, 0.25);
  border-radius: 12px;
  margin: 10px auto;
  width: 100%;
  padding: 20px 15px;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  color: black;
}
.form-block .form-input ::placeholder {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  color: #B3B3B3;
}
.form-block .form-button {
  margin-top: 20px;
}

/* Dropdown styles */
.custom-select {
  position: relative;
  box-shadow: 0px 4px 18px rgba(140, 140, 140, 0.25);
  width: 100%;
  padding: 5px 15px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  /* or 28px */
  display: flex;
  align-items: center;
  color: #000000;
  background: #FFFFFF;
  border: 1.5px solid #696969;
  border-radius: 5px;
  max-width: 400px;
  margin: 0 auto;
}

.custom-select select {
  display: none;
}

.select-selected {
  background-color: white;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 15px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid black;
  border-color: black transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
  border-color: black transparent transparent transparent;
  top: 10px;
  transform: rotate(180deg);
}

.select-items div, .select-selected {
  cursor: pointer;
  width: inherit;
}

.select-items {
  position: absolute;
  top: 115%;
  left: 0;
  right: 0;
  z-index: 99;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  /* or 28px */
  color: #000000;
  background: #FFFFFF;
  border: 1.5px solid #696969;
  border-radius: 5px;
  max-width: 400px;
  margin: 0 auto;
}

.select-items div {
  padding: 5px 0.9rem;
}

.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(164, 164, 164, 0.1);
}

#modal-alert {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  z-index: 1000000;
  transition: all 0.3s ease-in-out;
}
#modal-alert #modal-alert-body {
  background: #FFFFFF;
  box-shadow: 0px 4px 18px rgba(140, 140, 140, 0.14);
  border-radius: 12px;
  padding: 50px;
  transition: all 0.3s ease-in-out;
}
#modal-alert #modal-alert-body #modal-alert-title {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #000000;
  margin-bottom: 26px;
}
#modal-alert #modal-alert-body #modal-alert-description {
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  text-align: center;
  color: #000000;
  margin-bottom: 26px;
}
#modal-alert #modal-alert-body #modal-alert-button {
  border: 1px solid #C0C0C0;
  border-radius: 25px;
  padding: 11px 33px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  width: fit-content;
  margin: 20px auto 0;
  cursor: pointer;
}

.list-toggled {
  margin: 180px auto 20px !important;
}

.button-return {
  background: white;
  border: 1px solid #C0C0C0;
  max-width: 200px;
  padding: 11px 33px;
  border-radius: 1000px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  height: fit-content;
  cursor: pointer;
  margin: 30px auto;
}

.modal-form {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 450px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
}
.modal-form .modal-form-title {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #000000;
  margin-bottom: 26px;
}
.modal-form .modal-form-subtitle {
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  text-align: center;
  color: #000000;
  margin-bottom: 26px;
}
.modal-form .form-input {
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  box-sizing: border-box;
  box-shadow: 0px 4px 18px rgba(140, 140, 140, 0.25);
  border-radius: 12px;
  margin: 10px 0px;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  color: black;
  padding: 20px 15px;
}
.modal-form .form-input ::placeholder {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  color: #B3B3B3;
}
.modal-form .form-input .modal-form-description {
  margin: 10px 0px;
}
.modal-form .form-input .modal-form-description a {
  color: #E60000;
}
.modal-form .modal-calculation .modal-total-price {
  margin: 15px 0;
  display: flex;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  color: #313131;
}
.modal-form .modal-calculation .modal-total-price .modal-total-count {
  margin-left: auto;
}
.modal-form .modal-calculation .modal-divider {
  border-top: 1px solid #E2E2E2;
  width: 100%;
}
.modal-form .modal-calculation .modal-total-prepaid {
  margin: 15px 0;
  display: flex;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
  color: #E60000;
}
.modal-form .modal-calculation .modal-total-prepaid .modal-total-count {
  margin-left: auto;
}

@media screen and (max-width: 980px) {
  .modal-form-title {
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 22px !important;
    line-height: 27px !important;
    color: #000000 !important;
  }
  .modal-form-subtitle {
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 16px !important;
    line-height: 19px !important;
    text-align: center !important;
    color: #000000 !important;
  }
  .modaal-content-container {
    padding: 30px 0px !important;
  }
  .modaal-content-container .button {
    margin: 10px auto !important;
  }
  .button-close {
    right: 10px;
    left: unset;
  }
  .form-input {
    font-size: 16px !important;
    padding: 15px !important;
  }
  .modal-form-description {
    font-style: normal !important;
    font-weight: normal !important;
    font-size: 16px !important;
    line-height: 19px !important;
  }
  .modal-form-description a {
    color: #E60000;
  }
}
#sellButton {
  margin: 10px auto !important;
  background: #E60000;
  border-radius: 100px;
  padding: 17px;
  width: 100%;
  max-width: 415px;
  text-align: center;
  color: white;
  cursor: pointer;
  transition: 0.3s ease all;
}
#sellButton:hover {
  background: #a90000;
}

/*# sourceMappingURL=style.css.map */
