@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
#listing-table {
    width: 100%;
    table-layout: fixed;
}

.listing-table-div {
    border-bottom: #707070 1px solid;
    display: flex;
    align-items: center;
}

.listing-table-searchIcon {
    height: 16px;
    width:16px;
    margin-right: 5px;
}

#listing-table-body, #listing-table-head {
    width: 100%;
    background-color: white;
}

#listingContainer {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background-color: white;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow:
        0 4.5px 4.5px rgba(0, 0, 0, 0.017),
        0 12.5px 12.5px rgba(0, 0, 0, 0.025),
        0 30.1px 30.1px rgba(0, 0, 0, 0.033),
        0 100px 100px rgba(0, 0, 0, 0.05);

}

.listing-table-row, .listing-table-cell {
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */ 
    -moz-user-select: none; /* mozilla browsers */ 
    -khtml-user-select: none; /* webkit (konqueror) browsers */ 
    -ms-user-select: none; /* IE10+ */ 
}

.listing-table-row {
    height:60px;
    border-bottom: #f1f1f1 1px solid;
}

.listing-table-row:last-child {
    border-bottom: none;
}

listing-table-row:hover~.listing-table-row {
    border-bottom: none;
}

.listing-table-row, #listing-table-header {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.listing-table-row.clickable:hover {
    cursor: pointer;
    box-shadow: rgb(150 150 150 / 12%) 0px 0px 10px;
    border-bottom: none;
}

#listing-table-header td {    
    top: 105px;
    background-color: #fff;
    z-index: 1;
}

#listing-table-header td input {
    cursor: text;
    border:none;
    padding-left: 0;
    font-size:14px;
    font-weight: 600;
    height: 36px;
}

#listing-table-header td input:focus {
    outline: none;
}

#listing-table-header td input::placeholder {
    font-weight: normal;
}

.listing-table-cell {
    padding: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listing-table-cell input {
    width: 100%;
}

.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
  }
  
  .autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: 1px solid black;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
    /*width of the search input (.listing-table-cell input) */
    width: 100%;
  }
  .autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
  }
  .autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
  }
  .autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
  }

/*
    NEW LOADER STYLE
*/

#loader {
    margin-left: 36%;
    top: 50%;
    position: fixed;
}

#loader {
    display: block;
    text-align: center;
}

#loader div {
    display: inline-block;
    width: 80px;
    height: 80px;
}

#loader div:after, #table-loader:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #78efff;
    border-color:#78efff transparent#78efff transparent;
    animation: loader 1.2s linear infinite;
}

#table-loader {
    position: fixed;
    display: inline-block;
    width: 80px;
    height: 80px;
    margin-left: 1%;
    bottom: 2%;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.clearable input[type=text]{
    width: 100%;
    box-sizing: border-box;
}
.clearable-cross{
    display: none;
    padding: 0 8px;
    font-size: 1.1em;
    cursor: pointer;
}
.clearable input::-ms-clear {
    display: none;
}
.calendar {
    border:none;
    background:none;
    line-height:0;
    outline: none;
    height: 36px;
}
.fa-check {
    margin-left: 5px;
}
.icon-sort {
    cursor: pointer;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}