
ul.generic_menu li {
	padding:10px; border-bottom: solid 1px #ccc;
}
ul.generic_menu li:hover {
	background:#EC6603; color:#fff;
}
ul.generic_menu li:last-child { 
    border:none; 
}

/* ul.image_list_display li:hover {
	background:#EC6603 !important; color:#fff !important;
} */

/* image list menu */
ul.image_list_display {
  max-height: 300px;
  color: #000000;
  letter-spacing: 0em;
  font-size: 14px;
  list-style: none;
  margin: 0;
  overflow-y: auto;
}


ul.image_list_display li {
  background: transparent;
  margin: 0px;
  padding: 5px 8px;
  min-height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

ul.image_list_display li:not(:last-child) {
    border-bottom: 1px #DCDCDC solid;
}

.remove-item-file-picker:hover {
  color: rgb(176, 17, 17);
}

.remove-item-file-picker {
  /* border-left: 1px solid #000000; */
  padding-left: 5px;
  font-size: 25px;
}

ul.image_list_display li span.item-label {
    padding:5px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: calc(100% - 20px);
    line-height: 1.3;
}


ul.image_list_display li span.item-label .top,
ul.image_list_display li span.item-label .bottom {
  width:100%;
  display: flex;
  align-items: center;
  padding: 4px;
}

ul.image_list_display li span.item-label .top .text-label,
ul.image_list_display li span.item-label .bottom .text-label {
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.5;
}

ul.image_list_display li span.item-label .text-label.right {
  margin-left: auto;
}


ul.image_list_display li:hover {background-color: #F5F5F5;}

.image_list_img_holder {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image_list_img_holder img {
  max-width: 100%;
  max-height:100%;
  display: inline-block;
  /* margin: 0 auto; */
}


.submit-udf-btn {
  background-color: #078494;
  color: white;
  padding: 14px 18px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}

.submit-udf-btn:hover {
  opacity:1;
}
  
  /* MODAL
  –––––––––––––––––––––––––––––––––––––––––––––––––– */

.xx-custom-style-modalcont {
  background: #f9f9f9;
}

.modal-presentation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    visibility: hidden;
    opacity: 0;
    transition: all 0.35s ease-in;
    z-index: 900;

    /* padding: 1rem; */
  }
  
  .modal-presentation.is-visible {
    visibility: visible;
    opacity: 1;
  }
  
  .modal-presentation .modal-container {
    position: relative;
    border-radius: 5px;
    background: #fff;
    cursor: default;
    display: inline-block;
  }
  
  .modal-presentation .modal-container > * {
    padding: 0.6rem;
  }
  
  .modal-presentation .modal-header-1,
  .modal-presentation .modal-footer-1 {
    background:  #d8e3e4;
    min-height: 45px !important;
    padding: 4px;
  }

  .modal-presentation .modal-header-1 {
    font-weight: bold !important;
    text-transform: uppercase;
  }
  
  .modal-presentation .modal-header-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    font-size: 16px;
  }

  .modal-presentation .modal-footer-1 {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .modal-presentation .modal-header-1 .close-modal {
    font-size: 16px;
    margin: 1px;
    border-radius: 50%;
    -webkit-border-radius:50%;
    color: #fff;
    background:#078494;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border: none;
    margin-left: 40px;
    float: right;
    cursor: pointer;
    text-align: center;
    padding: 0px;
  }


  .modal-presentation .modal-content {
    border-radius: 1px;
    border: none; 
  }
  
  .modal-presentation p + p {
    margin-top: 1rem;
  }
  
  
  /* ANIMATIONS
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  [data-animation] .modal-container {
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
  }
  
  [data-animation].is-visible .modal-container {
    opacity: 1;
    transition-delay: 0.2s;
  }
  
  [data-animation="slideInOutDown"] .modal-container {
    transform: translateY(100%);
  }
  
  [data-animation="slideInOutTop"] .modal-container {
    transform: translateY(-100%);
  }
  
  [data-animation="slideInOutLeft"] .modal-container {
    transform: translateX(-100%);
  }
  
  [data-animation="slideInOutRight"] .modal-container {
    transform: translateX(100%);
  }
  
  [data-animation="zoomInOut"] .modal-container {
    transform: scale(0.2);
  }
  
  [data-animation="rotateInOutDown"] .modal-container {
    transform-origin: top left;
    transform: rotate(-1turn);
  }
  
  [data-animation="mixInAnimations"].is-visible .modal-container {
    animation: mixInAnimations 2s 0.2s linear forwards;
  }
  
  [data-animation="slideInOutDown"].is-visible .modal-container,
  [data-animation="slideInOutTop"].is-visible .modal-container,
  [data-animation="slideInOutLeft"].is-visible .modal-container,
  [data-animation="slideInOutRight"].is-visible .modal-container,
  [data-animation="zoomInOut"].is-visible .modal-container,
  [data-animation="rotateInOutDown"].is-visible .modal-container {
    transform: none;
  }
  
  @keyframes mixInAnimations {
    0% {
      transform: translateX(-100%);
    }
  
    10% {
      transform: translateX(0);
    }
  
    20% {
      transform: rotate(20deg);
    }
  
    30% {
      transform: rotate(-20deg);
    }
  
    40% {
      transform: rotate(15deg);
    }
  
    50% {
      transform: rotate(-15deg);
    }
  
    60% {
      transform: rotate(10deg);
    }
  
    70% {
      transform: rotate(-10deg);
    }
  
    80% {
      transform: rotate(5deg);
    }
  
    90% {
      transform: rotate(-5deg);
    }
  
    100% {
      transform: rotate(0deg);
    }
  }