.fg-carousel-container {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: calc(100%  - 400px);
  background: #222426;
  cursor: -webkit-zoom-out;
  pointer-events: none;
}

.fg-carousel-main-photo-container {
  position: absolute;
  height: calc(100% - 75px);
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
}

.fg-carousel-main-photo {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
}

.fg-carousel-navigation-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 75px;
  width: 100%;
  background: #2d2f31;
  border-top: 1px solid #424446;
}

.fg-carousel-prev-icon-container {
  height: 75px;
  width: 30px;
  position: absolute;
  bottom: 0;
  left: 18px;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.fg-carousel-prev-icon {
  font-size: 25px;
  color: #777777;
  display: block;
  cursor: pointer;
  transition: .4s ease color;
}

.fg-carousel-prev-icon:hover,
.fg-carousel-prev-icon:active,
.fg-carousel-prev-icon:focus {
  color: white;
}

.fg-carousel-next-icon-container {
  height: 75px;
  width: 30px;
  position: absolute;
  bottom: 0;
  right: 18px;
  transform: rotate(180deg);
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.fg-carousel-next-icon {
  font-size: 25px;
  color: #777777;
  display: block;
  cursor: pointer;
  transition: .4s ease color;
}

.fg-carousel-next-icon:hover,
.fg-carousel-next-icon:active,
.fg-carousel-next-icon:focus {
  color: white;
}

.fg-carousel-photo-thumb-list {
  width: calc(100% - 96px);
  height: 75px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fg-carousel-photo-thumb {
  opacity: .3;
  transition: opacity .4s ease;
  pointer-events: auto;
}

.fg-carousel-photo-thumb--active {
  opacity: 1;
}

.fg-carousel-photo-thumb:not(:last-of-type) {
  margin-right: 10px;
}

.fg-carousel-photo-thumb-img {
  width: 45px;
  height: 45px;
}

@media only screen and (max-width : 800px) {
  .fg-carousel-container {
    position: relative;
    width: 100% !important; /* to override the manual style for large screen scrollbar width */
    right: 0 !important;  /* to override the manual style for large screen scrollbar width */
    min-height: 490px;
    order: 0;
    pointer-events: auto;
    overflow: hidden;
  }

  .fg-carousel-container--no-navigation-content {
    min-height: 415px;
  }

  .fg-carousel-main-photo-container--landscape .fg-carousel-main-photo {
    max-height: 100%;
  }

  .fg-carousel-container {
    background: #222426;
  }

  .fg-carousel-container--no-navigation-content .fg-carousel-main-photo-container {
    height: 100%;
  }

  .fg-carousel-main-photo-container {
    border-bottom: 1px solid #555555;
  }

  .fg-carousel-navigation-container {
    background: #222426;
    border: none;
  }

  .fg-carousel-container--no-navigation-content .fg-carousel-navigation-container {
    display: none;
  }
}
