.text-light {
    color: #ffffff !important;
}
.bg-light-red {
    background-color: #f6e6e6!important;
}
.bg-light-green {
    background-color: #dcf9d9!important;
}

.hero {
    background-image: url('../../assets/images/header_admin.png');
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero .hero-content {
    width: 55%;
}
.hero .hero-content .shortcuts-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.hero .hero-content .shortcuts-wrapper .btn {
    flex: 1;
}
.hero .app-search-hero #app-search-hero {
    height: 60px;
    font-size: 20px;
}

.hero .app-search-hero .app-search-box .input-group-text {
    background: #fff;
}
.hero .app-search-hero .app-search-box .input-group-text i {
    font-size: 30px;
}

.hero .app-search-hero #app-search-heroautocomplete-list {
    max-height: 350px;
    overflow: auto;
}

.drag-disabled {
    pointer-events: none;
}

.drag-enabled {
    pointer-events: all;
}

.autocomplete-v3 {
    position: relative;
    display: block;
}

.autocomplete-v3-items {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 400px;
    overflow: auto;
}

.autocomplete-v3-items > li {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

.autocomplete-v3-items > li:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
}

.autocomplete-v3-items .autocomplete-v3-active {
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.left-sharp-corners {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
}

.right-sharp-corners {
    border-bottom-right-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: block;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div.span {
    margin-left: 2px !important;
}

.autocomplete-items p {
    display: block;
    font-size: 10px;
    margin: 0;
}

.autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
}

.autocomplete-items div.no-hover {
    padding: 10px;
    cursor: default;
    background-color: var(--bs-gray);
    border-bottom: 0px;
}

.autocomplete-items div.no-hover h5 {
    color: #ffffff;
}

.autocomplete-items div.no-hover:hover {
    /*when hovering an item:*/
    background-color: var(--bs-gray);
}

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.shakeAnimation {
    /* Start the shake animation and make the animation last for 0.5 seconds */
    animation: shake 0.5s;

    /* When the animation is finished, start again */
    animation-iteration-count: infinite;
}

.file-drop-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 450px;
    max-width: 100%;
    padding: 25px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    transition: 0.2s;
}

.file-drop-area.is-active {
    background-color: rgba(255, 255, 255, 0.5);
}

.fake-btn {
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 8px 15px;
    margin-right: 10px;
    font-size: 12px;
    text-transform: uppercase;
}

.file-msg {
    font-size: small;
    font-weight: 300;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
}

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

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.mfp-wrap {
    z-index: 2000 !important;
}

a[data-fancybox] img {
    cursor: zoom-in;
}

.fancybox__container {
    --carousel-button-bg: rgb(0 0 0 / 44%);

    --carousel-button-svg-width: 24px;
    --carousel-button-svg-height: 24px;

    --carousel-button-svg-stroke-width: 2.5;
    --carousel-button-svg-filter: none;
}

.fancybox__nav {
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px;

    --carousel-button-svg-stroke-width: 3;
}

.fancybox__nav .carousel__button.is-prev {
    left: 30px;
}

.fancybox__nav .carousel__button.is-next {
    right: 30px;
}

.carousel__button.is-close {
    right: 16px;
}

.fancybox__slide {
    padding: 0;
}

.fancybox__thumbs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.fancybox__thumbs .carousel__slide {
    padding: 20px 10px;
    overflow: visible;
}

.fancybox__thumb {
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3),
    0 2px 4px -1px rgba(0, 0, 0, 0.26);
}

.is-nav-selected .fancybox__thumb {
    transform: scale(1.25);
}

.is-nav-selected .fancybox__thumb::after {
    display: none;
}

.border-dashed {
    border: 1px dashed var(--bs-success) !important;
}

.dnd-active {
    position: relative;
}

/*
.dnd-active::before {
    content: '';
    position: absolute;
    top:0;
    left: 0;
    z-index:2;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 30%;
    background-color: var(--bs-warning);
}*/

.dnd-active::after {
    --borderWidth: 2px;
    content: '';
    position: absolute;
    top: calc(-1 * var(--borderWidth));
    left: calc(-1 * var(--borderWidth));
    height: calc(100% + var(--borderWidth) * 2);
    width: calc(100% + var(--borderWidth) * 2);
    background: linear-gradient(90deg, rgb(93, 120, 255), rgb(10, 187, 135), rgb(255, 184, 34), rgb(253, 57, 122), rgb(3, 169, 244));
    border-radius: calc(2 * var(--borderWidth));
    z-index: -1;
    animation: animatedgradient 2s linear infinite;
    background-size: 300% 300%;
    box-sizing: border-box;
}

@keyframes animatedgradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.map {
    height: 400px;
}

.gis-container,
#connection-manager-map {
    height: calc(100vh - 125px);
    z-index: 10;
}

.gis-sb-left {
    flex-basis: 300px;
    box-shadow: 3px 0px 3px rgba(0, 0, 0, 0.1);
    z-index: 30;
    height: calc(100vh - 125px);
    overflow: auto;
    box-sizing: border-box;
    padding-bottom: 30px;
}

.gis-sb-right {
    flex-basis: 50vh;
    box-shadow: -3px 0px 3px rgba(0, 0, 0, 0.1);
    z-index: 30;
    height: calc(100vh - 125px);
    overflow: auto;
    transition: all .4s ease-in-out;
}

body:has(.gis-sb-right.expand-sidebar) {
    overflow-y: hidden;
}

.gis-sb-right.expand-sidebar {
    flex-grow: .3!important;
}

@media (max-width: 992px) {
    .gis-sb-btn {
        top: 130px !important;
    }
}

.gis-sb-btn {
    position: absolute;
    top: 190px;
    z-index: 20;
}

