/*
private css-Datei für glide Konfiguration.
*/

.sta_glide_track{
  height: calc(100% - 20px);
  margin: 0px;
}

.sta_glide_slides{
  height: 100%;
  margin: 0px 0px;
}

.sta_glide_arrow{
  padding: 0px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.sta_glide_arrow--left{
  left: 30px;
  border: none;
  box-shadow: none;
}

.sta_glide_arrow--right{
  right: 30px;
  border:none;
  box-shadow: none;  
}

.sta_glide_bullets{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: rgba(183, 183, 183, 1);
  bottom: 0px;
  flex-wrap: wrap;
}

.sta_glide_bullet{
  height: 10px;
  width: 10px;
  border: 2px solid transparent;
  border-radius: 50%;
  background-color: rgba(183, 183, 183, 1);
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0,0,0,0.1);
  transition: all 0.3s ease-in-out;
  margin: 0 0.3em;
  padding: 0;
  cursor: pointer;
}

.sta_glide_bullet:hover{
  border: none;
  transform: scale(1.03);
  background-color: rgba(255, 255, 255, 1);
}

.sta_glide_bullet:focus,
.glide__bullet--active{
  border: none;
  transform: scale(1.03);
  background-color: rgba(255, 255, 255, 1);
  color: rgba(255, 246, 198, 1);
  text-shadow: rgba(255, 193, 37, 0.7) 0px 0px 30px, rgba(255, 193, 37, 0.7) 0px 0px 60px;
}

@media only screen and (max-width: 1000px)
{
  .sta_glide_track{
    height: calc(100% - 40px);
  }
  
  .sta_glide_arrow--left{
    left: 4px;
  }

  .sta_glide_arrow--right{
    right: 4px;
  }
}

@media only screen and (min-width: 2000px)
{
  .sta_glide_arrow{
    height: 60px;
    width: 60px;
  }

  .sta_glide_arrow--left{
    left: 20px;
  }

  .sta_glide_arrow--right{
    right: 20px;
  }

  .sta_glide_bullet{
    font-size: 1.3rem;
  }

  .fa-2x{
    font-size: 3em;
  }
}
