.map-page-body {
    max-width: 100%;
    height: calc(100% - 48px);
    --border-light: #E3E4E5;
    --gray: #8393A1;
}

#viewDiv {
    width: 100%;
    height: calc(100vh - 200px);
    min-height: 70vh;
}

.map-page-admin {
    overflow: hidden;
}

.map-page-admin #viewDiv {
    height: calc(100vh - 191px);
}

.map-page-admin.map-page-body .card-header {
    padding-top: 0;
    padding-left: 0;
}

.map-page-admin.map-page-body .card-body {
    padding-left: 0;
}

/********************Map********************/

.esri-view .esri-view-surface--inset-outline::after{
    content: none !important;
}

.map-page-body {
    position: relative;
    overflow: hidden;
}

.map-page-body #map-slider {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 600px;
    z-index: 1000;
    overflow-y: hidden;
    border-radius: 0;
    margin-bottom: 0;
    transition: all 0.5s ease-in-out;
    border: 1px solid #CED8EB;
}

.map-page-body #map-slider.toggle-display{
    left: -700px;
    overflow: hidden;
}

.map-page-body .card-header {
    background-color: transparent;
    border-bottom: 1px solid #CED8EB;
    padding: 16px;
    display: flex;
    align-items: center;
}

.map-page-body .card-header:first-child {
    border-radius: 0;
}

.map-page-body .card-header h5 {
    font-size: 16px;
    line-height: 24px;
    margin-left: 8px;
    cursor: pointer;
}

.map-page-body .card-header .icon.icon-arrow-left,
.map-sidebar-header .icon.icon-arrow-left {
    display: inline-block;
    width: 24px;
    height: 24px;
}

.map-page-body .card-header .icon.icon-arrow-left::before {
    content: "";
    /* background-image: url("../images/icon_back.png"); */
    width: 24px;
    height: 24px;
    display: inline-block;
    /* background-repeat: no-repeat;
    background-size: contain; */
    cursor: pointer;
    -webkit-mask: url("../images/icon_arrow_left.svg") no-repeat center / contain;
    mask: url("../images/icon_arrow_left.svg") no-repeat center / contain;
    background-color: #0F172B;
}

.map-page-body .card-body {
    /* max-height: 500px; */
    overflow-y: auto;
    scrollbar-color: var(--scrollbar-thumb) var(--white);
    scrollbar-width: thin;
}

.map-page-body *::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    border-radius: 999px;
}

.map-page-body *::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb);
    border-radius: 999px;
}

.map-page-body *::-webkit-scrollbar-track {
    background: var(--white);
    border-radius: 999px;
}

.map-page-body .card-body {
    padding: 16px;
}

/*******************************************************/

.esri-view .esri-view-surface:focus:after {
    outline: 0;
}

.map-page-body .card-footer {
    padding: 16px;
    text-align: right;
    background-color: transparent;
    border-top: 1px solid rgba(27, 40, 112, 0.1);
}

.map-page-body .card-footer:last-child {
    border-radius: 0;
}

.map-page-body .card-footer .btn {
    padding: 8px 16px;
    font-size: 14px;
    line-height: 20px;
    min-width: 84px;
    text-transform: uppercase;
}