.gis-status {
    position: absolute;
    right: 60px;
    top: 10px;
    background: #f86262;
    padding: 3px 5px;
    font-size: 16px;
    z-index: 20;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    color: #fff;
}

.gis-sb-btn > * {
    height: 40px;
}

.gis-sb-btn-lt {
    left: 10px;
}

.gis-sb-btn-rt {
    right: 60px;
    top: 136px;
}

.gis-loading {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    border-radius: 6px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    color: #666;
    z-index: 100;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.gis-text-layer {
    position: fixed;
    left: 50%;
    top: 200px;
    transform: translate(-50%, -50%);
    border-radius: 6px;
    padding: 15px 20px;
    color: #fff;
    z-index: 100;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.gis-text-layer b {
    display: block;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.gis-text-layer p {
    margin: 0;
    text-align: center;
}

.gm-style-iw-a {
    margin-top: -10px;
}

.mapinfobox {
    min-width: 30px;
    min-height: 30px;
    max-width: 250px;
}

.mapinfobox h1 {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.modal-content {
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
}

.gis-sb-right .nav-tabs .nav-link.active {
    background-color: #e9e9e9;
}

.segment-nav li.nav-item {
    margin-bottom: -1px !important;
}

.gis-marker-label {
    background: rgba(54, 255, 0, 0.7);
    padding: 2px 5px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.note_flag_list {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.note_flag {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
    border: 2px solid #ccc;
}

.note_flag:hover, .note_flag.nf_active {
    border-color: #000;
}

.note_item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.note_item .note_user {
    width: 32px;
    height: 32px;
    min-width: 32px;
    line-height: 32px;
    border-radius: 50%;
    color: #444;
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    margin-top: 5px;
}

.note_item.note_has_flag .note_user {
    color: #fff;
}

.note_item .note {
    border-radius: 5px;
    background: #f6f6f6;
    padding: 0 10px;
    flex-grow: 1;
}

.note_item p {
    margin: 0;
    padding: 0;
}

.note_item .note_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.note_item .note_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
}

.form_lbl {
    display: flex;
    align-items: center;
    gap: 5px;
}

.layer-color-box {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    display: block;
}

.small-box {
    width: 12px;
    height: 12px;
}

/* tree for layer module main listing */
.tree_b {
    display: flex;
    align-items: center;
    margin: 6px 0;
    position: relative;
}

.tree_b .tree_p {
    padding: 4px 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    margin-right: 10px;
    position: relative;
    background: #fff;
    border-radius: 5px;
}

.tree_b .tree_p.ina {
    background: #f0f0f0;
    color: #ccc;
}

.tree_b .tree_p a {
    color: inherit;
    line-height: 15px;
}

.tree_b .tree_p.has_children > .l_aft {
    display: block;
    position: absolute;
    width: 10px;
    right: -11px;
    top: 50%;
    border-top: 1px solid #ddd;
}

.tree_b .tree_p img {
    width: 40px;
    height: 40px;
    margin: -4px 5px -4px -8px;
    border-radius: 5px 0 0 5px;
}

.tree_b .tree_c {
    margin-left: 10px;
    position: relative;
}

.tree_b .tree_c > .tree_b > .tree_p > .l_bef {
    display: block;
    position: absolute;
    width: 10px;
    left: -11px;
    top: 50%;
    border-top: 1px solid #ddd;
}

.tree_b .tree_c .tree_b > .l_hor {
    display: block;
    position: absolute;
    left: -11px;
    top: -5px;
    bottom: -5px;
    border-left: 1px solid #ddd;
}

.tree_b .tree_c > .tree_b:first-child > .l_hor {
    top: 50%;
}

.tree_b .tree_c > .tree_b:last-child > .l_hor {
    bottom: 50%;
}

/* tree for filtering purposes */
.tree2_c {
    padding-left: 19px;
}

.tree2_b a.fg {
    line-height: 14px;
    height: 14px;
    overflow: hidden;
    font-size: 13px;
}

.color-label {
    margin: 2px 0;
}

.color-label a {
    color: #6c757d;
}

.color-label a.active {
    color: #3283f6;
    text-decoration: underline;
}

.color-label .tree-add-new {
    margin-left: 38px;
    font-size: 12px;
    line-height: 14px;
    color: #999;
    margin-bottom: 2px;
}

.color-label .layer-color-box {
    width: 13px;
    height: 13px;
}

.color-label .fa-star {
    color: red;
    font-size: 12px;
    width: 13px;
    text-align: center;
    line-height: 13px;
}

.tree-expand-btn {
    margin-left: 7px;
    margin-right: 7px;
    line-height: 14px;
    display: block;
}

#qr_code_holder svg {
    max-width: 100%;
    height: auto;
}

.qr_code_holder svg {
    max-width: 100%;
    height: auto;
}


@media (max-width: 640px) {
    .mb-xs-1 {
        margin-bottom: 5px;
    }

    .mb-xs-2 {
        margin-bottom: 10px;
    }

    .mb-xs-3 {
        margin-bottom: 15px;
    }

    .mb-xs-4 {
        margin-bottom: 20px;
    }
}

.tinylabel {
    display: inline-block;
    padding: 0px 4px;
    font-style: normal;
    background: #17a2b8;
    font-weight: 400;
    font-size: 9px;
    border-radius: 2px;
    color: #fff;
    line-height: 14px;
}

.tinylabel.alt1 {
    background: #dc3545;
}

.tinylabel.alt2 {
    background: #28a745;
}

.tinyico {
    font-size: 9px;
}

tr.nobt td {
    border-top: hidden;
}

tr.nopt td {
    padding-top: 0;
}

.text-tiny {
    font-size: 9px;
}

.text-tiny.compress-lh {
    line-height: 9px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #3283f6 !important;
}

.progress-bar-e {
    height: 12px;
    border-radius: 3px;
    background: #fafafa;
    position: relative;
}

.progress-bar-e b {
    height: 12px;
    border-radius: 3px;
    background: #3283f6;
    display: block;
    width: 0;
}

.progress-bar-e em {
    height: 12px;
    display: flex;
    align-items: center;
    padding: 0 3px;
    font-size: 7px;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    font-style: normal;
}

.flex-gap {
    gap: .3rem .8rem;
}

.flex-gap-2 {
    gap: .8rem .8rem;
}

.gg-maps-frame {
    width: 100%;
    height: 300px;
}

.opacity-20 {
    opacity: .2;
}
.opacity-25 {
    opacity: .25;
}
.opacity-50 {
    opacity: .5;
}

span.fa-fw i {
    width: 1.25em;
    text-align: center;
}

.collapsed .fa-angle-down::before {
    content: "\f105";
}

.text-link {
    color: #3283f6;
}

.control-label {
    margin-bottom: 3px;
}

.btn-number {
    position: relative;
}

.btn-number em {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -150%);
    display: block;
}

.btn-number em b {
    font-style: normal;
    font-weight: 400;
    font-size: 9px;
    display: block;
    padding: 1px 3px;
    border-radius: 3px;
    background: #ff0000;
    color: #fff;
    line-height: 11px;
}


.media-item {
    flex: 100%;
}

@media (min-width: 576px) {
    .media-item {
        flex: 100%;
    }
}

@media (min-width: 768px) {
    .media-item {
        flex: 50%;
    }
}

@media (min-width: 992px) {
    .media-item {
        flex: 33.32%;
    }
}

@media (min-width: 1200px) {

}

@media (min-width: 1400px) {

}

.g-map-base {
    background: none padding-box rgb(255, 255, 255);
    border: 0;
    box-shadow: rgba(0, 0, 0, 0.3) 0 1px 4px -1px;
    box-sizing: border-box;
}

.g-map-text {
    font-size: 18px;
    font-family: Roboto, Arial, sans-serif;
}

.g-map-selector-btn {
    margin-top: 10px;
    padding: 5px;
}

.g-map-btn {
    border-radius: 2px;
    height: 40px;
}

.g-map-overlay-btn {
    width: 40px;
    margin-right: 10px;
    margin-bottom: 20px;
}

.g-map-overlay {
    border-radius: 8px;
    /*height: 220px;*/
    width: 240px;
    padding: 16px 24px 20px;
    margin-right: 65px;
    margin-bottom: -223px;
}

.g-map-overlay-header {
    color: #202124;
    font-family: "Google Sans", sans-serif;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    margin-top: 0;
    margin-bottom: 8px;
}

.g-map-overlay-label {
    color: #70757a;
    display: block;
    font-size: 12px;
    line-height: 16px;
    margin-top: 4px;
    font-weight: 400;
    cursor: pointer;
}

.g-map-placeholder {
    height: 48px;
    width: 48px;
}

.g-map-icon {
    height: 48px;
    width: 48px;
    background-size: 48px 48px;
    background-position: center;
    border-radius: 5px;
    border: 0;
    margin-bottom: 5px;
}

.g-map-container {
    cursor: pointer;
}

.g-map-container:hover > .g-map-icon {
    border: 2px solid steelblue;
}

.g-map-container:hover > .g-map-overlay-label {
    color: steelblue;
    font-weight: 500;
}

.g-map-selected {
    border: 2px solid steelblue;
}

.g-map-transit-icon {
    background-image: url('../../assets/images/icons/transit.png');
}

.g-map-traffic-icon {
    background-image: url('../../assets/images/icons/traffic.png');
}

.g-map-biking-icon {
    background-image: url('../../assets/images/icons/biking.png');
}

.g-map-terrain-icon {
    background-image: url('../../assets/images/icons/terrain.png');
}

.g-map-air-quality-icon {
    background-image: url('../../assets/images/icons/air-quality.png');
}

.proposal-rejected {
    background-color: rgba(248, 98, 98, 0.12);
}

.proposal-accepted {
    background-color: rgba(68, 207, 156, 0.12);
}

.proposal-requested {
    background-color: rgba(252, 192, 21, 0.12)
}

.cursor-pointer {
    cursor: pointer;
}

.hover-text-light:hover > * {
    color: white;
}

.gap-05 {
    gap: 0.125rem !important;
}

.gap-04 {
    gap: 0.100rem !important;
}

.gap-03 {
    gap: 0.075rem !important;
}

.gap-02 {
    gap: 0.025rem !important;
}

.gap-01 {
    gap: 0.01rem !important;
}

.font-10 {
    font-size: 10px !important;
}

.font-9 {
    font-size: 9px !important;
}

.font-8 {
    font-size: 8px !important;
}

.font-7 {
    font-size: 7px !important;
}

.font-6 {
    font-size: 6px !important;
}


@media (min-width: 992px) {
    .modal-xxl {
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xxl {
        max-width: 1140px;
    }
}

@media (min-width: 1600px) {
    .modal-xxl {
        max-width: 1600px;
    }
}

@media (max-width: 575.98px) {
    .btn-xs-xs, .btn-sm-xs, .btn-md-xs, .btn-lg-xs, .btn-xl-xs {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .btn-xs-sm {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .btn-xs-lg {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }


    .mt-xs-0 {
        margin-top: 0 !important;
    }

    .mt-xs-1 {
        margin-top: 0.375rem !important;
    }

    .mt-xs-2 {
        margin-top: 0.75rem !important;
    }

    .mt-xs-3 {
        margin-top: 1.5rem !important;
    }

    .mt-xs-4 {
        margin-top: 2.25rem !important;
    }

    .mt-xs-5 {
        margin-top: 4.5rem !important;
    }

    .mt-xs-auto {
        margin-top: auto !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .btn-sm-xs {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .btn-sm-sm {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .btn-sm-lg {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .btn-md-xs {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .btn-md-sm {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .btn-md-lg {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .btn-lg-xs {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .btn-lg-sm {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .btn-lg-lg {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }
}

@media (min-width: 1200px) {
    .btn-xl-xs {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .btn-xl-sm {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .btn-xl-lg {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }
}

.fancybox__slide::before, .fancybox__slide::after {
    margin: 30px !important;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
    height: 85%;
}

.px-05 {
    padding-left: .1875rem !important;
    padding-right: .1875rem !important
}


.gis-filter-group {
    position: absolute;
    top: 10px;
    left: 335px;
    z-index: 20;
}

.form-select option:disabled {
    color: color-mix(in srgb, currentColor 25%, white);
}

.gis-filter-group .bootstrap-select > .dropdown-toggle.btn-gis-custom {
    background: white;
    color: black;
    font-size: 16px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 1px 4px -1px;
    font-weight: 600;
    border: none;
    padding: 0.5rem 1rem;
}

.gis-filter-group .bootstrap-select > .dropdown-toggle.btn-gis-custom:hover,
.gis-filter-group .bootstrap-select > .dropdown-toggle.btn-gis-custom:active {
    background: rgb(235, 235, 235);
    color: black;
}

.gis-filter-group .bootstrap-select > .dropdown-toggle.btn-gis-custom:focus {
    outline: none !important;
    color: black;
}

.btn-gis-custom::after {
    font-weight: 500;
}

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

.rotate-90 {
    transform: rotate(90deg);
}

.flex-line-break {
    flex-basis: 100%;
    height: 0;
}
.flex-basis-1 {
    flex-basis: 100%;
}

#gis-entity-info-window,
.fibers-entity-info-window {
    top: 60px;
    left: 10px;
    z-index: 20;
    padding: .75rem;
    box-shadow: rgba(0, 0, 0, 0.3) 0 1px 4px -1px;
    border-radius: 0.15rem;
}
.fibers-entity-info-window {
    opacity: .5;
    transition: opacity .3s ease-in-out;
}
.fibers-entity-info-window:hover {
    opacity: 1;
    z-index: 50;
}
#gis-entity-info-window-content,
.fibers-entity-info-window-content {
    max-height: 600px;
    overflow-y: auto;
}
.fibers-entity-info-window-content {
    max-width: 300px;
}

.GMAMP-maps-pin-view {
    transform: translate(0, 24px);
}

#current-position-container {
    position: absolute;
    bottom: 25px;
    right: 60px;
    min-width: auto;
    z-index: 10;
    padding: .2rem .5rem;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.3) 0 1px 4px -1px;
    border-radius: .15rem;
    font-size: .75rem;
}

.content-with-sticky-title {
    padding-top: 60px;
}

.content-with-sticky-title .topnav {
    background-color: #f5f6f9;
    margin-top: -60px;
    z-index: 98;
    box-shadow: unset;
    height: auto;
}

.content-with-sticky-title .topnav .navbar {
    padding: 16px 0     ;
}

.content-with-sticky-title .topnav .page-title-box {
    width: 100%;
}

.content-with-sticky-title .topnav .page-title-box .page-title {
    line-height: 1.2;
}
.topnav-presentation-mode {
    display: none;
}

.presentation-mode-on .topnav-presentation-mode {
    display: block;
}

.presentation-mode-on.content-with-sticky-title {
    padding-top: 133px;
}

.presentation-mode-on.content-with-sticky-title .topnav {
    margin-top: -133px;
}
.card-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.card-wrapper .card-image,
.card-wrapper .card-actions {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.card-wrapper .card-image img {
    height: 96px;
    width: 96px;
}

.card-wrapper .card-content {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
}
#uploaded-media {
    z-index: 97;
    background: white;
}

.actions-wrapper {
    display: none;
}

.presentation-mode-on .actions-wrapper {
    display: block;
}
.presentation-mode-on .actions-wrapper input {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
.presentation-mode-on .actions-wrapper input ~ .description {
    display: block;
}
.presentation-mode-on .actions-wrapper input ~ .description-clicked {
    display: none;
}
.presentation-mode-on .actions-wrapper input:checked ~ .description {
    display: none;
}
.presentation-mode-on .actions-wrapper input:checked ~ .description-clicked {
    display: block;
}
.presentation-mode-on .media-container-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
    margin-left: -10px;
    margin-right: -10px;
}
.media-container-wrapper .card {
    display: flex;
}

.presentation-mode-on .media-container-wrapper .flex-100 {
    flex: 100%;
}
.presentation-mode-on .media-container-wrapper .card-outer {
    flex: 1;
    max-width: 25%;
    flex-basis: 23%;
    padding-left: 10px;
    padding-right: 10px;
}
.presentation-mode-on .media-container-wrapper .card .card-wrapper {
    display: flex;
    flex-direction: column;
}

.presentation-mode-on .media-container-wrapper .card .card-wrapper .card-image {
    flex-direction: column;
}
.presentation-mode-on .media-container-wrapper .card .card-wrapper .card-image,
.presentation-mode-on .media-container-wrapper .card .card-wrapper .card-actions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.presentation-mode-on .media-container-wrapper .card .card-wrapper .card-image a {
    width: 100%;
    display: block;
}
.presentation-mode-on .media-container-wrapper .card .card-wrapper .card-image img {
    width: 100%;
    height: auto;
}
.presentation-mode-on .media-container-wrapper .card .card-wrapper .card-content {
    width: 100%;
    padding: 0 1rem;
}
.dd-list .dd-list .actions-wrapper {
    display: none;
}



@media (min-width: 991.98px) {
    .container-fluid .navbar .top-menu-scroll {
        display: block !important;
    }

    .top-menu-scroll {
        /*margin-right: 200px !important;*/
        display: block !important;
        position: absolute;
        top: 0px;
        width: 100% !important;
        overflow-y: hidden;
        overflow-x: auto;
    }

    .top-menu-scroll.big {
        height: 500px;
    }

    .top-menu-scroll::-webkit-scrollbar {
        display: none;
    }

    .navbar-nav {
        /*margin-right: 200px !important;*/
        width: 100% !important;
        overflow-x: visible;
        overflow-y: visible;
        scrollbar-width: none;
    }

    .navbar-nav li {
        width: fit-content;
        word-break: keep-all;
        flex-shrink: 0;
        overflow-y: visible;
    }

    .navbar-nav li:last-child {
        /*margin-right: 100px !important;*/
    }

    .overflow-custom-class {
        max-height: 600px;
        overflow-y: auto;
        overflow-x: hidden;
    }
}

#conduit-paths .path {
    transition: box-shadow .3s ease-in-out;
}
#conduit-paths .path[data-selected] {
    box-shadow: inset 0 0 0 2px #00ff00;
}
.form-control:disabled, .form-control[readonly] {
    background-color: #d1d1d1;
}

#span-path-accord .dd-list .dd-item .dd-handle {
    background-color: #fff;
    box-shadow: 0px 0px 5px -1px #e3e3e3;
}
#span-path-accord .card-header,
.microducts-fibers .card-header {
    cursor: pointer;
}
#fibers-accord .card-body {
    background-color: #edeff1;
    border-top: 2px solid #f5f6f9;
    border-radius: 8px;
}
#conduit-microduct-container .dd-list .dd-item .dd-handle:hover,
#manhole-cables-accord .dd-list .dd-item .dd-handle:hover {
    color: #6c757d;
}
#conduit-microduct-container .btn.btn-soft-danger-important,
#manhole-cables-accord .btn.btn-soft-danger-important {
    color: #f86262!important;
}
#conduit-microduct-container .btn.btn-soft-danger-important:hover,
#manhole-cables-accord .btn.btn-soft-danger-important:hover {
    background-color: #f86262!important;
    color: white!important;
}
#conduit-microduct-container .btn.btn-soft-primary-important,
#manhole-cables-accord .btn.btn-soft-primary-important {
    color: #3283f6!important;
}
#conduit-microduct-container .btn.btn-soft-primary-important:hover,
#manhole-cables-accord .btn.btn-soft-primary-important:hover {
    background-color: #3283f6!important;
    color: white!important;
}
#conduit-microduct-container .btn.btn-soft-success-important,
#manhole-cables-accord .btn.btn-soft-success-important {
    color: #198754!important;
}
#conduit-microduct-container .btn.btn-soft-success-important:hover,
#manhole-cables-accord .btn.btn-soft-success-important:hover {
    background-color: #198754!important;
    color: white!important;
}
#conduit-microduct-container .btn-important,
#manhole-cables-accord .btn-important {
    width: auto!important;
    font-size: 0.875rem!important;
}
#conduit-microduct-container .card-header,
#manhole-cables-accord .card-header {
    flex-grow: 1;
}
#conduit-microduct-container .card > *:first-child,
#manhole-cables-accord .card > *:first-child {
    background-color: #edeff1;
}
#gis-segment-tab4 .layer-color-box {
    flex: 0 0 16px;
}
.fiber-connection {
    white-space: unset;
    cursor: pointer;
}
.fiber-connection:not(.disabled),
.fiber-connection-connected:not(.disabled) {
    background-color: var(--wcBgColor, lightblue);
}
.fiber-connection.disabled {
    opacity: .3;
    cursor: not-allowed;
}
.fiber-connection-column {
    flex-basis: 200px;
}
.fiber-connection-pop-up {
    background: white;
    color: black;
    padding: 8px 16px;
    border-radius: 4px;
    filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.4));
    transform: translateY(calc(-100% - 10px));
}
.fiber-connection-pop-up::after {
    position: absolute;
    bottom: -9px;
    width: 20px;
    height: 10px;
    content: "";
    left: 0;
    right: 0;
    margin-inline: auto;
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
    background-color: white;
}
.fiber-connection-nav {
    overflow-y: auto;
    scrollbar-width: none;
}
.fiber-connection-nav > li {
    flex-shrink: 0;
}
.fiber-connection-nav.nav-tabs .nav-link.active {
    background-color: #3283f6;
    color: white;
}
.fiber-search input {
    height: calc(1.5em + 0.5rem);
}
.fiber-search .input-group-text {
    padding: 0.25rem 0.5rem;
}
body > .leader-line {
    z-index: 50;
    pointer-events: auto!important;
    cursor:pointer;
    transition: scale .3s ease-in;
}
body > .leader-line:hover {
    scale: 1.1;
}

