.map-section {
    background: #f7f7f7;
    width: 100%;
    height: 700px;
    color: #3E3E45;
    margin-bottom: 100px;
}
.map-wrapper {
    display: flex;
    position: relative;
}
.map-sidebar {
    width: 400px;
    background: #FFF;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    z-index: 1;
}
.map-sidebar-header {
    display: flex;
    flex-direction: column;
}
.map-sidebar-header-title {
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    padding: 27px 20px;
    display: flex;
    align-items: center;
    grid-gap: 5px;
}
.map-sidebar-header-filter {
    display: flex;
    flex-direction: column;
    grid-gap: 12px;
    padding: 0 20px;
}
.map-sidebar-header-filter-search {
    position: relative;
}
.map-sidebar-header-filter-search input {
    width: 100%;
    color: #AAA;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 43px;
    cursor: pointer;
    border-radius: 12px;
    border: 1px solid #D9D9D9;
    background: #FFF;
}
.map-sidebar-header-filter-search input:focus,
.map-sidebar-header-filter-search input:active {
    border-color: #1FBE62;
}
.map-sidebar-header-filter-search svg {
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.map-sidebar-header-filter-tabs {
    display: flex;
    grid-gap: 2px;
    border-radius: 12px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 2px;
}
.map-sidebar-header-filter-tabs button {
    color: #3E3E45;
    font-size: 14px;
    font-weight: 600;
    background-color: transparent;
    padding: 10px 0;
    width: 50%;
}
.map-sidebar-header-filter-tabs button.active {
    color: #fff;
    border-radius: 10px;
    background: #1FBE62;
}
.map_container {
    display: block;
    position: relative;
    width: calc(100% - 400px);
    height: 700px;
    background: #e1e1e1;
}
.map-list {
    display: flex;
    padding: 20px;
    padding-right: 12px;
    flex-direction: column;
    overflow-y: scroll;
}
.map-list {
    max-height: 500px;
    overflow-y: auto;
}
.map-list::-webkit-scrollbar {
    width: 8px;
}
.map-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.map-list::-webkit-scrollbar-thumb {
    background-color: #1fbe62;
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: content-box;
}
.map-list::-webkit-scrollbar-thumb:hover {
    background-color: #169b4f;
}
.map-list-items {
    display: none;
}
.map-list-items.active {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
}
.map-list-items-item {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    background: #FFF;
    cursor: pointer;
    transition: .3s;
}
.map-list-items-item.opened,
.map-list-items-item:hover {
    border: 1px solid #1FBE62;
    transition: .3s;
}
.map-list-items-item-name {
    padding: 17px 60px;
    display: flex;
    flex-direction: column;
    grid-gap: 2px;
    position: relative;
}
.map-list-items-item-name svg {
    position: absolute;
    left: 16px;
    top: 50%;
    width: 32px;
    height: 32px;
    display: block;
    transform: translateY(-50%);
}
.map-list-items-item-name svg.arrow {
    left: auto;
    right: 17px;
    width: 24px;
    height: 24px;
    transform-origin: center center;
    transform: translateY(-50%) rotate(90deg);
    transition: .3s;
}
.map-list-items-item-name-text {
    grid-gap: 3px;
    font-weight: 600;
    font-size: 15px;
}
.map-list-items-item-name-count {
    color: #AAA;
    font-size: 13px;
    font-weight: 400;
}
.map-list-items-item-store {
    display: none;
    flex-direction: column;
    grid-gap: 3px;
    padding: 13px 16px;
    background: rgba(145, 146, 145, 0.05);
    border-top: 1px solid #E5E5E5;
    transition: .3s;
    position: relative;
}
.map-list-items-item-store.current,
.map-list-items-item-store:hover {
    background-color: #1FBE620D;
    transition: .3s;
}
.map-list-items-item.opened .map-list-items-item-store {
    display: flex;
}
.map-list-items-item-name svg path {
    transition: .3s;
}
.map-list-items-item:hover .map-list-items-item-name svg path,
.map-list-items-item.opened .map-list-items-item-name svg path {
    fill: #1FBE62;
    transition: .3s;
}
.map-list-items-item:hover .map-list-items-item-name svg.arrow path,
.map-list-items-item.opened .map-list-items-item-name svg.arrow path {
    fill: #3E3E45;
    transition: .3s;
}
.map-list-items-item.opened .map-list-items-item-name svg.arrow {
    transform-origin: center center;
    transform: translateY(-50%) rotate(0deg);
    transition: .3s;
}
.map-list-items-item-store-name {
    font-size: 15px;
    font-weight: 600;
}
.map-list-items-item-store-address {
    font-family: Raleway;
    color: #6D6D6D;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    grid-gap: 7px;
    align-items: center;
}
.map-list-items-item-store-phones {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #6D6D6D;
    font-size: 13px;
    font-weight: 500;
    transition: .3s;
}
.map-list-items-item-store .radio-btn {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #D9D9D9;
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
}
.map-list-items-item-store .radio-btn:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    background-color: #D9D9D9;
    transform: translate(-50%, -50%);
}
.map-list-items-item-store.current .radio-btn {
    border: 1px solid #1FBE62;
}
.map-list-items-item-store.current .radio-btn:after {
    background-color: #1FBE62;
}
.map-list-items-item-store-phones a {
    font-variant-numeric: lining-nums proportional-nums;
    margin-left: 7px;
    font-family: 'Raleway';
    transition: .3s;
}
.map-list-items-item-store-phones a:hover {
    color: #1FBE62;
    transition: .3s;
}
#store-map .gm-style-iw.gm-style-iw-c {
    padding: 0;
    border-radius: 0;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