/*ICON ARCGIS*/
.esri-widget--button{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.esri-component.esri-zoom > .esri-widget--button:first-of-type{
    border-radius: 4px 4px 0 0;
}

.esri-component.esri-zoom > .esri-widget--button:last-of-type{
    border-radius: 0 0 4px 4px;
}

.esri-zoom .esri-widget--button:last-child{
    border-bottom: 1px solid var(--border-light);
}

.esri-ui-corner .esri-component{
    box-shadow: 0 0 16px rgba(16, 24, 40, 0.12);
}

.esri-ui-bottom-left{
    transition: all 0.5s ease-in-out;
}

.esri-ui-bottom-left.map-sidebar-show{
    left: 600px;
}

.esri-component.esri-expand{
    border-radius: 8px;
    border: 2px solid var(--white);
    box-shadow: 0 0 8px rgba(3, 14, 55, 0.2);
}

.esri-component.esri-expand .esri-icon-collapse{
    transform: none;
}

.esri-component.esri-expand .esri-widget--button{
    width: 90px;
    height: 90px;
    background-image: url("../images/img_maps_layer1.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    align-items: flex-end;
    flex-wrap: wrap;
    align-content: flex-end;
    justify-content: left;
    padding: 6px;
}

.esri-component.esri-expand .esri-icon-font-fallback-text{
    font-family: var(--font-family-inter) !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--white);
    width: 100%;
    height: auto;
    position: relative;
    text-align: left;
}

.esri-basemap-gallery__item-title{
    font-family: var(--font-family-inter);
    font-size: 14px;
    line-height: 20px;
    color: var(--body);
}

.esri-icon:before, 
.esri-component.esri-expand .esri-collapse__icon::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #0F172B;
    vertical-align: top;
}

.esri-component.esri-expand .esri-collapse__icon::before {
    mask: url("../images/icon_layers.svg") no-repeat center / contain;
    -webkit-mask: url("../images/icon_layers.svg") no-repeat center / contain;
    background-color: var(--white);
}

.esri-icon-search:before {
    mask: url("../images/icon_search.svg") no-repeat center / contain;
    -webkit-mask: url("../images/icon_search.svg") no-repeat center / contain;
}

.esri-icon-locate:before {
    mask: url("../images/icon_my_location.svg") no-repeat center / contain;
    -webkit-mask: url("../images/icon_my_location.svg") no-repeat center / contain;
}

.esri-rotating::before {
    mask: url("../images/icon_progress_activity.svg") no-repeat center / contain;
    -webkit-mask: url("../images/icon_progress_activity.svg") no-repeat center / contain;
}

.esri-icon-rotate::before {
    mask: url("../images/icon_rotate.svg") no-repeat center / contain;
    -webkit-mask: url("../images/icon_rotate.svg") no-repeat center / contain;
}

.esri-icon-center::before {
    mask: url("../images/icon_center.svg") no-repeat center / contain;
    -webkit-mask: url("../images/icon_center.svg") no-repeat center / contain;
}

.esri-icon-plus:before {
    mask: url("../images/icon_plus.svg") no-repeat center / contain;
    -webkit-mask: url("../images/icon_plus.svg") no-repeat center / contain;
}

.esri-icon-minus:before {
    mask: url("../images/icon_minus.svg") no-repeat center / contain;
    -webkit-mask: url("../images/icon_minus.svg") no-repeat center / contain;
}

.esri-icon-erase:before {
    mask: url("../images/icon_directions_off.svg") no-repeat center / contain;
    -webkit-mask: url("../images/icon_directions_off.svg") no-repeat center / contain;
}

.esri-icon-location:before {
    mask: url("../images/icon_location_on.svg") no-repeat center / contain;
    -webkit-mask: url("../images/icon_location_on.svg") no-repeat center / contain;
}

.esri-icon-layers:before {
    mask: url("../images/icon_layers.svg") no-repeat center / contain;
    -webkit-mask: url("../images/icon_layers.svg") no-repeat center / contain;
}

.esri-icon-expand:before {
    mask: url("../images/icon_expand.svg") no-repeat center / contain;
    -webkit-mask: url("../images/icon_expand.svg") no-repeat center / contain;
}

.esri-icon-zoom-out-fixed:before {
    mask: url("../images/icon_fullscreen.svg") no-repeat center / contain;
    -webkit-mask: url("../images/icon_fullscreen.svg") no-repeat center / contain;
}

.esri-icon-zoom-in-fixed:before {
    mask: url("../images/icon_fullscreen_exit.svg") no-repeat center / contain;
    -webkit-mask: url("../images/icon_fullscreen_exit.svg") no-repeat center / contain;
}

