body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}
.imgGalleryContainer {
  width: 100%;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.imgGalleryContainer .imgGallery {
  /* border: 1px solid black; */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vmin;
  max-width: 100%;
  max-height: 100%;
}
.imgGalleryContainer .imgGallery svg {
  position: relative;
  height: 75px;
  width: 75px;
  z-index: 80;
  fill: rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
  margin-left: -80px;
  margin-right: -80px;
}
.imgGalleryContainer .imgGallery svg:hover,
.imgGalleryContainer .imgGallery svg:active,
.imgGalleryContainer .imgGallery svg:focus {
  background-color: rgba(0, 0, 0, 0.1);
  fill: rgba(225, 255, 255, 0.3);
}
.imgGalleryContainer .imgGallery .imgView {
  height: 90%;
  width: 90%;
  /* border: 1px solid black; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.imgGalleryContainer .imgGallery .imgView .actualImg {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  max-height: 90vh;
}
.imgGalleryContainer .imgGallery .imgView .actualImg img {
  height: 100%;
  width: 100%;
  transition: all 1s ease-in-out;
}
.imgGalleryContainer .imgGallery .imgView progress {
  height: 10px;
  width: 100%;
  transition: all 1s ease-in-out;
  background-color: lightblue;
  border-radius: 5px;
  margin: 1px;
  border: 1px solid #787878;
}
.imgGalleryContainer .imgGallery .imgView progress::-webkit-progress-value {
  background-color: #154066;
  transition: width 1s;
}
.imgGalleryContainer .imgGallery .imgView .imgGallery {
  /* border: 1px solid black; */
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  max-height: 90vh;
}
.imgGalleryContainer .imgGallery .imgView .imgGallery svg {
  position: absolute;
  height: 75px;
  width: 75px;
  z-index: 100;
  fill: rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
.imgGalleryContainer .imgGallery .imgView .imgGallery svg:hover,
.imgGalleryContainer .imgGallery .imgView .imgGallery svg:active,
.imgGalleryContainer .imgGallery .imgView .imgGallery svg:focus {
  background-color: rgba(0, 0, 0, 0.3);
  fill: rgba(34, 136, 226, 0.5);
}
.imgGalleryContainer .imgGallery .imgView .imgGallery svg.left {
  left: 10vw;
}
.imgGalleryContainer .imgGallery .imgView .imgGallery svg.right {
  right: 10vw;
}
.imgGalleryContainer .imgGallery .imgView .imgView {
  height: 90%;
  width: 90%;
  /* border: 1px solid black; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.imgGalleryContainer .imgGallery .imgView .imgView .actualImg {
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  max-height: 90vh;
}
.imgGalleryContainer .imgGallery .imgView .imgView .actualImg img {
  height: 100%;
  width: 100%;
  transition: all 1s ease-in-out;
}
.imgGalleryContainer .imgGallery .imgView .imgView progress {
  height: 10px;
  width: 100%;
  transition: all 1s ease-in-out;
  background-color: lightblue;
  border-radius: 5px;
  margin: 1px;
  border: 1px solid #787878;
}
.imgGalleryContainer .imgGallery .imgView .imgView progress::-webkit-progress-value {
  background-color: #154066;
  transition: width 1s;
}
