.location-wrapper * {
    font-family: "Muli", sans-serif;
}

.location-top-wrapper {
    max-width: 560px;
    margin: 0 auto 40px;
    text-align: center;
}

.location-top-wrapper>h2 {
    line-height: 1.2;
    margin-bottom: 20px;
}

.location-top-wrapper p {
    font-size: 18px;
    color: #262626;
    margin-bottom: 0;
    line-height: 1.4;
}

.location-points-wrapper {
    box-sizing: border-box;
}

.location-iframe-points-wrapper {
    display: none;
}

.location-iframe-points-wrapper .map-inner-warpper {
    display: none;
}

.location-iframe-points-wrapper .map-inner-warpper.active {
    display: block;
}

.map-inner-warpper iframe {
    width: 100%;
    display: block;
    height: 300px;
}

.location-content-wrapper .map-inner-warpper {
    display: none;
    margin-top: 30px;
}

.location-content-wrapper.active .map-inner-warpper {
    display: block;
}

.location-content-wrapper {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #000;
    cursor: pointer;
}

.location-content-wrapper .location-inner-points {
    display: none;
    margin-top: 20px;
}

.location-content-wrapper.active .location-inner-points {
    display: block;
}

.location-content-wrapper:hover .location-name {
    opacity: 0.6;
}

.location-name {
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 0px;
    display: inline-block;
    line-height: 1.2;
}

.location-inner-points>li {
    margin-bottom: 20px;
    line-height: 1;
}

.location-inner-points>li>a {
    position: relative;
    padding-left: 33px;
    line-height: 1.3;
    color: #212738;
    font-weight: 400;
    font-size: 17px;
}

.location-inner-points>li>a,
.location-inner-points>li>a>svg,
.location-name {
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}

.location-inner-points>li>a>svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 18px;
    fill: #212738;
}

.location-inner-points>li>a:hover {
    color: #81ab8f;
}

.location-inner-points>li>a:hover svg {
    fill: #81ab8f;
}

.location-inner-points>li:first-child>a>svg {
    height: 20px;
}

.location-inner-points>li:last-child {
    margin-bottom: 0;
}

@media (min-width: 767px) {
    .location-points-holder {
        display: flex;
        flex-flow: wrap;
    }
    .location-points-wrapper {
        width: 50%;
        padding-right: 30px;
    }
    .location-iframe-points-wrapper {
        width: 50%;
        display: block;
    }
    .location-content-wrapper .map-inner-warpper {
        display: none;
    }
    .location-content-wrapper {
        text-align: left;
        border: 0;
    }
    .location-content-wrapper.active {
        border-left: 1px solid #000;
    }
    .location-content-wrapper.active .map-inner-warpper {
        display: none;
    }
    .location-content-wrapper .location-inner-points {
        display: block;
    }
    .map-inner-warpper iframe {
        height: 100%;
    }
    .map-inner-warpper {
        height: 100%;
    }
    .location-name {
        max-width: 200px;
    }
    .location-top-wrapper {
        margin-bottom: 60px;
    }
}