@charset "UTF-8";.header-dimension{
    height: 8.5vh;
}.footerFiverr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    max-width:100%;
    background: #FF5A60;
    height: 6vh;
    padding: 0 5%;
    position: relative;
    font-size: 16px;
}

.left-links {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    line-height: 17px;

    /* 70.833% */
    >a:hover {
        text-decoration: underline;
    }
}

.right-links {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 500;
    line-height: 17px;

    /* 70.833% */
    >a:hover {
        text-decoration: underline;
    }
}

@media screen and (max-width: 900px) {
    .footer {
        /* height: ; */
        padding: 3% 5%;
        gap: 10px;
        flex-direction: column;
        /* Adjust to a vertical layout on smaller screens */
        height: auto;
        /* Remove fixed height for smaller screens */
    }

    .left-links,
    .right-links {
        height: 50%;
        /* margin-bottom: 10px;  */
        justify-content: center;
        font-size: 14px;

        >img {
            height: 20px;
        }

        /* Add margin for better separation between links on smaller screens */
    }
}.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 15px;
    display: block;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }
  
  .cookie-consent-banner p {
    margin: 0;
  }
  
  .cookie-consent-banner button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin: 1rem 1rem 0rem 1rem;
  }
  
  .cookie-consent-banner button:hover {
    background-color: white;
    color: var(--primary);
  }#why-evendsa {
    padding: 0 30rem;
    text-align: left;
}

.advanced-info {
  padding: 20px 0;
  text-align: center;
}

.advanced-info h3 {
  font-size: 1.5rem;
  font-weight: 550;
  margin-top: 0.5rem;
  margin-left: 3rem;
  
}

.advanced-info h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-top: 2rem;
}

.advanced-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 20px;
}

.advanced-info p {
  margin-top: 0.5rem;
	margin-bottom: 1rem;

}.dashboard-containter {
    min-height: 85.5vh;
    display: block;
}/* Modal.css */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.modal {
  background-color: #fff;
  padding: 20px;
  overflow: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  height: 90vh;
  z-index: 11;
  width: 70vw;
  @media (max-width: 900px) {
    /* Adjust styles for smaller screens */
    width: 90vw;
    margin: 10px;
  }
}

.close-button {
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #333;
}

.modal-header {
  display: flex;
  width: 100%;
  align-items: center;

  >p {
    width: 90%;
    text-align: center;
  }

  >button {
    width: 10%;
  }
}

.modal-input {
  display: flex;
  flex-direction: column;

  >h1 {
    margin: 1rem 1.5rem 0rem 1.5rem;
    font-weight: 600;
  }
}

