.small-col{
    width: 1%;
    white-space: nowrap;
}

#maincol{
    max-height: 100vh;
    overflow-y: auto;
}

#editor{
    height: calc(100% - 80px);
}
.recipient-input {

}

.recipient-list {
    display: flex;
    flex-wrap: wrap;
    cursor: text;
    min-height: 30px;
    margin-bottom: 10px;
}

.recipient-list span {
    display: inline-block;
    background: #f0f0f0;
    border-radius: 15px;
    padding: 4px 12px;
    margin: 2px;

    position: relative;
    padding-right: 40px;
}

.recipient-list span .close {
    cursor: pointer;
    position: absolute;
    right: 0px;
    font-size: 150%;
    font-weight: bold;
    top: 0px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    padding: 0px;
    cursor: pointer;
    text-align: center;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
}
#previewContainer{position: relative;}
#loadingOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    justify-content: center;
    align-items: center;
    display: none;
}
#loadingText {
    text-align: center;
    margin-top: 10vh;
    font-size: 24px;
    font-weight: bold;
}

.nav-item .list-group-item{
    background: transparent;
    padding-left: 3rem;
}

.nav-item .list-group-item a {
    color: darkslategrey;
    padding: 0.3rem 0.4rem;
}

.nav-item .list-group-item a.active {
    background: darkslategrey;
    color: white;
}
#customToolbar{
    float: left;
}
#customToolbar .form-control{
    display: inline-block !important;
    width: auto !important;
    background: #f9f9f9;
    appearance: auto  !important;
    -webkit-appearance: auto  !important;
}

#agency_logo{
    height: 150px;
    width: 150px;
    background-size: cover;
    background-position: center center;
    border-radius: 100%;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    cursor: pointer;
}

#meta-banner{
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 15px;
    background: #f8f8f8;
    color: #0a4d4f;
    border:1px solid white;
}

#agency_id{
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);

    background: #0a4d4f;
    color: #f0f0f0;
    font-size: 2em;
    text-align: center;
    height: 150px;
    width: 150px;
    border-radius: 100%;
    padding-top: 20px;
}

#FKdatatable td{
    white-space: nowrap;
    word-break: keep-all;

}

#customZoomImage-container{
    cursor: pointer;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 5vh 5vw;
    box-sizing: border-box;
  }
  #customZoomImage{
    max-width: calc(90vw);
    max-height: calc(90vh);
    border-radius: 5px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.6);
  }


#imageUpload{
    display:none;
  }

  #dropZone {
    border-color: #ccc;
    border-style: solid;
    border-width: 1px;
    margin-top: 10px;
    border-radius: 4px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    height: 150px; 
    overflow: hidden;
    position:relative;
  }
  
  #dropZone img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
  
  .dropZoneTools{
    position: absolute;
    bottom: 5px;
    left: calc(50%);
    transform: translateX(-50%);
    display: none;
    z-index: 2;
    background: #fff;
  }
  
  #dropZone:hover .dropZoneTools{
    display: block;
  }
  
  #dropZoneDelete{
    display: none;
  }
  
  #dropZone.has-picture #dropZoneDelete {
    display: inline-block;
  }
  
  #dropZone.has-picture img{
    z-index: 1;
  }
  .service-form.bg-warning {
    border-radius: 4px;
  }
  .service-form.bg-warning .form-control{
    background: transparent;
    color: white;
    border-color: white;
  }

  .remove-service{
    visibility: hidden;
  }

  .service-form:hover .remove-service{
    visibility: visible;
  }
  .cell-invalid {
    background-color: #790619 !important;
    color: white !important;
    padding: 5px 10px;
    border-radius: 4px;
  }

  .cell-invalid .badge:hover{
    cursor: help;
  }

  .gigantic-table-container{
    width: 100%;
    overflow: auto;
    height: calc(100vh - 200px);
  }