button.clean-button {
    background: transparent;
    border: none;
}

input.clean-input {
    border: none;
}

.circular-locator-nomap * {
    box-sizing: border-box;
}

.circular-locator-nomap .search-container {
    display: flex;
    flex-direction: row;
    border: 1px solid black;
    border-radius: 25px;
    overflow: hidden;
}

.circular-locator-nomap .search-container:focus-within {
    border-color: darkblue;
}

.cln-search {
    padding: 0 16px;
    width: 100%;
    font-size: 16px;
    line-height: 40px;
    margin: 3px 0 3px 3px;
    border-radius: 25px 0 0 25px;
}

.cln-search-btn {
    color: cornflowerblue;
    border-radius: 0 25px 25px 0;
    font-size: 24px;
    margin: 3px 4px 3px 0;
    padding-right: 13px;
    min-width: 2.5rem;
}

.cln-search-btn:focus,
.cln-search-btn:hover {
    background: #eeeeee;
}

.cln-search-btn:focus {
    outline: 2px solid;
}

.cln-locator-icon {
    text-align: center;
    font-size: 30px;
    margin-top: 30px;
    color: cornflowerblue;
}

.cln-locator-text {
    text-align: center;
    font-size: 24px;
    line-height: normal;
    max-width: 488px;
    margin: 20px auto 0 auto;
}

.cln-locator-icon i {
    display: inline-block;
    background: aliceblue;
    padding: 9px 10px 10px 10px;
    border-radius: 40px;
}

.cln-sec-seperator,
.cln-row-seperator {
    background: #aaaaaa;
    margin: 10px auto;
}

.cln-sec-seperator {
    height: 17px;
}

.cln-row-seperator {
    height: 3px;
}

.stc-store-row {
    display: flex;
    justify-content: space-between;
}

.stc-store-links {
    margin-top: 7px;
    justify-content: flex-start;
    gap: 12px;
}

.stc-store-links .pipe {
    display: none;
}

.stc-store-link {
    border: 3px solid #005695;
    border-radius: 5px;
    padding: 4px 12px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    background: #005695;
}

a.stc-store-link:active,
a.stc-store-link:visited {
    color: white;
}

a.stc-store-link:focus,
a.stc-store-link:hover {
    background: white;
    color: black;
}

.stc-store-item h3.stc-store-name {
    margin-top: 0;
}

.stc-store-item h3 a {
    text-decoration: none;
}

.stc-store-item .stc-store-right {
    text-align: right;
}

.stc-store-item .stc-store-right>* {
    margin-bottom: 10px;
}

.stc-store-right i,
.stc-store-right svg {
    padding-left: 5px;
}

@media screen and (max-width: 350px) {
    .stc-store-item {
        display: block;
    }

    .stc-store-item .stc-store-right {
        text-align: left;
        border-top: 1px solid #aaaaaa;
    }

    .stc-store-item .stc-store-right>* {
        margin-bottom: 0;
    }
}

@media (prefers-reduced-motion: no-preference) {
    a.stc-store-link {
        transition: background-color 0.2s ease;
    }
}

/* store-locator-buttons */
.circular-locator-buttons * {
    box-sizing: border-box;
}

.circular-locator-buttons {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 3%;
    row-gap: 20px;
    justify-content: center;
}

.circular-locator-buttons>div {
    border: 1px solid #c3c3c3;
    flex-basis: 31.3%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

a.fancy-button {
    background: #3b86c9;
    border-radius: 5px;
    border: 1px solid #0d3d6b;
    color: white !important;
    padding: 8px 18px;
    text-decoration: none;
}

a.fancy-button:hover {
    background: #5097db;
}

a.fancy-button:focus,
a.fancy-button:focus-within {
    outline-style: dashed;
    outline-width: 1px;
    outline-offset: 1px;
    outline-color: gray;
}

@media screen and (max-width: 900px) {
    .circular-locator-buttons>div {
        flex-basis: 48.5%;
    }
}

@media screen and (max-width: 600px) {
    .circular-locator-buttons>div {
        flex-basis: 100%;
    }
}