#slider {
  width: 100%;
  /*max-width: 1200px;*/
  height: 100%;
  margin: 0 auto;
  position: relative;
  
}
#slider canvas {
  width: 150%;
  height: 150%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

#slider img {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 0;
  object-fit: cover;
  border: 1px solid yellow;
}

.slider-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  /*max-width: 1060px;*/
  height: 100%;
  margin: 0 auto;
  z-index: 5;
  background-image: linear-gradient(to left, rgba(206, 236, 238, 0), rgba(206, 236, 238, 0.5));
  background-size: 100% 100%;
  
}

#slider-content {
  padding: 0 1em;
  width: 90%;
  margin: 0 auto;
}
#slider-content h2 {
  /*font-family: 'Literata', serif;*/
  font-weight: 400;
  font-size: 7em;
  line-height: 1;
  letter-spacing: -1px;
  color: white; /* var(--color-text-default); */
  margin: 2rem 0;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

#slider-content span {
  display: none;
}
#slider-content .meta {
  display: inline-block;
    font-size: 1.4em;
    font-weight: 600;
  letter-spacing: 2px;
  color: #eeeeee;
  text-transform: uppercase;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
    text-shadow: 0 1px 0px rgba(0, 0, 0, 0.5);
  
}

#slider-content .meta:after {
  content: '';
  /*display: block;
  position: absolute;
  top: 5px;
  right: -55px;*/
  margin-left: 1em;
  width: 3em;
  height: 2px;
  background-color: #eeeeee;
  box-shadow: 0 1px 0px rgba(0, 0, 0, 0.35);
}
#slider-content #slide-status {
  /*margin-top: 0.5em;*/
  /*font-family: 'Literata', serif;*/
  font-weight: 500;
    font-size: 1.8em;
    line-height: 1.4;
  /* color: var(--color-text-default);
  text-shadow: 0 -1px 0px rgba(255, 255, 255, 0.5); */

  color: white;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  
}

#pagination {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2em;
  z-index: 6;
}
#pagination button {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  width: 1.6em;
  height: 1.6em;
  background-color: var(--color-text-default);
  border: 1px solid #eee;
  border-radius: 100%;
  padding: 0;
  margin: 3em 0;
  cursor: pointer;
  position: relative;
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
  outline: none;
}
#pagination button:hover {
  opacity: 0.5;
}
#pagination button.active {
  opacity: 1;
}
#pagination button.active:before {
  width: 300%;
  height: 300%;
  opacity: 1;
}
#pagination button.active:after {
  width: 350%;
  height: 350%;
  opacity: 1;
}
#pagination button:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 1px solid rgba(35, 39, 42, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease-in-out, width 0.4s ease-in-out, height 0.4s ease-in-out;
}
#pagination button:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 1px solid #eee;
  opacity: 0;
  transition: opacity 0.4s ease-in-out, width 0.4s ease-in-out, height 0.4s ease-in-out;
}

/* Page Loader */
.loading:before {
  content: '';
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: black;*/
}
.loading:after {
  content: '';
  position: fixed;
  z-index: 100000;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -2em 0 0 -2em;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.4;
  background: white;
  animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}

