html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}
.map,
#rinks-map {
    width: 100%;
    height: 100%;
}
.map {
    position: relative;
    overflow: hidden;
}
.map .map-filter {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1000px;
    background: #fff;
    max-width: 98% ;
    border-radius: 0 0 10px 10px;
    text-align: center;
    -webkit-transform: translate(-50%, -100%);
            transform: translate(-50%, -100%);
    -webkit-transition: .4s cubic-bezier(.62,.28,.23,.99);
    transition: .4s cubic-bezier(.62,.28,.23,.99);
}

.map .map-filter.is-visible {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
}
.map .map-filter .map-filter-toggle-btn {
    position: absolute;
    left: 50%;
    top: calc(100% + 15px);
    display: block;
    width: 60px;
    height: 60px;
    padding: 0;
    background: #fff;
    border: none;
    border-radius: 60px;
    font-size: 1em;
    line-height: 60px;
    -webkit-box-shadow: 0 0 15px rgba(0,0,0, 0.3);
            box-shadow: 0 0 15px rgba(0,0,0, 0.3);
    text-align: center;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    cursor: pointer;
}
.map .map-filter .map-filter-toggle-btn svg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 32px;
    height: 32px;
    -webkit-transition: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.map .map-filter .map-filter-item {
    float: left;
    width: 25%;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.map .map-filter h3 {
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.map .map-filter ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}
.map .map-filter label {
    position: relative;
    overflow: hidden;
    display: block;
    padding: 5px 15px;
    cursor: pointer;
}
.map .map-filter li:hover label,
.map .map-filter li.active label {
    background: #FF3333;
    color: #fff;
}
.map .map-filter input {
    position: absolute;
    left: -999px;
    top: 0;
    opacity: 0;
}
@media (max-width: 720px) {
    .map {
        font-size: 12px;
    }
    .map .map-filter .map-filter-item {
        float: none;
        width: 100%;
        height: auto;
    }
    .map .map-filter h3 {
        margin: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    .map .map-filter ul {
        padding: 5px 0 0;
    }
    .map .map-filter ul li {
        display: inline-block;
    }
    .map .map-filter label {
        padding: 2px 5px;
        border-radius: 3px;
    }
}