.scheme {
    margin-top: 56px;
}

.heading_cont {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.heading {
    width: 100%;
}

.scheme_img {
    width: 100%;
    margin-top: 27px;
}

.scheme_filters {
    margin-top: 56px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: calc(100% - 130px);
}
.scheme_filters.hide {
    display: none;
}

.scheme_head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.sh_btns {
    margin-left: auto;
    white-space: nowrap;
    height: 46px;
    display: flex;
    align-items: center;
}

.sh_btn {
    color: var(--c-red);
    text-decoration: underline;
}

.scheme_filter {
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border: 1px solid var(--c-gray-border);
    cursor: pointer;
    transition: .3s;
}

.scheme_filter:hover {
    color: var(--c-red);
    border-color: var(--c-red);
    background-color: var(--c-red-light);
}

.scheme_filter svg {
    width: 14px;
    height: 14px;
}

.scheme_filter svg * {
    transition: .3s;
}

.scheme_filter:hover svg path {
    fill: var(--c-red);
}

.scheme_filters_clear {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color .3s;
    margin-left: 16px;
}

.scheme_filters_clear:hover {
    color: var(--c-red);
}

.scheme .scheme_show_all {
    letter-spacing: normal;
}

.map_head{
    display: flex;
}

.map_desc{
    width: 100%;
    margin-top: 15px;
}

.scheme_show_all {
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
    background-color: var(--c-red);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    width: 255px;
    height: 54px;
    font-size: 14px;
    font-weight: 700;
}

.map_district{
    margin-top: 30px;
    position: relative;
}

.map_district img{
    max-width: 100%;
    width: 100%;
}

.map_district .map_district_item{   
    padding: 15px;   
    position: absolute;       
    background: #FFFFFF;
    border: 1px solid #C6C6C6;
    border-radius: 11px;
    font-size: 14px;
    color: #282826;
    cursor: pointer;
    transform: translate(-50%, -50%);    
}

.map_district .map_district_item.active{
    font-weight: bold;
    border-color: red;
    border-width: 2px;
}

.map_district button.hide{
    display: none;
}

.map_district button{  
    margin-top: 16px;
    background-color: var(--c-red);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    width: 255px;
    height: 54px;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    cursor: pointer;
}




.map_district .map_district_item.item1{
    left: 13%;
    top: 5%;
}
.map_district .map_district_item.item2{
    left: 61%;
    top: 19%;
}
.map_district .map_district_item.item3{
    left: 49%;
    top: 22%;
}
.map_district .map_district_item.item4{
    left: 40%;
    top: 29%;
}
.map_district .map_district_item.item5{
    left: 77%;
    top: 31%;
}
.map_district .map_district_item.item6{
    left: 60%;
    top: 39%;
}
.map_district .map_district_item.item7{
    left: 43%;
    top: 49%;
}
.map_district .map_district_item.item8{
    left: 77%;
    top: 52%;
}
.map_district .map_district_item.item9{
    left: 52%;
    top: 59%;
}
.map_district .map_district_item.item10{
    left: 65%;
    top: 64%;
}
.map_district .map_district_item.item11{
    left: 36%;
    top: 73%;
}
.map_district .map_district_item.item12{
    left: 31%;
    top: 73%;
}







@media screen and (max-width: 1032px) {
    .sh_btns {
        margin-top: unset;
        height: unset;
        order: 1;
    }

    .scheme_filters {
        order: 2;
        margin-top: 25px;
        width: 100%;
    }

    .heading {
        width: unset;
    }
}

@media screen and (max-width: 808px) {
	.map_desc{
    margin-top: 0;
}

    .scheme_show_all {
        width: 100%;
        margin-top: 83px;
    }

    .scheme_filter {
        padding: 0 10px;
        gap: 4px;
        font-size: 10px;
        height: 28px;
        border-radius: 7px;
    }

    .scheme_filters_clear {
        height: 28px;
        font-size: 10px;
        margin-left: 10px;
    }

    .scheme_filter svg {
        width: 10px;
        min-width: 10px;
        height: 10px;
    }

    .scheme_filters {
        gap: 10px;
    }

    .sh_btn {
        font-size: 16px;
    }

    .map_district .map_district_item{
        padding: 6px;
        font-size: 10px;
    }

    .map_district button{
        margin-top: 10px;       
        width: 100px;
        height: 30px;
        font-size: 12px;
    }
}

