/* ########## CONTAINER ITEMS ########## */
.pgs-wp-cm {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;

    .notextselect {
        -webkit-user-select: none; /* Safari */
        -ms-user-select: none; /* IE 10 and IE 11 */
        user-select: none; /* Standard syntax */
    }
}
.pgs-wp-cm-item.item-0 {
    grid-column: 1;
}
.pgs-wp-cm-item.item-1 {
    grid-column: 3 / span 5;
}

@media screen and (max-width: 980px) {
    .pgs-wp-cm-item.item-0 {
        grid-column: 1 / span 5;
    }
    .pgs-wp-cm-item.item-1 {
        display: none;
    }
}

/* ########## PEOPLE CAPTION ########## */
.pgs-map-cm-item-placecaption {
    font-family: 'MrDafoe';
    font-size: 60px;
    color: #982329;
}

.pgs-map-cm-item-peoplescaption h2 {
    font-weight: 700;
    margin-top: 18px;
    font-size: 46px;
}

.pgs-map-cm-item-filter {
    margin-bottom: 20px;

    fieldset {
        border: none;
        padding: 0;
        margin: 0;
    }
    select {
        border: rgb(187, 187, 187) 1px solid;
        border-radius: 3px;
        padding-left: 10px;
        height: 39px;
        width: 100%;
    }
}

.pgs-map-cm-item-divider {
    margin-bottom: 35px;
    margin-top: 35px;
    position: relative;
    display: block;
    height: 8px;

    div {
        background-color: #982329;
        position: absolute;
        height: 100%;
        width: 35.5px;
        left: -50px;
        top: 0;
    }
}

@media screen and (max-width: 980px) {
    .pgs-map-cm-item-divider {
        margin-bottom: 3px;

        div {
            width: 84.125px;
        }
    }
}

@media screen and (max-width: 767px) {
    .pgs-map-cm-item-divider div {
        left: 0;
    }
}

/* ########## PEOPLE ########## */
.pgs-map-cm-item-people-img {
    position: relative;

    img {
        margin-bottom: -7px;
        transition: transform 300ms ease;
        height: auto;
        width: 100%;
    }

    .badge {
        background-color: #982329;
        border-radius: 50px;
        border-style: solid;
        border-width: 0;
        line-height: 1em;
        font-family: 'Work Sans', Helvetica, Arial, Lucida, sans-serif;
        font-weight: bold;
        max-width: 100%;
        font-size: 12px;
        position: absolute;
        padding: 7px 15px;
        bottom: 1rem;
        right: 1rem;
        color: #FFFFFF;
    }
}

.pgs-map-cm-item-people-text-container {
    background-color: rgb(229, 231, 235);
    padding: 20px;

    a, h4 {
        font-weight: bold;
    }

    h4 {
        font-size: 24px;
    }

    a {
        text-decoration: none;
        margin-top: 17px;
        cursor: pointer;
        color: rgb(206, 76, 76);
    }
}

/* ########## MAP ########## */
.pgs-wp-cm-item-map {
    height: auto;
    width: 100%;
}

.pgs-wp-cm-item-map-location {
    cursor: pointer;
    stroke: #BF2C2C;
    stroke-width: 20px;
    stroke-dasharray: 5,2;
    stroke-linejoin: round;

    &.city,
    &.state  {
        fill: #FFFFFF;
    }
}
.pgs-wp-cm-item-location-info {
    display: none;

    span {
        background-color: #FFFFFF;
        border-radius: 5px;
        border-bottom: 1px solid #BF2C2C;
        border-right: 1px solid #BF2C2C;
        border-left: 0.5px solid #BF2C2C;
        line-height: 36px;
        box-shadow: 4px 5px 11px 2px #BF2C2C4F;
        font-size: 31px;
        padding: 10px;
        display: table-caption;
    }
    &.active {
        display: initial;
    }
}
.pgs-wp-cm-item-map-location:hover {
    fill: #BF2C2C;
}