@import url('./global/fonts.css');
@import url('./global/button.css');
@import url('./global/modal.css');
/* Homestyline */
@import url('./local/home.css');
@import url('./local/form.css');
/* sidebar style  */
@import url('./local/sidebar.css');
/* swal  */
@import url('./global/swal.css');

body {
    font-family: 'Montserrat', sans-serif !important;
    position: relative;
}

.page-loader {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    top: 0;
    left: 0;
    z-index: 99999999999;
    display: grid;
    place-items: center;
}

.page-loader img {
    animation: 2s rotation linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/* Scrollbar design starts */
::-webkit-scrollbar {
    width: 10px;

}

::-webkit-scrollbar-thumb {
    background-color: #b0b0b0;
    background-clip: padding-box;
}

::-webkit-scrollbar-track {
    background-color: #bbbbbb84;
}

/* Buttons */
::-webkit-scrollbar-button:single-button {
    background-color: #dedede;
    display: block;
    border-style: solid;
    height: 13px;
    width: 10px;
    cursor: pointer;
}

/* Up */
::-webkit-scrollbar-button:single-button:vertical:decrement {
    border-width: 0 4px 4px 4px;
    border-color: transparent transparent #555555 transparent;
}

::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
    border-color: transparent transparent #777777 transparent;
}

/* Down */
::-webkit-scrollbar-button:single-button:vertical:increment {
    border-width: 4px 4px 0 4px;
    border-color: #555555 transparent transparent transparent;
}

::-webkit-scrollbar-button:vertical:single-button:increment:hover {
    border-color: #777777 transparent transparent transparent;
}

/* scrollbar design ends  */

.range-input {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #878787 50%, #CECECE 50%);
    outline: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border-radius: 0px;
}

/* Style for the thumb (the draggable part) */
.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #878787;
    cursor: pointer;
    border-radius: 50%;
}

.range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #878787;
    cursor: pointer;
    border-radius: 50%;
}


/* toggle button  */
.wemo-toggle-container {
    display: inline-block;
    position: relative;
    margin: 7px 0 0 0;
}

.wemo-toggle-input {
    display: none;
    /* Hide the default checkbox */
}

.wemo-toggle-label {
    display: block;
    width: 50px;
    height: 18px;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
    box-shadow: -2px 2px 5px #b5b5b59c inset;
}

.wemo-toggle-label:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    transition: left 0.3s ease;
}

.wemo-toggle-input:checked+.wemo-toggle-label {
    background-color: #fff;
    /* Background color when toggled on */
}


.wemo-toggle-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: -9px;
    transform: translateY(-45%);
    width: 37px;
    height: 37px;
    background-color: transparent;
    border-radius: 50%;
    overflow: hidden;
    transition: left 0.3s ease;
}

.wemo-toggle-input:checked+.wemo-toggle-label .wemo-toggle-slider {
    left: 21px;
}

.wemo-toggle-input:checked+.wemo-toggle-label .wemo-toggle-slider svg {
    transform: rotate(45deg);
}

.wemo-toggle-input:checked+.wemo-toggle-label .wemo-toggle-slider svg path {
    fill: #57D11D;
}

.wemo-toggle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


button {
    transition: all 200ms ease-in-out;
}

.content-body {
    width: calc(100% - 320px);
    margin-left: 250px;
    margin-right: 70px;
    position: relative;
    height: 100%;
    transition: all 300ms ease-in-out;
}


.content-body.toolbar-hide {
    margin-right: 0px !important;
    width: calc(100% - 250px);

}

.content-body.mobile {
    width: calc(100% - 160px);
    margin-left: 90px;
}

.content-body.mobile.toolbar-hide {
    width: calc(100% - 90px);
}

.search-bar {
    background-color: #FFE5B4;
    height: 50px;
    width: calc(100% - 40px);
    position: absolute;
    top: 5px;
    left: 20px;
    border-radius: 10px;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
}

.search-bar-wrap {
    width: 350px;
    height: 40px;
    border: 1px solid #000000;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
}

    .search-bar-wrap svg,
    .search-bar-wrap i {
        color: #000000;
        opacity: 0.6;
    }

    .search-bar-wrap input {
        width: 100%;
        border: 0;
        background-color: transparent;
        color: #000000;
        opacity: 1;
        outline: 0;
    }

        .search-bar-wrap input::placeholder {
            color: #000000;
            opacity: 0.6;
        }

