@charset 'UTF-8';
/* Slider */
.row.slick  {
}

/* Arrows */
.slick-prev,
.slick-next
{
  font-size: 0;
  line-height: 0;
  position: absolute;
  display: block;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  top: 100%; /* Absolute platziert und beginnt unterhalb row.slick. Auf den Abstand zweier Reihen haben diese Elemente somit keinen Einfluss  */
  margin-top: -54px; /* wieder nach oben schieben damit bündig zur Punktenavigation */
  width: 15px;
  height: 15px;
}

.slick-theme-1 .slick-prev,
.slick-theme-1 .slick-next {
  width: 20px;
  height: 60px;
  top: 0px;
  margin-top: 0px;
  visibility: hidden;
}

.slick-theme-1:hover .slick-prev,
.slick-theme-1:hover .slick-next {
  visibility: visible;
}

.slick-theme-1 .slick-prev {
  left: 30px;
}

.slick-theme-1 .slick-next {
  right: 30px;
}

@media (max-width: 1023px) {
  .slick-theme-1 .slick-prev,
  .slick-theme-1 .slick-next {
    display: none !important;
  }
}

.slick-prev {
  left: 26px; 
  z-index: 35;
  background: url("/images/slider_prev_small_off.svg") no-repeat;
}

.slick-prev:hover {
  background: url("/images/slider_prev_small_on.svg") no-repeat;
}

.slick-next {
  z-index: 35;
  right: 19px;
  background: url("/images/slider_next_small_off.svg") no-repeat;
}

.slick-next:hover {
  background: url("/images/slider_next_small_on.svg") no-repeat;
}


.slick-theme-1 .slick-prev,
.slick-theme-1.slick-white .slick-prev, 
.slick-theme-1 .slick-prev:hover,
.slick-theme-1.slick-white .slick-prev:hover {
  background: url("/images/slider_prev_ffffff.svg") no-repeat;
}

.slick-theme-1 .slick-next,
.slick-theme-1.slick-white .slick-next, 
.slick-theme-1 .slick-next:hover,
.slick-theme-1.slick-white .slick-next:hover {
  background: url("/images/slider_next_ffffff.svg") no-repeat;
}

.slick-theme-1.slick-black .slick-prev, 
.slick-theme-1.slick-black .slick-prev:hover {
  background: url("/images/slider_prev_222222.svg") no-repeat;
}

.slick-theme-1.slick-black .slick-next, 
.slick-theme-1.slick-black .slick-next:hover {
  background: url("/images/slider_next_222222.svg") no-repeat;
}

.slick-dots
{
  display: block;
  padding: 0;
  margin: 0px 10px 0 10px;
  list-style: none;
  text-align: center;
  height: 36px;
  margin-top: 16px; /* Abstand zu, Inhalt der Spalte soll 40px sein. Spalter hat bereits margin p 1.35em ca 20px, die Punkte im Bild 2px weissen Rand plus 2px durch line-heihgt oben, also fehlen noch 16px */
  border-bottom: 1px #dfdfdf solid;
  margin-bottom: 1.45em; /* Abstand zwischen zwei Reihen ist der Abstand der Reihen plus der Abstand des Inhaltes einer Spalte zu ihrem Boden, in der Regel p:1.35em + underline letzte ZEile. Somit bleibt der Abstand zwischen 2 Reihen erhalten, unabhänig davon ob slick navigation ein oder augeschaltet ist, da wir hier den Spalten Abstand einfügen */
}

.slick-theme-1 .slick-dots {
  position: absolute;
  border-bottom: none;
  z-index: 35; 
  margin: 0;
  left: 50px;
  right: 50px; /* img-copyright-icon */
} 

.slick-theme-2 .slick-dots,
.slick-theme-3 .slick-dots 
{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-top: 2px;
  height: 50px;
}

.slick-dots li
{
  font-size: 0;
  line-height: 0;
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  cursor: pointer;
  z-index: 35;
}
.slick-dots li button
{
  font-size: 10px;
  line-height: 10px;
  display: block;
  padding: 0px;
  color: transparent;
  border: 0;
  outline: none;
  background: url("/images/slider_dot_off.svg") no-repeat left 0px;
  cursor: pointer;
  height: 14px;
  width: 14px;
  margin: 0px 8px;
  overflow: hidden;
}

.slick-dots li button:hover
{
  background: url("/images/slider_dot_hover.svg") no-repeat left 0px;
}

