.hashtags-form  button[type="submit"] {
    margin-top: 0.5rem;
    width: 100%;
}

.hashtags-results {
    text-align: center;
}

.hashtags-results textarea {
    width: 100%;
    height: 150px;
}

.hashtags-not-found {
    text-align: center;
}

.hashtags-not-found button {
    margin-top: 0.5rem;
    width: 100%;
}

.feed-form button[type="submit"] {
   margin-top: 0.5rem;
}

.feed-profile {
    margin-top: 0.5rem;
}

.feed-profile .thumbnails {
    overflow: auto;
    max-width: 100%;
    max-height: 480px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
}
.feed-profile .thumbnails .thumbnail {
    padding: 0.1rem;
}
.thumbnail.selected img {
    opacity: 0.9;
}
.feed-profile .thumbnails .thumbnail:hover {
    cursor: pointer;
}

.feed-profile .thumbnails .thumbnail > img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.stores-profile {
    margin-top: 0.5rem;
}
.stores-profile .highlights {
    display: flex;
    overflow: auto;
    margin-top: 10px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.stores-profile .highlights .highlight:hover {
   cursor: pointer;
}

.stores-profile .highlights .highlight > img {
    height: 80px;
    width: 80px;
    border-radius: 50px;
}
.highlight {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    cursor: pointer;
    margin-bottom: 25px;
    border: 1px solid #e7e7e7;
}
.stores-profile .stories {
    overflow: auto;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.stores-profile {
    overflow: auto;
    max-width: 100%;
    max-height: 660px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.stores-profile .stories .story > img {
    height: 300px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.stores-profile .stories .story:hover {
    cursor: pointer;
}

.stores-profile .stories .story.selected img {
    border: 4.5px solid #f80;
	opacity: 0.9;
}

#roulette #canvas {
    max-width: 100%;
}

#loader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 0.5;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader > span {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.btn-load-more {
    border-radius: 50rem !important;
}