.map-content-section {
    height: 100%;
}

.icon-a {
    text-decoration: none;
    color: unset;
    background-color: unset;
}

.icon-line-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
}

.data-content-section {
    height: 100vh;
    width: 100%;
    padding: 90px 20px 20px 20px;
}

.content-section-wrap {
    background-color: #EFEFEF;
    height: 100%;
    border-radius: 10px;
    padding: 10px 20px;
    overflow: auto;
    position: relative;
}

.stat-boxes {
    margin-bottom: 20px;
}

.stat-box {
    border-radius: 10px;
    overflow: hidden;
    margin: 5px 0;
}

.stat-box-head {
    padding: 15px;
}

.stat-box-body {
    background-color: #fff;
    padding: 20px;
}

.stat-heading {
    color: #fff;
    font-weight: 700;
    margin: 0;
    font-size: 20px;
    padding-left: 30px;
    position: relative;
}

.stat-heading::before {
    position: absolute;
    height: 30px;
    width: 30px;
    content: '';
    background-image: url(../media/dashboard/stat-box-icon.svg);
    left: -5px;
    top: -2px;
    background-repeat: no-repeat;
}

.stat-bar-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-bar-text h6 {
    font-weight: 700;
    margin: 0;
}

.stat-bar-text span {
    font-size: 12px;
}

.stat-bar {
    height: 15px;
    width: 100%;
    background-color: #D9D9D9;
    margin-top: 5px;
}

.stat-bar-fill {
    height: 100%;
}

.input-ranges-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.range-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-direction: row-reverse;
}

.input-ranges-wrap .range-input {
    height: 6px;
}

.input-ranges-wrap .range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
}

.input-ranges-wrap .range-input::-moz-range-thumb {
    width: 15px;
    height: 15px;
}

.input-ranges-wrap span {
    font-size: 12px;
    font-weight: 700;
}

.stat-box-1 .stat-box-head,
.stat-box-1 .stat-bar-fill {
    background-color: #77D2D2;
}

.stat-box-2 .stat-box-head,
.stat-box-2 .stat-bar-fill {
    background-color: #4B4A84;
}

.stat-box-3 .stat-box-head,
.stat-box-3 .stat-bar-fill {
    background-color: #FF9E16;
}

.stat-box-4 .stat-box-head,
.stat-box-4 .stat-bar-fill {
    background-color: #7DBFFF;
}

.wemo-card {
    background-color: #fff;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.wemo-breadcrumb {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
}

.breadcrumb-heading {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
}

.breadcrumb-ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumb-ul li {
    font-size: 12px;
    position: relative;
}

.breadcrumb-ul li a {
    text-decoration: none;
    color: #000;
}

.breadcrumb-ul li:after {
    position: absolute;
    content: '';
    background-image: url(../media/breadcrumb/caret-right.svg);
    height: 9px;
    width: 6px;
    top: 5px;
    right: -11px;
}

.breadcrumb-ul li:last-child::after {
    content: unset;
}

.breadcrumb-ul li:last-child a {
    font-weight: 600;
}

.wemo-spacer {
    width: 100%;
    border-bottom: 1px solid #828282;
    margin: 15px 0;
    position: absolute;
    left: 0;
}

.data-base-search-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.database-search-wrap {
    width: 350px;
    height: 40px;
    background: #F2F2F2;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
}

.database-search-wrap svg {
    color: #878787;
}

.database-search-wrap input {
    width: 100%;
    border: 0;
    background-color: transparent;
    color: #878787;
    opacity: 1;
    outline: 0;
}


