* {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

#main-wrapper {
    height: 100vh;
}

#map {
    width: 100%;
    height: 100%;
    position: absolute !important;
    right: 0 !important;
    z-index: 0;
}

[data-move='true'] {
    position: absolute;
    left: 0;
    height: 100%;
    z-index: 10;
    transition: all 0.2s ease-in-out;
}

#map[data-street-view='true'][data-street-view-expand='true'] {
    position: relative !important;
    /* width: calc(100vw - 80px) !important; */
    z-index: 20;
}

#map[data-street-view='true'][data-street-view-expand='false'] {
    width: 250px !important;
    overflow: hidden !important;
    /* position: relative !important; */
    z-index: 10;
}

#map[data-street-view='true'] .ol-viewport {
    z-index: 10;
    background-color: white;
}

#map[data-street-view='true'] .ol-scale-bar {
    visibility: hidden !important;
}

#ol-street-view--map-container {
    width: calc(100vw - 80px);
    height: calc(100vh - 80px);
    right: 0 !important;
    top: 80px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 0;
}

#ol-street-view--pegman-button-div {
    top: 10px !important;
    right: 70px !important;
}

@media only screen and (max-width: 991px) {
    #ol-street-view--map-container {
        width: calc(100vw - 80px);
    }
}

@media only screen and (max-width: 767px) {
    #ol-street-view--map-container {
        width: 100vw;
    }
}

.content-body {
    height: calc(100vh - 80px);
}

.footer {
    position: absolute;
    bottom: 0;
    z-index: 0;
    background: none !important;
    right: 0;
    padding: 0;
}

.footer .copyright {
    padding: 0;
}

.footer .copyright p {
    visibility: hidden;
}

.move-right[data-move='true'] {
    transform: translateX(255px);
}

#ol-street-view--pegman-button-div {
    z-index: 5 !important;
}

@media only screen and (max-width: 767px) {
    #ol-street-view--map-container {
        height: calc(100vh - 60px);
        top: 60px !important;
    }

    .move-right[data-move='true'] {
        transform: translateX(0);
    }

    .move-right[data-move='true'] .dim-screen {
        background-color: black;
        width: 100vw;
        height: 100vh;
        position: absolute;
        left: 0;
        z-index: 100;
        opacity: 50%;
    }
}

button[data-function-active='true'] {
    border-left: 1px solid black;
}

/* Toggle */
/* Button 10 */
.layer-item-label {
    width: 100%;
}

.layer-item-list {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 5px;
    cursor: pointer;
}

.layer-name {
    /* gap: 15px; */
    color: black;
}

.toggle-btn {
    position: relative;
    height: 15px;
    margin-top: 11px;
}

input[type='checkbox'].layer-check {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: 0px;
    cursor: pointer;
    opacity: 0;
}

#_3rd-toggle-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #c7c7c7;
    border-radius: 20px;
    transition: 0.5s ease background-color;
}

#_3rd-toggle-btn span:before {
    content: '';
    position: absolute;
    top: -6px;
    width: 15px;
    height: 15px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 2px 9px 25px #d7d7d7;
    transform: translate(0px, 0px);
    opacity: 1;
    transition: 0.6s ease transform, 0.6s box-shadow, 0.6s background-color,
        0.6s border;
    border: 1px solid #c0c0c0;
}

#_3rd-toggle-btn input[type='checkbox']:checked + span:before {
    box-shadow: 7px 6px 25px #e6e6e6;
    transform: translate(15px, 0px);
    background-color: #3a7afe;
    border: 0px;
}

#_3rd-toggle-btn input[type='checkbox']:checked + span {
    background-color: #3a7afe;
}
/* End of Toggle */

/* Base Layer Swicther */
.baselayer-switcher {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
    width: 100px;
    height: 100px;
    background-color: white;
    background-position: center;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border: 3px solid white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    color: white;
}

.baselayer-switcher span {
    margin-bottom: 5px;
    z-index: 0;
}

.baselayer-switcher .gradient {
    width: 100%;
    border-radius: 7px;
    position: absolute;
    height: 100%;
    background: rgb(24, 24, 24);
    background: linear-gradient(
        0deg,
        rgba(24, 24, 24, 1) 0%,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 212, 255, 0) 100%
    );
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.baselayer-switcher .base-choice {
    display: flex;
    height: 100px;
    bottom: -3px;
    border-radius: 10px;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in;
    cursor: pointer;
    position: absolute;
    left: 105px;
    gap: 20px;
    padding: 0 15px;
    transform: translateX(-5%);
}

