.area-map-wrapper {
    margin-bottom: 80px;
}
.area-map-columns {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.area-map-column {
    width: 50%;
}
.area-map-column-right {
    display: flex;
    justify-content: flex-end;
}
.area-map-column-right img {
    width: 80%;
}
.area-map-tabs {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: var(--colour-alabaster);
    border-radius: 30px 30px 0 0;
    border-bottom: 1px solid var(--colour-dove-gray);
}
.area-map-tab {
    width: 50%;
    text-align: center;
    font-size: var(--font-20px);
    font-weight: bold;
    color: var(--colour-blue-bayoux);
    padding: 21px 0;
    cursor: pointer;
}
.area-map-tab.active {
    background-color: var(--colour-endeavour);
    color: var(--colour-white);
    border-radius: 30px 30px 0 0;
}
.area-map-tab-content {
    display: none;
}
.area-map-tab-content.active {
    display: block;
}
.area-map-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    grid-area: 10px;
}
.area-map-heading {
    width: 50%;
    color: var(--colour-blue-bayoux);
    font-size: var(--font-20px);
    font-weight: bold;
}
.area-map-search-form {
    width: 50%;
    height: 40px;
    display: flex;
    justify-content: flex-end;
    margin-right: 0;
}
.area-map-search-form input {
    width: 150px;
}
.area-map-search-postcodes {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    width: 50%;
    margin: auto;
    border-radius: 0 0 40px 40px;
    box-shadow: 0px 3px 6px #00000029;
    padding: 15px 20px;
    display: none;
    flex-direction: column;
    gap: 10px;
}
.area-map-search-postcodes.active {
    display: flex;
}
.area-map-search-postcodes-row {
    font-weight: 400;
    font-size: var(--font-20px);
    cursor: pointer;
}
.area-map-search-postcodes-row:hover {
    font-weight: bold;
}
.area-map-content {
    background-color: var(--colour-alabaster);
    padding: 32px 48px 12px;
    border-radius: 0 0 30px 30px;
}
.area-map-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.area-map-location-name {
    width: 50%;
}
.area-map-location-name a {
    color: var(--colour-blue-bayoux);
    font-size: var(--font-16px);
    font-weight: bold;
}
.area-map-btn-desktop {
    width: 165px;
}
.maps-image {
    display: none;
}
.maps-image.active {
    display: block;
}
.area-map-row .area-map-btn-mobile {
    display: none;
    height: 26px;
    width: 26px;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}
.area-map-btn-mobile i {
    margin-left: 0;
}

@media (max-width: 1024px) {
    .area-map-wrapper {
        margin-bottom: 60px;
    }
    .area-map-column-left {
        width: 65%;
    }
    .area-map-column-right {
        width: 35%;
    }
    .area-map-location-name {
        width: 60%;
    }
    .area-map-search-form {
        height: 36px;
    }
    .area-map-content {
        padding: 20px 20px 12px;
    }
}
@media (max-width: 768px) {
    .area-map-wrapper {
        margin-bottom: 40px;
    }
    .area-map-tab {
        font-size: var(--font-16px);
    }
    .area-map-column-left {
        width: 100%;
    }
    .area-map-column-right {
        display: none;
    }
    .area-map-row .area-map-btn-desktop {
        display: none;
    }
    .area-map-row .area-map-btn-mobile {
        display: flex;
    }

    .area-map-row .area-map-btn-mobile i {
        margin-left: 0px;
    }
}
@media (max-width: 480px) {
    .area-map-heading-row {
        flex-direction: column;
    }
    .area-map-heading {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .area-map-search-form {
        width: 100%;
        justify-content: center;
    }
}