.modal-fullscreen {
    max-width: 100% !important;
    margin: 0 !important;
}

optgroup[disabled], option[disabled] {
    background-color: lightgrey;
    opacity: 0.5;
}
#connection-paper .joint-tooltip.joint-theme-default {
    z-index: 20;
    box-shadow: rgba(0, 0, 0, 0.3) 0 1px 4px -1px;
    border-radius: 0.15rem;
    background-color: white;
    color: #323a46;
    max-width: 600px;
}
#connection-paper .joint-tooltip.joint-theme-default.left .tooltip-arrow-mask {
    border-right-color: white;
}

#connection-paper .joint-tooltip.joint-theme-default.right .tooltip-arrow-mask {
    border-left-color: white;
}

#connection-paper .joint-tooltip.joint-theme-default.top .tooltip-arrow-mask {
    border-bottom-color: white;
}

#connection-paper .joint-tooltip.joint-theme-default.bottom .tooltip-arrow-mask {
    border-top-color: white;
}

#connection-paper .joint-tooltip.joint-theme-default.left .tooltip-arrow {
    border-right-color: white;
}

#connection-paper .joint-tooltip.joint-theme-default.right .tooltip-arrow {
    border-left-color: white;
}

#connection-paper .joint-tooltip.joint-theme-default.top .tooltip-arrow {
    border-bottom-color: white;
}

