/* --------------- Gallery --------------- */
#galleryWrap{
  width: 100%;
  position: relative;
}

#gallery{
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  position: relative;
}

#gallery > img{
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}

#galleryWrap *{
  /* Disables text selecting */
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently */
}

@media screen and (max-width: 768px){
  #galleryWrap > .galleryBTN{
    display: none;
  }
}

/* --------------- Dot Nav --------------- */
#galleryDotWrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 10px;
}

#galleryDotWrap > .galleryDot{
  background-color: grey;
  width: 14px;
  height: 14px;
  margin: 12px;
  border-radius: 50%;
}

.currentGallDot, #galleryDotWrap > .non_touch .galleryDot:hover{
  background-color: #2c2c2c!important;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2){
  #galleryThumbWrap > .galleryDot{
    width: 100px;
    height: 100px;
    margin: 20px;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 3){
  #galleryThumbWrap > .galleryDot{
    width: 150px;
    height: 150px;
    margin: 30px;
  }
}
