* {box-sizing:border-box;}
.mySlides {display:none}

/* Показ слайдів контейнер */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Наступна і попередня кнопки */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  font-family: Verdana,sans-serif;
}

/* Встановити поруч кнопку вправо */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* При наведенні курсора, додати чорний колір фону напівпрозорий */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.7);
}

/* Підписи */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  font-family: Verdana,sans-serif;
  background-color: rgba(9,9,9,0.4); 
}

/* Номер текст (1/3 і т.д.) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  font-family: Verdana,sans-serif;
}

/* Точки / кулі / індикатори */
.dot {
  cursor:pointer;
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.activ, .dot:hover {
  background-color: #717171;
}

/* загасання анімація */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* На невеликих екранах, зменшити розмір шрифту */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}