@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%;
}

#listingContainer {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.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:nth-child(even) {
    background-color: rgb(240 240 240 / 40%);
}

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

.listing-table-row {
    border: 1px solid transparent;
    border-width: 0px 1px;
}

.listing-table-row:hover {
    border: 1px solid #E20E17;
}

.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;
    z-index: 1;
}

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

#listing-table-header td .displayName {
    padding-left: 0;
    font-size: 14px;
    padding-top: 8px;
    margin-bottom: 6px;
    font-weight: 400;
    color: #9A9A9A
}

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

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

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

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

/******** LOADER *********/
#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 #E20E17;
    border-color:#E20E17 transparent#E20E17 transparent;
    animation: loader 1.2s linear infinite;
}

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

#CKEDITOR-loader:after {
    content: " ";
    display: block;
    width: 32px;
    height: 32px;
    margin: 8px;
    border-radius: 50%;
    border: 2px solid #E20E17;
    border-color:#E20E17 transparent#E20E17 transparent;
    animation: loader 1.2s linear infinite;
}

#CKEDITOR-loader {
    position: absolute;
    display: inline-block;
    width: 50px;
    height: 50px;
    bottom: 35px;
    right: 10px;
}

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

/********* INPUT ICONS **********/
.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;
}