a.storefront-card {
    color: #000000;
}

a.storefront-card:hover {
    color: black;
}

a.storefront-card>div>div {
    transition: all 0.6s;
}

a.storefront-card>div>div:hover {
    /* box-shadow: 0 0 5px 0px black; */
    box-shadow: 0 0 0 0.2rem rgba(20, 57, 79, 0.5);
    transition: all 0.2s;
}

.option-selected {
    box-shadow: 0 0 0 0.2rem rgba(20, 57, 79, 0.5);
    transition: all 0.2s;
}

#htmleditor {
    overflow-y: scroll;
    width: 100%;
    height: 500px;
    background-color: white;
    color: black;
    font-size: 12px;
}

#htmleditor:focus {
    border: 1px solid darkcyan;
}

.spinner-bg {
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
}

.lds-facebook {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 6px;
    width: 13px;
    background: #cef;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
    left: 6px;
    animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
    left: 26px;
    animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
    left: 45px;
    animation-delay: 0;
}

@keyframes lds-facebook {
    0% {
        top: 6px;
        height: 51px;
    }

    50%,
    100% {
        top: 19px;
        height: 26px;
    }
}