/*!
* chiefSlider
*   site: https://itchief.ru/javascript/slider
*   github: https://github.com/itchief/ui-components
*
* Copyright 2018-2021 Alexander Maltsev
* Licensed under MIT (https://github.com/itchief/ui-components/blob/master/LICENSE)
*/

.slider {
  position: relative;
}
.slider img{
	height: 400px !important;
	width: auto;
}
.slider__container {
  overflow: hidden;
}

.slider__wrapper {
  /* overflow: hidden; */
  height: 400px;	
}

.bottle-capture
{ position: relative;
    bottom: -100px;
    display: block;
    padding-top: 10px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.8);
	 -webkit-transition: bottom 1s ease-out 0.5s;
     -moz-transition: bottom 1s ease-out 0.5s;
     -o-transition: bottom 1s ease-out 0.5s;
     transition: bottom 1s ease-out 0.5s;
}

.slider:hover .bottle-capture
{bottom: 80px;}

.slider__items {
  display: flex;
  transition: transform 0.5s ease;
}

.slider_disable-transition {
  transition: none;
}

.slider__item {
  flex: 0 0 100%;
  max-width: 100%;
  user-select: none;
}

/* кнопки влево и вправо */

.slider__control {
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  color: #987745;
  text-align: center;
  border: none;
  border-radius: 50px;
  background-color: transparent;
  transform: translateY(-50%);
  cursor: pointer;
}

.slider__control_hide {
  display: none;
}

.slider__control[data-slide="prev"] {
  left: 0;
}

.slider__control[data-slide="next"] {
  right: 0;
}

.slider__control:hover,
.slider__control:focus {
  color: #fff;
  text-decoration: none;
  background-color: rgba(152,119,69,0.6);
  outline: 0;
}

.slider__control[data-slide="prev"]::before{  content: "\e066";}
.slider__control[data-slide="next"]::before{  content: "\e068";}

.slider__control::before {

  font-family: "linea-arrows-10" !important;
  text-transform: none !important;
  display: inline-block;
  font-size: 30px;	 
  width: 35px;
  height: 35px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}



/* индикаторы */

.slider__indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-right: 15%;
  margin-bottom: 0;
  margin-left: 15%;
  padding-left: 0;
  list-style: none;
}

.slider__indicators li {
  flex: 0 1 auto;
  box-sizing: content-box;
  width: 30px;
  height: 5px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgb(255 255 255 / 50%);
  background-clip: padding-box;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  cursor: pointer;
}

.slider__indicators li.active {
  background-color: rgb(255 255 255 / 90%);
}
