@charset "UTF-8";
/* Links */
/* Footer top region */
/* Footer middle region */
/* Footer bottom region */
/* Submit button */
/* Button variant 1 */
/* Button variant 1 - alternative */
/* Button variant 2 */
/* Button variant 2 - alternative*/
/* Box shadow colors */
/* Container colors */
/* Search colors */
/* Menu colors */
/** General **/
/** Mobile **/
/* Navigation colors */
/* @font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Thin.ttf);
  font-weight: 200;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Light.ttf);
  font-weight: 300;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-SemiBold.ttf);
  font-weight: 600;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-display: block;
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Black.ttf);
  font-weight: 900;
} */
@keyframes load {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.page-node-type-user-menu-page {
  background-color: #f9f6f4;
}

.login-page,
.register-page,
.password-reset-page {
  font-family: "Poppins";
}
.login-page form,
.register-page form,
.password-reset-page form {
  width: 680px;
  max-width: 100%;
  background-color: white;
  padding: 40px;
  margin: 20px auto;
}
@media (max-width: 1024px) {
  .login-page form,
  .register-page form,
  .password-reset-page form {
    padding: 20px;
  }
}
.login-page form a,
.register-page form a,
.password-reset-page form a {
  color: #9146AF;
}
.login-page form a:focus,
.register-page form a:focus,
.password-reset-page form a:focus {
  color: var(--text_main_color);
  outline: 1px solid #005ECC;
}
.login-page form .submit-btn,
.register-page form .submit-btn,
.password-reset-page form .submit-btn {
  font-family: "Poppins";
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #9146AF;
  text-decoration: none;
  padding: 5px;
  border: 0;
  /* &:empty {
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    position: relative;
    overflow: hidden;
    width: 168px;
    height: 48px;

    &:before {
      content: "";
      display: block;
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      background: linear-gradient(
        to right,
        transparent 0%,
        #fff 50%,
        transparent 100%
      );
      animation: load 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }
  } */
  font-size: 17px;
  line-height: 26px;
  padding: 5px 30px;
  margin-top: 30px;
}
.login-page form .submit-btn:disabled,
.register-page form .submit-btn:disabled,
.password-reset-page form .submit-btn:disabled {
  color: #8F8F8F;
  background-color: white;
  border: 1px solid #E3E3E3;
}
.login-page form .submit-btn:focus,
.register-page form .submit-btn:focus,
.password-reset-page form .submit-btn:focus {
  outline: 3px solid #005ecc;
}
.login-page form .submit-btn:hover,
.register-page form .submit-btn:hover,
.password-reset-page form .submit-btn:hover {
  color: white;
  background-color: rgba(145, 70, 175, 0.7803921569);
}

.system-message {
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #13a300;
  background-color: #e6f6e6;
  color: black;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
}
.system-message.error {
  border: 1px solid #cb444a;
  background-color: #fcecec;
}
.system-message--close {
  cursor: pointer;
  font-weight: 500;
}

.register-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.register-page .registration-form h1 {
  margin-top: 0;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
}
.register-page .registration-form fieldset {
  display: flex;
  width: 100%;
  position: relative;
  justify-content: space-between;
  padding: 0;
  border: 0;
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  .register-page .registration-form fieldset {
    flex-wrap: wrap;
  }
}
.register-page .registration-form label {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  width: 100%;
  margin: auto 0 auto 0;
  width: 30%;
}
@media (max-width: 1024px) {
  .register-page .registration-form label {
    width: 100%;
  }
}
.register-page .registration-form label strong {
  color: red;
}
.register-page .registration-form label.membership {
  width: -moz-fit-content;
  width: fit-content;
}
.register-page .registration-form input:not([type=submit]),
.register-page .registration-form select {
  width: 100%;
  padding: 10px;
  color: var(--text_main_color);
  background-color: white;
  border: 1px solid #ced4da;
  width: 60%;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
}
@media (max-width: 1024px) {
  .register-page .registration-form input:not([type=submit]),
  .register-page .registration-form select {
    width: 100%;
  }
}
.register-page .registration-form .membership-icon {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: auto;
}
.register-page .registration-form .registration-form--login {
  display: flex;
  align-items: center;
  margin: 10px 0 50px 0;
}
.register-page .registration-form .registration-form--login p {
  margin: 0;
  padding-right: 10px;
}
.register-page .registration-form .checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
}
.register-page .registration-form .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  max-width: calc(100% - 36px);
  margin: 0;
}
.register-page .registration-form .checkbox-container input:checked ~ .checkmark {
  background-color: #9146AF;
  border-color: #9146AF;
}
.register-page .registration-form .checkbox-container input:checked ~ .checkmark::after {
  display: block;
}
.register-page .registration-form .checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: white;
  border: 1px solid #B0B0B0;
}
.register-page .registration-form .checkbox-container .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #FFF200;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.password-reset-page .password-reset-form h1 {
  margin-top: 0;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
}
.password-reset-page fieldset {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  border: 0;
  margin: 0;
}
.password-reset-page label {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  width: 100%;
  margin: 30px 0 10px 0;
}
.password-reset-page input:not([type=submit]) {
  height: 48px;
  width: 100%;
  padding: 5px;
  color: var(--text_main_color);
  background-color: white;
  border: 1px solid #ced4da;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
}
.password-reset-page .buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 20px;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .password-reset-page .buttons {
    flex-direction: column;
  }
}
.password-reset-page .buttons .submit-btn {
  margin-top: 0;
}
.password-reset-page .buttons a {
  font-size: 17px;
  line-height: 26px;
  padding: 5px 30px;
}

