.grid-container {
  columns: 5 200px;
  column-gap: 1.5rem;
  width: 90%;
  margin: 0 auto;
}
.grid-container div {
  position: relative;
  overflow: hidden;
  width: 150px;
  margin: 0 1.5rem 1.5rem 0;
  display: inline-block;
  width: 100%;
  transition: all .25s ease-in-out;
}
.grid-container div div {
  cursor: pointer;
  width: 100%;
  height: 100%;
  background-color: #00adb5;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.grid-container div:hover div {
  opacity: 0.6;
}
.grid-container div:hover .eye {
  cursor: pointer;
  opacity: 1;
}
.grid-container div:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.grid-container div .eye {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 40px;
  height: auto;
  opacity: 0;
}
.grid-container div img {
  width: 100%;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  -webkit-transition: all 1s ease-out;
  transition: all .25s ease-in-out;
}

.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  text-align: center;
  visibility: hidden;
  background-color: #000000D0;
  background-image: url('../img/loading.gif');
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.buttons {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10001;
}


.close::before {
  content: url('../img/krest.svg');
}
.close:hover{
  cursor: pointer;
  opacity: 0.6;
}
.left_arrow, .right_arrow {
  position: absolute;
  display: block;
  /* width: 20px; */
  height: 38px;
  top: 50%;
  margin-top: -19px;
  left: 20px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.left_arrow:hover, .right_arrow:hover{
  opacity: 0.6;
}

.right_arrow {
  left: auto;
  right: 20px;
}

.right_arrow::before {    
  content: url('../img/arrow_r.svg');
}
.left_arrow::before {    
  content: url('../img/arrow_l.svg');
}

.fullscreen .image{
  max-width: 90%;
  max-height: 90%;
}