.segslider {
    position: relative;
  }
  
  .segslider .main_image {
    max-width: 600px;
    width: 100%;
    margin: 50px auto 0;
  }
  
  .segslider .main_image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .segslider .thmb_slider {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: scroll;
    /* scrollbar-width: thin; */
    white-space: nowrap;
  }
  
  .segslider .thmb_slider::-webkit-scrollbar {
    height: 5px;
  }
  
  .segslider .thmb_slider::-webkit-scrollbar-track {
    background-color: #ccc;
  }
  
  .segslider .thmb_slider::-webkit-scrollbar-thumb {
    background-color: #17585d;
  }
  
  .segslider .thmb_slider img {
    /* width: calc(20% - 10px); */
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0 5px 0;
    cursor: pointer;
  }
  @media screen and (max-width: 600px) {
    .segslider .thmb_slider img {
      height: 80px;
    }
  }
  
  .segslider .prev-arrow {
    position: absolute;
    left: 10px;
    bottom: 80px;
    font-size: 28px;
    background: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    line-height: 40px;
    opacity: .6;
  }
  @media screen and (max-width: 600px) {
    .segslider .prev-arrow {
      bottom: 20px;
    }
  }
  
  .segslider .next-arrow {
    position: absolute;
    right: 10px;
    bottom: 80px;
    font-size: 28px;
    background: #fff;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    line-height: 40px;
    opacity: .6;
  }
  @media screen and (max-width: 600px) {
    .segslider .next-arrow {
      bottom: 20px;
    }
  }
  /*# sourceMappingURL=style.css.map */