.slider .swiper-container {
  width: 100%;
  height: 100%;
}
.slider__flex {
  display: flex;
  align-items: flex-start;
}
.slider__col {
  display: flex;
  flex-direction: column;
  width: 150px;
  margin-right: 32px;
}
.slider__prev,
.slider__next {
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background:#fff;
  z-index:3;
}
.slider__prev:focus,
.slider__next:focus {
  outline: none;
}
.slider__thumbs {
  height: calc(400px - 96px);
}
.slider__thumbs .slider__image {
  cursor:pointer;
}
.slider__thumbs .slider__image:hover {
  opacity: 1;
}
.slider__thumbs .swiper-slide-thumb-active .slider__image {
  border: 3px solid rgba(219, 216, 216, 1);
}
.slider__images {
  height: 400px;
}
.slider__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slider__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .slider__flex {
    flex-direction: column-reverse;
  }
  .slider__col {
    flex-direction: row;
    align-items: center;
    margin-right: 0;
    margin-top: 24px;
    width: 100%;
  }
  .slider__images {
    width: 100%;
  }
  .slider__thumbs {
    height: 100px;
    width: calc(100% - 96px);
    margin: 0 16px;
  }
  .slider__prev,
  .slider__next {
    height: auto;
    width: 32px;
  }
}

@media(max-width:480px){
    .slider__prev, .slider__next{
	    background:transparent!important;
	}
	
    .slider__prev>img{
        transform:rotate(270deg);
    }
    
    .slider__next>img{
        transform:rotate(270deg);
    }
    
    .slider__thumbs{
        margin-left:0px!important;
    }
    
    .slider__prev, .slider__next{
        position:absolute;
    }
    
    .slider__next{
        right:0px;
    }
    
    .slider_images__main{
        max-height:300px;
    }
    
    .slider__thumbs .slider__image{
        width:110px;
    }
    
    .slider__thumbs .swiper-slide{
        width:110px!important;
    }
}