﻿.section-before {
    position: relative
}

.paylas-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

    .paylas-container a img {
        width: 32px;
        height: 32px;
        transition: transform 0.2s;
    }

    .paylas-container a:hover img {
        transform: scale(1.1);
    }

.multi-social {
    --icon-size: 35px;
    list-style: none;
    padding-bottom: 10px;
    margin-top: 20px;
}

.author-widget-wrap {
    padding: 20px;
    text-align: center;
}

    .author-widget-wrap .author-info {
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid #cecece;
    }

.multi-social a {
    padding-bottom: 10px;
}
@media (max-width: 767px){
    .author-widget-wrap {
        padding: 20px;
        text-align: center;
        margin-bottom:20px
    }
}
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding-bottom:50px
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #555;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}