/* build fix */
.ebook-journey .button-primary {
  display: inline-flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-blue-700);
  color: var(--Primary-Variations-Secondary, #F5F5F5);
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  border: none;
  cursor: pointer;
  &:hover {
    background-color: var(--primary-blue-900);
  }
}

.ebook-journey .button-secondary {
  display: inline-flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  border: none;
  background: var(--neutrals-bars-unselected, #CCC);
  color: var(--neutrals-unfilled-inactive, #939393);
}

@media(width >=1024px) and (width < 1366px) {
  .cmp-login [class*='g-lg-'] {
    width: 100%;
  }
}


.custom-dropdown {
  position: relative;
}

.custom-dropdown-label {
  padding: 8px 0;
  min-height: 40px;
  border: none;
  border-radius: 0px;
  font-style: normal;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border-bottom: 1px solid #767879;
  position: relative;
  padding-right: 2rem;
  margin-bottom: 32px;
  overflow: hidden;
  color: var(--neutrals-sub-texts-paragraphs, #000);
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.custom-dropdown-label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1.5rem;
  width: 1.5rem;
  background-image: url(../../../icons/arrow-dropdown.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.dropdown-options {
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.06);
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
  max-height: 11rem;
  position: absolute;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
}

.dropdown-options {
  display: none;
  flex-direction: column;
  position: absolute;
  max-height: 10rem;
  width: 100%;
  overflow-y: auto;
  background-color: var(--tertiary-white);
  z-index: 10;
  cursor: pointer;
  user-select: none;
  min-width: 200px;
}

.dropdown-options li {
  position: relative;
  padding-right: 2rem;
  min-height: 44px;
  padding: 10px 32px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  color: #515151;
  border-radius: 0px;
  span {
    pointer-events: none;
  }
  &:hover {
    background-color: var(--hover-gray-arena);
  }
}

.dropdown-options li.selected {
  background-color: #fff;
  color: #18171A;
}

.dropdown-options.active {
  display: block;
}

.dropdown-options li {
  &::before {
    content: "";
    display: inline-flex;
    min-width: 24px;
    min-height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    border: 1px solid #CCCCCC;
    margin-right: 16px;
  }
  &:hover {
    background: #C4C4C433;
  }
  &.selected {
    &::after {
      content: "";
      position: absolute;
      left: 20px;
      top: calc(50% - 8px);
      width: 16px;
      height: 16px;
      background: var(--primary-blue-700);
    }
  }
}

.user__contact {
  display: none;
}

.modal-container.active {
  position: fixed;

  .modal-wrapper{
    position: fixed;
  }
}

span.steps.cmp-ebook-journey__steps--completed {
  color: var(--Semantics-Success, #37B200);
}

.ebook-journey {
    button.cmp-ebook-journey__continue.cta__new.cta__new-primary[disabled] {
      border: 1px solid transparent;
      background: var(--neutrals-bars-unselected, #CCC);
      color: var(--neutrals-unfilled-inactive, #939393);
  }

  .modal-container.active {
    position: fixed;

    .modal-wrapper{
      position: fixed;
    }
  }

  .toast-message {
    background: var(--secondary-blue);
    padding: 8px;
    color: var(--primary-blue-700);
    font-family: var(--body-font-arena);
    font-size: 0.75rem;
    font-weight: var(--fw-400);
    line-height: 1rem;
    text-align: left;

    @media(width >= 1024px) {
      padding: 16px 28px;
      font-size: 0.875rem;
      line-height: 1.25rem;
    }
    &.desktop {
      display: none;
      @media(width >= 1024px) {
        display: block;
      }
    }
    &.mobile {
      display: block;
      @media(width >= 1024px) {
        display: none;
      }
    }
}
}


.failure-container {
  background: rgb(173, 12, 12, 0.85);
  padding: 16px;
  color: #fff;
  font-family: var(--body-font-arena);
  font-size: 16px;
  font-weight: var(--fw-300);
  line-height: normal;
  white-space: nowrap;
  text-align: center;
  display: flex;
  justify-content: space-between;
  margin: 0px 0 40px;
}

.overflow-hidden {
  overflow: hidden;
}



.cmp-select-vehicle {
  > form {
    .g-container {
      &:first-of-type {
        position: relative;
        #show-booking {
            color: var(--Primary-Variations-Secondary, #f5f5f5);
            font-family: var(--body-font-family);
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 18px;
            background: var(--primary-blue-700);
            min-width: 94px;
            border: 1px solid var(--primary-blue-700);
            display: inline-flex;
            align-items: center;
            padding: 12px;
            cursor: pointer;
            margin-bottom: 40px;
            @media(width >= 1024px) {
              position: absolute;
              right: 56px;
              bottom: 40px;
              margin-bottom: 0;
            }
            @media(width >= 1366px) {
              bottom: 80px;
            }
        }
      }
    }
  }
  .toast-message, .toast-notification {
    display: none;
  }
}