/*** LOADING BUTTON ANIMATION ***/
.btn-loading {
  background: #4DBF7C;
  color: #ffffff;
  border-color: #4DBF7C;
  background-image: -webkit-linear-gradient(left, transparent 0%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0.2) 100%);
  background-image: linear-gradient(left, transparent 0%, rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0.2) 100%);
  background-size: 100%;
  -webkit-animation: button__animation-load 5s linear forwards infinite;
          animation: button__animation-load 5s linear forwards infinite;
  pointer-events: none;
}

@-webkit-keyframes button__animation-load {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 500px 0;
  }
}
@keyframes button__animation-load {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 500px 0;
  }
}
/*** END LOADING BUTTON ANIMATION ***/

/*** TEXT OVERFLOW ELLIPSIS ***/
.truncate{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/*** END OF TEXT OVERFLOW ELLIPSIS ***/

/*** DRAGGABLE CLASSES ***/
ul[dnd-list], ul[dnd-list] > li {
    position: relative;
}
/**
 * The dnd-list should always have a min-height,
 * otherwise you can't drop to it once it's empty
 */
ul[dnd-list] {
    min-height: 20px;
}
/**
 * An element with .dndPlaceholder class will be added as child of the dnd-list
 * while the user is dragging over it.
 */
.dndPlaceholder {
    background-color: #14adc4 !important;
    min-height: 34px;
    display: block;
    position: relative;
}
/**
 * The dndDraggingSource class will be applied to
 * the source element of a drag operation. It makes
 * sense to hide it to give the user the feeling
 * that he's actually moving it.
 */
ul[dnd-list] .dndDraggingSource {
    display: none;
}
/*** END OF DRAGGABLE CLASSES***/
/*** SCROLLING SECTION***/
.scroll-section{
  max-height:800px;
  overflow-y:scroll;  
}
/*** END SCROLLING SECTION***/
.cursor-pointer{
  cursor: pointer;
  cursor: hand;
}
/*** ANGULAR MAPS ***/
ng-map{
  height: 70vh;
}
/*** END ANGULAR MAPS ***/
/*** GOOGLE PLACES AUTOCOMPLETE ***/
.pac-container{
  z-index: 9999;
}
/*** END GOOGLE PLACES AUTOCOMPLETE ***/

/*** LIST VIEW - CHECKSHEET BUILDER ***/
.lv-compartment {
  margin-bottom: 2px;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
}
.lv-compartment-header {
  padding: 10px 15px;
  background-color: #f5f5f5;
  cursor: pointer;
  border-bottom: 1px solid #e9e9e9;
}
.lv-compartment-header:hover {
  background-color: #eaeaea;
}
.lv-compartment-body {
  padding: 0;
}
.lv-item-header {
  padding: 8px 15px;
  background-color: #fafafa;
  border-bottom: 1px solid #e9e9e9;
}
.lv-item-row-data {
  padding: 8px 15px;
  border-bottom: 1px solid #f0f0f0;
}
.lv-item-row-data:last-child {
  border-bottom: none;
}
.lv-item-alt {
  background-color: #fafafa;
}
.lv-item-picker {
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  margin-bottom: 15px;
}
.lv-item-picker-header {
  padding: 8px 12px;
  background-color: #fafafa;
  border-bottom: 1px solid #e9e9e9;
}
.lv-item-picker-list {
  max-height: 250px;
  overflow-y: auto;
  padding: 5px 12px;
}
.lv-item-row {
  display: block;
  padding: 5px 0;
  margin: 0;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
}
.lv-item-row:hover {
  background-color: #f0f8ff;
}
/*** END LIST VIEW ***/

/*** VOICE INPUT ***/
.voice-mic-btn {
  min-width: 44px;
  min-height: 44px;
  font-size: 16px;
  padding: 8px 12px;
}
.voice-mic-btn .voice-timer {
  margin-left: 5px;
  font-size: 13px;
  font-weight: 600;
}
.voice-recording {
  animation: voice-pulse 1.2s ease-in-out infinite;
}
@keyframes voice-pulse {
  0%   { opacity: 1; }
  50%  { opacity: 0.6; }
  100% { opacity: 1; }
}
.voice-review-panel {
  background-color: #f9f9f9;
  border-bottom: 2px solid #e0e0e0;
  padding-top: 10px;
  padding-bottom: 10px;
}
.voice-review-panel .well {
  background-color: #fff;
  margin-bottom: 10px;
}
.voice-review-panel .list-group {
  margin-bottom: 10px;
}
.voice-review-panel .list-group-item {
  padding: 8px 12px;
}
.voice-review-panel .btn {
  margin-right: 5px;
  margin-bottom: 5px;
}
/*** END VOICE INPUT ***/

/*** TEMPORARY EXPIRATION FIELDS ***/
.temp-expiration .form-control {
  border-style: dashed;
  border-color: #e69c24;
  background-color: #fdf8ef;
}
/*** END TEMPORARY EXPIRATION FIELDS ***/
