.retail-stores {
    padding: 1.75rem 0;
}

.retail-stores .row-gap {
    row-gap: 1.75rem;
}

.retail-stores .heading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0rem;
    padding-bottom: 1.75rem;
}

.retail-stores .heading-wrapper .pre-heading {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: var(--red-color);
    margin: 0;
}

.retail-stores .heading-wrapper .heading {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    color: var(--navy-color);
    margin: 0;
}

.retail-stores .map {
    width: 100%;
    height: auto;
}

.retail-stores .map path {
    cursor: pointer;
    transition: fill 0.3s ease;
    fill: var(--light-gray-color);
    stroke: var(--navy-color);
}

.retail-stores .map path:hover {
    fill: #e6e6e6;
}

.retail-stores .map path.active {
    fill: #2084E2;
}

.retail-stores .single-voivodeship {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-left: 1.75rem;
}

.retail-stores .single-voivodeship .heading {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    color: var(--navy-color);
    margin: 0 0 1.5rem 0;
}

.retail-stores .single-voivodeship .retails-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.retail-stores .single-voivodeship .retails-wrapper .name {
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--red-color);
    margin: 0 0 0.5rem 0;
}

.retail-stores-message {
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    color: var(--navy-color);
    text-align: center;
    padding-left: 3.75rem;
    opacity: 1;
    transition: opacity 0.3s ease;
    width: 100%;
    justify-content: center;
}

.retail-stores-message.hidden {
    opacity: 0;
}

.retail-stores-wrapper {
    display: none;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.retail-stores-wrapper[aria-hidden="false"] {
    opacity: 1;
}

path[data-map-active="true"] {
    cursor: pointer;
    transition: fill 0.3s ease;
}

path[data-map-active="true"]:hover {
    fill: var(--light-gray-color);
}

path[data-map-active="true"].active {
    fill: var(--blue-color);
}

path[data-map-active="true"].active:hover {
    fill: var(--blue-color);
}

@media (max-width: 991px) {
    .retail-stores .single-voivodeship {
        padding-left: 0;
    }

    .retail-stores .single-voivodeship .heading {
        text-align: center;
    }

    .retail-stores .retails-wrapper {
        text-align: center;
    }
}