#connection-paper .joint-tooltip.joint-theme-default.bottom .tooltip-arrow {
    border-top-color: white;
}
.remove-button {
    top: 0;
    right: 10px;
    transform: translate(0%, 50%);
}
.custom-switch label {
    margin-top: .125rem;
}
.joint-tooltip.joint-theme-default {
    background-color: white!important;
    filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.4));
    pointer-events: all;
}
.joint-tooltip.joint-theme-default.bottom .tooltip-arrow-mask {
    border-top-color: white!important;
}
.joint-tooltip.joint-theme-default.bottom .tooltip-arrow {
    border-top-color: white!important;
}
.joint-tooltip.joint-theme-default.top .tooltip-arrow-mask {
    border-bottom-color: white!important;
}
.joint-tooltip.joint-theme-default.top .tooltip-arrow {
    border-bottom-color: white!important;
}
.joint-tooltip.joint-theme-default.left .tooltip-arrow-mask {
    border-right-color: white!important;
}
.joint-tooltip.joint-theme-default.left .tooltip-arrow {
    border-right-color: white!important;
}
.joint-tooltip.joint-theme-default.right .tooltip-arrow-mask {
    border-left-color: white!important;
}
.joint-tooltip.joint-theme-default.right .tooltip-arrow {
    border-left-color: white!important;
}

