* {box-sizing:border-box}

.mySlides {
  display: none;
}

.p, .n {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 25px;
  transition: 0.4s ease;
  user-select: none;
}

.n {
  right: 0;
}

.punkt {
  margin: 2px;
  position: relative;
  top: -45px;
  display: inline-block;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  border-color: darkgrey;
  background-color: white;
  transition: background-color 0.4s ease;
}

.dot {
  cursor: pointer;
  height: 14px;
  width: 14px;
  position: relative;
  border-radius: 50%;
  display: inline-block;
}

.active, .punkt:hover {
  background-color: #FF3505;
}

.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 (max-width:720px) {
  .punkt {
    display: none;
  }
}
