/**
 * ItcSlider
 * @version 1.0.1
 * @author https://github.com/itchief
 * @copyright Alexander Maltsev 2020 - 2023
 * @license MIT (https://github.com/itchief/ui-components/blob/master/LICENSE)
 * @tutorial https://itchief.ru/javascript/slider
 */

 .itc-slider {
  position: relative;
}

.itc-slider-wrapper {
  overflow: hidden;
}

.itc-slider-items {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.itc-slider-transition-none {
  transition: none;
}

.itc-slider-item {
  flex: 0 0 100%;
  max-width: 100%;
  user-select: none;
  will-change: transform;
}

.preimushesva-slider .itc-slider-item {
  flex: 0 0 25%;
  max-width: 25%;
  user-select: none;
  will-change: transform;
}

.novie__tovari .products{
  gap:0;
}

.novie__tovari .itc-slider-item {
  flex: 0 0 20%;
  max-width: 20%;
  user-select: none;
  will-change: transform;
}

.related .itc-slider-item {
  flex: 0 0 100%;
  max-width: 100%;
  user-select: none;
  will-change: transform;
}

.otzivi .itc-slider-item {
  flex: 0 0 25%;
  max-width: 25%;
  user-select: none;
  will-change: transform;
  padding:10px;
}

/* кнопки влево и вправо */
.itc-slider-btn {
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  text-align: center;
  background: rgb(116 187 22 / 70%);
  border: none;
  transform: translateY(-50%);
  cursor: pointer;
  border-radius: 100%;
}

.itc-slider-btn-hide {
  display: none;
}

.itc-slider-btn-prev {
  left: 0;
}

.itc-slider-btn-next {
  right: 0;
}

.itc-slider-btn:hover,
.itc-slider-btn:focus {
  color: #fff;
  text-decoration: none;
  background: rgb(0 0 0 / 30%);
  outline: 0;
}

.itc-slider-btn-prev::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.itc-slider-btn-prev::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.itc-slider-btn-next::after{
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.itc-slider-btn-next::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

/* индикаторы */
.itc-slider-indicators {
  position: absolute;
  right: 0;
  bottom: -25px;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  margin: 0 15%;
  padding-left: 0;
  list-style: none;
}

.itc-slider-indicator {
  flex: 0 1 auto;
  box-sizing: content-box;
  width: 15px;
  height: 15px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgb(116 187 22 / 50%);
  background-clip: padding-box;
  border-radius: 100px;
  cursor: pointer;
}

.itc-slider-indicator-active {
  background-color: rgb(116 187 22 / 90%);
}

.quize__btn{
  top:105%!important;
  width: 12%;
  height:auto;
  padding: 10px 5px;
	border-radius: 10px;
	font-size: calc(0.5vw + 6px);
  background-color: #BBBBBB;
}

.itc-slider-btn-next.quize__btn{
  background-color: #75BC0D;
  color: #fff;
  transition-duration: .5s;
}

.itc-slider-btn-next.quize__btn:hover{
  background-color: #efc328;
	color: #fff;
  transition-duration: .3s;
}

@media (max-width:950px) {

  .preimushesva-slider .itc-slider-item {
    flex: 0 0 100%;
    max-width: 100%;
    user-select: none;
    will-change: transform;
}
.quize__btn {
  top: 105% !important;
  width: 30%;
  height: auto;
  padding: 10px 5px;
  border-radius: 10px;
  font-size: calc(0.5vw + 10px);
  background-color: #BBBBBB;
}
.novie__tovari .itc-slider-item {
  flex: 0 0 50%;
  max-width: 50%;
  user-select: none;
  will-change: transform;
}

.otzivi .itc-slider-item {
  flex: 0 0 100%;
  max-width: 100%;
  user-select: none;
  will-change: transform;
  padding:10px;
}
.products .columns-5 {
  display: grid;
  grid-template-columns: 50% 50%;
}
  
}