.filter-fiber-color {
    min-width: 20px;
    aspect-ratio: 1;
    border-radius: 0.25rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
#conduit-fibers .dd-list .dd-list,
#manhole-cables-accord .dd-list .dd-list {
    padding-left: 10px!important;
}
.gap-0-5 {
    gap: 0.5rem;
}
.applied-color {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.applied.filter-fiber-color {
    border-radius: 50%;
    min-width: 10px;
    max-width: 10px;
}
#summary-container {
    --offset: 30px;
    width: calc(100% - calc( 2 * var(--offset) ));
    height: 270px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    z-index: 10;
    background-color: white;
    top: calc( 1.5 * var(--offset));
    left: var(--offset);
    border-radius: .5rem;
    overflow-y: auto;
    scrollbar-width: none;
}
.summary-card {
    flex: 1 1 300px;
}
#edit-modal {
    --sidebar-width: 500px;
    transition: width 0.3s ease-in-out;
}
.custom-panel {
    position: fixed;
    right: calc(-1 * var(--sidebar-width));
    top: 0;
    width: var(--sidebar-width);
    height: 100%;
    transition: right 0.3s ease-in-out;
    z-index: 100;
    background-color: white;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}
.custom-panel.active {
    right: 0;
}
#edit-modal.show:has(#connection-manager-map-container.active) {
    --sidebar-width: 50vw;
}
#edit-modal.show:has(.custom-panel.active) {
    width: calc(100% - var(--sidebar-width));
}
#connection-manager-map-container {
    z-index: 20;
}
.py-0-5 {
    padding-top: 0.175rem;
    padding-bottom: 0.175rem;
}

