.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.material-symbols-outlined.thin {
  font-variation-settings: "wght" 200 !important;
}
.material-symbols-outlined.light {
  font-variation-settings: "wght" 300 !important;
}
.material-symbols-outlined.darkgray {
  color: #999999;
}

.material-icons-outline {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.cursor-pointer {
  cursor: pointer;
}

@media (max-width: 1140px) {
  .rotate-mobile {
    transform: rotate(90deg);
  }
}

.mt-50px {
  margin-top: 50px;
}
@media (max-width: 1140px) {
  .mt-50px {
    margin-top: 24px;
  }
}

.mt-40px {
  margin-top: 40px;
}

.mt-30px {
  margin-top: 30px;
}

.mb-15px {
  margin-bottom: 15px;
}
@media (max-width: 1140px) {
  .mb-15px {
    margin-bottom: 10px;
  }
}

.mb-35px {
  margin-bottom: 35px;
}

.mb-40px {
  margin-bottom: 40px;
}

.py-10px {
  padding-top: 10px;
  padding-bottom: 10px;
}

.px-20px {
  padding-left: 20px;
  padding-right: 20px;
}

.gap-y-10px {
  row-gap: 10px;
}

.gap-y-15px {
  row-gap: 15px;
}

.gap-x-5px {
  column-gap: 5px;
}

.gap-x-10px {
  column-gap: 10px;
}

.gap-x-15px {
  column-gap: 15px;
}

.text-green {
  color: #3DBE8B;
}

.text-dark-red {
  color: #D2002D;
}

.text-yellow {
  color: #F89507;
}

.bg-gray {
  background-color: #E0E0E0;
}

.bg-gray-20 {
  background-color: rgba(224, 224, 224, 0.2);
}

.font-semibold {
  font-weight: 600;
}

.text-32px {
  font-size: 32px;
}

.text-25px {
  font-size: 25px;
}

.text-24px {
  font-size: 24px;
}

.text-14px {
  font-size: 14px;
}

.line-height-24px {
  line-height: 24px;
}

.line-height-32px {
  line-height: 32px;
}

.border-left-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.border-right-0 {
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

input[type=date]::-webkit-calendar-picker-indicator {
  display: none;
}

input[type=date] {
  -moz-appearance: textfield;
}

input[type=time]::-webkit-calendar-picker-indicator {
  display: none;
}

input[type=time] {
  -moz-appearance: textfield;
}

* {
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #F2F4F8;
}

p {
  font-size: 18px;
  line-height: 24px;
  color: #212529;
}

.content {
  display: flex;
  column-gap: 60px;
}

.additional__info {
  padding: 0px 10px;
  margin-top: 25px;
  display: none;
}
.additional__info p {
  font-size: 18px;
  line-height: 32px;
}
.additional__info.selected {
  display: block;
}

.container {
  max-width: 1640px;
}

main .container .grid__sidebar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px;
  max-width: 1411px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 100px;
}
@media (max-width: 1140px) {
  main .container .grid__sidebar {
    margin-top: 32px;
    grid-gap: 32px;
  }
}
main .container .grid__sidebar .step__wrapper {
  grid-column: 1/span 2;
  margin-top: 0;
}
@media (max-width: 1140px) {
  main .container .grid__sidebar .step__wrapper {
    grid-column: 1/span 3;
    margin-top: 0;
  }
}
main .container .grid__sidebar .sidebar__container {
  grid-column: 3/span 1;
  margin-top: 143px;
}
@media (max-width: 1140px) {
  main .container .grid__sidebar .sidebar__container {
    grid-column: 1/span 3;
    margin-top: 0px;
  }
}
main .container .grid__sidebar .sidebar__container .sidebar__wrapper {
  margin-top: 0;
}

.check__list {
  list-style: none;
  display: flex;
  gap: 30px;
  padding-left: 0;
  width: fit-content;
  margin-bottom: 0;
}
@media (max-width: 1140px) {
  .check__list {
    display: none;
  }
}
.check__list > li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 24px;
  color: #384C74;
  width: fit-content;
}
.check__list > li span {
  font-size: 30px;
}

