* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
  border: 25px solid transparent;
  border-image: url(/fileadmin/assets/background/ar_background.png) 40 ;
}

/* Hide the images by default */
.arSlides {
  display: none;
}

/* The dots/bullets/indicators */
.arDot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.arDot:active .arDot:hover {
  background-color: rgb(198, 12, 26, 1);
}

/* Fading animation */
.fade {
  animation-name: arfade;
  animation-duration: 1.5s;
}

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