
.text-elipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cp {
    cursor: pointer;
}

.sel-none {
    /* Remove highlight ability */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.disabled {
    pointer-events: none;
    opacity: 0.4;
}


/* DMS STYLING FOR FOLDER AND FILE */

.folder {
    padding: 5px;
}

.folder-active {
    background-color: #f4f4f4;
    border-radius: 5px;
}

.folder:hover {
    cursor: pointer;
    background-color: #eee;
    border-radius: 5px;
}

.file {
    padding: 5px;
}

.file:hover {
    cursor: pointer;
    /* font-weight: 600; */
    background-color: #6baed860;
    border-radius: 5px;
}

.file td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.file td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}


/* INPUT STYLING FOR MOVING LABELS */

.input-field {
    position: relative;
}

.input-field input,
.input-field textarea {
    color: #495057;
    outline: none;
}

.input-field label {
    position: absolute;
    top: 50%;
    left: 0.6rem;
    transform: translateY(-50%);
    color: #adb6be;
    font-size: 14px;
    font-weight: normal;
    pointer-events: none;
    transition: 0.3s ease-out all;
}

textarea:focus~label,
textarea:valid~label,
input:focus~label,
input:disabled~label,
input:valid~label,
select:valid~label,
select:active~label,
select option:checked~label {
    top: -1px;
    left: 12px;
    padding: 0 5px;
    background: #fff;
    color: #adb6be;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24
}

.fs-material-9 {
    font-size: 0.65rem;
    line-height: initial;
    font-variation-settings: 'FILL' 0, 'wght' 600, 'GRAD' 0, 'opsz' 10
}

label .material-symbols-outlined {
    font-size: 1rem;
    line-height: initial;
    color: #59606D;
    margin-right: 5px;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    border: 1px solid #6BAED8;
}