.login-page .login-form .system-message {
  margin: 15px 0 0 0;
}
.login-page .login-form .resend-email-verification {
  display: flex;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #03a300;
  border-radius: 13px;
  background-color: #e6f6e6;
}
.login-page .login-form .resend-email-verification--text span {
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}
.login-page .login-form .resend-email-verification--close {
  font-weight: 600;
}
.login-page .login-form h1 {
  margin-top: 0;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
}
.login-page .login-form--login {
  display: flex;
  align-items: center;
  margin: 10px 0 5px 0;
}
.login-page .login-form--login p {
  margin: 0;
  padding-right: 10px;
}
.login-page .login-form fieldset {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  padding: 0;
  border: 0;
  margin: 0;
}
.login-page .login-form fieldset.input-error input {
  border-color: red;
}
.login-page .login-form label {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  width: 100%;
  margin: 30px 0 10px 0;
}
.login-page .login-form input:not([type=submit]) {
  width: 100%;
  color: var(--text_main_color);
  background-color: white;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  padding: 10px;
  border: 1px solid #ced4da;
}
.login-page .login-form .show-pass {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 38px;
}
.login-page .login-form--password-reset {
  margin-top: 15px;
}
.login-page .login-form--password-reset a {
  font-size: 17px;
  line-height: 26px;
}

