.locations-block__map {
    max-width: 1200px;
    margin: 0 auto 50px;
    width: 100%;
    position: relative;

    img {
        width: 100%;
        height: auto;
    }

    #map {
        overflow: hidden;
        border-radius: 20px;
    }

    #map-no-results {
        display: flex;
        justify-content: center;
        align-items: center;

        width: 100%;
        height: 100%;

        background-color: rgba(21, 101, 170, 0.7);
        border-radius: 20px;
    }
}

.locations-block__list {
    margin-bottom: -30px;
}

.locations-block__item {
    margin-bottom: 30px;
}

.locations-block__map__pin {
    position: relative;
    z-index: 2;
}

.locations-block__map__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;

    img {
        width: 100%;
        height: auto;
    }
}

.wpcm-zip__form {
    max-width: 450px;
    margin: 0 auto 30px;

    .wpcm-zip__group {
        position: relative;
    }
    
    .wpcm-zip__zipcode {
        border: 1px solid rgba(255, 255, 255, .3);
        color: #fff;
        padding-right: 150px;
        font-size: 18px;

        &::placeholder {
            color: #fff;
        }
    }
    .input-field--submit {
        input {
            border: none;
            background: transparent;
        }
    }
    .input-field--submit:hover {
        input {
            color: #071f36 !important;
        }
    }

    .wpcm-zip__submit:focus, 
    .wpcm-zip__submit:hover {
        color: #071f36 !important;
    }
}

.wpcm-zip__form .wpcm-zip__zipcode::placeholder {
    color: #fff !important;
}

.wpcm-zip__form .input-field--submit {
    padding: 0;
    position: absolute;
    right: 0;
    width: 134px;
    height: 52px;
}
.wpcm-zip__form .btn.wpcm-zip__submit {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin: 0;
    height: 100%;
}

.wpcm-zip__clear {
    display: none;
    position: absolute;
    left: calc(100% - 163px);
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.wpcm-zip__clear::before {
    content: '\2715';
    display: block;
    font-size: 14px;
    background: #FFCE07;
    border-radius: 7px;
    color: #071f36;
    width: 20px;
    height: 20px;
    text-align: center;
    transition: all 0.3s ease 0s;
}

.wpcm-zip__clear:hover::before {
    background: #fff;
}

@media (max-width: 1199px) {
    .locations-block__map {
        max-width: 768px;
    }
}

.locations-block__pin {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid red;
}

.location-pin {
    position: absolute;
    width: 3.5%;
}

@media (max-width: 1000px) {
    .location-pin {

    }
}

.location-pin img {
    width: 100%;
    height: auto;
}

.tt_name_sm {
    font-size: 20px;
    font-family: "Nunito", sans-serif;
}

.locations-block__card {
    border-radius: 30px;
    background: #f4f9ff;
    color: #000;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;

    h4 {
        color: #000;
        font-size: 22px;
    }

    p {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .btn {
        margin-bottom: 0;
        margin-top: auto;
        align-self: flex-start;

        &:hover {
            background-color: #0a3051;
            color: #fff;
        }
    }
}

.locations-block__card h4 {
    color: #000;
}

@media (min-width: 1200px) {
    .locations-block__card {
        padding: 25px 30px;
    }

    .locations-block__card h4 {
        font-size: 22px;
    }
}

.locations-block__upper {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 990px;
}

.locations-block__item .notice {
    font-size: 14px;
    padding: 5px;
    color: #c02b0a;
    border: 1.5px solid #c02b0a;
    border-radius: 5px;
}