.modal-custom {
  display: none;
  position: fixed;
  z-index: 1050;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 60%;
  height: 60%;
  overflow: hidden;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.custom-modal-content {
  position: relative;
  background-color: #f3f3f3;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 40%;
  float: right;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

.custom-sidebar {
  width: 210;
  height: 97%;
}

.custom-sidebar li {
  width: 100%;
}

.custom-sidebar li a {
  display: block;
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
}

.custom-sidebar li a.active {
  background-color: #cee0ba;
  color: #52843b;
}

.custom-sidebar li a:hover:not(.active) {
  background-color: #7e7b7b;
  color: white;
}

.item-container-bg{
  border: 1px solid #757373;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 13px 9px 4px rgb(0 31 255 / 10%);
  transition: box-shadow 0.3s ease;
}
