.CommonGaleriesComponent {
  background-color: #ffffff;
  padding: 3rem;
}

.CommonGaleriesComponent h2 {
  position: relative;
  line-height: 3rem;
  margin-bottom: 3rem;
}

.CommonGaleriesComponent .item.slc {
  background-repeat: no-repeat;
  min-height: 10rem;
  background-position: center center;
  cursor: pointer;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}

@media (max-width: 767px) {
  .CommonGaleriesComponent .item.slc {
    background-size: 90%;
  }
}

@media (min-width: 768px) {
  .CommonGaleriesComponent .item.slc {
    background-size: 80%;
  }
}

@media (min-width: 1920px) {
  .CommonGaleriesComponent .item.slc {
    background-size: 60%;
  }
}

.CommonGaleriesComponent .item.slc:hover {
  opacity: 0.6;
}

.CommonGaleriesComponent .item .info {
  position: absolute;
  width: 100%;
  height: 30px;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.49);
  color: #fff;
  padding-left: 8px;
}

.CommonGaleriesComponent .slick-dots li button:before {
  border-bottom: 3px solid gray;
  content: '';
}

.CommonGaleriesComponent .modal-dialog.image {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100vw;
  height: 100vh;
  margin: 0;
  max-width: 100%;
}

.CommonGaleriesComponent .modal-dialog.image .modal-content {
  background-color: transparent;
  border: 0;
}

.CommonGaleriesComponent .modal-dialog.image .modal-content .modal-header {
  background-color: transparent;
  border-bottom: 0;
}

.CommonGaleriesComponent .modal-dialog.image .modal-content .modal-header .modal-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 100;
}

.CommonGaleriesComponent .modal-dialog.image .modal-content .modal-header > button.close {
  font-size: 2rem;
  color: #fff;
  outline: none;
}

.CommonGaleriesComponent .modal-dialog.image .modal-content .modal-body {
  text-align: center;
}

.CommonGaleriesComponent .modal-dialog.image .modal-content .modal-body img {
  max-height: 80vh;
  height: auto;
}

.CommonGaleriesComponent .modal-dialog.image .modal-content .prev-image,
.CommonGaleriesComponent .modal-dialog.image .modal-content .next-image {
  border: 0;
  background-color: transparent;
  color: #fff;
  font-size: 4rem;
  position: absolute;
  top: 45%;
  outline: none;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  cursor: pointer;
}

.CommonGaleriesComponent .modal-dialog.image .modal-content .prev-image:hover,
.CommonGaleriesComponent .modal-dialog.image .modal-content .next-image:hover {
  opacity: 0.3;
}

.CommonGaleriesComponent .modal-dialog.image .modal-content .prev-image {
  left: 2rem;
}

.CommonGaleriesComponent .modal-dialog.image .modal-content .next-image {
  right: 2rem;
}

