/*Check box and Radio button*/

.checkbox-custom,
.radio-custom {
    opacity: 0;
    position: absolute;
}

#ex3 .fa-stack[data-count]:after{
    position:absolute;
    right:0%;
    top:1%;
    content: attr(data-count);
    font-size:30%;
    padding:.6em;
    border-radius:50%;
    line-height:.8em;
    color: white;
    background:rgba(255,0,0,.85);
    text-align:center;
    min-width: 1em;
    font-weight:bold;
  }
  

.checkbox-custom,
.checkbox-custom-label,
.radio-custom,
.radio-custom-label {
    display: inline-block;
    vertical-align: middle;
    margin: 0px;
    cursor: pointer;
}

.checkbox-custom-label,
.radio-custom-label {
    position: relative;
}

.checkbox-custom-label__span,
.radio-custom-label__span {
    padding-left: 5px;
    vertical-align: middle;
}

.checkbox-custom+.checkbox-custom-label:before,
.radio-custom+.radio-custom-label:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 12px;
    height: 12px;
    padding: 2px;
    margin-right: 0px;
    text-align: center;
    line-height: 12px;
    background: #fff;
    border: #CCC 1px solid;
    border-color: #d9d9d9 #ccc #b3b3b3;
    border-radius: 4px;
}

.checkbox-custom:checked+.checkbox-custom-label:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    background: #0F60A9;
    color: #fff;
    font-size: 12px;
    line-height: 10px;
}

.radio-custom+.radio-custom-label:before {
    border-radius: 50%;
}

.radio-custom:checked+.radio-custom-label:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    color: #0F60A9;
}

.checkbox-custom:focus+.checkbox-custom-label,
.radio-custom:focus+.radio-custom-label {
    outline: 1px solid #ddd;
    /* focus style */
}

/*Custom Drop down*/

.customselectbox {
    margin: 0px;
    float: left;
    font-family: arial;
    font-size: 14px;
    color: #333;
    width: 130px;
    position: relative;
}

.select-full {
    height: 40px;
    border: #CCC 1px solid;
    border-color: #d9d9d9 #ccc #b3b3b3;
    border-radius: 4px;
    margin: 0 0 20px 0;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #141414;
    background-color: #FFF;
    position: relative;
}

.select-full:hover {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    border-color: #007eff #c4c7e8 #a1bdef;
    border-radius: 4px;
    border: 1px solid #007eff;
}

.select-full:focus {
    border-color: #007eff;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(0, 126, 255, 0.1);
    background: #fff;
}

ul,
li {
    list-style: none;
}

.selectedVal {
    border: 1px dotted #aaa;
    padding: 5px 10px;
    width: 100%;
    float: left;
    height: 37px;
    line-height: 26px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    z-index: 5;
    background: #F7F7F7;
    border: #E7EAEB 1px solid;
    color: #97999a;
}

.custom-UI {
    width: 100%;
    margin: 0;
    padding: 0;
    float: left;
    background: #eee;
    display: none;
    position: absolute;
    left: 0;
    top: 37px;
    z-index: 99;
}

.custom-UI li {
    margin: 0px;
    padding: 8px 10px;
    box-sizing: border-box;
    width: 100%;
    float: left;
    font-size: 13px;
}

.custom-UI li:hover {
    background: #ddd;
    cursor: pointer;
}

.hide {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    z-index: 1;
}

.selectedVal:before {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    content: "";
    border-top: 6px solid #97999A;
    position: absolute;
    right: 8px;
    top: 15px;
}

/*table customization*/

.responsive-table table {
    text-align: left;
    border-collapse: collapse;
    border-spacing: 0;
    
}
.responsive-table-dup table {
    text-align: left;
    border-collapse: collapse;
    border-spacing: 0;
}

.responsive-table table a.table_links {
    float: left;
    display: inline-block;
    margin-right: 10px;
}

/* .admin-table tr {
    border-bottom: #F7F7F7 1px solid;
    padding: 10px;
} */

th {
    border-bottom: #CCC 1px solid;
    padding: 10px;
}

th,
td {
    padding: 10px;
    cursor: pointer;
}

.responsive-table table tbody tr:hover {
    background: #F7F7F7;
}

.responsive-table table tbody tr td {
    /* border-bottom: #F7F7F7 1px solid; */
    border-bottom: 1px solid rgba(224, 224, 224, 1);
}

.responsive-table table tbody tr.selected {
    background-color: #F7F7F7;
}

.responsive-table table tbody td {
    /* max-width: 300px; */
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.responsive-table-dup table tbody tr:hover {
    background: #F7F7F7;
}

.responsive-table-dup table tbody tr td {
    /* border-bottom: #F7F7F7 1px solid; */
    border-bottom: 1px solid rgba(224, 224, 224, 1);
}

.responsive-table-dup table tbody tr.selected {
    background-color: #F7F7F7;
}

.responsive-table-dup table tbody td {
    /* max-width: 300px; */
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.responsive-table-dup table tbody td {
    max-width: 200px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* .custom-table table tbody td {
    white-space: pre-wrap;
    overflow: hidden;
    text-align: center;
} */

.dragAndDropTableTh {
    font-weight: normal;
    font-size: 12px;
    padding-left: 24px;
    padding-right: 24px;
    height: 56px;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: rgb(158, 158, 158);
    position: relative;
    background-color: inherit;
}