section.partners {
    position: relative;
    min-height: 50vw;
}

section.partners .wrapper {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
}

.catalog-links {
    display: flex;
}

.catalog-links a {
    padding: .125rem .875rem;
}

.catalog-links a.active {
    color: #e31019;
}

.catalog-links a:first-child {
    padding-left: 0;
}

.content-ctn {
    display: flex;
    margin-top: 2.25rem;
}

.content-ctn > * {
    flex: 0 0 auto;
    width: calc(50% - 1.875rem);
}

.map-square {
    padding-bottom: 100%;
    position: relative;
}

@supports (position: sticky) {
    .map-square {
        position: sticky;
        top: 0;
    }
}

.map-box {
    margin-left: 3.75rem;
    position: relative;
}

.map-ctn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.location {
    background-color: #f6f6f7;
    padding: 2.5rem 2.5rem 2rem 4.5rem;
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    color: #333;
    border-bottom: 1px solid #e4e4e4;
    cursor: pointer;
}

.location::before {
    content: "";
    position: absolute;
    width: .125rem;
    height: 5rem;
    top: 2.5rem;
    left: 2.5rem;
    background: #e31019;
}

.location.active {
    cursor: default;
}

.location:hover{
    background-color: #eeeeef;
}

.location.active::after{
    content:"➜";
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.75rem;
    margin: auto;
    color: #e31019;
    font-size: 1.375rem;
}

.location > * {
    line-height: 1.5em;
}

.location a.wfEditorMode {
    position: absolute;

    right: 2.5rem;
    top: 2.5rem;
}

.location .content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.location .title {
    font-size: 1.125em;
    color: #e31019;
    margin-top: -.375rem;
    margin-bottom: 1rem;
}

.location p {
    margin-top: .25rem;
    margin-bottom: .25rem;
}

.no-location {
    margin-top: 1.25rem;
    font-size: 1.25rem;
    color: #999;
}

.btn-close {
    display: none;
}


@media (max-width: 960px) {
    .content-ctn > .location-list {
        width: 100%;
    }

    .location.active::after{
        display: none;
    }

    .location {
        padding: 2rem 2rem 1.75rem 3.5rem;
    }

    .location::before {
        top: 2rem;
        left: 1.75rem;
    }

    .catalog-links {
        font-size: 1.25rem;
    }

    .map-box {
        display: none;
    }

    .map-box.show {
        display: block;
    }

    .btn-close{
        border-radius: 50%;
        width: 4.75rem;
        height: 4.75rem;
        right: 0;
        left: 0;
        margin: auto;
        bottom: 12vh;
        position: absolute;
        display: block;
    }

    .map-box {
        margin-left: 0;
        width: 100%;
        position: fixed;
        z-index: 900;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, .5);
    }

    .map-square {
        padding-bottom: 0;
    }

    .map-square {
        position: absolute;
        width: calc(100vmin - 4rem);
        height: calc(100vmin - 4rem);
        top: 0;
        left: 0;
        right: 0;
        bottom: 15vh;
        margin: auto;
    }
}

@media (max-width: 640px) {
    .location {
        flex: 0 0 100%;
        border-bottom: 1px solid #e4e4e4;
        font-size: 1.25rem;
    }

    .location:nth-child(2n-1) {
        border-right: none;
    }

    .location:nth-last-of-type(2) {
        border-bottom: 1px solid #e4e4e4;
    }

    .catalog-links {
        flex-wrap: wrap;
    }

    .catalog-links a {
        padding: .25rem 0;
        margin-right: 2rem;
    }

    .shoulder-nav {
        display: none;
    }
}