.slick-dots li.slick-active {
  cursor: default;
}

.slick-dots li.slick-active button
{
  cursor: default;
  background: url("/images/slider_dot_on.svg") no-repeat;
}


.slick-theme-1 .slick-dots li button,
.slick-white.slick-theme-1 .slick-dots li button {
  background: url("/images/slider_dot_off_lite.svg") no-repeat left 0px;
}

.slick-black.slick-theme-1 .slick-dots li button {
  background: url("/images/slider_dot_off.svg") no-repeat left 0px;
}

.slick-theme-1 .slick-dots li button:hover,
.slick-white.slick-theme-1 .slick-dots li button:hover {
  background: url("/images/slider_dot_hover_lite.svg") no-repeat left 0px;
}

.slick-black.slick-theme-1 .slick-dots li button:hover {
  background: url("/images/slider_dot_hover.svg") no-repeat left 0px;
}

.slick-theme-1 .slick-dots li.slick-active button,
.slick-white.slick-theme-1 .slick-dots li.slick-active button {
  cursor: default;
  background: url("/images/slider_dot_on_lite.svg") no-repeat;
}

.slick-black.slick-theme-1 .slick-dots li.slick-active button {
  cursor: default;
  background: url("/images/slider_dot_on.svg") no-repeat;
}


#hero-overlay-white .slick-dots li button 
{
  background: none;
  width: 50px;
  height: 50px;
  background-color: #eeeeee;
  margin: 0 0 0 1px;
  font-size: 15px;
  font-weight: 700;
  color: #333;
}

#hero-overlay-white .slick-dots
{
  position: absolute;
  border-bottom: none;
  z-index: 35; 
  right: 0;
  top: 0px;
  margin: 0;
}

#hero-overlay-white .slick-dots li button:hover {
  background: none;
  background-color: #dcdcdc;
}

#hero-overlay-white .slick-dots li.slick-active button {
  background: none;
  background-color: #dcdcdc;
}

#hero-overlay-white > div {
  display: none;
}

#hero-overlay-white > div:first-child {
  display: block;
}

@media (max-width: 1023px) {
#hero-overlay-white .slick-dots {
  height: 50px;
  right: 10px;
} 

#hero-overlay-white .slick-dots li button 
{
  width: 30px;
  height: 50px;
  background-color: transparent;
  color: transparent;
  background: url("/images/slider_dot_off.svg") no-repeat center center;
}

#hero-overlay-white .slick-dots li button:hover {
  background: url("/images/slider_dot_hover.svg") no-repeat center center;
}

#hero-overlay-white .slick-dots li.slick-active button {
  background: none;
  background: url("/images/slider_dot_on.svg") no-repeat center center;
}
}

@media (max-width: 799px) {
#hero-overlay-white .slick-dots {
  top: -50px;
  margin-right: 50%;
  transform: translate(50%, 0);
  text-align: center;
} 

#hero-overlay-white .slick-dots li button, 
#hero-overlay-white.slick-white .slick-dots li button {
  background: url("/images/slider_dot_off_lite.svg") no-repeat center center;
}

#hero-overlay-white.slick-black .slick-dots li button {
  background: url("/images/slider_dot_off.svg") no-repeat center center;
}

#hero-overlay-white .slick-dots li button:hover,
#hero-overlay-white.slick-white .slick-dots li button:hover {
  background: url("/images/slider_dot_hover_lite.svg") no-repeat center center;
}

#hero-overlay-white.slick-black .slick-dots li button:hover {
  background: url("/images/slider_dot_hover.svg") no-repeat center center;
}

#hero-overlay-white .slick-dots li.slick-active button ,
#hero-overlay-white.slick-white .slick-dots li.slick-active button {
  background: url("/images/slider_dot_on_lite.svg") no-repeat center center;
}

#hero-overlay-white.slick-black .slick-dots li.slick-active button {
  background: url("/images/slider_dot_on.svg") no-repeat center center;
}
}

.onthisday-slick-dots .slick-dots
{
  height: auto;
  margin: 0;
  border: 0;
}

.onthisday-slick-dots .slick-dots li
{
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  cursor: pointer;
  z-index: 35;
  padding: 0 11px;
}
.onthisday-slick-dots .slick-dots li button
{
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 17px;
  font-weight: 700;
  background: none;
  cursor: pointer;
  overflow: hidden;
  width: inherit;
  height: inherit;
  color: #7a7a7a;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