.dragAndDropText {
    font-size:16px;
    position: absolute;
    top:50%;
    margin-right:50%;
    left: 50%;
    font-weight:bold;
    color:#ccc;
    -webkit-transform:translate(-50%, -50%);
    white-space: nowrap;
    z-index:10;
}

.dragAndDropContainer {
    position: relative;
    border:2px dashed #ddd;
    border-radius: 5px;
}

.progress-bar-holder {
    /*display: none;*/
    height: 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 500px) {

    .hero .hero-content {
        padding: 0 10px;
        width: 100%;
    }
    .hero .hero-content .shortcuts-wrapper {
        display: flex;
        flex-direction: column;
    }
    .hero .hero-content .shortcuts-wrapper .btn {
        flex: 1;
        display: block;
        width: 100%;
    }
    .hero .app-search-hero #app-search-hero {
        height: 60px;
        font-size: 20px;
    }

    .hero .app-search-hero .app-search-box .input-group-text {
        background: #fff;
    }
    .hero .app-search-hero .app-search-box .input-group-text i {
        font-size: 30px;
    }

    .hero .app-search-hero #app-search-heroautocomplete-list {
        max-height: 350px;
        overflow: auto;
    }

    .dragAndDropContainer {
        position: relative;
        background: #f2f4f6;
    }
    #uploaded-media .dragAndDropText {
        font-size:44px;
        position: static;
        text-align: center;
        white-space: unset;
        transform: unset;
        margin: unset;
    }
    #uploaded-media .dragAndDropText a {
        padding: 35px 0;
        display: block;
    }

    .progress-bar-holder {
        height: 40px;
        margin-bottom:1rem;
    }
    .progress-bar, .progress {
        height: 40px;
    }

    .progress { font-size:22px; }

    .nav-link { font-size: 16px; }

    .autocomplete-items {
        font-size:18px;
        font-weight: bold;
        color:#000;
    }
    .autocomplete-items span { font-size: 16px; }
    .autocomplete-items small { font-size: 14px; }

    .content-with-sticky-title .topnav {
        height: 60px;
    }

    .content-with-sticky-title .topnav .navbar {
        padding-top: 17px;
        padding-bottom: 0;
    }
    .overflow-custom-class {
        max-height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
    }
    #entities-wrapper {
        .btn-outline-primary:hover {
            background-color: initial;
            color: #3283f6;
            border-color: #3283f6;
        }
        .btn-outline-primary:not(:disabled):not(.disabled):focus,
        .btn-outline-primary:not(:disabled):not(.disabled):active {
            box-shadow: none;
        }
        .card-body {
            padding: 0;
        }
    }

    .upload-media-container .card-body {
        position: unset!important;
    }
    .topnav-presentation-mode-wrapper {
        display: none !important;
    }

    .presentation-mode-on.content-with-sticky-title {
        padding-top: 60px;
    }
    .presentation-mode-on.content-with-sticky-title .topnav {
        margin-top: -60px;
    }
    .proposals-container .card-body {
        padding: 8px;
    }
    .proposals-container .dd-list .dd-item .dd-handle {
        padding: 8px 4px;
    }

    .presentation-mode-on .media-container-wrapper .card .card-wrapper {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 0;
    }
    .presentation-mode-on .media-container-wrapper .card-outer {
        flex: 100%;
        max-width: 100%;
    }
    .presentation-mode-on .media-container-wrapper .card .card-wrapper .card-actions {
        justify-content: flex-end;
    }

    .presentation-mode-on .media-container-wrapper .card .card-wrapper .card-image {
        width: 98px;
    }
}