.profile {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
.profile__header {
  background-image: url(../assets/images/road-oregon-highway.png);
  height: 290px;
  background-repeat: no-repeat;
  -o-object-fit: fill;
     object-fit: fill;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .profile__header {
    display: none;
  }
}
.profile__main {
  display: flex;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .profile__main {
    padding: 10px 0;
    flex-wrap: wrap;
    margin: 0;
  }
}
.profile__sidebar {
  max-width: 250px;
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .profile__sidebar {
    max-width: 100%;
    margin: 0 0 30px 0;
  }
}
.profile__sidebar--container {
  display: flex;
  flex-wrap: wrap;
}
.profile__sidebar--container--link {
  width: 100%;
}
.profile__sidebar--container a {
  width: 100%;
  display: block;
  padding: 8px 40px;
  margin-bottom: 5px;
  text-decoration: none;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  border-left: 3px solid transparent;
}
.profile__sidebar--container a.active {
  border-left: 3px solid #f5993c;
  background: #ffffff;
}
.profile__sidebar--link {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  padding: 8px 40px;
  cursor: pointer;
}
.profile__sidebar--link:hover {
  color: #9146AF;
}
.profile__sidebar--link.active {
  border-left: 3px solid #213B73;
  background-color: white;
}
.profile__body {
  width: 100%;
}
.profile__body h1 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  font-size: 24px;
  line-height: 36px;
  margin-top: 0;
}
.profile__body .form-group {
  background-color: white;
  padding: 30px;
  margin-bottom: 25px;
}
.profile__body .form-group h3 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
  color: var(--text_main_color);
}
@media (max-width: 1024px) {
  .profile__body .form-group h3 {
    margin: 0;
  }
}
.profile__body .form-group .form-row {
  padding: 15px 0;
}
.profile__body .form-group .form-row__header {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}
.profile__body .form-group .form-row__header--title {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 26px;
  color: black;
  width: 19%;
}
@media (max-width: 1024px) {
  .profile__body .form-group .form-row__header--title {
    width: 90%;
    margin-bottom: 10px;
  }
}
.profile__body .form-group .form-row__header--data {
  width: 50%;
}
@media (max-width: 1024px) {
  .profile__body .form-group .form-row__header--data {
    width: 90%;
    font-size: 12px;
  }
}
.profile__body .form-group .form-row__header--edit {
  width: 15%;
  text-align: right;
  text-decoration: underline;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .profile__body .form-group .form-row__header--edit {
    display: flex;
    width: 20%;
    align-items: center;
    font-size: 14px;
  }
}
.profile__body .form-group .form-row__header--edit svg {
  margin-left: 10px;
}
.profile__body .form-group .form-row__dropdown {
  padding-left: 30%;
}
@media (max-width: 1024px) {
  .profile__body .form-group .form-row__dropdown {
    padding: 0;
  }
}
.profile__body .form-group .form-row__dropdown.edit-opened {
  border-top: 1px solid #ced4da;
}
.profile__body .form-group .form-row__dropdown form {
  display: flex;
  flex-wrap: wrap;
}
.profile__body .form-group .form-row__dropdown form label {
  width: 100%;
  margin: 20px 0 10px 0;
}
.profile__body .form-group .form-row__dropdown form input:not([type=submit]),
.profile__body .form-group .form-row__dropdown form select {
  width: 80%;
  color: var(--text_main_color);
  background-color: white;
  border: 1px solid #ced4da;
  padding: 10px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
}
@media (max-width: 1024px) {
  .profile__body .form-group .form-row__dropdown form input:not([type=submit]),
  .profile__body .form-group .form-row__dropdown form select {
    width: 100%;
  }
}
.profile__body .form-group .form-row__dropdown form .submit-btn {
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .profile__body .form-group .form-row__dropdown form .submit-btn {
    margin-top: 10px;
  }
}
.profile__body .form-group .form-row__dropdown form .submit-btn input {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #9146AF;
  text-decoration: none;
  padding: 5px;
  border: 0;
  /* &:empty {
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    position: relative;
    overflow: hidden;
    width: 168px;
    height: 48px;

    &:before {
      content: "";
      display: block;
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      background: linear-gradient(
        to right,
        transparent 0%,
        #fff 50%,
        transparent 100%
      );
      animation: load 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }
  } */
  font-size: 17px;
  line-height: 26px;
  padding: 5px 30px;
}
.profile__body .form-group .form-row__dropdown form .submit-btn input:disabled {
  color: #8F8F8F;
  background-color: white;
  border: 1px solid #E3E3E3;
}
.profile__body .form-group .form-row__dropdown form .submit-btn input:focus {
  outline: 3px solid #005ecc;
}
.profile__body .form-group .form-row__dropdown form .submit-btn input:hover {
  color: white;
  background-color: rgba(145, 70, 175, 0.7803921569);
}
.profile__body--content {
  background-color: white;
  padding: 30px;
  margin-bottom: 25px;
}
.profile__body--content .password-form {
  max-width: 510px;
}
@media (max-width: 1024px) {
  .profile__body--content .password-form {
    max-width: 100%;
  }
}
.profile__body--content .password-form h3 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
  color: var(--text_main_color);
}
.profile__body--content .password-form fieldset {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  padding: 0;
  border: 0;
  margin: 0;
}
.profile__body--content .password-form label {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  width: 100%;
  margin: 15px 0 10px 0;
}
.profile__body--content .password-form label span {
  color: #ea5353;
}
.profile__body--content .password-form input:not([type=submit]) {
  width: 100%;
  padding: 10px;
  color: var(--text_main_color);
  background-color: #ffffff;
  border: 1px solid #ced4da;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
}
.profile__body--content .password-form .show-pass {
  position: absolute;
  right: 0;
  bottom: 50px;
  cursor: pointer;
}
.profile__body--content .password-form .submit-btn {
  width: 100%;
  margin-top: 20px;
}
.profile__body--content .password-form .submit-btn input {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #9146AF;
  text-decoration: none;
  padding: 5px;
  border: 0;
  /* &:empty {
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    position: relative;
    overflow: hidden;
    width: 168px;
    height: 48px;

    &:before {
      content: "";
      display: block;
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      background: linear-gradient(
        to right,
        transparent 0%,
        #fff 50%,
        transparent 100%
      );
      animation: load 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }
  } */
  font-size: 17px;
  line-height: 26px;
  padding: 5px 30px;
}
.profile__body--content .password-form .submit-btn input:disabled {
  color: #8F8F8F;
  background-color: white;
  border: 1px solid #E3E3E3;
}
.profile__body--content .password-form .submit-btn input:focus {
  outline: 3px solid #005ecc;
}
.profile__body--content .password-form .submit-btn input:hover {
  color: white;
  background-color: rgba(145, 70, 175, 0.7803921569);
}
.profile__body--booking h3 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
  color: var(--text_main_color);
  margin: 0;
}
.profile__body--booking .booking-info-box {
  background-color: rgba(3, 163, 0, 0.1);
  border: 1px solid #03a300;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 13px;
  margin-bottom: 40px;
}
.profile__body--booking .booking-info-box--icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 26px;
}
.profile__body--booking .booking-info-box--text {
  color: #213B73;
  font-size: 17px;
  line-height: 26px;
}
.profile__body--booking .booking-top-text {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  color: #000000;
}
.profile__body--booking .booking-top-text ul {
  list-style: none;
}
.profile__body--booking .booking-top-text ul li::before {
  content: "•";
  color: #03a300;
  position: absolute;
  font-weight: bold;
  display: inline-block;
  font-size: 32px;
  width: 12px;
  margin-left: -1em;
}
.profile__body--booking .booking-list-controller {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin: 40px 0;
}
@media (max-width: 1024px) {
  .profile__body--booking .booking-list-controller {
    flex-wrap: wrap;
  }
}
.profile__body--booking .booking-list-controller a {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #9146AF;
  text-decoration: none;
  padding: 5px;
  border: 0;
  /* &:empty {
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    position: relative;
    overflow: hidden;
    width: 168px;
    height: 48px;

    &:before {
      content: "";
      display: block;
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      background: linear-gradient(
        to right,
        transparent 0%,
        #fff 50%,
        transparent 100%
      );
      animation: load 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }
  } */
  font-size: 17px;
  line-height: 26px;
  padding: 6px 30px;
  margin-right: 20px;
}
.profile__body--booking .booking-list-controller a:disabled {
  color: #8F8F8F;
  background-color: white;
  border: 1px solid #E3E3E3;
}
.profile__body--booking .booking-list-controller a:focus {
  outline: 3px solid #005ecc;
}
.profile__body--booking .booking-list-controller a:hover {
  color: white;
  background-color: rgba(145, 70, 175, 0.7803921569);
}
@media (max-width: 1024px) {
  .profile__body--booking .booking-list-controller a {
    width: 100%;
    margin: 0 auto 20px auto;
  }
}
.profile__body--booking .booking-list-controller--input {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 5px;
       column-gap: 5px;
  position: relative;
  width: 35%;
  background-color: white;
  padding: 5px 10px;
  border: 1px solid #ced4da;
}
@media (max-width: 1024px) {
  .profile__body--booking .booking-list-controller--input {
    width: 100%;
  }
}
.profile__body--booking .booking-list-controller--input input {
  width: 90%;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  line-height: 26px;
  padding: 0;
  border: 0;
  margin: 0;
}
.profile__body--booking .booking-list-controller--input input:focus {
  outline: 0;
}
.profile__body--booking .booking-list-controller--input .search-icon {
  display: flex;
  align-items: center;
}
.profile__body--booking .booking-list-container .booking-list__card {
  display: flex;
  flex-wrap: wrap;
  background-color: #ffffff;
  padding: 30px;
  margin-bottom: 25px;
}
.profile__body--booking .booking-list-container .booking-list__card--header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  row-gap: 10px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .profile__body--booking .booking-list-container .booking-list__card--header {
    flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  .profile__body--booking .booking-list-container .booking-list__card--header h3 {
    font-size: 20px;
  }
}
.profile__body--booking .booking-list-container .booking-list__card--header .card-status {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .profile__body--booking .booking-list-container .booking-list__card--header .card-status {
    font-size: 17px;
  }
}
.profile__body--booking .booking-list-container .booking-list__card--header .card-status svg {
  margin-right: 10px;
}
.profile__body--booking .booking-list-container .booking-list__card--body {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .profile__body--booking .booking-list-container .booking-list__card--body {
    flex-wrap: wrap;
  }
}
.profile__body--booking .booking-list-container .booking-list__card--body > div {
  width: 20%;
}
@media (max-width: 1024px) {
  .profile__body--booking .booking-list-container .booking-list__card--body > div {
    width: 100%;
    margin-bottom: 10px;
  }
}
.profile__body--booking .booking-list-container .booking-list__card--body .car-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.profile__body--booking .booking-list-container .booking-list__card--body .car-box .car-name {
  width: 100%;
}
.profile__body--booking .booking-list-container .booking-list__card--body .pickup-date-box .terms-url {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 20px;
}
.profile__body--booking .booking-list-container .booking-list__card--body .pickup-date-box .terms-url svg {
  min-width: 16px;
  margin-right: 15px;
}
.profile__body--booking .booking-list-container .booking-list__card--body .pickup-date-box .terms-url-link {
  color: #9146AF;
}
.profile__body--booking .booking-list-container .booking-list__card--body .car-name {
  text-transform: uppercase;
}
.profile__body--booking .booking-list-container .booking-list__card--body .car-name,
.profile__body--booking .booking-list-container .booking-list__card--body .pickup-title,
.profile__body--booking .booking-list-container .booking-list__card--body .dropoff-title,
.profile__body--booking .booking-list-container .booking-list__card--body .info-title {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 26px;
  color: var(--text_main_color);
  margin-bottom: 5px;
}
.profile__body--booking .booking-list-container .booking-list__card .info-box__invoice,
.profile__body--booking .booking-list-container .booking-list__card .info-box__voucher {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 25px;
}
.profile__body--booking .booking-list-container .booking-list__card .info-box__invoice svg,
.profile__body--booking .booking-list-container .booking-list__card .info-box__voucher svg {
  min-width: 16px;
  margin-right: 15px;
}
.profile__body--booking .booking-list-container .booking-list__card .info-box__invoice div,
.profile__body--booking .booking-list-container .booking-list__card .info-box__voucher div {
  text-decoration: underline;
}
.profile__body--booking .booking-list-container .booking-list__card.order-cancelled {
  pointer-events: none;
  opacity: 0.3;
}
.profile__body--booking .booking-list-container .booking-list__card.order-cancelled h3 {
  color: #000000;
}

