/* .carousel-item img{
    opacity: 0.6;
} */
.nav-icon {
  background: #cfc1c1;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 0;
  opacity: 0.7;
  text-shadow: none;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-icon:hover {
  background-color: #fac3c3;
  opacity: 1.0;
  transition: all ease 0.3s;
  color: #fff;
}

.carousel-indicators li {
  border-radius: 50%;
  width: .8rem;
  height: .8rem;
  background: transparent;
  border: solid 2px #1b1b1b;
}

.carousel-indicators [data-bs-target] {
  background-color: #2d2121 !important;
}
.carousel-caption{
  color: #081100;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 23px;
  background-color: #00FF7F;
  border-radius: 30px;
  border: 2px solid gray;
}

/* After slide changes */
.toggle:after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: gray;
  top: 0;
  left: 0;
  transition: all 0.5s;
}

/* Checkbox checked effect */
.checkbox:checked+.toggle::after {
  left: 26px;
}

/* Checkbox checked toggle label bg color */
.checkbox:checked+.toggle {
  background-color: #3CB371;
}

/* Checkbox vanished */
.checkbox {
  display: none;
}

/* Toggle text */
.toggle .on,
.toggle .off {
  margin-top: 1px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  /* color: yellow; */
  font-size: 12px;
}

.toggle .off {
  margin-left: 25px;
}
.toggle .on {
  color: white;
  margin-left: 5px;
}

#switch:not(:checked)+.toggle .on {
  display: none;
}

#switch:checked+.toggle .off {
  display: none;
}

.image-item{
  /* height: 750px !important; */
  background-size: cover;
}
/* STYLE FOOTER */
.footer {
  background: linear-gradient(45deg, #bbdeff, #cfffff) !important;
}

.footer .text-muted {
  color: rgba(0, 0, 0, 0.877) !important;
}

.footer a.text-muted {
  text-decoration: none;
}

.footer a.text-muted:hover {
  color: rgb(25, 18, 128) !important;
} 
.timeline-with-icons .timeline-item p.text-muted{
  color: hsl(124, 79%, 62%) !important;
}
.timeline-with-icons {
  border-left: 1px solid hsl(0, 0%, 90%);
  position: relative;
  list-style: none;
}

.timeline-with-icons .timeline-item {
  position: relative;
  color: hsl(125, 87%, 47%);
}

.timeline-with-icons .timeline-item.inactive {
  color: rgb(216, 216, 216);
}

.timeline-with-icons .timeline-item:after {
  position: absolute;
  display: block;
  top: 0;
}

.timeline-with-icons .timeline-item .timeline-icon {
  position: absolute;
  left: -48px;
  background-color: hsl(149, 88%, 90%);
  color: hsl(125, 89%, 35%);
  border-radius: 50%;
  height: 31px;
  width: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-with-icons .timeline-item.inactive .timeline-icon {
  background-color: hsl(156, 3%, 66%);
  color: rgb(216, 216, 216);
}
/* DATEPICKER */
.gj-datepicker-md [role="right-icon"]{
  right: 5px !important;
  top: 7px !important;
}
.gj-textbox-md{
  border: 1px solid #A0A0A0 !important;
  border-radius: 6px;
  padding: 8px 5px !important;
  cursor: pointer;
}

/* EDIT IMAGE PROFILE */
.image-container {
  position: relative;
  display: inline-block;
}

.image-container img {
  display: block;
  width: 200px; /* Adjust the width as needed */
  height: auto;
  border: 2px solid #ccc;
}

.edit-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem; /* Adjust the size as needed */
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
  display: none;
  pointer-events: none;
  cursor: pointer;
}

.image-container:hover .edit-icon {
  display: block;
  pointer-events: auto;
}
.edit-icon:hover{
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.8);
}