.app-search-mobile {
    font-size:18px;
}

.refresh-message {
    z-index:9999;
    position: fixed;
    top: 10px;
    left: 35%;
    transform: translateX(-50%);
    background-color: transparent;
    color:rgba(255, 255, 255, 0.6);
    padding: 10px;
    border-radius: 5px;
    display: block;
}

div.joint-toolbar.joint-theme-default {
    gap: 12px;
    padding: 5px 10px;
}
#edit-modal.show:has( ~ #delete-modal.show ) ~ #delete-modal,
#edit-modal.show:has( ~ #other-modal.show ) ~ #other-modal {
    z-index: 1060;
}
#edit-modal.show:has( ~ #delete-modal.show ) ~ :nth-last-child(1 of .show.modal-backdrop),
#edit-modal.show:has( ~ #other-modal.show ) ~ :nth-last-child(1 of .show.modal-backdrop) {
    z-index: 1050;
}
.connection-manager-splicebox {
    background-color: #f6f6f6;
    border-radius: 3px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.4)
}
#connect-multiple-wizard .form-wizard-header,
#connect-patch-panel-wizard .form-wizard-header {
    margin-inline: 0;
}



.draggable:hover {
    animation: shake 0.5s ease-in-out;
}

.draggable:hover .magnify {
    transform: scale(1.5);
    transition: transform 0.3s ease-in-out;
}
.magnify {
    transform: scale(1);
    transition: transform 0.3s ease-in-out; /* Ensure smooth transition back to normal */
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}


#connection-toolbar [data-group="search"] {
    gap: 8px;
    align-items: center;
}
#connection-toolbar [data-group="search"] [data-type="label"] {
    margin-bottom: 0;
}
#connection-toolbar [data-group="search"] [data-type="button"] {
    margin-left: 0;
    padding: 6px 12px;
}

#connection-toolbar [data-group="search"] [data-type="inputText"]  input {
    padding: 6px 12px;
    border-radius: 0.25rem;
}

.order-sm-0 {
    order: 0!important; }

.order-1 {
    order: 1!important; }

.order-2 {
    order: 2!important; }

.order-3 {
    order: 3!important; }

.order-4 {
    order: 4!important; }

.order-5 {
    order: 5!important; }

.order-6 {
    order: 6!important; }

.order-7 {
    order: 7!important; }

.order-8 {
    order: 8!important; }

.order-9 {
    order: 9!important; }

.order-10 {
    order: 10!important; }

.order-11 {
    order: 11!important; }

.order-12 {
    order: 12!important; }

@media (min-width: 576px) {
    .order-sm-0 {
        order: 0 !important;
    }

    .order-sm-1 {
        order: 1 !important;
    }

    .order-sm-2 {
        order: 2 !important;
    }

    .order-sm-3 {
        order: 3 !important;
    }

    .order-sm-4 {
        order: 4 !important;
    }

    .order-sm-5 {
        order: 5 !important;
    }

    .order-sm-6 {
        order: 6 !important;
    }

    .order-sm-7 {
        order: 7 !important;
    }

    .order-sm-8 {
        order: 8 !important;
    }

    .order-sm-9 {
        order: 9 !important;
    }

    .order-sm-10 {
        order: 10 !important;
    }

    .order-sm-11 {
        order: 11 !important;
    }

    .order-sm-12 {
        order: 12 !important;
    }
}


.grid-columns-1\/2 {
    grid-template-columns: repeat(2, 1fr);
}
#interface-group:has(> .invalid-feedback[style="display: block;"]) .border {
    border-color: #f86262!important;
}

.fancybox__title {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 21;
    height: 60px;
    padding: 0 16px;
    display: flex;
    align-items: center;
}


.presentation-mode-wrapper #presentation-mode {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: rgba(0, 0, 0, 0);
    margin: 0;
    position: relative;
    -webkit-border-radius: 0;
    display: inline-block;
    overflow: hidden;
    width: 51px;
    height: 31px;
    border-radius: 15.5px;
    background-color: #e9e9ea;
    transition: background-color 250ms;
    vertical-align: middle;
}

.presentation-mode-wrapper #presentation-mode.checked {
    background-color: #2ed158;
}

.presentation-mode-wrapper #presentation-mode.checked:before {
    left: 22px;
}