.content__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 30px 40px;
}
@media (max-width: 768px) {
  .content__footer {
    padding: 30px 16px;
  }
}
.content__footer .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 90px;
  width: fit-content;
}
.content__footer .content h3 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 5px;
}
.content__footer .next__step {
  padding: 20px 109px;
  background-color: #FBCA83;
  border: none;
  color: #212529;
  border-radius: 4px;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .content__footer .next__step {
    padding: 14px 30px;
  }
}
.content__footer .next__step:hover {
  background-color: #FF9E1F;
}
.content__footer .content__footer_wrapper {
  max-width: 1330px;
  width: 100%;
  margin-left: 40px;
}
@media (max-width: 1140px) {
  .content__footer .content__footer_wrapper {
    margin-left: 0px;
  }
  .content__footer .content__footer_wrapper .content {
    width: 100%;
  }
  .content__footer .content__footer_wrapper .content .d-flex {
    flex-grow: 1;
  }
  .content__footer .content__footer_wrapper .content .d-flex .next__step {
    flex-grow: 1;
    text-align: center;
  }
}
.content__footer .footer__02 .text_02 {
  display: flex;
  flex-direction: column;
}
.content__footer .footer__02 .text_02 h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
.content__footer .footer__02 .text_02 .result {
  font-weight: 600;
}

.error__container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 50px;
}
.error__container.small-margin {
  margin-bottom: 15px;
}
.error__container .error__message {
  display: flex;
  gap: 10px;
  padding: 20px;
  background-color: #FAE5EA;
  border-radius: 5px;
}
.error__container .error__message p {
  margin-bottom: 0;
}

.help__modal {
  position: fixed;
  inset: 0;
  background-color: #BEC0C4;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.help__modal .help__modal-inner {
  background-color: white;
  padding: 30px 40px;
  max-width: 800px;
  width: 100%;
  border-radius: 4px;
}
@media (max-width: 1140px) {
  .help__modal .help__modal-inner {
    padding: 30px 16px;
  }
}
.help__modal .help__modal-inner .help__modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.help__modal .help__modal-inner .help__modal-header h3 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
  color: #212529;
}
.help__modal .help__modal-inner .help__modal-header .close__button {
  cursor: pointer;
  font-size: 30px;
}
.help__modal .help__modal-inner .help__modal-content {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  max-height: 80vh;
  overflow-y: scroll;
}
.help__modal .help__modal-inner .help__modal-content .card {
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  box-shadow: 0px 4px 4px rgba(62, 71, 71, 0.05);
  padding: 40px;
  color: #212529;
}
@media (max-width: 1140px) {
  .help__modal .help__modal-inner .help__modal-content .card {
    padding: 16px;
  }
}
.help__modal .help__modal-inner .help__modal-content .card .card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}
.help__modal .help__modal-inner .help__modal-content .card .card__header h3 {
  font-size: 24px;
  line-height: 18px;
  font-weight: 600;
}
.help__modal .help__modal-inner .help__modal-content .card .card__header span {
  font-size: 30px;
}
.help__modal .help__modal-inner .help__modal-content .card .card__content .card__content-description {
  color: #F89507;
  margin-bottom: 15px;
}
.help__modal .help__modal-inner .help__modal-content .card .card__content .card__content-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  column-gap: 10px;
}
.help__modal .help__modal-inner .help__modal-content .card .card__content .card__content-info .card__info-item {
  display: flex;
  align-items: flex-start;
  column-gap: 10px;
  margin-bottom: 10px;
}
.help__modal .help__modal-inner .help__modal-content .card .card__content .card__content-info .card__info-item:last-of-type {
  margin-bottom: 0;
}
.help__modal .help__modal-inner .help__modal-content .card .card__content .select__option {
  padding: 12px 20px;
  background-color: #FBCA83;
  border: none;
  color: #212529;
  border-radius: 4px;
  font-size: 18px;
  line-height: 24px;
}
.help__modal .help__modal-inner .help__modal-content .card .card__content .select__option.dark {
  background-color: #F89507;
}
.help__modal .help__modal-inner .help__modal-footer .modal__shortText {
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
}
.help__modal .help__modal-inner .help__modal-footer .modal__shortLink {
  color: #212529;
  text-decoration: none;
}
.help__modal .help__modal-inner .help__modal-footer .modal__shortLink:hover {
  text-decoration: underline;
  cursor: pointer;
}
.help__modal .help__modal-inner .help__modal-footer .modal_forgotPassword {
  color: #212529;
  cursor: pointer;
}

