.gallery-loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 350px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 4px;
    position: relative;
}

.gallery-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #f39c12;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: gallery-spin 1s linear infinite;
}

.gallery-thumb-placeholder {
    width: 70px;
    height: 70px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 4px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    position: relative;
}

.gallery-thumb-spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #f39c12;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: gallery-spin 1s linear infinite;
}

@keyframes gallery-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
