body {
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
}

html, body {
    height: 100%;
}
.container {
    position: relative;
    width: 100%;
    height: 100%;
}
#map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }

#mapInfo{
    cursor: pointer;
    position: absolute;
    left: calc(50% - 263px);
    bottom: 27px;
    background: #FFFFFF;
    padding: 10px;
    width: 527px;
    height: auto;
    display: flex;
    margin: auto;
    border-radius: 12px;
    padding: 0px;
    border: 1px solid #EBECF0;

}
#filterButtons{
    cursor: pointer;
    position: absolute;
    left: 115px;
    top: 18px;
    padding: 10px;
    width: calc(100% - 164px);
    height: auto;
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    margin: auto;
    padding: 0px;
    gap: 8px;
    
}
#filterButtons{
    cursor: pointer;
    position: absolute;
    left: 115px;
    top: 18px;
    padding: 10px;
    width: calc(100% - 164px);
    height: auto;
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    margin: auto;
    padding: 0px;

    
}
#filterButtons::-webkit-scrollbar {
  display: none;
}
#mapImage{
    width: 181px;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 12px 0px 0px 12px;
    display: flex;
}
#mapDescription{
    padding: 12px;
}
#mapTitle{
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 8px;
}
#mapBuilder{
    color:#85858A;
    font-size: 14px;
    margin-bottom: 8px;
}
.hr {
    margin: 0px 0px 12px 0px;
    height: 1px;
    background-color: #EBECF0;
    border-radius: 1px;
    width: 318px;
}
#mapPrice{
    display: inline;
    
}
#mapCompletion{
    display:inline;
    
}
.vr {
    display: inline;
    height: 41px;
    width: 1px;
    background-color: #EBECF0;
    border-radius: 1px;
}
.mapFooter {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;

}
.mapLabel{
    color: #85858A;
    font-weight: 600;
    font-size: 14px;
}
#mapPrice{
    font-size: 20px;
    font-weight: 700;
    display: inline;
    float: right
}

#mapCompletion{
    display: inline;
    float: left;
}
#mapDate{
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}
.invisible {
    display: none !important;
}
#loader{
    position: absolute;
    width: 96px;
    height: 96px;
    background: #FFFFFF;
    box-shadow: 0px 24px 16px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    z-index: 1!important;
    left: calc(50% - 48px);
    top: calc(50% - 48px);
}

.loader-main {
    margin: 24px;
    width: 48px;
    height: 48px;
    border: 5px solid #7F7F7F;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

#select_district{
    margin-left:auto;
}
.button{
    height: 34px;
    padding: 8px 12px 8px 12px;
    margin: 0px 5px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    background-color: #FFFFFF;
    color: #000000;
    white-space  : nowrap;
    text-overflow: ellipsis;
    
}
.filter-button{
    background-color: #48748B;
    color: #FFFFFF;
    width: 80px;
}
.button-gray:before {
    content:"\A";
    width:15px;
    height:15px;
    border-radius:50%;
    background: #BDC2D3;
    display:inline-block;
    margin:-2px 10px -2px 0px;
}
.button-yellow:before {
    content:"\A";
    width:15px;
    height:15px;
    border-radius:50%;
    background: #FFC700;
    display:inline-block;
    margin:-2px 10px -2px 0px;
}
.button-purple:before {
    content:"\A";
    width:15px;
    height:15px;
    border-radius:50%;
    background: #F572C8;
    display:inline-block;
    margin:-2px 10px -2px 0px;
}
.button-green:before {
    content:"\A";
    width:15px;
    height:15px;
    border-radius:50%;
    background: #5BAD54;
    display:inline-block;
    margin:-2px 10px -2px 0px;
}
.button-blue:before {
    content:"\A";
    width:15px;
    height:15px;
    border-radius:50%;
    background: #6968FF;
    display:inline-block;
    margin:-2px 10px -2px 0px;
}
.button-active{
    background-color: #000000;
    color:#FFFFFF;
}

.marker {

    background-size: cover;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
  }
  .icon_yellow{
    border: 4px solid #FFC700;
  }
  .icon_green{
    border: 4px solid #5BAD54;
  }
  .icon_blue{
    border: 4px solid #6968FF;
  }
  .icon_purple{
    border: 4px solid #F572C8;
  }
  .icon_gray{
    border: 4px solid #BDC2D3;
  }
  .marker:hover{
    border: 4px solid #FF3D00;
  }
  .icon_active{
    border: 4px solid #FF3D00;
  }
.marker_hidden{
    display: none;
}

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

@media only screen and (max-width: 480px) {
    #mapInfo{    
        left: calc(50% - 179px);
        width: 358px;
        height: auto;
       border: 1px solid #EBECF0;  
       display: block;
    }
    #mapImage{
        width: 358px;
        height: 130px;
        border-radius: 12px 12px 0px 0px;
    }
    #filterButtons{
        left: 16px;
        top: 66px;
        width: calc(100% - 32px);
    }
    .mapboxgl-ctrl{
        display: none;
    }
}