.base-choice.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.2s ease-out;
}

.layer {
    display: flex;
    color: black;
    margin: auto 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    cursor: pointer;
    width: 60px;
}

.layer .layer-icon {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background-position: center;
}

.layer:hover .layer-icon {
    border: 2px solid #50a2f3;
}

.layer-icon.active {
    border: 2px solid #50a2f3;
}

.layer .layer-name {
    font-size: 10px;
    word-wrap: break-word;
    max-width: 60px;
    margin: 0;
    text-align: center;
}

.more.layer {
    margin: 0;
}

.base-choice .more-layers-icon {
    width: 55px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.base-choice .more-layers-icon i {
    font-size: 28px;
    color: black;
}

.mouse-box {
    z-index: 3;
    width: 105px;
    height: 100%;
    position: absolute;
    cursor: pointer;
}

/* End of Base Layer Swicther */

/* More Layers */

.more-layers-wrapper {
    min-width: 240px;
    height: auto;
    position: absolute;
    bottom: -3px;
    left: -2px;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.more-layers-wrapper.show {
    visibility: visible;
    opacity: 1;
}

.more-layers-wrapper .box {
    background-color: #ffffff;
    border-radius: 10px;
    height: 100%;
    padding: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.more-layers-wrapper .box .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* End More Layers */

/* Brightness */
span.brightness-icon svg {
    position: relative;
    top: 0px;
}

span.brightness-icon {
    cursor: pointer;
    z-index: 0;
}

.brightness-wrapper {
    justify-content: space-between;
    background-color: white;
    z-index: 2;
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.1s ease-in;
}

.brightness-wrapper span.back-icon {
    height: 100%;
    width: 20px;
    display: inline-block;
    cursor: pointer;
}

.brightness-wrapper span.back-icon::before {
    left: 9px;
    width: 7px;
    height: 7px;
    opacity: 0.8;
    top: 45%;
    position: absolute;
    content: '';
    width: 0.5em;
    height: 0.5em;
    border-width: 1px 0 0 1px;
    border-style: solid;
    border-color: #3a7afe;
    right: 1em;
    -webkit-transform: rotate(-45deg) translateY(-50%);
    transform: rotate(-45deg) translateY(-50%);
    -webkit-transform-origin: top;
    transform-origin: top;
    top: 50%;
    transition: all 0.3s ease-out;
}

.brightness-wrapper.show {
    transform: translateX(0);
    transition: transform 0.1s ease-out;
}

.over-zone {
    position: absolute;
    left: 0;
    width: 25px;
    height: 100%;
    cursor: pointer;
    z-index: 5;
}

.brightness-box {
    background: #f9f9f9;
    border-radius: 8px;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brightness-box span {
    width: 25px;
    display: inline-block;
}

#range {
    width: 100%;
    height: 2px;

    /*tira a barra do input range*/
    /* -webkit-appearance: none; */

    background: #0a85ff;

    outline: none;
}

#range::-webkit-slider-thumb {
    -webkit-appearance: none;

    background: #0a85ff;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    cursor: pointer;
}

/* End of Brigthness */

/* Sidebar style */
.has-arrow svg {
    fill: none !important;
    stroke: #9aa8cc;
}

.has-arrow:hover svg {
    stroke: #3a7afe;
}

.has-arrow[aria-expanded='true'] svg {
    stroke: #3a7afe;
}
/* End sidebar style */

/* wrana button control */
#control button,
#control a {
    background: white;
}
/* end wrana button control */

/* style measure */
#distance,
#area,
#clear {
    background: white;
    color: black;
}
#distance:before {
    content: '\f545';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

#area:before {
    content: '\f5ee';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

#clear:before {
    content: '\f12d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.ol-tooltip {
    position: relative;
    background: #a8a8a79a;
    border-radius: 4px;
    color: white;
    padding: 4px 8px;
    opacity: 0.7;
    white-space: nowrap;
    font-size: 15px;
}

.ol-tooltip::after {
    visibility: hidden;
}

.ol-tooltip-measure {
    opacity: 1;
    font-weight: lighter;
}

.ol-tooltip-static {
    background-color: #a8a8a7;
    color: white;
    border: 1px solid white;
}

