/* ------------------------------------------
----------------- Imageslider ---------------
------------------------------------------ */



.slider_dummy{
  height: var(--dim_navbar_height);
  width: 100%;
}


.image_box{
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: var(--dim_slider_height_min);
  max-height: var(--dim_slider_height_max);
  display: flex;
  justify-content: center;
  align-items: center;
}

.image_box .slider_bar{
  position: absolute;
  display: flex;
  flex-direction: row;
  -webkit-transform: translate( -50%, -50%);
  transform: translate( -50%,-50%);
  left: 50%;
  bottom: 5%;
}

.image_box .slider_bar .barCircle{
  width: var(--dim_slider_circ);
  height: var(--dim_slider_circ);
  border-radius: 50%;
  background-color: rgba(255,255,255, 0.6);
  margin: 0 10px;
  cursor: pointer;
  box-shadow: 2px 3px 4px -2px rgba(0,0,0,.2);
}

.image_box .slider_bar .barCircle.selected{
  border-style: solid;
  border-width: 4px;
  background-color: var(--color_primary);
  border-color: rgba(255,255,255, 0.5);
}

.image_box .slider_btn{
  width: var(--dim_slider_btn);
  height: var(--dim_slider_btn);
  -webkit-transform: translate( 0%, -50%);
  transform: translate( 0%,-50%);
  position: absolute;
  cursor: pointer;
  top: 50%;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 2px 3px 4px -2px rgba(0,0,0,.2);
}

.image_box #slidePrev{
  background-image: url('../images/icons/previous.png');
  left: 5%;
}

.image_box #slideNext{
  background-image: url('../images/icons/next.png');
  right: 5%;
}


.image_box .image_slider{
  display: flex;
  align-items: center;
  width: 100%;
}

.image_box .image_slider img{
  min-width: 100%;
  width: 100%;
}


.blur{
  filter: blur(5px);
  transition: all 1s;
}

.noBlur{
  transition: all 1s;
}