.border-tl-br {
    border-top-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.bg-cust {
    background-color: #6BAED8;
}

.map-footer {
    height: 20px;
    bottom: 0px;
    border-top-left-radius: 0px;
    background: rgba(173, 181, 189, 0.511)
}

.bg-white-65 {
    background: rgba(255, 255, 255, 0.65);
}

.bg-white-75 {
    background: rgba(255, 255, 255, 0.75);
}

.bg-gradient-gray {
    background: linear-gradient(25deg, #59606D 0%, #757e8a 100%);
}

.bg-gradient-blue {
    background: linear-gradient(25deg, #6BAED8 0%, #8ccaf0 100%);
}


/* LOADER TO USE */

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #006055 #006055 transparent transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after,
.loader::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent #D7293B #D7293B;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}

.loader::before {
    width: 32px;
    height: 32px;
    border-color: #34B689 #34B689 transparent transparent;
    animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.menu-transition {
    transition: width 0.3s ease-in-out;
}

.hover-item {
    transition: background-color 0.3s ease-in-out;
}

.hover-item:hover {
    background-color: rgb(242, 242, 242);
}

.c-tooltip-container {
    font-size: 11px !important;
    background-color: rgba(255, 255, 255, 0) !important;
    border: none !important;
    color: white !important;
    font-size: 12px !important;
    text-shadow: 0px 0px 1px #000, 0px 0px 3px #000, 0px 0px 3px #000, 0px 0px 3px #000;
    letter-spacing: 0.5px !important;
    box-shadow: none !important;
}

.pulse-animate {
    animation: pulse2 1s infinite;
}

@keyframes pulse2 {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.bg-white-cust {
    background-color: white;
}

.color-btn::after {
    content: "";
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #000;
    rotate: -45deg;
}

.marker-custom-circle-class {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 0.2rem
}

.rectangle-transition {
    transition: all 2s ease-in-out;
    /* Adjust the duration and easing as needed */
}

.minimized {
    height: clamp(25%, 20vh, 50%) !important;
    width: clamp(25%, 25vw, 30%) !important;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
    /* transition: all 500ms ease-in-out; */
}

.navbar-cust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    text-align: center;
    cursor: pointer;
}

.popup-no-padding .leaflet-popup-content-wrapper .leaflet-popup-content {
    padding: 0px !important;
    margin: 0px !important;
}

.popup-custom {
    /* padding: 1rem; */
    width: 250px
}

.popup-custom-input {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    border-width: 1px !important;
}

.image-container {
    width: 100%;
    height: 100px;
    border: 1px solid var(--bs-gray-400);
    background-color: var(--bs-gray-100);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-image {
    transform: scale(0.5);
    border: 2px solid var(--bs-gray-400)
}

.leaflet-custom-icon {
    background-color: transparent !important;
    border: none !important;
}

.border-svg-1 {
    stroke: #ffffffb6 !important;
    stroke-width: 3px !important;
    stroke-linejoin: round;
    overflow: visible;
}

.center-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hidden-color-picker {
    height: 0px;
    width: 0px;
    visibility: hidden;
}

.color-picker-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #59606d
}

.label-svg-center {
    gap: 20px 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.multi-select-head {
    background-color: var(--bs-sidenav-gray);
    width: fit-content;
    padding: 0.25rem;
    border-radius: 0.25rem;
    gap: 0.25rem;
}

.text-icon {
    color: var(--bs-icon-bg);
}

.text-disabled {
    color: var(--bs-gray-500);
}

.bg-icon {
    background-color: var(--bs-icon-bg) !important;
}

.selected-multi-select-head-item {
    background-color: var(--bs-icon-bg) !important;
    color: white !important;
    border-radius: 0.25rem;
}

.multi-select-head-item {
    background-color: transparent;
    transition: all 0.15s ease-in-out;
}

.nav-slider-container {
    height: 100%;
    top: 0;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    transition: all 0.25s ease-out;
}

.nav-slider {
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px solid var(--bs-icon-bg);
    border-radius: 0.25rem;
}

.bg-nav {
    background-color: var(--bs-sidenav-gray);
}

.vertical-align-middle {
    vertical-align: middle;
}

.dotted-spaced {
    background-position: top;
    background-size: 10px 1px;
    background-repeat: repeat-x;
}

.dotted-background-primary {
    background-image: linear-gradient(to right, #364156 10%, #364156 0%);
}

.hover-item {
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
    user-select: none;
    border-radius: 0.25rem;
    padding-left: 0.25rem;
}

.hover-item:hover {
    background-color: rgb(242, 242, 242);
}

.h-30px {
    height: 30px;
}

.w-20px {
    width: 20px;
}

.w-80px {
    width: 80px;
}

.w-100px {
    width: 100px;
}

.max-w-80 {
    max-width: 80%;
}

.h-20px {
    height: 20px;
}

.site-item {
    background-color: var(--bs-gray-100);
    position: relative;
}

.hide-item-success-tag {
    background-color: var(--bs-gray-100);
    position: relative;
}

.site-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0.5rem;
    height: 100%;
    background-color: #8AC441;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.site-item-success:before {
    background-color: #8AC441;
}

.site-item-info:before{
    background-color: var(--bs-info);
}

.site-item-secondary:before{
    background-color: var(--bs-secondary);
}

.site-item-transparent:before {
    background-color: transparent;
}

.site-item-danger:before {
    background-color: #e17360 !important;
}

.superadmin_loader {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: red;
    opacity: 0.4;
}

.border-gray-500 {
    border: 1px solid var(--bs-gray-500);
}

.hover-grow {
    transition: all 0.1s ease-in-out;
    border-radius: 0.25rem;
}

.hover-grow:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.word-break {
    word-break: break-word;
    white-space: break-spaces;
}

.max-width-77p {
    max-width: 77%;
}

#particles-js {

    width: 100%;
    height: 500px;
    background: linear-gradient(to left, #6442ff 0%, #9012fe 100%);
}

.debug {
    border: 1px solid red;
}

.icon-contianer {
    display: flex;
    align-items: center;
    justify-content: space-evenly;

    height: 105px;
    overflow-y: auto;

    border-radius: 0.5rem;
    border: 1px solid var(--bs-gray-400);
}

.close-button-input {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 14px;
}

.selected-value {
    border: 1px solid var(--bs-icon-bg);
}

.table-head thead th {
    font-size: 0.65rem;
    border-right: 1px solid #78818E;
    color: #fff !important;
}

.choices[data-type*='select-one']:after{
    content: "" !important;
    height: 0px;
    top: 50% !important;
    transform: none !important
}

.choices__list--dropdown, .choices__list[aria-expanded]{
    border-top-right-radius: 2px !important;
    border-top-left-radius: 2px !important;
    top: 0 !important;
    margin-top: 5px !important;
}

.dt-layout-cell {
    overflow-x: auto;
}

.ellipsis-text-overflow{
    width: 100px;
    white-space: nowrap;
    overflow: hidden;
}

.span-ellipsis-text-overflow{
    overflow: hidden;
    text-overflow: ellipsis;
}

.no-select{
    user-select: none;
}

.align-setting-left{
    border: 1px solid var(--bs-icon-bg);
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.align-setting-right{
    border: 1px solid var(--bs-icon-bg);
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.align-setting-center{
    border: 1px solid var(--bs-icon-bg);
}

.choices-input-normal{
    border: none;
    background-color: transparent;
}

.multi-input{
    border: none;
    background-color: transparent;
    font-size: 0.75rem;
}

.multi-input:focus{
    outline: none;
}

.ms-drop{
    margin-bottom: 20px
}