.presentation-mode-wrapper #presentation-mode:before {
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 15.5px;
    content: "";
    dispaly: inline-block;
    width: 27px;
    height: 27px;
    background-color: white;
    transition: all 200ms;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.break-all {
    word-break: break-all;
}

#list-ports {
    max-height: 270px;
    overflow-y: auto;
}

body * {
    scroll-margin-top: 255px;
}


#connection-loader {
    display: flex;
}

.navbar-custom .app-search .btn.btn-success {
    color: #fff;
    background-color: #44cf9c;
    border-color: #44cf9c;
}

.page-title-box-sticky {
    position: fixed;
    width: 100%;
    z-index: 12;
    background: #fff;
    transition: opacity 0s ease-in-out;
    height: 0;
    opacity: 0;
    overflow: hidden;
}
.page-title-box-sticky.active {
    transition: opacity .3s ease-in-out;
    height: auto;
    opacity: 1;
    overflow: unset;
}
.comment-box .comment-item-wrapper {
    margin-bottom: 20px;
    background: #f5f6f9;
    padding: 10px 10px 0 10px;
    border-radius: 7px;
    box-shadow: 0 0 1px 3px #00000010;
    position: relative;
}
.comment-box .comment-item-wrapper .comment-item-wrapper:after {
    content: '';
    position: absolute;
    top: 3px;
    bottom: -5px;
    left: 3px;
    width: 1px;
    background: #343a40;
}

.comment-box .comment-item-wrapper .comment-item-wrapper:last-child:after {
    display: none;
}

.comment-box .comment-item-wrapper.no-border-wrapper:after {
    display: none;
}

.comment-box .comment-item-wrapper .comment-item h5:before {
    display: none;
}

.comment-box .comment-item-wrapper .comment-item-wrapper {
    margin-bottom: 0;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}
.comment-box .comment-item-wrapper .comment-item-wrapper {
    padding: 0 0 0 17px;
}

.comment-box .comment-item-wrapper .comment-item-wrapper .comment-item h5:before {
    display: block;
}

.comment-box .comment-item-wrapper .hover-menu {
    position: relative;
}
.comment-box .comment-item-wrapper .hover-menu .hover-text {
    font-size: 12px;
}
.comment-box .comment-item-wrapper .hover-menu .hover-text .arrow-down:after {
    margin-left: 5px;
}
.comment-box .comment-item-wrapper .hover-menu .hover-menu-dropdown {
    display: none;
    border: 1px solid lightgrey;
    background: #fff;
    position: absolute;
    border-radius: 6px;
    top: 100%;
    right: 0px;
    margin: 0;
    z-index: 2;
}
.comment-box .comment-item-wrapper .hover-menu:hover .hover-menu-dropdown {
    display: block;
    padding-top:3px;
}
.comment-box .comment-item-wrapper .hover-menu .hover-menu-dropdown li {
    padding:0;
    font-size: 14px;
    border-bottom:1px solid #ccc;
    min-width: 100px;
}

.comment-box .comment-item-wrapper .hover-menu:hover .hover-menu-dropdown li:last-child {
    margin-bottom: 0;
}
.comment-box .comment-item-wrapper .hover-menu .hover-menu-dropdown li .link {
    font-weight: 200;
    padding: 4px 8px;
    display: block;
}
.comments-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: red;
}
.message-wrapper {
    padding-left: 15px;
    position: relative;
}
.comment-item h5:before {
    content: '';
    position: absolute;
    height: 9px;
    width: 7px;
    top: 4px;
    left: 4px;
    border: 1px solid #343a40;
    border-top: none;
    border-right: none;
    border-bottom-left-radius: 12px;
    transform: rotate(-14deg);
}
.message-wrapper:after {
    content: '';
    position: absolute;
    top: 4px;
    bottom: -5px;
    left: 3px;
    width: 1px;
    background: #343a40;
}

.message-wrapper.no-border {
    padding-left: 0;
}

.message-wrapper.no-border:after {
    display: none;
}

.message-wrapper p {
    padding-bottom: 10px;
}

.modal-content.ui-resizable {
    overflow-y: scroll;
}
.whitespace-nowrap {
    white-space: nowrap;
}
.restricted {
    height: 400px;
    width: 1000px;
    overflow: hidden;
    position: relative;
}


.accordion-button {
    color: #2d76dd;
    background-color: #ebf3fe;
    font-weight: bold;
    font-size: 18px;
}

.accordion-button:not(.collapsed) {
    background-color: #3283f6;
    color:#fff;

    .badge {
        color:#fff;
    }
}

.places-wrapper .places-item:nth-child(odd) {
    background-color: #f2f4f9;
}

.places-wrapper .places-item:nth-child(even) {
    background-color: #fafafa;
}

.places-wrapper .places-item {
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
}


.drop-container {
    position: relative;
    width: 100%;
    height: 90px;
    border: 2px dashed #e6e6e8;
    border-radius: 12px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom:10px;
}

.drop-container .progress {
    height: 12px !important;
    position: absolute;
    bottom: -20px;
    width: 100%;
    font-size: 10px;
}

.drop-container.dnd {
    border: 2px dashed var(--bs-primary);
}

.drop-container:hover {
    background-color: #f5f5f5;
}

.drop-container .drop-text {
    color: #555;
    position: relative;
    font-weight: lighter;
    font-size: 16px;
    margin-bottom: 15px;
}

.drop-container .drop-text:before {
    position: absolute;
    top:-70%;
    left: 50%;
    font-size:24px;
    font-weight: lighter;
    transform: translate(-50%, -50%);
    font-family: "Font Awesome 6 Pro";
    content:"\f093";
}

#credit-card-list .card:has(input[type='radio']:checked) {
    box-shadow: inset 0px 0px 0px 2px #3283f6;
}