.tour__map_slider_container {
    position: relative;
    display: inline-block;
    bottom: 235px;
    left: 0px;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 15px;
    transition: all 0.7s ease;
    z-index: 2;
  }
  
  .tour__map_slider_arrows_container {
    height: 40px;
    position: absolute;
    width: 100%;
    bottom: 120px;
  }
  @media (max-width: 960px) {
    .tour__map_slider_arrows_container {
      width: 100%;
    }
  }
  @media (max-width: 480px) {
    .tour__map_slider_arrows_container {
      display: none;
    }
  }

  .tour__map_slider_stop_container {
    width: 310px;
    height: 190px;
    box-shadow: 0 4px 8px 1px rgba(0, 0, 0, 0.2);
    display: inline-block;
    border-radius: 8px;
    background-color: white;
    margin-right: 15px;
    outline: 0;
  }
  @media (max-width: 480px) {
    .tour__map_slider_stop_container {
      width: 270px;
    }
  }
  
  .tour__map_slider_stop_img_container {
    position: relative;
    overflow: hidden;
    height: 115px;
    border-radius: 8px 8px 0px 0px;
  }
  
  .tour__map_slider_stop_img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
  }
  
  .tour__map_slider_stop_summary {
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    top: 8px;
    font-size: 14px;
    overflow: hidden;
  }
  
  .tour__map_slider_stop_details {
    display: flex;
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 99;
  }
  
  .tour__map_slider_stop_number,
  .tour__map_slider_stop_name {
    display: inline-block;
    color: white;
    font-weight: 600;
  }
  
  .tour__map_slider_stop_number_container {
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
    margin-right: 6px;
  }
  
  .tour__map_slider_stop_number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.875em;
  }
  
  .tour__map_slider_stop_name {
    position: relative;
    font-size: 18px;
    max-width: 240px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
  }
  @media (max-width: 480px) {
    .tour__map_slider_stop_name {
      max-width: 200px;
    }
  }
  
  .tour__map_slider_stop_number_circle {
    display: inline-block;
    border: 2px solid white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    bottom: 0px;
  }
  
  .tour__map_slider_stop_name {
    font-size: 18px;
  }