.custom-select-container {
  height: 48px;
  width: 100%;
  background-color: white;
  border: 1px solid #ced4da;
  width: 60%;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
@media (max-width: 1024px) {
  .custom-select-container {
    width: 100%;
  }
}
.custom-select-container.country-select-container {
  padding: 0;
  border: none;
}
.custom-select-container.country-select-container .custom-select-header {
  padding: 0;
}
.custom-select-container.country-select-container .custom-select-header input {
  width: 100%;
  padding: 10px;
  font-size: 17px;
  line-height: 26px;
}
.custom-select-container.country-select-container .custom-select-header input::-moz-placeholder {
  color: var(--text_main_color);
  font-size: 17px;
}
.custom-select-container.country-select-container .custom-select-header input::placeholder {
  color: var(--text_main_color);
  font-size: 17px;
}
.custom-select-container .custom-select-header {
  position: relative;
  width: 100%;
  font-size: 17px;
  line-height: 26px;
  padding: 10px;
}
.custom-select-container .custom-select-header .arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  border: solid black;
  border-width: 0 2px 2px 0;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 300ms ease-in-out;
}
.custom-select-container .custom-select-header .arrow.open {
  transform: translateY(-50%) rotate(-135deg);
}
.custom-select-container .custom-select-options {
  position: absolute;
  top: 48px;
  z-index: 11;
  width: 100%;
  background-color: white;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
  left: 0;
  padding: 20px;
  max-height: 400px;
  overflow-y: auto;
}
.custom-select-container .custom-select-options .custom-select-option {
  padding: 10px;
}
.custom-select-container .custom-select-options .custom-select-option:hover {
  background-color: rgba(60, 100, 245, 0.2);
}