.yellow__button {
  padding: 12px 20px;
  background-color: #FBCA83;
  border: none;
  color: #212529;
  border-radius: 4px;
  font-size: 18px;
  line-height: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .yellow__button {
    font-size: 16px;
    text-align: center;
    justify-content: center;
  }
}
.yellow__button:hover {
  background-color: #FF9E1F;
}
.yellow__button-dark {
  background-color: #F89507;
}

.gray__button {
  padding: 20px 113px;
  background-color: #E0E0E0;
  border-radius: 4px;
  font-size: 18px;
  line-height: 24px;
  color: #B0B0B0;
}

.white__button {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  padding: 9px 22px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  background-color: transparent;
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 768px) {
  .white__button {
    font-size: 16px;
    text-align: center;
    justify-content: center;
    width: 100%;
  }
}
.white__button p {
  margin-bottom: 0 !important;
}

.back__button {
  padding: 12px 20px;
  background-color: white;
  border-radius: 4px;
  font-size: 18px;
  line-height: 24px;
  color: #212529;
  user-select: none;
  cursor: pointer;
}

p > a {
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
p > a:hover {
  color: rgb(0, 0, 0);
}

.accordion .accordion__item {
  color: #384C74;
  border-bottom: 1px solid rgba(56, 76, 116, 0.4);
}
.accordion .accordion__item:last-child {
  border-bottom: none;
}
.accordion .accordion__item p {
  color: #384C74;
}
.accordion .accordion__item .accordion__header {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-bottom: 25px;
  margin-top: 25px;
  user-select: none;
  justify-content: space-between;
}
.accordion .accordion__item .accordion__header .accordion__headline {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 0;
}
.accordion .accordion__item .accordion__content {
  max-height: 0;
  overflow: hidden;
}
.accordion .accordion__item .accordion__content.open {
  max-height: 100%;
}

.sidebar__wrapper {
  margin-top: 219px;
}
.sidebar__wrapper .sidebar__section {
  padding: 40px 30px 50px 30px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.country__flag {
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
}

.distance__visual {
  display: flex;
  text-transform: uppercase;
  column-gap: 80px;
  padding: 15px 20px;
  position: relative;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .distance__visual {
    column-gap: 20px;
  }
}
.distance__visual .distance__visual-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
  width: 100%;
}
.distance__visual .distance__visual-track .visual {
  min-width: 120px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.distance__visual .distance__visual-track .visual .line {
  width: 100%;
  height: 1px;
  border-top: 1px dashed rgba(2, 2, 2, 0.4);
}
.distance__visual .distance__visual-track .visual .pickup {
  display: block;
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  border: 1px solid #212529;
  border-radius: 50%;
}
.distance__visual .distance__visual-track .visual .dropoff {
  display: block;
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  border: 1px solid #212529;
  background-color: #212529;
  border-radius: 50%;
}
.distance__visual .distance__visual-track .distance {
  margin-bottom: 0;
}

.sidebar__info, .date__picker {
  padding: 15px 20px;
  background-color: rgba(224, 224, 224, 0.2);
  display: flex;
  column-gap: 15px;
  margin-bottom: 15px;
}
.sidebar__info .label, .date__picker .label {
  font-size: 14px;
  line-height: 18px;
  color: #212529;
  margin-bottom: 5px;
}
.sidebar__info .text, .date__picker .text {
  font-size: 18px;
  line-height: 18px;
  color: #212529;
  margin-bottom: 0;
}
.sidebar__info .icon, .date__picker .icon {
  display: flex;
  align-items: center;
}

.cost__summary {
  margin-top: 40px;
}
.cost__summary .cost__summary-item {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cost__summary .cost__summary-item p {
  margin-bottom: 0;
}

.step__content .step__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 1140px) {
  .step__content .step__header {
    margin-left: 48px;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .step__content .step__header {
    margin-left: 16px;
    margin-bottom: 24px;
  }
}
@media (max-width: 1140px) {
  .step__content .step__header .step__recommendation {
    display: none;
  }
}
.step__content .step__header .step__recommendation .sidebar__wrapper {
  display: flex;
  gap: 15px;
  margin: 0;
}
.step__content .step__header .step__recommendation .sidebar__wrapper .sidebar__section {
  margin: 0;
  padding: 12px 16px;
}
.step__content .step__header .step__recommendation .sidebar__wrapper .sidebar__section p {
  margin: 0;
}

.step__navigation-wrapper {
  background-color: white;
}
.step__navigation-wrapper .step__navigation {
  margin-bottom: 0;
  padding-left: 0;
}
@media (max-width: 768px) {
  .step__navigation-wrapper .step__navigation li .menu__text {
    display: none;
  }
  .step__navigation-wrapper .step__navigation li.active .menu__text {
    display: block;
  }
}

.step__wrapper {
  margin-top: 100px;
}
@media (max-width: 1140px) {
  .step__wrapper {
    margin-top: 32px;
  }
}
@media (max-width: 768px) {
  .step__wrapper {
    margin-top: 28px;
  }
}

.step__headline {
  font-size: 40px;
  line-height: 24px;
  font-weight: 600;
}
@media (max-width: 1140px) {
  .step__headline {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .step__headline {
    font-size: 20px;
  }
}

@media (max-width: 1140px) {
  .step__navigation {
    padding: 20px 0px !important;
  }
}
.step__navigation li {
  display: flex;
  justify-content: center;
  column-gap: 10px;
  padding: 30px 70px;
  cursor: pointer;
}
@media (max-width: 1140px) {
  .step__navigation li {
    padding: 12px 30px;
  }
}
@media (max-width: 768px) {
  .step__navigation li {
    padding: 8px 20px;
    font-size: 14px;
  }
}
.step__navigation li.active {
  background-color: #F2F4F8;
}

.help-icon {
  color: #F89507;
  cursor: pointer;
}

.section__wrapper {
  margin-bottom: 50px;
}
@media (max-width: 1140px) {
  .section__wrapper {
    margin-bottom: 32px;
  }
}
.section__wrapper .section__header {
  display: flex;
  column-gap: 10px;
  justify-items: center;
  margin-bottom: 15px;
  color: #384C74;
}
@media (max-width: 1140px) {
  .section__wrapper .section__header {
    margin-left: 16px;
    margin-bottom: 32px;
  }
}
.section__wrapper .section__header-icon {
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
}
.section__wrapper .section__header-headline {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0px;
  color: #384C74;
}
.section__wrapper .section__header-text {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 0px;
  color: #212529;
  margin-top: 45px;
}
.section__wrapper .section__label {
  color: var(#384C74);
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.section__wrapper .section__content {
  padding: 40px 30px 50px 30px;
  background-color: white;
  border-radius: 4px;
  border: 1px solid rgba(224, 224, 224, 0.2);
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .section__wrapper .section__content {
    padding: 30px 16px 30px 16px;
  }
}
.section__wrapper .section__content.p-big {
  padding: 60px 120px;
}
@media (max-width: 1140px) {
  .section__wrapper .section__content.p-big {
    padding: 32px 48px;
  }
}
@media (max-width: 768px) {
  .section__wrapper .section__content.p-big {
    padding: 35px 16px;
  }
}
.section__wrapper .country__picker {
  display: flex;
  column-gap: 15px;
  align-items: center;
  position: relative;
  padding: 15px 20px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  background-color: white;
}
.section__wrapper .country__picker .country__flag {
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
}
.section__wrapper .country__picker .country__name {
  font-size: 14px;
  line-height: 24px;
  color: var(#384C74);
}
.section__wrapper .country__picker label {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 5px;
}
.section__wrapper .country__picker select {
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  background-color: transparent;
  border: none;
}
.section__wrapper .country__picker .form-control {
  padding-left: 0;
}
.section__wrapper .country__picker::after {
  content: "keyboard_arrow_down";
  font-family: "Material Symbols Outlined";
  font-weight: 200;
  position: absolute;
  font-size: 28px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.section__wrapper.inline-wrapper {
  margin-bottom: 0;
}
.section__wrapper.inline-wrapper .section__content {
  padding: 30px 0 0 0;
  border: none;
  box-shadow: none;
}
.section__wrapper.inline-wrapper .section__content .custom_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.section__wrapper.inline-wrapper .section__content .custom_grid .col {
  grid-column: span 1;
}
.section__wrapper.inline-wrapper .section__content .custom_grid .col-2 {
  grid-column: 1/span 2;
}
.section__wrapper.inline-wrapper button.yellow__button {
  margin-top: 45px;
  margin-bottom: 30px;
}

.provider__item {
  background-color: white;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid rgba(224, 224, 224, 0.2);
  margin-bottom: 15px;
  display: flex;
  column-gap: 15px;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 1140px) {
  .provider__item {
    display: none !important;
  }
}
.provider__item .provider__logo {
  max-width: 120px;
  max-height: 55px;
  height: auto;
  width: auto;
  background-color: rgba(224, 224, 224, 0.2);
}
.provider__item .bullet__point {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 24px;
}
.provider__item .provider__item-price .price__base {
  font-size: 32px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: right;
}
.provider__item .provider__item-price .price__tax {
  font-size: 14px;
  line-height: 24px;
  text-align: right;
}

.provider__item-mobile {
  background-color: white;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid rgba(224, 224, 224, 0.2);
  margin-bottom: 15px;
  display: none;
  column-gap: 15px;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 1140px) {
  .provider__item-mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .provider__item-mobile {
    padding: 24px 16px;
  }
}
.provider__item-mobile .provider__separator {
  margin: 24px 0;
}
.provider__item-mobile .radio__price {
  margin-top: 24px;
}
.provider__item-mobile .radio__price .bullet__point {
  margin-bottom: 10px;
}
.provider__item-mobile .provider__logo {
  max-width: 120px;
  max-height: 55px;
  height: auto;
  width: auto;
  background-color: rgba(224, 224, 224, 0.2);
}
.provider__item-mobile .bullet__point {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 24px;
}
.provider__item-mobile .provider__item-price .price__base {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: left;
}
.provider__item-mobile .provider__item-price .price__tax {
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  margin-bottom: 0;
}

.checkbox__group-price {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  border-radius: 4px;
  padding: 15px 20px;
  border: 1px solid rgba(224, 224, 224, 0.2);
  cursor: pointer;
}
@media (max-width: 1140px) {
  .checkbox__group-price {
    flex-direction: column;
    position: relative;
  }
}
.checkbox__group-price .tag {
  font-size: 14px;
  line-height: 24px;
  color: white;
  background-color: rgba(224, 224, 224, 0.2);
  padding: 4px 14px;
  width: 100%;
  border-radius: 100px;
  text-align: center;
}
.checkbox__group-price .tag.favorite {
  color: white;
  background-color: #3DBE8B;
}
@media (max-width: 1140px) {
  .checkbox__group-price .tag {
    position: absolute;
    right: 40px;
    top: 13px;
    width: auto;
  }
}
.checkbox__group-price .checkbox__price {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.checkbox__group-price .checkbox__price .price {
  display: flex;
  white-space: nowrap;
}
@media (max-width: 1140px) {
  .checkbox__group-price .checkbox__price .price {
    padding-left: 30px;
    padding-top: 5px;
  }
}
@media (max-width: 1140px) {
  .checkbox__group-price .checkbox__price .material-symbols-outlined {
    position: absolute;
    right: 10px;
    top: 12px;
  }
}
.checkbox__group-price input[type=checkbox] {
  display: none;
}
.checkbox__group-price .checkbox-field {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.checkbox__group-price .checkbox-field label {
  user-select: none;
  cursor: pointer;
}
.checkbox__group-price .checkbox-field::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #384C74;
  border-radius: 4px;
  background-color: transparent;
}
.checkbox__group-price .checkbox-field::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 8px;
  left: 6px;
  top: 50%;
  transform: translateY(-50%) scale(0) rotate(45deg);
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  transition: transform 0.2s ease-in-out;
}
.checkbox__group-price input[type=checkbox]:checked + label::after {
  transform: translateY(-50%) scale(1);
}
.checkbox__group-price.selected {
  background-color: #384C74;
  color: white;
}
.checkbox__group-price.selected p {
  color: white;
}
.checkbox__group-price.selected .icon {
  color: white;
}
.checkbox__group-price.selected .checkbox-field::before {
  border: 2px solid white;
}
.checkbox__group-price.selected .checkbox-field::after {
  transform: translateY(-50%) scale(1) rotate(45deg);
  transform-origin: right;
}

.radio__group-price {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  border-radius: 4px;
  padding: 15px 20px;
  border: 1px solid rgba(224, 224, 224, 0.2);
  cursor: pointer;
}
@media (max-width: 1140px) {
  .radio__group-price {
    flex-direction: column;
    position: relative;
  }
}
@media (max-width: 1140px) {
  .radio__group-price.payment-group {
    flex-direction: row;
    position: relative;
  }
}
.radio__group-price .tag {
  font-size: 14px;
  line-height: 24px;
  color: white;
  background-color: rgba(224, 224, 224, 0.2);
  padding: 4px 14px;
  width: 100%;
  border-radius: 100px;
  text-align: center;
}
.radio__group-price .tag.favorite {
  color: white;
  background-color: #3DBE8B;
}
@media (max-width: 1140px) {
  .radio__group-price .tag {
    position: absolute;
    right: 40px;
    top: 13px;
    width: auto;
  }
}
.radio__group-price .radio__price {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.radio__group-price .radio__price .price {
  display: flex;
  white-space: nowrap;
}
@media (max-width: 1140px) {
  .radio__group-price .radio__price .price {
    padding-left: 30px;
    padding-top: 5px;
  }
}
@media (max-width: 1140px) {
  .radio__group-price .radio__price .material-symbols-outlined {
    position: absolute;
    right: 10px;
    top: 12px;
  }
}
.radio__group-price input[type=radio] {
  display: none;
}
.radio__group-price .radio-field {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.radio__group-price .radio-field label {
  user-select: none;
  cursor: pointer;
}
.radio__group-price .radio-field::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  border: 1px solid #384C74;
  border-radius: 50%;
  background-color: transparent;
}
.radio__group-price .radio-field::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #384C74;
  transition: transform 0.2s ease-in-out;
}
.radio__group-price input[type=radio]:checked + label::after {
  transform: translateY(-50%) scale(1);
}
.radio__group-price.selected {
  background-color: #384C74;
  color: white;
}
.radio__group-price.selected p {
  color: white;
}
.radio__group-price.selected .icon {
  color: white;
}
.radio__group-price.selected .radio-field::before {
  border: 1px solid white;
}
.radio__group-price.selected .radio-field::after {
  background-color: white;
  transform: translateY(-50%) scale(1);
}

.radio__group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media (max-width: 1140px) {
  .radio__group {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .radio__group {
    grid-template-columns: repeat(1, 1fr);
  }
}
.radio__group .radio__group-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  line-height: 18px;
  cursor: pointer;
  color: #212529;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
}
@media (max-width: 1140px) {
  .radio__group .radio__group-item {
    padding: 10px;
  }
}
.radio__group .radio__group-item .icon {
  font-size: 40px;
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
}
.radio__group .radio__group-item input[type=radio] {
  display: none;
}
.radio__group .radio__group-item .radio-field {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.radio__group .radio__group-item .radio-field label {
  user-select: none;
  cursor: pointer;
}
.radio__group .radio__group-item .radio-field::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #384C74;
  border-radius: 50%;
  background-color: transparent;
}
.radio__group .radio__group-item .radio-field::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #384C74;
  transition: transform 0.2s ease-in-out;
}
.radio__group .radio__group-item input[type=radio]:checked + label::after {
  transform: translateY(-50%) scale(1);
}
.radio__group .radio__group-item.selected {
  background-color: #384C74;
  color: white;
}
.radio__group .radio__group-item.selected .icon {
  color: white;
}
.radio__group .radio__group-item.selected .radio-field::before {
  border: 2px solid white;
}
.radio__group .radio__group-item.selected .radio-field::after {
  background-color: white;
  transform: translateY(-50%) scale(1);
}
.radio__group.register__group {
  margin-bottom: 30px;
  gap: 30px;
}
.radio__group.register__group .radio__group-item {
  border: 1px solid #E0E0E0;
  padding: 24px 20px;
}
.radio__group.register__group .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
.radio__group.radiobox__group {
  gap: 30px;
}
@media (max-width: 1140px) {
  .radio__group.radiobox__group {
    gap: 10px;
  }
}
.radio__group.radiobox__group .radio__group-item .radio-field-box {
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  width: 100%;
}
.radio__group.radiobox__group .radio__group-item .radio-field-box .material-symbols-outlined {
  margin-bottom: 12px;
}
@media (max-width: 1140px) {
  .radio__group.radiobox__group .radio__group-item .radio-field-box {
    flex-direction: row;
    align-items: center;
    column-gap: 10px;
  }
  .radio__group.radiobox__group .radio__group-item .radio-field-box .material-symbols-outlined {
    margin-bottom: 0 !important;
  }
}
.radio__group.radiobox__group .radio__group-item .radio-field-box::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid #384C74;
  border-radius: 50%;
  background-color: transparent;
}
.radio__group.radiobox__group .radio__group-item .radio-field-box::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 6px;
  transform: translateY(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white;
  transition: transform 0.2s ease-in-out;
}
.radio__group.radiobox__group .radio__group-item.selected .radio-field-box::before {
  border: 1px solid white;
}

.text__field {
  position: relative;
  min-height: 64px;
  background-color: rgba(224, 224, 224, 0.2);
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  padding: 10px 20px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1140px) {
  .text__field {
    padding: 10px;
  }
}
.text__field.input__error {
  border: 1px solid #D2002D;
}
.text__field.has-icon {
  align-items: center;
}
.text__field.has-icon .icon__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.text__field.has-icon .input__wrapper {
  flex-grow: 1;
}
.text__field.has-icon .input__wrapper label, .text__field.has-icon .input__wrapper input {
  padding-left: 15px;
  left: 44px;
}
@media (max-width: 1140px) {
  .text__field.has-icon .input__wrapper label, .text__field.has-icon .input__wrapper input {
    padding-left: 0;
  }
}
.text__field.has-icon-after {
  position: relative;
}
.text__field.has-icon-after .icon__wrapper {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  height: 24px;
  width: 24px;
}
.text__field.has-icon-after .icon__wrapper span {
  cursor: pointer;
}
.text__field label {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 18px;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}
.text__field input {
  width: 100%;
  padding: 0;
  margin-top: 7px;
  border: none;
  border-radius: 4px;
  background-color: transparent;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
}
@media (max-width: 1140px) {
  .text__field input {
    font-size: 16px;
    line-height: 18px;
  }
}
.text__field input:focus {
  outline: none;
  border: none;
  box-shadow: none;
  background-color: transparent;
}
.text__field input:focus + label {
  top: 0;
  transform: translateY(10px);
}
.text__field input.active + label {
  top: 0;
  transform: translateY(10px);
}

.date__picker {
  position: relative;
  min-height: 64px;
  background-color: rgba(224, 224, 224, 0.2);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.date__picker .icon {
  font-size: 24px;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.date__picker label {
  /*
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
   */
  font-size: 14px;
  line-height: 18px;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}
.date__picker input {
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 4px;
  background-color: transparent;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  cursor: pointer;
}
.date__picker input:focus {
  outline: none;
  border: none;
  box-shadow: none;
  background-color: transparent;
}
.date__picker input:focus + label, .date__picker input:not(:placeholder-shown) + label {
  top: 0;
  transform: translateY(10px);
}
.date__picker > div {
  width: 100%;
}

.button__wrapper {
  display: flex;
  position: relative;
  justify-content: flex-end;
  width: 100%;
}
.button__wrapper .add__button {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  padding: 20px 22px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
}
@media (max-width: 1140px) {
  .button__wrapper .add__button {
    padding: 10px;
    gap: 10px;
  }
}
.button__wrapper .add__button p {
  margin-bottom: 0 !important;
}
.button__wrapper.remove {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -35px;
  width: fit-content;
}
.button__wrapper.remove .remove__button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: fit-content;
  height: fit-content;
}

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