.ol-tooltip-measure:before,
.ol-tooltip-static:before {
    border-top: 6px solid #a8a8a7;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    content: '';
    position: absolute;
    bottom: -6px;
    margin-left: -7px;
    left: 50%;
}
.ol-tooltip-static:before {
    border-top-color: #a8a8a7;
}
/* end style measure */

/* style zoom */
.map .ol-zoom {
    top: 15px;
    left: auto;
    right: 21px;
    font-size: 16px;
    background: white;
}
.ol-control button {
    color: black;
    background: white;
    width: 39px;
}
/* end style zoom */

/* style minimap */
.ol-overviewmap {
    position: absolute;
    right: 70px;
    left: auto;
    /* bottom: 4em; */
    font-size: 19px;
    z-index: 99999;
}

.ol-overviewmap span {
    visibility: hidden;
}

.ol-overviewmap:not(.ol-collapsed) button {
    right: 0;
    left: auto;
}

.ol-overviewmap .ol-overviewmap-map {
    margin-right: 2.5em;
}

.ol-overviewmap:not(.ol-collapsed) {
    background: none;
}
.ol-overviewmap span:before {
    content: '\f068';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    visibility: visible;
    margin-left: 6px;
}
/* end style minimap */

/* Base only */

.only-base {
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 422px;
    background-color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.only-base label {
    margin: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    cursor: pointer;
}

.only-base .toggle-btn {
    margin: 0;
    padding-bottom: 3px;
    height: 0;
}

.only-base .toggle-btn input[type='checkbox'] {
    height: 0px;
}

.only-base .toggle-btn input[type='checkbox']::after {
    height: 0px;
}

/* END BASE ONLY */

/* SCALE */
.ol-scale-bar {
    left: auto;
    right: 66px;
}
/* END SCALE */

/* STYLE POPUP */
.ol-popup {
    position: absolute;
    background-color: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #cccccc;
    bottom: 12px;
    left: -50px;
    min-width: 280px;
}

.ol-popup:after,
.ol-popup:before {
    top: 100%;
    border: solid transparent;
    content: ' ';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.ol-popup:after {
    border-top-color: white;
    border-width: 10px;
    left: 48px;
    margin-left: -10px;
}

.ol-popup:before {
    border-top-color: #cccccc;
    border-width: 11px;
    left: 48px;
    margin-left: -11px;
}

.ol-popup-closer {
    text-decoration: none;
    position: absolute;
    top: 2px;
    right: 8px;
}

.ol-popup-closer:after {
    content: '✖';
}

.ol-legend > canvas {
    float: left;
}

.ol-legend div.ol-legend {
    position: relative;
}

.garis {
    position: absolute;
    z-index: 1;
    top: 70px;
    left: 2vh;
}
/* .ol-overviewmap .ol-unselectable .ol-control .ol-collapsed{

} */
.ol-overviewmap button {
    /* bottom: 6% !important; */
    left: auto;
    right: 0;
    position: absolute;
}

.ol-overviewmap {
    /* bottom: 100%; */
    top: 65px !important;
}

.ol-overviewmap-map {
    margin-top: 0px;
    bottom: auto;
}

/* .ol-overviewmap-box {
top: 35% !important;
right: 20px;
left: auto;
} */

.ol-overviewmap:not(.ol-collapsed) button {
    top: 0 !important;
    /* bottom: 0; */
    left: auto;
    position: absolute;
    /* right: 0; */
}
/* END STYLE POPUP */

/* Sidebar hide icon */

.icon-hide {
    position: absolute;
    right: 25px;
    background: none;
    color: rgba(24, 24, 24, 1);
}

.fixed-content-body {
    background-color: white;
    transition: all 0.2s ease-in-out;
    transform: translateX(0);
}

.fixed-content-body[data-hide='true'] {
    transform: translateX(-100%);
}

.fixed-content-box {
    box-shadow: none;
    height: 80px;
    background: none !important;
    top: 80px;
    transition: all 0.2s ease-in-out;
}

.fixed-content-box[data-hide='true'] {
    background: none;
    transform: translateX(-100%);
}

@media only screen and (max-width: 991px) {
    .fixed-content-body {
        left: 25rem;
    }
}

@media only screen and (max-width: 767px) {
    .fixed-content-body {
        left: 20rem;
        height: calc(100vh - 60px) !important;
    }

    .fixed-content-box {
        top: 60px !important;
    }
}

.icon-hide svg {
    width: 20px;
}

.icon-show {
    position: absolute;
    left: 15px;
    z-index: 10;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    top: 16px;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px !important;
}

.icon-show svg {
    width: 20px;
    opacity: 0.5;
}

.feature-popup {
    position: absolute;
    left: 20px;
    top: 60px;
    z-index: 99999;
    background-color: #ffffff;
    padding: 10px;
    width: 360px;
    /* height: 400px; */
    border-radius: 5px;
    padding: 0%;
}

.feature-popup .popup-header {
    top: 0%;
    /* height: 40px; */
    padding: 10px;
    cursor: move;
    background-color: #4461f2;
    color: white;
    border-radius: 5px 5px 0px 0px;
}

.feature-popup .popup-header a {
    position: absolute;
    right: 5%;
    cursor: default;
    color: white;
    cursor: pointer;
}

.feature-popup .popup-content {
    padding: 5px;
    background-color: #a8a8a7;
}

.feature-popup .popup-footer {
    bottom: 0%;
    border-top: solid #e0e9f4 1px;
    padding: 5px;
}

/* End Feature Popup  */
/* FIX SWITCH BUTTON */
.custom-switch .custom-control-label::after {
    top: calc(0.15625rem) !important;
}
/* END FIX SWITCH BUTTON */

/* DRAWER */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    z-index: 999;
    top: 0;
    left: 335px;
    background-color: #f5f3f6;
    overflow-x: hidden;
    transition: 0.5s;
}

.sidenav a {
    color: #006aca;
}

.close-side-content {
    background-color: #3a7afe;
    color: aliceblue;
    float: right;
    padding: 0 10px;
    cursor: pointer;
}

.side-heading {
    background-color: #dad8db;
    text-align: center;
    width: 100%;
}

.number-span {
    background-color: orange;
    padding: 0 5px;
    border-radius: 100%;
    color: #fff;
}

.side-content {
    padding: 20px;
}

.side-content-span {
    margin: 0 -10px;
    padding-bottom: 20px;
}

.side-content-wrapper {
    max-height: 70vh;
}

.side-content-box {
    border: 1px solid #dad8db;
    min-height: 140px;
    margin: 10px 0;
}

.side-content-footer {
    padding: 0 20px 10px;
    margin-top: auto;
}

.side-content-footer-button {
    padding: 10px 0;
}

.the-one path {
    fill: #006aca;
}

.grey-one path {
    fill: #d0d0d0;
}

.radio-show-content {
    margin: 0;
}

.weight-slider {
    width: 130px;
    height: 80px;
}

.show_content {
    cursor: pointer;
}

.displayed_content {
    padding-top: 10px;
    display: none;
}

.threshold-slider {
    width: 100%;
    padding: 20px;
    margin-bottom: 50px;
}

.threshold-slider span.irs-line,
.threshold-slider span.irs-bar {
    height: 60px;
}

.threshold-slider span.irs-line {
    background-color: transparent;
    border: 1px solid black;
    border-radius: 0;
}

.threshold-slider .irs--round .irs-min,
.threshold-slider .irs--round .irs-max,
.threshold-slider .irs--round .irs-from,
.threshold-slider .irs--round .irs-to,
.threshold-slider .irs--round .irs-single {
    font-size: 10px;
}
/* END DRAWER */

/* End sidebar hide icon */

/* FIX SWITCH BUTTON */
.custom-switch .custom-control-label::after {
    top: calc(0.15625rem) !important;
}
/* END FIX SWITCH BUTTON */

/* DRAWER */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    z-index: 999;
    top: 0;
    background-color: #f5f3f6;
    overflow-x: hidden;
}