.modal-single-input {
  display: flex;
  flex-direction: column;
  margin: 1rem 1rem;



  >label {
    color: var(--neutral-700, #3C3C3C);
    margin-top: 16px;
    margin-bottom: 10px;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
  }
}

.modal-single-input input[type="text"], .modal-single-input input[type="number"] {
  width: 60%;
  height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid var(--neutral-600, #5A5A5A);
  background: var(--neutral-000, #FFF);
  color: var(--neutral-500, #848484);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  /* 160% */
}

.modal-single-input-check {
  display: flex;
  
  margin: 0.5rem 1rem 0;

  /* Desktop/body-1-medium */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  /* 160% */

  >label {
    color: var(--neutral-700, #3C3C3C);
    margin-top: 16px;
    margin-bottom: 10px;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 125% */
  }

  >input {
    margin-right: 10px;
  
  }
}

.modal-radio-options {
  display: flex;
  gap: 20px;
}

.modal-option input[type="radio"] {
  display: none;
}

.modal-option {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100px;
  height: 40px;
  cursor: pointer;
  color: var(--neutral-600, #5A5A5A);
  text-align: center;

  /* Desktop/body-1-medium */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  /* 160% */
}

.modal-option.selected {
  border-radius: 8px;
  border: 1px solid var(--primary-700, #F24A5F);
  background: var(--primary-100, #FFF6F6);
}

.modal-checkbox-container {
  /* background-color: #3C3C3C; */
  padding: 2px 24px;
  margin: 10px 0;
  border-radius: 100px;
  background: white;
  border: 1px solid black;

  >label {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.modal-checkbox-container-selected {
  border-radius: 100px;
  padding: 2px 24px;
  margin: 10px 0;
  color: #FFF;
  background: var(--primary-600, #FF5A60);
  border: 1px solid var(--primary-600, #FF5A60);

  >label {
    display: flex;
    align-items: center;
    justify-content: center;

    >img {
      filter: brightness(0) saturate(100%) invert(99%) sepia(16%) saturate(235%) hue-rotate(336deg) brightness(117%) contrast(100%);
    }
  }
}

.modal-checkbox-options {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.modal-buttons {
  margin: 80px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.background-button {
  border-radius: 8px;
  outline: none;
  border: none;
  background: var(--primary-700, #F24A5F);
  display: inline-flex;
  height: 64px;
  padding: 8px 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--secondary-100, #F2F7F9);
  flex-wrap: wrap;
  /* Desktop/body-1-bold */
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  /* 120% */
}
.footer{ z-index: 1;}
@media screen and (max-width: 600px) {
  .modal-buttons{
    gap: 20px;
    flex-direction: column;
  }
  input[type="text"] , input[type="number"] {
    width: 100% !important;
  }
}
.newDiv{
  background-color: #ccc;
  display: flex;
  gap: 10px;
}


.category-chooser {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
}

.filterIcon {    
    cursor: pointer;
    float: right;
    width: 2rem;
    height: 2rem;
}

.category {
    border-width: 1px;
    border-color: #fff;
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.category:hover {
    border-width: 1px;
    border-color: 0 0 2px var(--primary);
}

.chosen {
    background-color: var(--primary);
    color: white !important;
}



@media only screen and (max-width: 768px){
    .category {
    }
}.save-button {
  float: right;
}

.personalInformation-container {
    min-height: 85.5vh;
}
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow, .react-datepicker__navigation-icon::before {
  border-color: #ccc;
  border-style: solid;
  border-width: 3px 3px 0 0;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  top: 6px;
  width: 9px;
}
.react-datepicker-wrapper {
  display: inline-block;
  padding: 0;
  border: 0;
}

.react-datepicker {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  font-size: 0.8rem;
  background-color: #fff;
  color: #000;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  display: inline-block;
  position: relative;
  line-height: initial;
}

.react-datepicker--time-only .react-datepicker__time-container {
  border-left: 0;
}
.react-datepicker--time-only .react-datepicker__time,
.react-datepicker--time-only .react-datepicker__time-box {
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.react-datepicker-popper {
  z-index: 1;
  line-height: 0;
}
.react-datepicker-popper .react-datepicker__triangle {
  stroke: #aeaeae;
}
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
  fill: #f0f0f0;
  color: #f0f0f0;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle {
  fill: #fff;
  color: #fff;
}

.react-datepicker__header {
  text-align: center;
  background-color: #f0f0f0;
  border-bottom: 1px solid #aeaeae;
  border-top-left-radius: 0.3rem;
  padding: 8px 0;
  position: relative;
}
.react-datepicker__header--time {
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}
.react-datepicker__header--time:not(.react-datepicker__header--time--only) {
  border-top-left-radius: 0;
}
.react-datepicker__header:not(.react-datepicker__header--has-time-select) {
  border-top-right-radius: 0.3rem;
}

.react-datepicker__year-dropdown-container--select,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__month-year-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--scroll,
.react-datepicker__month-year-dropdown-container--scroll {
  display: inline-block;
  margin: 0 15px;
}

.react-datepicker__current-month,
.react-datepicker-time__header,
.react-datepicker-year-header {
  margin-top: 0;
  color: #000;
  font-weight: bold;
  font-size: 0.944rem;
}

h2.react-datepicker__current-month {
  padding: 0;
  margin: 0;
}

.react-datepicker-time__header {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.react-datepicker__navigation {
  align-items: center;
  background: none;
  display: flex;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 2px;
  padding: 0;
  border: none;
  z-index: 1;
  height: 32px;
  width: 32px;
  text-indent: -999em;
  overflow: hidden;
}
.react-datepicker__navigation--previous {
  left: 2px;
}
.react-datepicker__navigation--next {
  right: 2px;
}
.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
  right: 85px;
}
.react-datepicker__navigation--years {
  position: relative;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__navigation--years-previous {
  top: 4px;
}
.react-datepicker__navigation--years-upcoming {
  top: -4px;
}
.react-datepicker__navigation:hover *::before {
  border-color: #a6a6a6;
}

.react-datepicker__navigation-icon {
  position: relative;
  top: -1px;
  font-size: 20px;
  width: 0;
}
.react-datepicker__navigation-icon--next {
  left: -2px;
}
.react-datepicker__navigation-icon--next::before {
  transform: rotate(45deg);
  left: -7px;
}
.react-datepicker__navigation-icon--previous {
  right: -2px;
}
.react-datepicker__navigation-icon--previous::before {
  transform: rotate(225deg);
  right: -7px;
}

.react-datepicker__month-container {
  float: left;
}

.react-datepicker__year {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__year-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 180px;
}
.react-datepicker__year .react-datepicker__year-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__month {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__month .react-datepicker__month-text,
.react-datepicker__month .react-datepicker__quarter-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__input-time-container {
  clear: both;
  width: 100%;
  float: left;
  margin: 5px 0 10px 15px;
  text-align: left;
}
.react-datepicker__input-time-container .react-datepicker-time__caption {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
  display: inline-block;
  margin-left: 10px;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
  width: auto;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time] {
  -moz-appearance: textfield;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
  margin-left: 5px;
  display: inline-block;
}

.react-datepicker__time-container {
  float: right;
  border-left: 1px solid #aeaeae;
  width: 85px;
}
.react-datepicker__time-container--with-today-button {
  display: inline;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  position: absolute;
  right: -87px;
  top: 0;
}
.react-datepicker__time-container .react-datepicker__time {
  position: relative;
  background: white;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
  width: 85px;
  overflow-x: hidden;
  margin: 0 auto;
  text-align: center;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
  list-style: none;
  margin: 0;
  height: calc(195px + 1.7rem / 2);
  overflow-y: scroll;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  box-sizing: content-box;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
  height: 30px;
  padding: 5px 10px;
  white-space: nowrap;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
  cursor: pointer;
  background-color: #f0f0f0;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
  background-color: #216ba5;
  color: white;
  font-weight: bold;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
  background-color: #216ba5;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
  color: #ccc;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
  cursor: default;
  background-color: transparent;
}

.react-datepicker__week-number {
  color: #ccc;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable {
  cursor: pointer;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable:not(.react-datepicker__week-number--selected,
.react-datepicker__week-number--keyboard-selected):hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}
.react-datepicker__week-number--selected {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}
.react-datepicker__week-number--selected:hover {
  background-color: #1d5d90;
}
.react-datepicker__week-number--keyboard-selected {
  border-radius: 0.3rem;
  background-color: #2a87d0;
  color: #fff;
}
.react-datepicker__week-number--keyboard-selected:hover {
  background-color: #1d5d90;
}

.react-datepicker__day-names {
  white-space: nowrap;
  margin-bottom: -8px;
}

.react-datepicker__week {
  white-space: nowrap;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  color: #000;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}

.react-datepicker__day,
.react-datepicker__month-text,
.react-datepicker__quarter-text,
.react-datepicker__year-text {
  cursor: pointer;
}
.react-datepicker__day:hover,
.react-datepicker__month-text:hover,
.react-datepicker__quarter-text:hover,
.react-datepicker__year-text:hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}
.react-datepicker__day--today,
.react-datepicker__month-text--today,
.react-datepicker__quarter-text--today,
.react-datepicker__year-text--today {
  font-weight: bold;
}
.react-datepicker__day--highlighted,
.react-datepicker__month-text--highlighted,
.react-datepicker__quarter-text--highlighted,
.react-datepicker__year-text--highlighted {
  border-radius: 0.3rem;
  background-color: #3dcc4a;
  color: #fff;
}
.react-datepicker__day--highlighted:hover,
.react-datepicker__month-text--highlighted:hover,
.react-datepicker__quarter-text--highlighted:hover,
.react-datepicker__year-text--highlighted:hover {
  background-color: #32be3f;
}
.react-datepicker__day--highlighted-custom-1,
.react-datepicker__month-text--highlighted-custom-1,
.react-datepicker__quarter-text--highlighted-custom-1,
.react-datepicker__year-text--highlighted-custom-1 {
  color: magenta;
}
.react-datepicker__day--highlighted-custom-2,
.react-datepicker__month-text--highlighted-custom-2,
.react-datepicker__quarter-text--highlighted-custom-2,
.react-datepicker__year-text--highlighted-custom-2 {
  color: green;
}
.react-datepicker__day--holidays,
.react-datepicker__month-text--holidays,
.react-datepicker__quarter-text--holidays,
.react-datepicker__year-text--holidays {
  position: relative;
  border-radius: 0.3rem;
  background-color: #ff6803;
  color: #fff;
}
.react-datepicker__day--holidays .overlay,
.react-datepicker__month-text--holidays .overlay,
.react-datepicker__quarter-text--holidays .overlay,
.react-datepicker__year-text--holidays .overlay {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}
.react-datepicker__day--holidays:hover,
.react-datepicker__month-text--holidays:hover,
.react-datepicker__quarter-text--holidays:hover,
.react-datepicker__year-text--holidays:hover {
  background-color: #cf5300;
}
.react-datepicker__day--holidays:hover .overlay,
.react-datepicker__month-text--holidays:hover .overlay,
.react-datepicker__quarter-text--holidays:hover .overlay,
.react-datepicker__year-text--holidays:hover .overlay {
  visibility: visible;
  opacity: 1;
}
.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range,
.react-datepicker__month-text--selected,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--selected,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--selected,
.react-datepicker__year-text--in-selecting-range,
.react-datepicker__year-text--in-range {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}
.react-datepicker__day--selected:hover, .react-datepicker__day--in-selecting-range:hover, .react-datepicker__day--in-range:hover,
.react-datepicker__month-text--selected:hover,
.react-datepicker__month-text--in-selecting-range:hover,
.react-datepicker__month-text--in-range:hover,
.react-datepicker__quarter-text--selected:hover,
.react-datepicker__quarter-text--in-selecting-range:hover,
.react-datepicker__quarter-text--in-range:hover,
.react-datepicker__year-text--selected:hover,
.react-datepicker__year-text--in-selecting-range:hover,
.react-datepicker__year-text--in-range:hover {
  background-color: #1d5d90;
}
.react-datepicker__day--keyboard-selected,
.react-datepicker__month-text--keyboard-selected,
.react-datepicker__quarter-text--keyboard-selected,
.react-datepicker__year-text--keyboard-selected {
  border-radius: 0.3rem;
  background-color: #bad9f1;
  color: rgb(0, 0, 0);
}
.react-datepicker__day--keyboard-selected:hover,
.react-datepicker__month-text--keyboard-selected:hover,
.react-datepicker__quarter-text--keyboard-selected:hover,
.react-datepicker__year-text--keyboard-selected:hover {
  background-color: #1d5d90;
}
.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range) {
  background-color: rgba(33, 107, 165, 0.5);
}
.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range), .react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range) {
  background-color: #f0f0f0;
  color: #000;
}
.react-datepicker__day--disabled,
.react-datepicker__month-text--disabled,
.react-datepicker__quarter-text--disabled,
.react-datepicker__year-text--disabled {
  cursor: default;
  color: #ccc;
}
.react-datepicker__day--disabled:hover,
.react-datepicker__month-text--disabled:hover,
.react-datepicker__quarter-text--disabled:hover,
.react-datepicker__year-text--disabled:hover {
  background-color: transparent;
}
.react-datepicker__day--disabled .overlay,
.react-datepicker__month-text--disabled .overlay,
.react-datepicker__quarter-text--disabled .overlay,
.react-datepicker__year-text--disabled .overlay {
  position: absolute;
  bottom: 70%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}

.react-datepicker__input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.react-datepicker__input-container .react-datepicker__calendar-icon {
  position: absolute;
  padding: 0.5rem;
  box-sizing: content-box;
}

.react-datepicker__view-calendar-icon input {
  padding: 6px 10px 5px 25px;
}

.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
  border: 1px solid transparent;
  border-radius: 0.3rem;
  position: relative;
}
.react-datepicker__year-read-view:hover,
.react-datepicker__month-read-view:hover,
.react-datepicker__month-year-read-view:hover {
  cursor: pointer;
}
.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
  border-top-color: #b3b3b3;
}
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  transform: rotate(135deg);
  right: -16px;
  top: 0;
}

.react-datepicker__year-dropdown,
.react-datepicker__month-dropdown,
.react-datepicker__month-year-dropdown {
  background-color: #f0f0f0;
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30px;
  z-index: 1;
  text-align: center;
  border-radius: 0.3rem;
  border: 1px solid #aeaeae;
}
.react-datepicker__year-dropdown:hover,
.react-datepicker__month-dropdown:hover,
.react-datepicker__month-year-dropdown:hover {
  cursor: pointer;
}
.react-datepicker__year-dropdown--scrollable,
.react-datepicker__month-dropdown--scrollable,
.react-datepicker__month-year-dropdown--scrollable {
  height: 150px;
  overflow-y: scroll;
}

.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
  line-height: 20px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__year-option:first-of-type,
.react-datepicker__month-option:first-of-type,
.react-datepicker__month-year-option:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.react-datepicker__year-option:last-of-type,
.react-datepicker__month-option:last-of-type,
.react-datepicker__month-year-option:last-of-type {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__year-option:hover,
.react-datepicker__month-option:hover,
.react-datepicker__month-year-option:hover {
  background-color: #ccc;
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
  border-bottom-color: #b3b3b3;
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
  border-top-color: #b3b3b3;
}
.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected {
  position: absolute;
  left: 15px;
}

.react-datepicker__close-icon {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0 6px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
.react-datepicker__close-icon::after {
  cursor: pointer;
  background-color: #216ba5;
  color: #fff;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  padding: 2px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  content: "×";
}
.react-datepicker__close-icon--disabled {
  cursor: default;
}
.react-datepicker__close-icon--disabled::after {
  cursor: default;
  background-color: #ccc;
}

.react-datepicker__today-button {
  background: #f0f0f0;
  border-top: 1px solid #aeaeae;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  clear: left;
}

.react-datepicker__portal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 2147483647;
}
.react-datepicker__portal .react-datepicker__day-name,
.react-datepicker__portal .react-datepicker__day,
.react-datepicker__portal .react-datepicker__time-name {
  width: 3rem;
  line-height: 3rem;
}
@media (max-width: 400px), (max-height: 550px) {
  .react-datepicker__portal .react-datepicker__day-name,
  .react-datepicker__portal .react-datepicker__day,
  .react-datepicker__portal .react-datepicker__time-name {
    width: 2rem;
    line-height: 2rem;
  }
}
.react-datepicker__portal .react-datepicker__current-month,
.react-datepicker__portal .react-datepicker-time__header {
  font-size: 1.44rem;
}

.react-datepicker__children-container {
  width: 13.8rem;
  margin: 0.4rem;
  padding-right: 0.2rem;
  padding-left: 0.2rem;
  height: auto;
}

.react-datepicker__aria-live {
  position: absolute;
  clip-path: circle(0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  width: 1px;
  white-space: nowrap;
}

.react-datepicker__calendar-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}
/*
 * Copyright (C) 2023 evendsa. 
 * All rights reserved.
 * 
 * Author: Daniel-Shawn Long
 * Company: Hexocom
 * Website: https://hexocom.io/
 */

.VendorWrapper {
  display: flex;

  padding-top: 3rem;
}

.VendorWrapper-Logo {
  width: 7rem;
  height: -moz-fit-content;
  height: fit-content;

  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: center;

  gap: 1.5rem;

  padding: 1rem;

  margin-right: 2rem;

  background-color: var(--neutral-000);

  border-radius: 16px;

  text-align: center;
}

.VendorWrapper-Logo > img {
  width: 100%;
}

.VendorWrapper-Logo > p {
  color: var(--primary-700);
}

.VendorWrapper-Information {
  width: 100%;
}

.VendorWrapper-Information-Logo > div > p > span {
  color: var(--primary-700);
}

.VendorWrapper-Information-Text-Title,
.VendorWrapper-Information-Text-Title > div {
  display: flex;

  flex-direction: row;
  flex-wrap: nowrap;

  align-items: center;
}

.VendorWrapper-Information-Text-Title > div {
  gap: 1rem;
}

.VendorWrapper-Information-Text-Title > div > svg {
  cursor: pointer;

  transition: all 0.2s ease-in-out;
}

.VendorWrapper-Information-Text-Title > div > svg:hover {
  opacity: 0.5;
}

.VendorWrapper-Information-Text-Title > h1 {
  font-weight: bold;

  margin-top: 5px;
  margin-right: 4rem;
}

.VendorWrapper-Information-Chips {
  display: flex;

  align-items: center;

  flex-direction: row;
  flex-wrap: nowrap;

  gap: 1rem;

  margin-top: 10px;
}

.VendorWrapper-Information-Description > h1,
.VendorWrapper-Location > h1 {
  font-weight: bold;
}

.VendorWrapper-Information-Description > p {
  opacity: 1;

  margin-top: 1rem;

  font-weight: 500;
}

.VendorWrapper-Information-Points {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;

  display: flex;

  flex-wrap: wrap;

  gap: 1rem;

  justify-content: space-between;
}

.VendorWrapper-Information-Point {
  display: flex;

  flex-direction: row;
  flex-wrap: nowrap;

  align-items: center;

  flex: 2 2 40%;
}

.VendorWrapper-Information-Point > p {
  font-weight: 500;

  margin-left: 0.3rem;

  opacity: 1;
}

.VendorWrapper-Information-Logo > img {
  height: 5rem;

  display: none;

  margin-right: 1rem;
}

.VendorWrapper-Blitz {
  position: relative;

  width: 1.5rem;
  height: 1.5rem;

  max-width: 1.5rem;
  max-height: 1.5rem;

  border: 1px solid var(--primary-700);

  border-radius: 50px;

  display: flex;

  cursor: pointer;

  justify-content: center;
  align-items: center;
}

.VendorWrapper-Blitz:hover > .VendorWrapper-Blitz-Popup {
  opacity: 1;
}

.VendorWrapper-Blitz-Popup {
  opacity: 0;

  top: -3rem;

  width: 17rem;

  background: var(--neutral-100);

  border: 1px solid var(--neutral-300);
  border-radius: 8px;

  padding: 0.6rem 0;

  position: absolute;
  
  display: flex;

  justify-content: center;
  align-items: center;

  box-shadow: 0px 0px 5px -4px var(--neutral);

  transition: all 0.2s ease-in-out;
}

@media only screen and (max-width: 950px) {
  .VendorWrapper {
    padding-top: 0rem;
  }
  
  .VendorWrapper-Information-Chips {
    flex-wrap: wrap;

    gap: 0.5rem;
  }

  .VendorWrapper-Information-Text-Title > h1 {
    margin-right: 2rem;
  }

  .VendorWrapper-Logo {
    display: none;
  }

  .VendorWrapper-Information-Logo {
    display: flex;
  }

  .VendorWrapper-Information-Logo > img {
    display: block;
  }
}/*
 * Copyright (C) 2023 evendsa. 
 * All rights reserved.
 * 
 * Author: Daniel-Shawn Long
 * Company: Hexocom
 * Website: https://hexocom.io/
 */

.FacilityWrapper {
  margin-right: 5rem;
  margin-bottom: 1rem;
}

.FacilityWrapper-Header,
.FacilityWrapper-Item {
  display: flex;

  flex-direction: row;
  flex-wrap: nowrap;

  align-items: center;

  gap: 0.5rem;

  margin-bottom: 1rem;
}/*
 * Copyright (C) 2023 evendsa. 
 * All rights reserved.
 * 
 * Author: Daniel-Shawn Long
 * Company: Hexocom
 * Website: https://hexocom.io/
 */

 .SeperatorLineHorizontal {
    width: 100%;
  }
  
  .SeperatorLineHorizontal-Wrapper {
    width: 100%;
  
    display: flex;
  
    flex-direction: row;
    flex-wrap: nowrap;
  
    justify-content: center;
    align-items: center;
  
    margin: 0 auto;
  }
  
  .SeperatorLineHorizontal-Line {
    height: 1px;
    width: 100%;
  
    background: var(--neutral-500)
  }
  
  .SeperatorLineHorizontal-Text {
    margin: 0 1rem;
  
    font-size: 0.7rem;
  
    color: var(--neutral);
  }/*
 * Copyright (C) 2023 evendsa. 
 * All rights reserved.
 * 
 * Author: Daniel-Shawn Long
 * Company: Hexocom
 * Website: https://hexocom.io/
 */

.InputEditable > h5 {
  font-size: 0.7rem;
  font-weight: 500;

  opacity: 0.5;

  margin-top: 7px;
}

.InputEditable-Input {
  min-width: 15rem;
  max-width: 20rem;

  margin-top: 5px;

  background: var(--neutral-000);

  border: 1px solid var(--neutral-600);
  border-radius: 5px;

  padding: 0.8rem 0.8rem;

  display: flex;

  flex-direction: row;
  flex-wrap: nowrap;

  justify-content: space-between;
  align-items: center;
}

.InputEditable-Input > input {
  width: 100%;

  padding: 0;
  border: 0;

  font-size: 0.8rem;
  font-weight: 500;
}

.InputEditable-Input-Icon {
  display: flex;

  justify-content: flex-end;
  align-items: center;

  margin-left: 1rem;

  cursor: pointer;

  transition: all 0.2s ease-in-out;
}

.InputEditable-Input-Icon:hover {
  opacity: 0.5;
}.requestDialog-container {
    min-width: 1200px; 
}

@media only screen and (max-width: 1250px) {
    .requestDialog-container {
        min-width: 900px; 
    }
}

@media only screen and (max-width: 950px) {
    .requestDialog-container {
        min-width: 700px; 
    }

}

@media only screen and (max-width: 768px){
    .requestDialog-container {
        min-width: 0px; 
    }
}/*
 * Copyright (C) 2023 evendsa. 
 * All rights reserved.
 * 
 * Author: Daniel-Shawn Long
 * Company: Hexocom
 * Website: https://hexocom.io/
 */

.ImageSlider {
  width: 100%;

  border-radius: 10px;
}

.ImageSlider > img {
  width: 100%;

  border-radius: 10px;
}

.ImageSlider-Controls {
  display: flex;

  flex-direction: row;
  flex-wrap: nowrap;

  gap: 2rem;

  justify-content: center;

  margin-top: -1.5rem;
}

.ImageSlider-Control {
  padding: 0.5rem;

  background: white;

  border: 1px sloid gray;
  border-radius: 50%;

  display: flex;

  justify-content: center;
  align-items: center;

  cursor: pointer;

  transition: all 0.2s ease-in-out;
}

.ImageSlider-Control > svg > pth {
  color: var(--neutral);
}

.ImageSlider-Control:hover {
  filter: brightness(93%);
}

@media only screen and (max-width: 950px) {
  .ImageSlider {
    margin-bottom: 1.5rem;
  }
}/*
 * Copyright (C) 2023 evendsa. 
 * All rights reserved.
 * 
 * Author: Daniel-Shawn Long
 * Company: Hexocom
 * Website: https://hexocom.io/
 */

.SimpleCard {
  width: 18rem;
  height: 8rem;

  background-color: var(--neutral-000);

  border: 1px solid var(--neutral-800);
  border-radius: 16px;

  transition: all 0.2s ease-in-out;

  padding: 1.5rem;

  cursor: pointer;
}

.SimpleCard:hover {
  opacity: 0.7;

  transform: scale(1.02);
}

.SimpleCard-Icon {
  margin-bottom: 1rem;

  display: flex;

  flex-direction: row;
  flex-wrap: nowrap;

  gap: 1rem;
}

.SimpleCard-Title {
  margin-bottom: 0.3rem;
}

@media only screen and (max-width: 950px) {
  .SimpleCard {
    width: auto;
  }
}/*
 * Copyright (C) 2023 evendsa. 
 * All rights reserved.
 * 
 * Author: Daniel-Shawn Long
 * Company: Hexocom
 * Website: https://hexocom.io/
 */

.FoldingCard {
  width: 100%;

  max-width: 70rem;

  background-color: var(--neutral-200);

  border-radius: 10px;
}

.FoldingCard-Header {
  padding: 1rem 2rem;

  display: flex;

  flex-direction: row;
  flex-wrap: nowrap;

  justify-content: space-between;

  cursor: pointer;

  transition: all 0.2s ease-in-out;
}

.FoldingCard-Header:hover {
  opacity: 0.7;
}

.FoldingCard-Body {
  border-top: 1px solid var(--neutral-300);
}

.FoldingCard-Body > div {
  padding: 1rem 2rem;
}/*
 * Copyright (C) 2023 evendsa. 
 * All rights reserved.
 * 
 * Author: Daniel-Shawn Long
 * Company: Hexocom
 * Website: https://hexocom.io/
 */

.Offer,
.Offer-More {
  max-width: 75rem;
  min-width: 55rem;

  margin: 0 auto;
}

.Offer {
  display: flex;

  flex-direction: row;
  flex-wrap: nowrap;

  gap: 3rem;

  padding: 4rem 6rem 3rem 6rem;
}

.Offer-More {
  padding: 0rem 6rem;

  margin-bottom: 4rem;
}

.Offer-Cards > h2 {
  font-weight: bold;
  font-size: 1.1rem;

  margin-bottom: 1rem;
}

.Offer-Cards-List {
  display: flex;

  flex-direction: column;

  gap: 1rem;
}

.Provider-Contact {
  margin: 1rem;
}
.Provider-Contact-item{
  margin: 0.8rem;
}

.Offer-Form-Prototype {
  min-width: 20rem;
  height: -moz-fit-content;
  height: fit-content;

  border-radius: 10px;

  background: var(--neutral-000);

  padding: 1.5rem;

  display: flex;

  flex-direction: column;
  flex-wrap: nowrap;

  gap: 1.5rem;
}

.Offer-Form {
  min-width: 20rem;
  height: -moz-fit-content;
  height: fit-content;

  border-radius: 10px;

  background: var(--neutral-000);

  padding: 1.5rem;

  display: flex;

  flex-direction: column;
  flex-wrap: nowrap;

  gap: 1.5rem;
}

.Offer-Form-Price {
  display: flex;

  flex-direction: row;
  flex-wrap: nowrap;

  justify-content: space-between;

  gap: 1rem;
}

.Offer-Form-Price-Label {
  width: 30%;

  padding-bottom: 0.45rem;
}

.Offer-Form-Price-Amount {
  text-align: right;
  padding-top: 0.45rem;
}

.Offer-Form-Price-Amount > h1 {
  font-size: 1.4rem;
  font-weight: bold;
}

.Offer-Form-Price-Amount > h2 {
  font-size: 0.8rem;
  font-weight: 400;
}

.Offer-Form-Submit {
  width: calc(100% - 2rem);
}

.Offer-Location {
  margin-top: 3rem;
}

.Offer-Location > div {
  margin-top: 1rem;

  display: flex;

  flex-direction: row;

  gap: 2rem;
}

.Offer-Location-Map {
  width: 40rem;
  height: 20rem;
}

.Offer-Location-Map > iframe {
  border: 0;
  border-radius: 10px;
}

.Offer-Information-Description {
  margin-top: 3rem;
}

.Offer-Information-Description > div {
  display: flex;

  flex-direction: row;
  flex-wrap: nowrap;

  gap: 1rem;

  margin-top: 1rem;
}

.Offer-Information-Description > h1 {
  margin-bottom: 0.5rem;
}

.Offer-Location-Information {
  display: flex;

  flex-direction: column;

  gap: 0.5rem;

  padding: 1rem;
}

.Offer-Location-Information > h1 {
  font-weight: bold;
  font-size: 1rem;

  margin-bottom: 1rem;
}

.Offer-Location-Information > p {
  font-weight: 400;
  font-size: 0.9rem;
}

.Offer-Information-FAQ {
  margin-top: 3rem;
}

.Offer-Information-FAQ > h1 {
  margin-bottom: 1rem;
}

.Offer-Information-FAQ > div {
  display: flex;

  flex-direction: column;
  
  gap: 1rem;
}

.Offer-Facilities {
  display: flex;

  flex-direction: row;
  flex-wrap: nowrap;

  gap: 0.5rem;

  margin-right: 1rem;
}

.Offer-Seperator {
  opacity: 0.5;

  margin: 1.5rem 0;
}

.Offer-Hint {
  color: var(--neutral-500);
}

.Offer-Staff-Container {
  
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;

  display: flex;

  flex-wrap: wrap;

  gap: 1rem;

  justify-content: space-between;
}
.Offer-Staff {
  display: flex;

  flex-direction: row;
  flex-wrap: nowrap;

  align-items: center;

  flex: 2 2 90%;
}

.Offer-Includes {
  margin: 1.5rem;
}

.Offer-Options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 0px;
    margin: 1rem;
}



.Offer-Options-Title { grid-area: 1 / 1 / 2 / 2; }
.Offer-Options-Price { grid-area: 1 / 2 / 2 / 3; }

.Offer-Allergens-Container {
  margin: 0.5rem;
}
.Offer-Allergens {
  display: inline-block;
  margin: 0.3rem;
}
@media only screen and (max-width: 1250px) {
  .Offer, .Offer-More {
    min-width: auto;

    padding: 1rem;
  }

  .Offer-Information-Description > div {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .Offer-Location > div {
    flex-wrap: wrap;
  }

  .Offer-More {
    margin-bottom: 0rem;
  }
}

@media only screen and (max-width: 950px) {
  .Offer {
    min-width: auto;

    flex-direction: column;
  }

  .Offer-Form {
    min-width: auto;
  }

  .Offer-Location-Map {
    width: 100%
  }
}

@media only screen and (max-width: 768px){
  .Offer-Location {
    margin-top: 3rem;
  }
  
  .Offer-Location > div {
    margin-top: 1rem;
  
    display: flex;
  
    flex-direction: row;
  
    gap: 0rem;
  }

  .Offer-Location-Information > h1 {
    font-weight: 400;
    font-size: 1rem;
  }
}/*
 * Copyright (C) 2023 evendsa. 
 * All rights reserved.
 * 
 * Author: Daniel-Shawn Long
 * Company: Hexocom
 * Website: https://hexocom.io/
 */

 .ButtonBordered {
    border: 1px solid rgb(34, 34, 34, 0.4);
  
    padding: 0.8rem 0;
  
    border-radius: 7px;
  
    cursor: pointer;
  
    transition: all 0.2s ease-in-out;
  }
  
  .ButtonBordered:hover {
    opacity: 0.7;
  }
  
  .ButtonBordered-Text {
    text-align: center;
  
    font-size: 1rem;
    font-weight: 600;
  
    color: rgb(34, 34, 34);
  
    opacity: 0.7;
  }/*
 * Copyright (C) 2023 evendsa. 
 * All rights reserved.
 * 
 * Author: Daniel-Shawn Long
 * Company: Hexocom
 * Website: https://hexocom.io/
 */

 .ButtonGradient {
    background: linear-gradient(135deg, rgb(251, 88, 72) 0%, rgb(234, 154, 68) 100%);
  
    padding: 0.8rem 0;
  
    border-radius: 7px;
  
    cursor: pointer;
  
    transition: all 0.2s ease-in-out;
  }
  
  .ButtonGradient:hover {
    opacity: 0.7;
  }
  
  .ButtonGradient-Text {
    text-align: center;
  
    font-size: 1rem;
    font-weight: 600;
  
    color: white;
  
    opacity: 1;
  }/*
 * Copyright (C) 2023 evendsa. 
 * All rights reserved.
 * 
 * Author: Daniel-Shawn Long
 * Company: Hexocom
 * Website: https://hexocom.io/
 */

 .CheckBoxButton {
    padding: 1rem 4rem;
  
    border-radius: 50px;
  
    box-shadow: 0px 0px 3px 0px rgba(34, 34, 34, 0.4);
  
    cursor: pointer;
  
    transition: all 0.2s ease-in-out;
  
    display: flex;
  
    justify-content: center;
    align-items: center;
  }
  
  .CheckBoxButton > h3 {
    font-size: 1rem;
    font-weight: 600;
  
    color: var(--neutral-600);
  }
  
  .CheckBoxButton:hover {
    opacity: 0.5;
  }
  
  .CheckBoxButton-Selected {
    background: var(--primary-100);
    
    transform: scale(0.98);
    box-shadow: 0px 0px 3px 0px var(--primary);
  }
  
  .CheckBoxButton-Selected > h3 {
    color: var(--neutral-900);
  }
  
  .CheckBoxButton-Selected:hover {
    opacity: 1;
  }/*
 * Copyright (C) 2023 evendsa. 
 * All rights reserved.
 * 
 * Author: Daniel-Shawn Long
 * Company: Hexocom
 * Website: https://hexocom.io/
 */

 .Survey {
    padding-bottom: 4rem;
  }
  
  .Survey-Header {
    width: 100%;
    height: 15rem;
  
    display: flex;
  
    justify-content: center;
    align-items: center;
  
    background-image: url("/public/assets/images/survey/3.jpg");
    background-size: auto;
    background-repeat: no-repeat;
  
    box-shadow: inset 0px -3rem 7rem 1rem rgba(34, 34, 34, 0.5);
  }
  
  .Survey-Header > h1 {
    font-weight: 800;
    font-size: 2.7rem;
  
    color: var(--neutral-000);
  
    text-shadow: 0px 2px 5px rgba(34, 34, 34, 0.7);
  }
  
  .Survey-Steps {
    width: 50rem;
    height: 10rem;
  
    margin: 3rem auto 2rem auto;
  
    display: flex;
  
    justify-content: space-between;
    align-items: center;
  }
  
  .Survey-Step {
    width: 1.3rem;
    height: 1.3rem;
  
    background: var(--neutral-300);
  
    border-radius: 50%;
  
    position: relative;
  
    transition: all 0.3s ease-in-out;
  }
  
  .Survey-Step-Title {
    width: 5rem;
  
    text-align: center;
  
    position: absolute;
  
    top: -2.5rem;
    left: -1.7rem;
  }
  
  .Survey-Step-Active {
    background: var(--gradient);
  }
  
  .Survey-Line {
    height: 0.4rem;
    width: 50rem;
  
    border-radius: 10px;
  
    background: var(--neutral-300);
  
    position: absolute;
  
    z-index: 0;
  }
  
  .Survey-Line-Progress {
    width: 0%;
    height: 100%;
  
    border-radius: 10px;
  
    background: var(--gradient);
  
    transition: all 0.3s ease-in-out;
  }
  
  .Survey-Question {
    width: 100%;
  
    text-align: center;
  
    margin-bottom: 5rem;
  }
  
  .Survey-Question > p {
    font-size: 1rem;
  }
  
  .Survey-Question > h3 {
    font-size: 1.7rem;
  
    margin-top: 1rem;
  }
  
  .Survey-Answer {
    display: flex;
  
    flex-wrap: wrap;
  
    justify-content: center;
    align-items: center;
  
    padding: 0 15rem;
  
    margin-bottom: 4rem;
  }
  
  .Survey-Submit {
    width: 15rem;
  
    margin: 0 auto;
  }
  
  .Survey-Submit-Buttons {
    width: -moz-fit-content;
    width: fit-content;
  
    margin: 0 auto 3rem auto;
  
    display: flex; 
    
    flex-direction: row;
    flex-wrap: nowrap;
  
    justify-content: center;
    align-items: center;
  
    gap: 5rem;
  }
  
  .Survey-Submit-Buttons > div {
    width: 2rem;
    height: 2rem;
  
    border-radius: 50%;
  
    display: flex;
  
    justify-content: center;
    align-items: center;
  
    padding: 0.3rem;
  
    transition: all 0.2s ease-in-out;
  
    cursor: pointer;
  }
  
  .Survey-Submit-Buttons > div:hover {
    opacity: 0.5;
  }
  
  .Survey-Submit-Buttons-Continue {
    
    background: var(--primary-700);
  }.slider-img{
  max-width: none;
}
.questionnaireLayout{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden;
}
.questionnaire {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 70vw;
  z-index: 0;
  padding: 135px 100px;
}
.active-img{
  height: 20px;
}
.hidden-img{
  display: none;
}
.step img{
  position: relative;
  z-index: 1;
}
.form{
  margin-top: 40px;
}
.form-content{
  min-height: 25vh;
}
.timeline {
  display: flex;
  position: absolute;
  border-radius: 100px;
  top: 100px;
  justify-content: space-between;
  width: 80%;
  height: 8px;
  /* margin-bottom: 30%; */
  background: #C8C8C8;
}

.filling-line {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  border-radius: 110px;
  background: linear-gradient(to right, #D8295D 0%, #FF5A60 100%);
  transform-origin: left center;
  transition: transform 0.3s;
}


.timeline .step {
  display: flex;
  flex-direction: column ;
  align-items: center;
  justify-content: center ;
  position: relative;
}


.timeline .label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 10px;
  color: var(--neutral-500, #848484);
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
}

.input-fields {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 30px;
  margin-top: 3%;
}

.input-field {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  text-align: center;
  >label {
    color: var(--neutral-700, #3C3C3C);
    font-family: montserrat;
    font-style: normal;
    line-height: 20px;
    margin-bottom: 10px;
  }

  >input,
  >select {
    display: flex;
    padding: 12px 32px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid var(--neutral-600, #5A5A5A);
    background: var(--neutral-000, #FFF);
    color: var(--neutral-500, #848484);
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    /* 160% */
  }

  >select {
    width: 100%;

    >option {
      width: 100%;
    }
  }
}
.step-mobile{display: none;}
.form-nav-buttons {
  display: flex;
  align-items: center;
  top: 110px;
  width: 70vw;
  position: relative;
  flex-direction: column;
}

.icon-buttons {
  display: flex;
  justify-content: center;
  gap: 3vw;
  align-items: center;
}

.icon-button {
  display: flex;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 100px;
  background: var(--primary-verlauf, linear-gradient(82deg, #D8295D -6.94%, #FF5A60 106.64%));
}

.text-buttons {
  display: flex;
  justify-content: space-between;
  align-self: center;
  width: 100%;
  /* gap: 50vw; */
}

.text-button:hover {
  opacity: 0.8;
}

.text-button {
  color: var(--primary-700, #F24A5F);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  /* 130% */
  text-decoration-line: underline;
  background: none;
  outline: none;
  border: none;
}

.radio-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: auto;
}

.option input[type="radio"] {
  display: none;
}

.option {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 250px;
  height: 40px;
  cursor: pointer;
  color: var(--neutral-600, #5A5A5A);
  text-align: center;

  /* Desktop/body-1-medium */
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  /* 160% */
}

.option.selected {
  border-radius: 8px;
  border: 1px solid var(--primary-700, #F24A5F);
  background: var(--primary-100, #FFF6F6);
}

.slider-container {
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
}

.slider-label {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

.slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  margin: auto;
  margin-top: 150px;
}

.slider input[type="range"] {
  margin: 0 10px;
}

.slider .image {
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-bottom: 10px;
  transform: translateX(-50%);

}

.slider .image img {
  width: auto;
  height: 130px;
  border-radius: 8px;
  border: 2px solid var(--primary-700, #F24A5F);
}

.slider input[type="range"] {
  margin: 0 10px;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: rgb(225, 225, 225);
  height: 7px;
  border-radius: 3px;
}

.slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #F24A5F;
  appearance: none;
}

.slider input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  width: 100px;
}


.slider-with-spans {
  display: flex;
  align-items: last baseline;

  /* justify-content: space-between; */
  >span {
    width: 150px;
  }
}

.checkbox-container {
  /* background-color: #3C3C3C; */
  border-radius: 100px;
  padding: 8px 24px;
  margin: 10px 0;
  background:  #ffffff;
  border: 1px solid #3d3d3d;

  >input {
    display: none;
  }
}

.p-questionnaire-margin {
  margin-block-start: 1em !important;
    margin-block-end: 1em !important;
    margin-inline-start: 0px !important;
    margin-inline-end: 0px !important;
}

.checkbox-container.selected {
  border-radius: 100px;
  padding: 8px 24px;
  margin: 10px 0;
  background: var(--primary-100, #FFF6F6);
  border: 1px solid var(--primary-700, #F24A5F);
}

.checkbox-container-selected {
  border-radius: 100px;
  padding: 8px 24px;
  margin: 10px 0;
  background: var(--primary-100, #FFF6F6);
  border: 1px solid var(--primary-700, #F24A5F);

}

.checkbox-input {

  display: none;
}

.checkbox-options {
  display: flex;
  gap: 10px;
  width: 60%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.combobox-input {
  display: flex;
  padding: 12px 32px;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid var(--neutral-600, #5A5A5A);
  background: var(--neutral-000, #FFF);
  color: var(--neutral-500, #848484);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

.map-container {
  margin-top: 20px;
  height: 60vh;
  width: 50vw;
}

.jj {
  height: 100px;
  width: 100px;
}

@media screen and (max-width: 900px) {
  html{
    overflow-x: hidden;
  }
  body{
    overflow-x: hidden;
  }
  .step-mobile {
    display: block;
    margin-bottom: 20px;
    text-align: center;
    color: #D8295D ;
    /* Desktop/heading-2-bold */
    font-family: Montserrat;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    /* 130.769% */
  }
  .form-nav-buttons{
    gap: 20px;
  }
  .icon-buttons{
    gap: 10vw;
  }
  .not-active{
    width: 20px;
  }
  .active-img{
    width: 15px;
  }
  .input-fields{
    flex-direction: column;
  }
  .option{
    padding: 0 10px;
    min-height: 40px;
  }
  .input-field{
    gap: 10px;
    text-align: center;
    >input{
      width: 50vw;
    }
  }
  .range-div{
    margin-bottom: 20px;
  }
  .radio-options{
    flex-wrap: wrap;
    justify-content: center;
  }
  .questionnaire {
    width: 90vw;
    padding: 100px 20px;
    padding-top: 20px;
  }
  .combobox-input{
    width: 60vw;
  }
  .slider-with-spans{
    >span{
      width: auto;
      font-size: 12px;
      position: relative;
      top: 20px;
    }
    >.right-span{
      left: 30px;
    }
    >.left-span{
      right: 30px;
    }
    >.slider{
      width: 60vw;
      >.image img{
        height: 100px;
      }
    }
  }
  .map-container{
    width: 80vw;
    height: 40vh;
  }
  .timeline {
    /* display: none; */
    margin-bottom: 5%;
    top: 80px;
    height: 4px;
    /* Adjust margin for smaller screens */
  }

  .timeline .circle {
    width: 10px;
    height: 10px;
  }
  .form-content{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
    min-height: 40vh;
  }
  .form-nav-buttons{
    width: 100vw;
    top: 80px;
  }
  .text-buttons{
    flex-direction: column-reverse;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
  }
  .text-button{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .timeline .label {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    display: none;
    color: var(--neutral-500, #848484);
    text-align: center;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
  }
}
.Survey-Steps {
  width: 50rem;
  height: 10rem;

  margin: 3rem auto 2rem auto;

  display: flex;

  justify-content: space-between;
  align-items: center;
}

.Survey-Step {
  width: 1.3rem;
  height: 1.3rem;

  background: var(--neutral-300);

  border-radius: 50%;

  position: relative;

  transition: all 0.3s ease-in-out;
}

.Survey-Step-Title {
  width: 5rem;

  text-align: center;

  position: absolute;

  top: -2.5rem;
  left: -1.7rem;
}

.Survey-Step-Active {
  background: var(--gradient);
}

.Survey-Line {
  height: 0.4rem;
  width: 50rem;

  border-radius: 10px;

  background: var(--neutral-300);

  position: absolute;

  z-index: 0;
}

.Survey-Line-Progress {
  width: 0%;
  height: 100%;

  border-radius: 10px;

  background: var(--gradient);

  transition: all 0.3s ease-in-out;
}

.spacing-section {
  margin-top: 10rem;
}

/* Chat styles */
.chat-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 0;
  padding: 20px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chat-container h3 {
  text-align: center;
  margin-bottom: 16px;
}

.chat-container p {
  text-align: center;
  margin-bottom: 24px;
}

.chat-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-input {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--neutral-300, #E0E0E0);
  font-family: Montserrat;
  font-size: 16px;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.3s;
}

.chat-input:focus {
  outline: none;
  border-color: var(--primary-700, #F24A5F);
}

.chat-form-button-container {
  display: flex;
  justify-content: center;
  margin: 15px 0;
  width: 100%;
  height: 50%;
}


.chat-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.chat-loading {
  margin-top: 20px;
  text-align: center;
}

.chat-loading p {
  color: var(--neutral-500, #848484);
  font-style: italic;
}

.chat-response {
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--primary-100, #FFF6F6);
  border: 1px solid var(--primary-200, #FFDBDB);
}

.chat-response h4 {
  color: var(--primary-700, #F24A5F);
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.chat-response p {
  color: var(--neutral-700, #3C3C3C);
  font-family: Montserrat;
  font-size: 16px;
  text-align: left;
  margin-bottom: 0;
}

@media screen and (max-width: 900px) {
  .chat-container {
    padding: 16px;
    margin-bottom: 24px;
  }
  
  .chat-container h3 {
    font-size: 20px;
  }
  
  .chat-input {
    padding: 12px;
    min-height: 100px;
  }
  
  .chat-submit-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}

.chat-list {
  list-style-type: disc;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* Emma-Styling für Chat-Container */
.chat-container-with-emma {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.chat-content {
  flex: 1;
}

.emma-image-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 300px;
}

.emma-thinking-image {
  max-width: 100%;
  height: auto;
}

/* Responsive Anpassungen */
@media (max-width: 968px) {
  .chat-container-with-emma {
    flex-direction: column-reverse;
  }
  
  .emma-image-container {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 20px;
  }
}

/* Emma-Sidebar Styling */
.questionnaire-container {
  display: flex;
  width: 100%;
  position: relative;
  min-height: 88vh;
}

.questionnaire {
  flex: 1;
  /* Behält das bisherige Layout bei */
}

.emma-sidebar {
  width: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}

.emma-thinking-sidebar {
  max-width: 100%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 968px) {
  .emma-sidebar {
    display: none; /* Emma auf mobilen Geräten ausblenden */
  }
}
.identLink{
    color: #e55e26;
}.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f5f5f5; /* Hintergrundfarbe anpassen */
    height: 98vh;
  }


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .contact-form-field {
    display: flex;
    flex-direction: column;
  }
  /** 
 * Copyright (C) 2023 evendsa. 
 * All rights reserved.
 * 
 * Author: Daniel-Shawn Long
 * Company: Hexocom
 * Website: https://hexocom.de/
 */

/** Montserrat Font by Google Fonts. */

@font-face {
  font-family: 'Montserrat';
  src: url('/assets/Montserrat-Thin-e55b6f5f.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/assets/Montserrat-ExtraLight-81535101.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/assets/Montserrat-Light-432fceb4.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/assets/Montserrat-Regular-c3fb0280.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/assets/Montserrat-Medium-264819b0.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/assets/Montserrat-SemiBold-e23dc6d2.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/assets/Montserrat-Bold-98b14868.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/assets/Montserrat-ExtraBold-ebc2e02b.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/** Importing Tailwind CSS Styles. */
/*! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com
 */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/
html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.-bottom-7 {
  bottom: -1.75rem;
}
.bottom-0 {
  bottom: 0px;
}
.left-0 {
  left: 0px;
}
.left-1\/2 {
  left: 50%;
}
.left-2 {
  left: 0.5rem;
}
.left-3 {
  left: 0.75rem;
}
.right-0 {
  right: 0px;
}
.right-2 {
  right: 0.5rem;
}
.right-32 {
  right: 8rem;
}
.right-\[10px\] {
  right: 10px;
}
.top-0 {
  top: 0px;
}
.top-12 {
  top: 3rem;
}
.top-16 {
  top: 4rem;
}
.top-2 {
  top: 0.5rem;
}
.top-\[10px\] {
  top: 10px;
}
.z-10 {
  z-index: 10;
}
.z-50 {
  z-index: 50;
}
.m-5 {
  margin: 1.25rem;
}
.m-7 {
  margin: 1.75rem;
}
.-mx-7 {
  margin-left: -1.75rem;
  margin-right: -1.75rem;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-7 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.-ml-32 {
  margin-left: -8rem;
}
.-mt-5 {
  margin-top: -1.25rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-14 {
  margin-bottom: 3.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-20 {
  margin-bottom: 5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-32 {
  margin-bottom: 8rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-7 {
  margin-bottom: 1.75rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-10 {
  margin-left: 2.5rem;
}
.ml-14 {
  margin-left: 3.5rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-5 {
  margin-left: 1.25rem;
}
.ml-7 {
  margin-left: 1.75rem;
}
.mr-10 {
  margin-right: 2.5rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-2\.5 {
  margin-right: 0.625rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-7 {
  margin-right: 1.75rem;
}
.mr-\[5px\] {
  margin-right: 5px;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-14 {
  margin-top: 3.5rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-32 {
  margin-top: 8rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-7 {
  margin-top: 1.75rem;
}
.mt-8 {
  margin-top: 2rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-10 {
  height: 2.5rem;
}
.h-11 {
  height: 2.75rem;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-20 {
  height: 5rem;
}
.h-32 {
  height: 8rem;
}
.h-4 {
  height: 1rem;
}
.h-40 {
  height: 10rem;
}
.h-5 {
  height: 1.25rem;
}
.h-52 {
  height: 13rem;
}
.h-56 {
  height: 14rem;
}
.h-6 {
  height: 1.5rem;
}
.h-72 {
  height: 18rem;
}
.h-80 {
  height: 20rem;
}
.h-\[290px\] {
  height: 290px;
}
.h-\[70vh\] {
  height: 70vh;
}
.h-\[calc\(100vh-80px\)\] {
  height: calc(100vh - 80px);
}
.h-auto {
  height: auto;
}
.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.max-h-60 {
  max-height: 15rem;
}
.max-h-\[80vh\] {
  max-height: 80vh;
}
.max-h-\[90vh\] {
  max-height: 90vh;
}
.min-h-\[115px\] {
  min-height: 115px;
}
.min-h-\[150px\] {
  min-height: 150px;
}
.min-h-\[50px\] {
  min-height: 50px;
}
.min-h-screen {
  min-height: 100vh;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/4 {
  width: 25%;
}
.w-10 {
  width: 2.5rem;
}
.w-10\/12 {
  width: 83.333333%;
}
.w-11 {
  width: 2.75rem;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-2 {
  width: 0.5rem;
}
.w-2\/12 {
  width: 16.666667%;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-3\/4 {
  width: 75%;
}
.w-32 {
  width: 8rem;
}
.w-4 {
  width: 1rem;
}
.w-40 {
  width: 10rem;
}
.w-44 {
  width: 11rem;
}
.w-48 {
  width: 12rem;
}
.w-5 {
  width: 1.25rem;
}
.w-52 {
  width: 13rem;
}
.w-56 {
  width: 14rem;
}
.w-6 {
  width: 1.5rem;
}
.w-60 {
  width: 15rem;
}
.w-64 {
  width: 16rem;
}
.w-72 {
  width: 18rem;
}
.w-80 {
  width: 20rem;
}
.w-96 {
  width: 24rem;
}
.w-\[500px\] {
  width: 500px;
}
.w-\[550px\] {
  width: 550px;
}
.w-auto {
  width: auto;
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.w-screen {
  width: 100vw;
}
.min-w-\[150px\] {
  min-width: 150px;
}
.min-w-\[176px\] {
  min-width: 176px;
}
.min-w-\[500px\] {
  min-width: 500px;
}
.max-w-\[300px\] {
  max-width: 300px;
}
.max-w-\[470px\] {
  max-width: 470px;
}
.max-w-\[480px\] {
  max-width: 480px;
}
.max-w-\[670px\] {
  max-width: 670px;
}
.max-w-\[80\%\] {
  max-width: 80%;
}
.max-w-sm {
  max-width: 24rem;
}
.max-w-xl {
  max-width: 36rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.grow-\[50\] {
  flex-grow: 50;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-default {
  cursor: default;
}
.cursor-help {
  cursor: help;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize-none {
  resize: none;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.place-items-center {
  place-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-14 {
  gap: 3.5rem;
}
.gap-16 {
  gap: 4rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-20 {
  gap: 5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-7 {
  gap: 1.75rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-x-10 {
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
.gap-y-5 {
  row-gap: 1.25rem;
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-y-auto {
  overflow-y: auto;
}
.whitespace-normal {
  white-space: normal;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-l-lg {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.rounded-l-md {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.rounded-r-lg {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.rounded-r-md {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.rounded-bl-lg {
  border-bottom-left-radius: 0.5rem;
}
.rounded-br-lg {
  border-bottom-right-radius: 0.5rem;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-l {
  border-left-width: 1px;
}
.border-r {
  border-right-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-solid {
  border-style: solid;
}
.border-dashed {
  border-style: dashed;
}
.border-gradient-100 {
  --tw-border-opacity: 1;
  border-color: rgb(216 41 93 / var(--tw-border-opacity));
}
.border-neutral-100 {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-neutral-200 {
  --tw-border-opacity: 1;
  border-color: rgb(244 244 244 / var(--tw-border-opacity));
}
.border-neutral-300 {
  --tw-border-opacity: 1;
  border-color: rgb(230 230 230 / var(--tw-border-opacity));
}
.border-neutral-400 {
  --tw-border-opacity: 1;
  border-color: rgb(200 200 200 / var(--tw-border-opacity));
}
.border-neutral-500 {
  --tw-border-opacity: 1;
  border-color: rgb(168 168 168 / var(--tw-border-opacity));
}
.border-neutral-600 {
  --tw-border-opacity: 1;
  border-color: rgb(132 132 132 / var(--tw-border-opacity));
}
.border-neutral-800 {
  --tw-border-opacity: 1;
  border-color: rgb(60 60 60 / var(--tw-border-opacity));
}
.border-primary-600 {
  --tw-border-opacity: 1;
  border-color: rgb(255 90 96 / var(--tw-border-opacity));
}
.border-primary-700 {
  --tw-border-opacity: 1;
  border-color: rgb(242 74 95 / var(--tw-border-opacity));
}
.border-secondary-500 {
  --tw-border-opacity: 1;
  border-color: rgb(150 193 205 / var(--tw-border-opacity));
}
.border-transparent {
  border-color: transparent;
}
.border-t-primary-700 {
  --tw-border-opacity: 1;
  border-top-color: rgb(242 74 95 / var(--tw-border-opacity));
}
.bg-\[\#00000008\] {
  background-color: #00000008;
}
.bg-\[\#00000077\] {
  background-color: #00000077;
}
.bg-error-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(222 62 62 / var(--tw-bg-opacity));
}
.bg-info-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(54 170 207 / var(--tw-bg-opacity));
}
.bg-neutral-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-neutral-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 244 / var(--tw-bg-opacity));
}
.bg-neutral-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(230 230 230 / var(--tw-bg-opacity));
}
.bg-neutral-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(168 168 168 / var(--tw-bg-opacity));
}
.bg-neutral-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(29 29 29 / var(--tw-bg-opacity));
}
.bg-primary-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 246 246 / var(--tw-bg-opacity));
}
.bg-primary-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 90 96 / var(--tw-bg-opacity));
}
.bg-primary-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(242 74 95 / var(--tw-bg-opacity));
}
.bg-success-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(103 193 106 / var(--tw-bg-opacity));
}
.bg-warning-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 176 83 / var(--tw-bg-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-tr {
  background-image: linear-gradient(to top right, var(--tw-gradient-stops));
}
.from-gradient-100 {
  --tw-gradient-from: #D8295D var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(216 41 93 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-gradient-200 {
  --tw-gradient-to: #FF5A60 var(--tw-gradient-to-position);
}
.bg-cover {
  background-size: cover;
}
.bg-center {
  background-position: center;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.object-fill {
  -o-object-fit: fill;
     object-fit: fill;
}
.p-0 {
  padding: 0px;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-2\.5 {
  padding: 0.625rem;
}
.p-20 {
  padding: 5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-7 {
  padding: 1.75rem;
}
.p-8 {
  padding: 2rem;
}
.px-14 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-20 {
  padding-left: 5rem;
  padding-right: 5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-52 {
  padding-left: 13rem;
  padding-right: 13rem;
}
.px-56 {
  padding-left: 14rem;
  padding-right: 14rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.px-72 {
  padding-left: 18rem;
  padding-right: 18rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[12px\] {
  padding-left: 12px;
  padding-right: 12px;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-\[2px\] {
  padding-top: 2px;
  padding-bottom: 2px;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pl-16 {
  padding-left: 4rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pr-10 {
  padding-right: 2.5rem;
}
.pr-20 {
  padding-right: 5rem;
}
.pr-32 {
  padding-right: 8rem;
}
.pr-9 {
  padding-right: 2.25rem;
}
.pt-20 {
  padding-top: 5rem;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.italic {
  font-style: italic;
}
.tracking-\[3px\] {
  letter-spacing: 3px;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.text-error-500 {
  --tw-text-opacity: 1;
  color: rgb(222 62 62 / var(--tw-text-opacity));
}
.text-neutral {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-neutral-100 {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-neutral-400 {
  --tw-text-opacity: 1;
  color: rgb(200 200 200 / var(--tw-text-opacity));
}
.text-neutral-500 {
  --tw-text-opacity: 1;
  color: rgb(168 168 168 / var(--tw-text-opacity));
}
.text-neutral-600 {
  --tw-text-opacity: 1;
  color: rgb(132 132 132 / var(--tw-text-opacity));
}
.text-neutral-700 {
  --tw-text-opacity: 1;
  color: rgb(90 90 90 / var(--tw-text-opacity));
}
.text-neutral-800 {
  --tw-text-opacity: 1;
  color: rgb(60 60 60 / var(--tw-text-opacity));
}
.text-neutral-900 {
  --tw-text-opacity: 1;
  color: rgb(29 29 29 / var(--tw-text-opacity));
}
.text-primary {
  --tw-text-opacity: 1;
  color: rgb(216 41 93 / var(--tw-text-opacity));
}
.text-primary-500 {
  --tw-text-opacity: 1;
  color: rgb(255 138 142 / var(--tw-text-opacity));
}
.text-primary-600 {
  --tw-text-opacity: 1;
  color: rgb(255 90 96 / var(--tw-text-opacity));
}
.text-primary-700 {
  --tw-text-opacity: 1;
  color: rgb(242 74 95 / var(--tw-text-opacity));
}
.text-primary-800 {
  --tw-text-opacity: 1;
  color: rgb(229 57 94 / var(--tw-text-opacity));
}
.text-secondary-100 {
  --tw-text-opacity: 1;
  color: rgb(242 247 249 / var(--tw-text-opacity));
}
.text-warning {
  --tw-text-opacity: 1;
  color: rgb(229 137 28 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-30 {
  opacity: 0.3;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-70 {
  opacity: 0.7;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0px_8px_-2px_rgba\(0\2c 0\2c 0\2c 0\.3\)\] {
  --tw-shadow: 0 0px 8px -2px rgba(0,0,0,0.3);
  --tw-shadow-colored: 0 0px 8px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline {
  outline-style: solid;
}
.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-opacity-5 {
  --tw-ring-opacity: 0.05;
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

:root {
  --primary: #D8295D;
  --primary-800: #E5395E;
  --primary-700: #F24A5F;
  --primary-600: #FF5A60;
  --primary-500: #FF8A8E;
  --primary-400: #FFB6B8;
  --primary-300: #FFD1D3;
  --primary-200: #FFE8E8;
  --primary-100: #FFF6F6;

  --secondary: #54BFE1;
  --secondary-800: #62BBD7;
  --secondary-700: #71B8CC;
  --secondary-600: #7FB4C2;
  --secondary-500: #96C1CD;
  --secondary-400: #ADCFD8;
  --secondary-300: #C4DCE3;
  --secondary-200: #DBEAEE;
  --secondary-100: #F2F7F9;

  --neutral: #000000;
  --neutral-800: #1D1D1D;
  --neutral-700: #3C3C3C;
  --neutral-600: #5A5A5A;
  --neutral-500: #848484;
  --neutral-400: #A8A8A8;
  --neutral-300: #C8C8C8;
  --neutral-200: #E6E6E6;
  --neutral-100: #F4F4F4;
  --neutral-000: #FFFFFF;

  --success: #48A54C;
  --success-600: #5DBD61;
  --success-500: #67C16A;
  --success-400: #78D37C;
  --success-300: #A1E9A4;
  --success-200: #C3F6C5;
  --success-100: #EBFAEC;
  
  --warning: #E5891C;
  --warning-600: #FDA640;
  --warning-500: #FFB053;
  --warning-400: #FFBC6C;
  --warning-300: #FFCF95;
  --warning-200: #FFE5C6;
  --warning-100: #FFF4E8;
  
  --info: #1C84A5;
  --info-600: #2395BA;
  --info-500: #36AACF;
  --info-400: #56BADA;
  --info-300: #78CDE9;
  --info-200: #B4E9FA;
  --info-100: #E5F9FF;

  --error: #BF1C1C;
  --error-600: #CE2F2F;
  --error-500: #DE3E3E;
  --error-400: #E85050;
  --error-300: #F26666;
  --error-200: #FFACAC;
  --error-100: #FFE5E5;

  --gradient: linear-gradient(135deg, rgba(216,41,93,1) 0%, rgba(255,90,96,1) 100%);
  --gradient-webkit: -webkit-linear-gradient(#D8295D, #FF5A60);
  --gradient-start: #D8295D;
  --gradient-end: #FF5A60;
}

* {
  font-family: 'Montserrat', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 
    'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 
    'Droid Sans', 'Helvetica Neue', sans-serif;
}

*:focus {
  outline: none;
}

input[type='radio'] {
  accent-color: #FF5A60;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */ /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.heading-0 {
  font-size: 3rem;
  font-weight: 500;
}

.heading-1 {
  font-size: 2rem;
  font-weight: 700;
}

.heading-2-bold {
  font-size: 1.5rem;
  font-weight: 600;
}

.heading-2-medium {
  font-size: 1.5rem;
  font-weight: 500;
}

.body-0-bold {
  font-size: 1.3rem;
  font-weight: 700;
}

.body-0-medium {
  font-size: 1.3rem;
  font-weight: 500;
}

.body-0-regular {
  font-size: 1.3rem;
  font-weight: 400;
}

.body-1-bold {
  font-size: 1.125rem;
  font-weight: 700;
}

.body-1-medium {
  font-size: 1.125rem;
  font-weight: 500;
}

.body-1-regular {
  font-size: 1.125rem;
  font-weight: 400;
}

.body-1-light {
  font-size: 1.125rem;
  font-weight: 300;

}

.body-2-bold {
  font-size: 1rem;
  font-weight: 700;
}

.body-2-medium {
  font-size: 1rem;
  font-weight: 500;
}

.body-2-regular {
  font-size: 1rem;
  font-weight: 400;
}

.caption-text {
  font-size: 14px;
  font-weight: 500;
}

.after\:absolute::after {
  content: var(--tw-content);
  position: absolute;
}

.after\:left-\[2px\]::after {
  content: var(--tw-content);
  left: 2px;
}

.after\:top-1\/2::after {
  content: var(--tw-content);
  top: 50%;
}

.after\:h-5::after {
  content: var(--tw-content);
  height: 1.25rem;
}

.after\:w-5::after {
  content: var(--tw-content);
  width: 1.25rem;
}

.after\:-translate-y-1\/2::after {
  content: var(--tw-content);
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.after\:rounded-full::after {
  content: var(--tw-content);
  border-radius: 9999px;
}

.after\:border::after {
  content: var(--tw-content);
  border-width: 1px;
}

.after\:border-neutral-400::after {
  content: var(--tw-content);
  --tw-border-opacity: 1;
  border-color: rgb(200 200 200 / var(--tw-border-opacity));
}

.after\:bg-neutral-400::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(200 200 200 / var(--tw-bg-opacity));
}

.after\:transition-all::after {
  content: var(--tw-content);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.after\:content-\[\'\'\]::after {
  --tw-content: '';
  content: var(--tw-content);
}

.hover\:bg-neutral-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 244 / var(--tw-bg-opacity));
}

.hover\:bg-primary-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(242 74 95 / var(--tw-bg-opacity));
}

.hover\:text-neutral-700:hover {
  --tw-text-opacity: 1;
  color: rgb(90 90 90 / var(--tw-text-opacity));
}

.hover\:text-primary-700:hover {
  --tw-text-opacity: 1;
  color: rgb(242 74 95 / var(--tw-text-opacity));
}

.hover\:opacity-40:hover {
  opacity: 0.4;
}

.hover\:opacity-50:hover {
  opacity: 0.5;
}

.hover\:opacity-60:hover {
  opacity: 0.6;
}

.hover\:opacity-70:hover {
  opacity: 0.7;
}

.hover\:opacity-80:hover {
  opacity: 0.8;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-primary-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 138 142 / var(--tw-ring-opacity));
}

.group:hover .group-hover\:block {
  display: block;
}

.peer:checked ~ .peer-checked\:border-primary-600 {
  --tw-border-opacity: 1;
  border-color: rgb(255 90 96 / var(--tw-border-opacity));
}

.peer:checked ~ .peer-checked\:bg-neutral-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.peer:checked ~ .peer-checked\:after\:translate-x-full::after {
  content: var(--tw-content);
  --tw-translate-x: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.peer:checked ~ .peer-checked\:after\:border-primary-600::after {
  content: var(--tw-content);
  --tw-border-opacity: 1;
  border-color: rgb(255 90 96 / var(--tw-border-opacity));
}

.peer:checked ~ .after\:peer-checked\:bg-primary-600::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 90 96 / var(--tw-bg-opacity));
}

.peer:focus ~ .peer-focus\:ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.peer:focus ~ .peer-focus\:ring-primary-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 209 211 / var(--tw-ring-opacity));
}

@media not all and (min-width: 1280px) {

  .max-xl\:hidden {
    display: none;
  }

  .max-xl\:w-full {
    width: 100%;
  }

  .max-xl\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

@media not all and (min-width: 1024px) {

  .max-lg\:w-full {
    width: 100%;
  }

  .max-lg\:flex-col {
    flex-direction: column;
  }

  .max-lg\:gap-10 {
    gap: 2.5rem;
  }

  .max-lg\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .max-lg\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media not all and (min-width: 768px) {

  .max-md\:relative {
    position: relative;
  }

  .max-md\:left-0 {
    left: 0px;
  }

  .max-md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .max-md\:mt-0 {
    margin-top: 0px;
  }

  .max-md\:mt-5 {
    margin-top: 1.25rem;
  }

  .max-md\:hidden {
    display: none;
  }

  .max-md\:flex-col {
    flex-direction: column;
  }

  .max-md\:justify-center {
    justify-content: center;
  }

  .max-md\:gap-2 {
    gap: 0.5rem;
  }

  .max-md\:bg-neutral-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }

  .max-md\:p-5 {
    padding: 1.25rem;
  }

  .max-md\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .max-md\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .max-md\:text-center {
    text-align: center;
  }
}

@media not all and (min-width: 640px) {

  .max-sm\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .max-sm\:h-14 {
    height: 3.5rem;
  }

  .max-sm\:w-full {
    width: 100%;
  }

  .max-sm\:flex-col {
    flex-direction: column;
  }

  .max-sm\:gap-2 {
    gap: 0.5rem;
  }

  .max-sm\:rounded-lg {
    border-radius: 0.5rem;
  }

  .max-sm\:p-10 {
    padding: 2.5rem;
  }

  .max-sm\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .max-sm\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .max-sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .max-sm\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .max-sm\:font-semibold {
    font-weight: 600;
  }
}

@media (min-width: 640px) {

  .sm\:mb-0 {
    margin-bottom: 0px;
  }

  .sm\:mr-2 {
    margin-right: 0.5rem;
  }

  .sm\:h-28 {
    height: 7rem;
  }

  .sm\:w-auto {
    width: auto;
  }

  .sm\:min-w-\[200px\] {
    min-width: 200px;
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 768px) {

  .md\:m-10 {
    margin: 2.5rem;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1024px) {

  .lg\:block {
    display: block;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:p-3 {
    padding: 0.75rem;
  }
}

@media (min-width: 1536px) {

  .\32xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}