.g30-gallery .slick-arrow {
  font-size: 50px;
  position: absolute;
  top: 40%;
  left: 0;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.g30-gallery .next.slick-arrow {
  left: auto;
  right: 0;
}

.g30-gallery:hover .slick-arrow {
  left: 30px;
  opacity: 1;
  visibility: visible;
}

.g30-gallery:hover .next.slick-arrow {
  left: auto;
  right: 30px;
}

.g30-gallery-photo>img {
  height: 540px;
}

.g30-gallery .slick-slide {
  display: flex;
  justify-content: center;
  height: 100%;
}

.g30-arrows>li ::before {
  content: "\f054";
  font-family: "FontAwesome";
  padding: 0 10px 0 0;
}

.g30Upload {
  border: 1px solid gray;
  color: gray;
  background-color: white;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  /* font-weight: bold; */
}

input[type=file] {
  cursor: pointer;
  font-size: 50px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

#image-holder > img{
  margin: 20px;
  max-width: 150px;
  max-height: 150px;
}

#thumbnail-container > img{
  margin: 20px;
  max-width: 150px;
  max-height: 150px;
}

.dots {
  width: 72px;
  height: 34.6px;
  background: radial-gradient(circle closest-side,#07294d 90%,#0000) 0%   50%,
         radial-gradient(circle closest-side,#07294d 90%,#0000) 50%  50%,
         radial-gradient(circle closest-side,#07294d 90%,#0000) 100% 50%;
  background-size: calc(100%/3) 17.4px;
  background-repeat: no-repeat;
  animation: dots-7ar3yq 0.8s infinite linear;
}

@keyframes dots-7ar3yq {
  20% {
     background-position: 0%   0%, 50%  50%,100%  50%;
  }

  40% {
     background-position: 0% 100%, 50%   0%,100%  50%;
  }

  60% {
     background-position: 0%  50%, 50% 100%,100%   0%;
  }

  80% {
     background-position: 0%  50%, 50%  50%,100% 100%;
  }
}


/* G30 Timeline */
ul.g30-timeline {
  box-sizing: border-box;
  list-style-type: none;
  position: relative;
  padding-left: 1.5rem;
}

/* Timeline vertical line */
ul.g30-timeline:before {
  content: ' ';
  background: #07294d;
  display: inline-block;
  position: absolute;
  left: 16px;
  width: 4px;
  height: 100%;
  z-index: 400;
  border-radius: 1rem;
}

li.g30-timeline-item {
  margin: 10px 0;
  border: 3px solid #ffc600;
}

/* Timeline item arrow */
.g30-timeline-arrow {
  border-top: 0.5rem solid transparent;
  border-right: 0.5rem solid #ffc600;
  border-bottom: 0.5rem solid transparent;
  display: block;
  position: absolute;
  left: 2rem;
}

/* Timeline item circle marker */
li.g30-timeline-item::before {
  content: ' ';
  background: #ddd;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  border: 3px solid #ffc600;
  left: 11px;
  width: 14px;
  height: 14px;
  z-index: 400;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
/* Model List CSS */
.modal-body > ol{
  padding: 5px;
  list-style: auto;
}