.registration-info {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
}
.registration-info-box {
  position: absolute;
  width: 650px;
  max-width: 100%;
  max-height: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 20%;
  background-color: white;
  filter: drop-shadow(0px 0px 50px rgba(0, 128, 0, 0.08));
  padding: 40px;
  overflow-y: auto;
}
@media (max-width: 1024px) {
  .registration-info-box {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.registration-info .close-popup {
  right: 40px;
  top: 55px;
  position: absolute;
  cursor: pointer;
  text-decoration: underline;
}
.registration-info h2 {
  color: var(--text_main_color);
  font-size: 32px;
  margin-top: 0;
}
.registration-info h3 {
  color: var(--text_main_color);
  font-size: 19px;
  margin-top: 20px;
  margin-bottom: 5px;
}
.registration-info .info-info-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  background-color: rgba(3, 163, 0, 0.1);
  padding: 15px 10px;
  border: 1px solid #03a300;
}
.registration-info .info-info-box--icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 26px;
}
.registration-info .info-info-box--text {
  color: #213B73;
  font-size: 17px;
  line-height: 26px;
}

.gender-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .gender-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.gender-container label {
  width: 100%;
  margin: 0;
}

.custom-checkbox {
  position: relative;
  /* display: flex;
  align-items: center; */
  /* @include media("<=bigphone") {
    padding: 8px 0 20px 10px;
  } */
}
.custom-checkbox input {
  width: 0;
  height: 0;
  padding: 0;
  border: 0;
  margin: 0;
  opacity: 0;
}
.custom-checkbox .custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #9146AF;
  background-color: #9146AF;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  display: block;
}
.custom-checkbox .custom-control-label {
  cursor: pointer;
  position: relative;
  padding-left: 36px;
}
.custom-checkbox .custom-control-label::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  background-color: white;
  border: 1px solid #B0B0B0;
  transform: translateY(-50%);
}
.custom-checkbox .custom-control-label::after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #FFF200;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.loader-div {
  width: 100%;
  padding-top: 200px;
  padding-bottom: 200px;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid white;
  border-bottom-color: #9146AF;
  border-radius: 50%;
  display: block;
  animation: rotation 1s linear infinite;
  margin: 0 auto;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ref-number-title {
  padding-top: 10px;
}

.login-page-text-box {
  max-width: 1020px;
  margin: 0 auto 20px;
  padding: 20px;
}
