.containers {
    padding: 15px;
    /* border-radius: 30px;
    background: #f5f5f8; */
    /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07); */
  }

  .app-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
  }
  .app-bar .mac-icon {
    height: 12px;
    width: 12px;
    cursor: pointer;
    margin: 0px 5px;
    border-radius: 50%;
  }


  .grid {
    display: grid;
    grid-template-columns: repeat(4, 210px) 270px;
    grid-template-rows: repeat(6, 100px);
    grid-gap: 20px;
  }

  .grid > div {
    background: #fff;
    border-radius: 15px;
  }

  .grid > .grid-one {
    grid-column: span 4;
    background: #484aa3;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .grid-three {
    grid-row: span 5;
    margin-top: 10px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .grid-three > * {
    align-self: stretch;
  }

  .price-alerts {
    padding: 10px 0px;

    border: 0;
    border-radius: 5px;
    color: #484aa3;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 30px;
  }

  .filter-titles {
    color: #484aa3;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .mutiple-choices {
    margin-bottom: 20px;
  }
  .mutiple-choices .check-box {
    height: 20px;
    width: 20px;
    border-radius: 7px;
    /* background: #e9e9f8; */
    transition: all 0.3s ease;
    position: relative;
    margin-right: 10px;
  }
  .mutiple-choices .check-box::before, .mutiple-choices .check-box::after {
    content: "";
    position: absolute;
    background: #fff;
    transition: all 0.3s ease;
  }
  .mutiple-choices .check-box::before {
    height: 10px;
    width: 2px;
    /* transform: translateX(10px) translateY(5px) rotate(45deg) scale(0); */
  }
  .mutiple-choices .check-box::after {
    height: 5px;
    width: 2px;
    transform: translateX(6px) translateY(9px) rotate(-45deg) scale(0);
  }
  .mutiple-choices .input-check {
    visibility: hidden;
    position: absolute;
  }
  .mutiple-choices .input-check:checked ~ .check-box {
    background: #484aa3;
  }
  .mutiple-choices .input-check:checked ~ .check-box::before {
    transform: translateX(10px) translateY(5px) rotate(45deg) scale(1);
  }
  .mutiple-choices .input-check:checked ~ .check-box::after {
    transform: translateX(6px) translateY(9px) rotate(-45deg) scale(1);
  }
  .mutiple-choices span {
    font-size: 12px;
    color: #484aa3;
  }
  .mutiple-choices span:first-of-type {
    margin-right: auto;
  }

  .multiple-choice {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 12px;
  }

  .range-sliders {
    margin-bottom: 20px;
  }
  .range-sliders .filter-range {
    color: #484aa3;
    font-size: 12px;
    margin-bottom: 5px;
  }
  .range-sliders input {
    width: 100%;
    background: #e9e9f8;
    -webkit-appearance: none;
    height: 4px;
    border-radius: 5px;
    outline: none;
  }
  .range-sliders input::-webkit-slider-thumb {
    -webkit-appearance: none;
            appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #484aa3;
    cursor: pointer;
  }
  .range-sliders input:active::-webkit-slider-thumb {
    background: #484aa3;
  }
  .range-sliders input::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: #484aa3;
    cursor: pointer;
  }
  .range-sliders input:active::-moz-range-thumb {
    background: #484aa3;
  }

  .grid .grid-four {
    grid-column: span 4;
    grid-row: span 5;
    /* background: #f5f5f8; */

    border-radius: 0;
  }
  .grid .grid-four::-webkit-scrollbar {
    width: 0px;
    /* Remove scrollbar space */
    background: transparent;
    /* Optional: just make scrollbar invisible */
  }

  .current-travel {
    color: #fff;
    line-height: 20px;
  }

  .current-travel-class {
    font-size: 12px;
  }

  .calendars {
    display: flex;
    align-items: center;
  }

  .calendar {
    background: #f5f5f8;
    color: #484aa3;
    width: 190px;
    margin-left: 20px;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    font-size: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    border: none;
  }
  .calendar svg {
    fill: #484aa3;
    margin-right: 10px;
  }
  .calendar.blank {
    color: #c9cbda;
  }

  .user-info {
    margin-bottom: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
  }

  .user-image {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
  }
  .user-image img {
    width: 100%;
    height: 100%;
  }

  .user-name {
    color: #484aa3;
    margin-right: auto;
  }
  .user-name .name {
    font-weight: bolder;
  }





  .travel-card {
    height: 120px;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 20px;
    box-shadow: 0 14px 12px rgba(0,0,0,0.25), 0 10px 2px rgba(0,0,0,0.22);

  }

  .travel-card + .travel-card {
    margin: 20px 0px;
  }

  .travel-card:last-child {
    margin-bottom: 0;
  }

  .travel-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
  }
  .travel-image .image-one,
  .travel-image .image-two {
    height: 30px;
    width: 30px;
    background: #fa7a57;
    border-radius: 50%;
  }
  .travel-image .image-two {
    background: #484aa3;
    margin-top: -10px;
    border: 2px solid #fff;
  }

  .travel-arrival-info,
  .travel-departure-info {
    color: #484aa3;
    margin-right: 30px;
  }
  .travel-arrival-info .travel-time,
  .travel-departure-info .travel-time {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
  }
  .travel-arrival-info .travel-arrival,
  .travel-arrival-info .travel-departure,
  .travel-departure-info .travel-arrival,
  .travel-departure-info .travel-departure {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .travel-arrival-info .travel-arrival-date,
  .travel-arrival-info .travel-departure-date,
  .travel-departure-info .travel-arrival-date,
  .travel-departure-info .travel-departure-date {
    font-size: 12px;
  }

  .travel-range {
    width: calc(100% - 30px - 242px - 140px - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
  }
  .travel-range .range-stops,
  .travel-range .range-time {
    color: #484aa3;
    margin: 2px 0px;
    font-size: 12px;
  }
  .travel-range .range-stops {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-evenly;
  }
  .travel-range .range-stops .range-stop {
    position: relative;
  }
  .travel-range .range-stops .range-stop::before {
    content: "";
    height: 7px;
    width: 7px;
    background: #484aa3;
    border-radius: 50%;
    position: absolute;
    top: -13.5px;
  }

  .range {
    align-self: stretch;
    display: flex;
    align-items: center;
    position: relative;
  }
  .range .range-pos {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
  }
  .range .range-pos.range-start {
    background: #fff;
    margin-right: auto;
    border: 5px solid #484aa3;
  }
  .range .range-pos.range-end {
    background: #484aa3;
    border: 5px solid #e9e9f8;
  }
  .range .ranger {
    position: absolute;
    width: 100%;
    border-top: 2px dotted #484aa3;
  }

  .travel-rate-final {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  .travel-rate-final .travel-rate {
    color: #484aa3;
    font-size: 25px;
    font-weight: bold;
  }
  .travel-rate-final .travel-rate sup {
    font-size: 10px;
  }
  .travel-rate-final .select-rate {
    border: 0;
    padding: 10px 50px;
    border-radius: 7px;
    background: #00d8ff;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    outline: none;
  }






  @media screen and (max-width: 1200px) {
    /* Adjust styles for devices with a maximum width of 1200px */
    .grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media screen and (max-width: 992px) {
    /* Adjust styles for devices with a maximum width of 992px */
    .grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .travel-card {
      padding: 15px;
    }
  }

  @media screen and (max-width: 768px) {
    /* Adjust styles for devices with a maximum width of 768px */
    .grid {
      grid-template-columns: repeat(1, 1fr);
    }

    .travel-card {
      height: auto;
      flex-direction: column;
    }

    .travel-image {
      margin-right: 0;
      margin-bottom: 10px;
    }

    .travel-arrival-info,
    .travel-departure-info {
      margin-right: 0;
      margin-bottom: 10px;
    }

    .travel-range {
      width: 100%;
      margin-right: 0;
    }
  }

  /* Add more media queries as necessary */
