.sponsor-id {
    /* Default styles for .sponsor-id */
    display: block
}


/* Hide on screens smaller than 768px */
@media (max-width: 1024px) {
    .sponsor-id {
        display: none;
    }
}


#loading-overlay {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading-text {
    margin-top: 10px;
    color: #fff;
    font-size: 24px;
    text-align: center;
    position: absolute;
    top: 55%;
    left: 48%;
}

.js-mobi-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
}

.js-mobi-menu.active {
    display: block;
}

.mobi-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobi-menu__item {
    border-bottom: 1px solid #eee;
}

.mobi-menu__link {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

.mobi-menu__link:hover {
    background-color: #f5f5f5;
}

