/*-------------------------Gallery-CSS------------------------*/
.gallery-container {
  max-width: 1300px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px 200px;
  grid-gap: 10px;
  grid-auto-flow: dense;
  margin: 0 auto;
}

.uk-lightbox-close {
  position: relative;
  top: 150px;
}

p {
  margin: 0px;
}

ul {
  margin: 0px !important;
  padding: 0px !important;
}

address, dl, fieldset, figure, ol, p, pre, ul {
  margin: 0 !important;
}

.gallery-item {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-item .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

.gallery-item:hover .image img {
  transform: scale(1.05);
}

.w-1 {
  grid-column: span 1;
}

.w-2 {
  grid-column: span 2;
}

.w-3 {
  grid-column: span 3;
}

.w-4 {
  grid-column: span 4;
}

.w1-5 {
  grid-column: span 5;
}

.w1-6 {
  grid-column: span 6;
}

.h-1 {
  grid-row: span 1;
}

.h-2 {
  grid-row: span 2;
}

.h-3 {
  grid-row: span 3;
}

.h-4 {
  grid-row: span 4;
}

.h-5 {
  grid-row: span 5;
}

.h-6 {
  grid-row: span 6;
}

.carousel-control-prev {
  position: absolute;
  left: -185px;
}

.carousel-control-next {
  position: absolute;
  right: -185px;
}

.carousel-control-prev-icon {
  filter: invert(100%);
  position: relative;
  left: 70px;
}

.carousel-control-next-icon {
  filter: invert(100%);
  position: relative;
  right: 70px;
}

.carousel-indicators {
  bottom: -50px;
  filter: invert(100%);
}

.carousel-indicators button {
  border-radius: 50%;
  width: 10px !important;
  height: 10px !important;
  margin-left: 5px !important;
  margin-right: 5px !important;
}

@media only screen and (max-width: 600px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .w-1, .w-2, .w-3, .w-4, .w-5, .w-6 {
    grid-column: span 1;
  }
  .carousel-control-next {
    right: 0;
  }
  .carousel-control-prev {
    left: 0;
  }
  .carousel-control-prev-icon {
    left: -20px;
  }
  .carousel-control-next-icon {
    right: -20px;
  }
}
/*---------------------------------*//*# sourceMappingURL=egrdecor-gallery.css.map */