.slsa-listing ul {
    list-style: none;
    display: flex;
    padding-left: 0;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.slsa-listing ul li {
    list-style: none;
}

.slsa-box {
    display: flex;
    justify-content: center;
    width: 224px;
    height: 225px;
    border: 1px solid #FCDCAB;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    position: relative;
    align-items: center;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.salsa-state-map {
    position: absolute;
    max-width: 100%;
    z-index: -6;
    left: 0;
    right: 0;
    text-align: center;
}

.salsa-state-map img {
    width: auto;
}

.slsa-content-box {
    display: flex;
    flex-direction: column;

}

.slsa-text,
.slsa-state-name {
    text-transform: uppercase;
    padding: 0 10px;
}

.slsa-text,
.slsa-link {
    color: #DDA73A;
    word-break: break-word;
}

.slsa-state-name {
    color: #5D3D00;
    font-size: 2rem;
    margin: 15px 0;
}

.alphabatical-search-container {
    display: flex;
    padding: 8px 24px;
    justify-content: center;
    gap: 1px;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 4px;
    margin: 20px 0 10px;
}

.alphabatical-search-container li {
    list-style: none;
}

.alphabatical-search-container li button {
    width: 38px;
    height: 38px;
    padding: 0;
    font-weight: 600;
    font-size: 1.1em;
}

.alphabatical-search-container li button:hover,
.alphabatical-search-container li button:focus,
.alphabatical-search-container li button.active {
    background-color: #dca73a;
    outline: none;
    color: #fff;
}

@media (max-width: 991px) {
    .alphabatical-search-container li {
        padding-bottom: 5px;
    }
    .slsa-listing ul li {
        padding-bottom: 0;
    }
    .slsa-listing ul{
        gap: 15px;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .slsa-box {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 420px) {
    .slsa-box {
        width: 185px;
        height: 200px;
    }
    .alphabatical-search-container li button {
        width: 36px;
        height: 36px;
    }
}