.Gallery {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.Gallery-image {
  margin: 0 auto;
  display: block;
  height: 100%;
  position: absolute;
  left: -200%;
  right: -200%;
  max-width: none;
  max-width: initial;
}

.Gallery-image--hidden {
  display: none;
}

.Gallery-selector {
  position: absolute;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.5);
  width: calc(100% - 20px);
  padding: 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.Gallery-selector--hidden {
  display: none;
}

.Gallery-arrowIconContainer {
  width: 20px;
  height: 20px;
  padding: 10px;
  border-radius: 50%;
  background: #00928f;
  cursor: pointer;
}

.Gallery-arrowIcon {
  stroke: white;
  width: 20px;
  height: 20px;
}

.Gallery-arrowIcon--right {
  margin-left: 3px;
}

.Gallery-arrowIcon--left {
  margin-left: -2px;
}

.Gallery-imageIndicators {
  display: flex;
}

.Gallery-imageIndicatorIcon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 5px;
  background: #00928f;
  cursor: pointer;
}

.Gallery-arrowIconContainer:hover,
.Gallery-imageIndicatorIcon:hover {
  background: #cc3868;
}

.Gallery-imageIndicatorIcon--selected,
.Gallery-imageIndicatorIcon--selected:hover {
  background: white;
  cursor: default;
}

@media (min-height: 1800px) {
  .Gallery-image {
    height: initial;
    width: 100%;
  }
}

@media (min-width: 1024px) and (max-width: 1024px) and (min-height: 1366px) and (max-height: 1366px) {
  .Gallery-image {
    margin: auto 0;
    top: -100%;
    bottom: -100%;
    left: auto;
    left: initial;
    right: auto;
    right: initial;
    position: absolute;
    max-width: none;
    max-width: initial;
    width: 100%;
    height: auto;
    height: initial;
  }
}

@media (max-width: 768px) {
  .Gallery-image {
    margin: auto 0;
    top: -100%;
    bottom: -100%;
    left: auto;
    left: initial;
    right: auto;
    right: initial;
    position: absolute;
    max-width: none;
    max-width: initial;
    width: 100%;
    height: auto;
    height: initial;
  }
}