/* .esri-component.esri-expand .esri-collapse__icon {
    content: '';
    background-image: url("../images/icon_stack.png");
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.esri-component.esri-expand .esri-collapse__icon::before{
    content: none;
}

.esri-icon-search:before {
    content: '';
    background-image: url("../images/icon_search.png");
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.esri-icon-center:before {
    content: '';
    background-image: url("../images/icon_center.png");
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.esri-icon-rotate:before {
    content: '';
    background-image: url("../images/icon_rotate.png");
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.esri-icon-locate:before {
    display: block;
    content: '';
    background-image: url("../images/icon_my_location.png");
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
} */

.esri-icon-360:before {
    display: block;
    content: '';
    background-image: url("../images/icon_360.png");
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* .esri-icon-printer:before {
    display: block;
    content: '';
    background-image: url("../images/print.png");
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.esri-icon-check-mark:before {
    content: '';
    background-image: url("../images/print1.png");
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
} */

.esri-widget--button,
.esri-ui-corner .esri-component {
    border-radius: 4px;
}

.esri-widget--button:focus-visible {
    outline: none;
}

/* .esri-icon-plus:before {
    display: block;
    content: '';
    background-image: url("../images/icon_plus.png");
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.esri-icon-minus:before {
    display: block;
    content: '';
    background-image: url("../images/icon_minus.png");
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
} */

/*********************Popup Location***********************/

.esri-view-width-xlarge .esri-popup__main-container,
.esri-view-width-large .esri-popup__main-container {
    width: 600px;
    max-height: 500px;
}

.maps-popup__large .esri-view-width-xlarge .esri-popup__main-container,
.maps-popup__large .esri-view-width-large .esri-popup__main-container {
    width: 700px;
}

.esri-popup.esri-popup--shadow{
    box-shadow: none;
}

.esri-popup__main-container{
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(3, 14, 55, 0.2);
}

.esri-popup__pointer .esri-popup--shadow {
    box-shadow: 0 1px 8px rgba(3, 14, 55, 0.2);
}

.esri-popup__content{
    padding: 0 16px 16px !important;
    margin: 0;
    padding-right: 10px;
    scrollbar-color: var(--scrollbar-thumb) var(--white);
    scrollbar-width: thin;
}

.popup-content > .popup-info:not(:last-of-type){
    margin-bottom: 8px;
}

.popup-content > .popup-info{
    display: flex;
    flex-wrap: wrap;
}

.popup-content > .popup-info.group-info{
    margin-bottom: 0;
    flex-wrap: nowrap;
}

.popup-content .group-info .popup-image{
    width: 72px;
    height: 72px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 16px;
    margin-bottom: 8px;
    flex: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.popup-content .group-info .popup-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: none;
}

.popup-content .group-info .popup-name{
    flex-grow: 1;
    margin-bottom: 8px;
}

.popup-content .group-info .popup-name span{
    font-size: 16px;
    line-height: 24px;
    display: block;
    color: var(--body);
}

.popup-content .group-info .popup-name .name{
    font-family: var(--font-family-inter);
    font-weight: 600;
    margin-bottom: 4px;
}

.popup-content > .popup-info:not(.group-info) .title-opacity{
    flex-grow: 1;
    margin-right: 8px;
}

.popup-content > .popup-info span{
    font-family: var(--font-family-inter);
    font-size: 16px;
    line-height: 24px;
    color: var(--body);
    display: inline-block;
}

.popup-content > .popup-info:not(.group-info) span:not(.title-opacity){
    font-family: var(--font-family-inter);
    font-weight: 600;
}

.popup-content > .popup-info .title-opacity{
    font-size: 14px;
}

.opacity-50{
    opacity: 0.5;
}

.opacity-70{
    opacity: 0.7;
}

.text-semibold {
    font-weight: 600;
}

.popup-info__wrapper p {
    font-family: var(--font-family-inter);
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 1rem;
    color: var(--body);
}

.esri-feature-content .popup-info__wrapper p:last-child {
    margin-bottom: 1rem;
}

.esri-popup__footer .esri-popup__button {
    font-family: var(--font-family-inter);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    /* padding: 4px 8px;
    border-radius: 4px; */
    /* color: var(--primary);
    background-color: var(--green-light); */
    /* margin-bottom: 10px; */
}

.esri-popup__footer .esri-popup__navigation{
    border-radius: 4px;
    /* background-color: var(--green-light); */
    /* margin-bottom: 10px; */
}

.esri-popup__footer .esri-popup__navigation .esri-popup__button{
    border-radius: 0;
    background-color: transparent;
    margin-bottom: 0;
}

.esri-component.esri-popup--is-docked.esri-popup--is-docked-top-right .esri-popup__footer .esri-popup__button,
.esri-component.esri-popup--is-docked.esri-popup--is-docked-top-right .esri-popup__footer .esri-popup__navigation{
    margin-bottom: 6px;
}

.esri-component.esri-popup--is-docked.esri-popup--is-docked-top-right .esri-popup__footer .esri-popup__navigation .esri-popup__button{
    margin-bottom: 0;
}

.esri-ui .esri-popup--is-docked.esri-popup--is-docked-top-right .esri-popup__footer {
    order: 1;
}

.esri-ui .esri-popup--is-docked {
    right: 0;
    margin: 15px;
}

/* .esri-popup__footer .esri-popup__button.esri-popup__action .esri-popup__icon{
    display: none;
} */

/* .esri-popup__inline-actions-container{
    padding: 0 16px;
} */

.esri-popup__header-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--body);
    padding-left: 9px;
}

