@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');

.bg-green-custom-100 {
    background-color: #c8e6c9;
}

.header_new_text {
    font-family: 'Ubuntu', sans-serif;
}

.seldisable {
    pointer-events: none;
    background-color: #DAE0EC;
}

.custom-file input[type='file'] {
    display: none;
}

.coverimg {
    /* background-image: url('{{ asset('assets_back_end/img/bg/bg.svg') }}'); */
    background-repeat: no-repeat, no-repeat;
    background-size: cover;
}

.theme_font_color {
    /* background-color: #4caf50; */
    color: #4caf50;
}

.theme_bg_color_dark {
    background-color: #4caf50;
}

.theme_bg_color_light {
    background-color: #c5e1a5;
}

.small_font {
    font-size: 13px;
}

.display-heading th {
    background-color: #c5e1a5;
    border-top: 3px solid #4caf50;
    font-weight: 400;
    font-size: 13px;
    /* color: #fff; */
}


td {
    font-size: 13px;
    /* font-weight: 400; */
}

.table>:not(:last-child)>:last-child>* {
    border-bottom-color: #fff;
}

.dataTables_wrapper.dt-bootstrap4 .table thead tr th.sorting:before {
    content: '\f0dc';
    color: #212121;
    opacity: 1;
}

.display-heading th:first-child {
    border-top-left-radius: 0px;
}

.display-heading th:last-child {
    border-top-right-radius: 0px;
}

td {
    border-bottom: 1px solid #ddd;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    /* color: #4d6593; */
    background-color: #fff;
    border-color: #c9d2e3 #c9d2e3 #ebeef4;
    border-radius: 0px;
    border-top: 3px solid #4caf50;
    color: #212121;
}

.nav-tabs .nav-link {
    color: grey;
    margin-bottom: -1px;
    background: 0 0;
    border: 1px solid transparent;
    border-bottom: 0px solid transparent;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.box {
    position: relative;
    width: calc(var(--demo-width) * 1%);
    border: 1px dashed #ccc;
    padding: 1em;
    margin: -0.5em;
    border-radius: 0.3em;
}

.box::after {
    font-size: 0.8em;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 1px dashed #ccc;
    padding: 0 0.65em;
    border-radius: 1em;
    counter-reset: dw var(--demo-width);
    content: counter(dw) "%";
}

h3 {
    margin: 0 0 0.5em 0;
}

p {
    margin: 0 0 1em 0;
}

hr {
    border: 1px dashed #ccc;
    height: 0;
    margin: 1em 0;
}

.fancy label input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    display: block;
    padding: 0;
    border: 0;
    width: auto;
    height: 0.25em;
    border-radius: 1em;
    cursor: pointer;
    font-size: inherit;
}

.fancy label input[type=range]::-moz-range-track {
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    outline: none;
}

.fancy label input[type=range]::-moz-focus-outer {
    border: 0;
}

.fancy label input[type=range]::-moz-range-thumb {
    -moz-appearance: none;
    appearance: none;
    width: 1em;
    height: 1em;
    border: none;
    box-shadow: 0 0 0 0.2em #1fc2f5;
    border-radius: 1em;
    background: #fff;
    transform: scale(0.7);
    -moz-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.fancy label input[type=range]::-moz-range-thumb:focus, .fancy label input[type=range]::-moz-range-thumb:active {
    -moz-appearance: none;
    appearance: none;
    transform: scale(1.5);
}

.fancy label input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1em;
    height: 1em;
    border: none;
    box-shadow: 0 0 0 0.2em #1fc2f5;
    border-radius: 1em;
    background: #fff;
    transform: scale(0.8);
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.fancy label input[type=range]::-webkit-slider-thumb:focus, .fancy label input[type=range]::-webkit-slider-thumb:active {
    -webkit-appearance: none;
    appearance: none;
    transform: scale(1.1);
}

.round {
    position: relative;
}

.round label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 28px;
    left: 0;
    position: absolute;
    top: 0;
    width: 28px;
}

.round label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 7px;
    opacity: 0;
    position: absolute;
    top: 8px;
    transform: rotate(-45deg);
    width: 12px;
}

.round input[type="checkbox"] {
    visibility: hidden;
}

.round input[type="checkbox"]:checked+label {
    background-color: #66bb6a;
    border-color: #66bb6a;
}

.round input[type="checkbox"]:checked+label:after {
    opacity: 1;
}