#store-map .gm-style-iw-chr .gm-ui-hover-effect {
    width: 36px!important;
    height: 36px!important;
}
#store-map .gm-style-iw-chr .gm-ui-hover-effect>span {
    width: 20px!important;
    height: 20px!important;
    margin: 5px!important;
}
#store-map .gm-style-iw-chr {
    position: absolute;
    top: 0;
    right: 0;
}
#store-map .gm-style-iw-d {
    padding: 0;
    overflow: visible!important;
}
#store-map .gm-style .gm-style-iw-tc::after {
    background-color: #1FBE62;
    height: 8px;
    left: 3px;
    top: 0;
    width: 18px;
}
#store-map .point {
    padding: 15px 18px;
    border: 2px solid #1FBE62;
    display: flex;
    flex-direction: column;
    min-width: 270px;
}

#store-map .point-top {
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    grid-gap: 7px;
}
#store-map .point-bottom {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    grid-gap: 7px;
}
#store-map .point-title {
    color: #3E3E45;
    font-size: 15px;
    font-weight: 600;
}
#store-map .point-subtitle {
    font-size: 13px;
    font-weight: 600;
}
#store-map .point-address {
    font-family: Raleway;
    color: #6D6D6D;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    grid-gap: 7px;
    align-items: center;
}
#store-map .point-phones {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #6D6D6D;
    font-size: 13px;
    font-weight: 500;
    transition: .3s;
}
#store-map .point-phones a {
    font-weight: 500;
    transition: .3s;
    margin-left: 7px;
    font-variant-numeric: lining-nums proportional-nums;
}
#store-map .point-phones a:hover {
    color: #1FBE62;
    transition: .3s;
}
#store-map .point-link {
    color: #3E3E45;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 7px;
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #3E3E45;
    background: #FFF;
    text-align: center;
    transition: .3s;
    margin-top: 5px;
}
#store-map .point-link:hover {
    color: #fff;
    background-color: #1FBE62;
    transition: .3s;
    border: 1px solid #1FBE62;
}
#store-map .point-link svg path {
    transition: .3s;
}
#store-map .point-link:hover svg path {
    fill: #fff;
    transition: .3s;
}


@media (max-width: 1300px){
    .map-section {
        margin-left: 15px;
        margin-right: 15px;
        width: calc(100% - 30px);
    }
}
@media (max-width: 991px){
    .map-sidebar {
        width: 350px;
    }
    .map_container {
        width: calc(100% - 350px);
        height: 600px;
    }
    .map-section {
        height: 550px;
    }
    .map-list {
        max-height: 405px;
    }
}
@media (max-width: 768px){
    .map-wrapper {
        flex-direction: column;
    }
    .map-sidebar {
        width: 100%;
        max-height: 500px;
    }
    .map_container {
        width: 100%;
    }
    .map-section {
        height: auto;
        margin-bottom: 50px;
    }
    .map-sidebar-header-title {
        padding: 15px 20px;
        position: relative;
    }
    .map-sidebar-header-title:after {
        content: "";
        display: block;
        background-image: url("/image/catalog/map/burger.png");
        background-position: center;
        background-repeat: no-repeat;
        width: 24px;
        height: 24px;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    .map-sidebar-header-title.opened:after {
        background-image: url("/image/catalog/map/burger-close.png");
    }
    .map-sidebar-header-filter {
        display: none;
    }
    .map-list {
        display: none;
    }
}
@media (max-width: 450px){
    .map-section {
        height: auto;
        margin-bottom: 30px;
    }
    #store-map .point {
        padding: 10px 10px;
        min-width: auto;
    }
}
@media (max-width: 375px){
    .map-sidebar-header-title {
        font-size: 16px;
    }
    #store-map .point-link {
        padding: 5px;
    }
    #store-map .point-link svg {
        display: none;
    }
}