.slider {
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
  width: 95%;
}
.slide_viewer {
  overflow: hidden;
  position: relative;
  background-color: black;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  position: relative; /* for text inside */
  background-color: initial;
  padding-bottom: 80px;

}
.slide_group {
  height: 100%;
  position: absolute;
  width: 100%;
  top:0;
}
.slide {
  display: none;
  height: 100%;
  position: absolute;
  width: 100%;
}
.slide:first-child {
  display: none;
}
.slide_buttons {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  height: auto;
}
.loader {
    position: absolute;
    top: 45%;
    z-index: 999;
    width: 100%;
    height: 50px;
    text-align: center;
    color: silver;
    display: block;
    color: black;
}
a.slide_btn {
  color: #474544;
  font-size: 70px;
  line-height: 1;
  margin: 0 0.15em;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}
.slide_btn.active, .slide_btn:hover {
  color: #428CC6;
  cursor: pointer;
}
.directional_nav {
    height: auto;
    margin: 0 auto;
    max-width: 100%;
    top:0;
    bottom: 0;
    width: 100%;
}
.directional_nav div {
    color: black;
    text-align: center;
}
.previous_btn {
  bottom: 0;
  left: 2%;
  margin: auto;
  position: absolute;
  top: 0;
}
.next_btn {
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 2%;
  top: 0;
}
.previous_btn, .next_btn {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.4s ease-in-out;
  width: 65px;
  height: 65px;
  background: white;
  border-radius: 50%;
  line-height: 2.4em;
  font-size: 2em;
}
.previous_btn:hover, .next_btn:hover {
  opacity: 1;
}
.slidertext {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
}
.bottomtext {
    top: initial; 
    background: #ffffffbf;
    color: #252424;
    font-size: 1.8em;
    text-align: center;
    height: 50px;
    font-weight: bold;
    box-shadow: 0px -4px 4px #00000070;
    line-height: 1.9;
}

/* slider text UNDER image instead */
.slide-textunder {
    width: 100%;
    text-align: center;
    font-size: 1.5em;
    margin-top: -30px;
    display: none;
}
.slide-textunder .slide_text {
    display: none;
}
.slide-textunder .slide_text.active {
    display: block;
}

.reflect.responsive, img.reflected, div.responsive, .responsive canvas {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
}
canvas {transition: all 0.4s ease-in-out;}
@media only screen and (max-width: 767px) {
  .previous_btn, .next_btn {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    line-height: 1.6;
  }
  .bottomtext {
    font-size: 1em;
    height: 25px;
    line-height: 2;
  }
}