.sidenav a {
    color: #006aca;
}

.close-side-content {
    background-color: #3a7afe;
    color: aliceblue;
    float: right;
    padding: 0 10px;
    cursor: pointer;
}

.side-heading {
    background-color: #dad8db;
    text-align: center;
    width: 100%;
}

.number-span {
    background-color: orange;
    padding: 0 5px;
    border-radius: 100%;
    color: #fff;
}

.side-content {
    padding: 20px;
}

.side-content-span {
    margin: 0 -10px;
    padding-bottom: 20px;
}

.side-content-wrapper {
    max-height: 70vh;
}

.select_criteria {
    max-width: fit-content;
}

.side-content-box {
    border: 1px solid #dad8db;
    min-height: 140px;
    margin: 10px 0;
}

.side-content-footer {
    padding: 0 20px 10px;
    margin-top: auto;
}

.side-content-footer-button {
    padding: 10px 0;
}

.the-one path {
    fill: #006aca;
}

.grey-one path {
    fill: #d0d0d0;
}

.radio-show-content {
    margin: 0;
}

.weight-slider {
    width: 130px;
    height: 80px;
}

.show_content {
    cursor: pointer;
}

.displayed_content {
    padding-top: 10px;
    display: none;
}

.threshold-slider {
    width: 100%;
    padding: 20px;
    margin-bottom: 50px;
}