.datafiles-card {
    background-color: #fff;
    padding: 15px 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.datafiles-card .pdf h6 {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin: 3px 0px;
    text-wrap: nowrap;
}

.datafiles-card .pdf .calender {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.datafiles-card .pdf .calender span {
    font-size: 10px;
    font-weight: 600;
}

.datafiles-data .p-wrap {
    height: 75px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.datafiles-data .p-wrap p {
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

.datafiles-action {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    list-style: none;
    margin: 10px 0 0 0;
}

.datafiles-action li a {
    text-decoration: none;
    color: unset;
    cursor: pointer;
}


.profile-heading {
    font-size: 32px;
    font-weight: 700;
    margin: 15px 0 5px 0;
}

.profile-data-section {
    padding: 50px;
    margin-top: 30px;
}

.profile-data-wrap {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
}

.profile-pic {
    height: 120px;
    width: 120px;
    border-radius: 100px;
    overflow: hidden;
}

.profile-pic img {
    height: 100%;
    width: 100%;
}

.profile-pic-wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.profile-user-name {
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
}

.profile-p {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 10px 10px 20px;
}

.profile-input-wrap {
    height: 65px;
    width: 100%;
    border: 1px solid #878787;
    border-radius: 10px;
    position: relative;
    padding: 10px;
    margin: 30px 0;
}

.profile-label {
    font-size: 16px;
    font-weight: 600;
    background-color: #fff;
    padding: 0 5px;
    position: absolute;
    top: -15px;
    left: 15px;
}

.profile-input {
    height: 100%;
    width: 100%;
    background-color: #F1F0F0;
    padding: 10px;
    outline: none;
    border: none;
    border-radius: 10px;
    color: #ADADAD;
}

.profile-input-wrap img {
    position: absolute;
    top: 22px;
    right: 25px;
    cursor: pointer;
}

.profile-button-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.user-content-section {
    height: 100vh;
    width: 100%;
    padding: 90px 20px 0 20px;
}

.user-content-section-wrap {
/*    background-color: #D2D1D1;
*/    height: calc(100% - 60px);
    border-radius: 10px;
    padding: 10px 20px;
    overflow-y: auto;
    position: relative;
    overflow-x: hidden;
}

.user-content-section-wrap .img-wrap {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display:none;
    background-image: url(../media/user/user_bg.svg);
}

.user-content-section-wrap .data-wrap {
    position: absolute;
    z-index: 999;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 20px;
}

.user-bottom-bar {
    background-color: #FFE5B4;
    width: 100%;
    padding: 12px 20px;
    border-radius: 10px 10px 0 0;
    margin-top: 10px;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.footer-text {
    margin: 0;
    font-size: 14px;
    color: #444;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.manage-user-heading {
    color: #5b5b5b;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.manage-user-head-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.manage.database-search-wrap {
    padding: 5px 25px;
}

.manage.database-search-wrap svg {
    font-size: 13px;
}

.manage.database-search-wrap input,
.filter.database-search-wrap input {
    font-weight: 700;
    font-size: 12px;
}

.filter.database-search-wrap {
    padding: 5px 25px;
    width: 180px;
}

.manage-input-wrap {
    display: flex;
    gap: 20px;
}

.dataTables_wrapper .dataTables_paginate {
    float: unset !important;
    text-align: unset !important;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 0 !important;
    border-radius: 7px !important;
    padding: 5px 13px !important;
    font-weight: 600 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    color: black !important;
}


.dataTables_wrapper .dataTables_paginate .paginate_button.next,
.dataTables_wrapper .dataTables_paginate .paginate_button.previous {
    font-weight: 500 !important;
    position: relative !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.next {
    margin-right: 30px !important;

}

.dataTables_wrapper .dataTables_paginate .paginate_button.next::after {
    content: '' !important;
    position: absolute !important;
    height: 1px;
    width: 1000px;
    border-top: 1px solid #878787;
    left: 68px;
    top: 16px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous::before {
    margin-right: 30px !important;
    content: '' !important;
    position: absolute !important;
    height: 1px;
    width: 1000px;
    border-top: 1px solid #878787;
    right: 68px;
    top: 16px;
}

.dataTables_paginate.paging_simple_numbers {
    padding-top: 5px !important;
}

.wemo-table-checkbox svg {
    cursor: pointer;
}

.wemo-datatable {
    font-size: 12px;
    font-weight: 600;
}

.wemo-datatable tbody tr td {
    border: unset !important;
}

.wemo-datatable.dataTable.stripe>tbody>tr.odd>*,
table.dataTable.display>tbody>tr.odd>* {
    box-shadow: unset !important;
}

.wemo-datatable.dataTable.display>tbody>tr.even>.sorting_1,
table.dataTable.order-column.stripe>tbody>tr.even>.sorting_1 {
    box-shadow: unset !important;
}

.wemo-datatable.dataTable.no-footer {
    border: unset !important;
}

.wemo-card.chart {
    padding: 50px 30px 50px 30px;
}

.dataTables_paginate.paging_simple_numbers {
    overflow: hidden;
}