body {
  height: 100vh;
}
.modal_container {
  display: none;
  position: fixed;
    overflow: hidden;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  z-index: 1001;
}

.swiper-container {
  width: 100%;
  text-align: center;
}

.thumb-list {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
  justify-content: flex-start;
}

.thumb-item {
  list-style: none;
  width: 10%;
    margin-top: 5px;
    margin-bottom: 5px;
}

.thumb-link {
  display: block;
  width: 100%;
  height: 50px;
  overflow: hidden;
}
.thumb-link img {
  /* width: 100%; */
  height: 50px;
  width: auto;
}
.overlay{
  display: none;
  background: rgba(0,0,0,0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

@media (max-width: 767px) {
.modal_container {
    width: 100%;
}
.thumb-link img {
  height: auto;
}
}
.swiper-button-next, .swiper-button-prev {
  color:#ff0;
}