.threshold-slider span.irs-line,
.threshold-slider span.irs-bar {
    height: 60px;
    background-color: #d0d0d0;
    opacity: 0.5;
    z-index: -999;
}

.threshold-slider span.irs-line {
    background-color: transparent;
    border: 1px solid black;
    border-radius: 0;
}

.threshold-slider .irs--round .irs-min,
.threshold-slider .irs--round .irs-max,
.threshold-slider .irs--round .irs-from,
.threshold-slider .irs--round .irs-to,
.threshold-slider .irs--round .irs-single {
    font-size: 10px;
}

.threshold__mark {
    display: block;
    position: absolute;
    top: 36px;
    height: 60px;
    border-radius: 3px;
    color: #fff;
    margin-left: -10px;
    border: 1px solid black;
}
/* END DRAWER */

/* Scroll bar Style */
.scrollbar::-webkit-scrollbar {
    width: 12px;
}
.scrollbar::-webkit-scrollbar-track {
    background: #dfdfdf;
    border-radius: 0 0 5px 5px;
    margin-bottom: 3px;
}
.scrollbar::-webkit-scrollbar-thumb {
    background-color: rgb(162, 162, 162);
    border-radius: 20px;
}
/* End Scrollbar */

/* Popup Grid */

.popup-grid {
    bottom: -130px;
    left: 20px;
}

.popup-grid:after,
.popup-grid:before {
    top: 50%;
    transform: rotate(90deg);
}

.popup-grid:after {
    left: -10px;
}

.popup-grid::before {
    left: -12px;
}

/* Start search koor */
.draggable-div {
    cursor: move;
    position: absolute;
    user-select: none;
}
.panel-fab {
    width: 300px;
    display: none;
    position: fixed;
    background: #fff;
    top: 50%;
    left: 85%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 0 none;
    -webkit-box-shadow: 0 7px 3px -4px rgba(0, 0, 0, 0.3),
        0 8px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 7px 3px -4px rgba(0, 0, 0, 0.3), 0 8px 8px rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.panel-fab-open {
    display: block;
    z-index: 9999;
}

.panel-fab .header-panel-fab {
    background: #3a7afe;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: move;
    display: flex;
    padding: 5px 10px;
    transition: 0.3s;
}

.panel-fab .header-panel-fab h4 {
    font-size: 15px;
    font-weight: normal;
    color: #f4f9f9;
    margin-bottom: 0px;
}

.panel-fab .header-panel-fab .panel-gear {
    position: absolute;
    right: 5px;
    top: 0px;
    display: flex;
}

.panel-fab .header-panel-fab .panel-gear button {
    background: transparent;
    color: #fff;
    padding: 0px 4px;
}

.panel-fab .header-panel-fab .panel-gear #minimize {
    display: block;
}

.panel-fab .header-panel-fab .panel-gear #maximize {
    display: none;
}

.panel-fab .body-panel-fab {
    padding: 15px 10px;
    height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: 0.3s;
}

.panel-fab .footer-panel-fab {
    margin: 5px 5px;
    padding: 5px 10px 0px 10px;
    border-top: 1px solid #435560;
    display: block;
    position: relative;
    transition: 0.3s;
}

.panel-fab .body-panel-fab::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
}

.panel-fab .body-panel-fab::-webkit-scrollbar {
    width: 7px;
    background-color: #f5f5f5;
}

.panel-fab .body-panel-fab::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #555;
}

.minimize-panel {
    display: none !important;
}

.txt2 {
    border: 1px solid rgb(150, 149, 149) !important;
}

/* End search koor */