.esri-popup__header-buttons .esri-popup__button:last-of-type{
    border-radius: 50%;
    background-color: var(--gray);
    width: 20px;
    height: 20px;
    padding: 0;
    margin-top: 10px;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.esri-popup__header-buttons .esri-popup__button.esri-popup__button--dock{
    margin-right: 5px;
}

.esri-popup--is-docked{
    right: 50px;
}

.esri-basemap-gallery,
.esri-basemap-gallery__item-thumbnail{
    border-radius: 4px;
}

.esri-basemap-gallery__item-title{
    padding: 0 10px;
    color: var(--body);
}

.esri-icon-close:before {
    font-size: 12px;
    line-height: 16px;
    display: block;
    text-align: center;
    color: var(--white);
}

/* .esri-ui .esri-popup .esri-widget__heading {
    display: none;
} */

/* .esri-popup__header-container--button {
    padding: 0 10px;
} */

.esri-features__container {
    max-height: 100%;
    overflow: auto;
}

.esri-view-width-greater-than-large .esri-ui-corner .esri-basemap-gallery {
    width: 300px;
}

.esri-basemap-gallery__item-container {
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    transition: opacity 250ms ease-in-out;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    gap: 0;
}

.esri-basemap-gallery:focus-within {
    outline: 0;
}

.esri-basemap-gallery__item {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 6px 7px;
    cursor: pointer;
    border-left: 3px solid rgba(0, 0, 0, 0);
    border-right: 3px solid rgba(0, 0, 0, 0);
    border-top: 0;
    border-bottom: 0;
    animation: esri-fade-in 500ms ease-in-out;
    transition: background-color 250ms ease-in-out;
}

@supports (object-fit: cover) {
    .esri-basemap-gallery__item .esri-basemap-gallery__item-thumbnail {
        height: 64px;
        width: 64px;
        object-fit: cover;
        min-width: unset;
    }
}

.esri-basemap-gallery__item .esri-basemap-gallery__item-thumbnail {
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(110, 110, 110, .3);
}

.esri-basemap-gallery--grid .esri-basemap-gallery__item-content {
    width: auto;
}

.esri-basemap-gallery__item-title {
    padding: 0;
}

.esri-basemap-gallery__item--selected, .esri-basemap-gallery__item.esri-basemap-gallery__item--selected:hover, .esri-basemap-gallery__item.esri-basemap-gallery__item--selected:focus {
    border-left-color: #0079c1;
    border-right-color: transparent;
}

.esri-basemap-gallery__item:hover {
    border-color: transparent;
}

.esri-ui .esri-attribution {
    display: none;
}

/*********************Search Result***********************/

.form-filter .form-group {
    margin-bottom: 1rem;
}

.form-filter .form-group input:focus {
    box-shadow: none;
}

.form-filter .group-button-action {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.form-filter .group-button-action .btn {
    min-width: 100px;
}

/* .map-page-body .card-body .group-button-action{
    margin-top: 8px;
} */

.map-page-body .card-body .form-filter{
    padding-bottom: 16px;
}

.map-page-body .search-result{
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.map-page-body .search-result .header-result{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}

.map-page-body .search-result .header-result .title-result{
    font-family: var(--font-family-inter);
    font-weight: 600;
    font-size: 26px;
    line-height: 32px;
    color: var(--primary);
    margin-bottom: 10px;
}

.map-page-body .search-result .header-result .total-result{
    font-family: var(--font-family-inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--gray);
    margin-bottom: 10px;
}

.result-list .result-list-item{
    display: flex;
    cursor: pointer;
}

.result-list .result-list-item:not(:last-of-type){
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.result-list .result-list-item .result-item-content{
    flex-grow: 1;
    margin-right: 16px;
}

.result-list .result-list-item .result-item-content h5{
    font-family: var(--font-family-inter);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--body);
}

.result-list .result-list-item .result-item-content .multi-row .info{
    display: inline-block;
}

.result-list .result-list-item .result-item-content .single-row .info{
    display: block;
}

.result-list .result-list-item .result-item-content .multi-row > .info:not(:last-of-type){
    margin-right: 24px;
}

.result-list .result-list-item .result-item-content span{
    margin-top: 4px;
}

.result-list .result-list-item .result-item-content .detail {
    font-weight: 500;
    text-decoration: underline;
    color: var(--primary);
    margin-top: 4px;
    display: inline-block;
}

.result-list .result-list-item .result-item-image{
    width: 72px;
    height: 72px;
    border-radius: 4px;
    overflow: hidden;
    flex: none;
}

.result-list .result-list-item .result-item-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/*****************Fonts CMS***************/

.content-body .esri-basemap-gallery__item-title,
.content-body .popup-content > .popup-info span,
.content-body .map-page-body .search-result .header-result .total-result,
.content-body .popup-info__wrapper p {
    font-family: "Roboto";
    font-weight: 400;
}

.content-body .esri-popup__footer .esri-popup__button {
    font-family: "Roboto Medium";
    font-weight: 500;
}

.content-body .popup-content .group-info .popup-name .name,
.content-body .popup-content > .popup-info:not(.group-info) span:not(.title-opacity),
.content-body .result-list .result-list-item .result-item-content h5,
.content-body .map-page-body .search-result .header-result .title-result {
    font-family: "Roboto Bold";
    font-weight: 700;
}

/*******************Responsive********************/

/***************************Responsive Media******************************/

@media screen and (max-width:1442px){
    
}

@media screen and (max-width:1367px){
    
}

@media screen and (max-width:1024px){
    
}

@media screen and (max-width: 992px){
    
}

@media screen and (max-width: 800px){

}

@media screen and (max-width: 768px){

    .map-page-body #map-slider{
        width: 360px;
    }

    .map-page-body #map-slider.toggle-display{
        left: -360px;
    }

    .esri-ui-bottom-left.map-sidebar-show {
        left: 360px;
    }

    .map-page-body .search-result .header-result .title-result {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .result-list .result-list-item .result-item-content span {
        margin-top: 6px;
    }

    .esri-widget--button {
        width: 32px;
        height: 32px;
    }

    .esri-icon-plus:before,
    .esri-icon-minus:before,
    .esri-icon-check-mark:before,
    .esri-icon-printer:before, 
    .esri-icon-locate:before, 
    .esri-icon-layers:before, 
    .esri-icon-search:before,
    .esri-icon-center:before,
    .esri-icon-rotate:before,
    .esri-component.esri-expand .esri-collapse__icon{
        width: 20px;
        height: 20px;
    }

    .esri-popup__footer .esri-popup__button.esri-popup__action .esri-popup__icon {
        display: inline-block;
    }
}

@media screen and (max-width: 600px){
    .esri-view-width-xsmall .esri-expand--auto .esri-expand__mask--expanded,
    .esri-view-height-small .esri-expand--auto .esri-expand__mask--expanded {
        display: none;
    }

    .esri-component.esri-expand,
    .esri-view-width-xsmall .esri-expand--auto .esri-expand__container--expanded,
    .esri-view-height-small .esri-expand--auto .esri-expand__container--expanded {
        background-color: transparent;
    }

    .esri-view-width-xsmall .esri-expand--auto .esri-expand__container--expanded,
    .esri-view-height-small .esri-expand--auto .esri-expand__container--expanded {
        position: relative;
        height: auto;
        overflow: unset;
    }

    .esri-view-width-xsmall .esri-expand--auto .esri-expand__container--expanded .esri-expand__panel,
    .esri-view-height-small .esri-expand--auto .esri-expand__container--expanded .esri-expand__panel {
        padding: 0;
    }

    .esri-view-height-xsmall .esri-ui-corner .esri-component .esri-expand__content,
    .esri-view-height-medium .esri-ui-corner .esri-component .esri-expand__content,
    .esri-view-height-small .esri-ui-corner .esri-component .esri-expand__content {
        position: absolute;
        top: -115px;
        width: 200px;
        bottom: auto;
        left: 0;
        margin: 0;
    }

    .esri-view-height-xsmall .esri-expand .esri-widget--panel-height-only,
    .esri-view-height-small .esri-expand .esri-widget--panel-height-only {
        max-height: unset;
    }

    .esri-basemap-gallery--grid .esri-basemap-gallery__item-container {
        padding: 0;
        gap: 0;
    }

    .esri-basemap-gallery--grid .esri-basemap-gallery__item {
        flex-flow: row nowrap;
        gap: 8px;
        border: 0;
    }

    .esri-basemap-gallery__item .esri-basemap-gallery__item-thumbnail {
        width: 32px;
        height: 32px;
    }

    .esri-component.esri-expand .esri-icon-font-fallback-text {
        display: none;
    }

    .esri-component.esri-expand .esri-widget--button {
        width: 48px;
        height: 48px;
        align-content: center;
        justify-content: center;
    }

    .popup-content > .popup-info {
        flex-direction: column;
    }

    .esri-popup--is-docked {
        right: 0;
    }

    .esri-ui .esri-popup--is-docked {
        margin: 0;
    }

    .esri-popup__main-container {
        border-radius: 8px 8px 0 0;
        border-bottom: 1px solid rgba(110, 110, 110, .3);
    }

    .esri-view-width-less-than-medium .esri-popup__main-container {
        width: 100%;
    }
}

@media screen and (max-width: 540px) {
    /* .esri-popup__main-container {
        border-radius: 0 8px 8px 0;
    } */
}

@media screen and (max-width: 426px){
    .map-page-body #map-slider {
        width: 100%;
    }

    .map-page-body #map-slider.toggle-display{
        left: -100%;
    }

    .esri-ui-bottom-left.map-sidebar-show {
        left: 0;
    }
}

@media screen and (max-width: 376px){

}

@media screen and (max-width: 320px) {

}