

/* Start:/local/components/urmall/live.player/templates/.default/style.css?17759697118465*/
/* ==========================================================================
   ОСНОВНАЯ СЕТКА (Две колонки)
   ========================================================================== */
.urmall-live-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 30px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.urmall-live-col-left {
    width: 75%;
    position: sticky;
    top: 20px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 15;
}

.urmall-live-col-right {
    width: 25%;
    //max-height: calc(100vh - 40px);
    //overflow-y: auto;
    //padding-right: 10px;
}

.urmall-live-col-right::-webkit-scrollbar { width: 6px; }
.urmall-live-col-right::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
.urmall-live-col-right::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
.urmall-live-col-right::-webkit-scrollbar-thumb:hover { background: #7f00d4; }

/* ==========================================================================
   СТИЛИ ПЛЕЕРА И ОВЕРЛЕЕВ
   ========================================================================== */
.urmall-live-video {
    width: 100%;
    display: block;
}

.urmall-live-start-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    cursor: pointer;
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease;
}

.urmall-live-start-btn-inner {
    background: rgba(127, 0, 212, 0.9);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(127, 0, 212, 0.4);
    transition: transform 0.2s ease;
}

.urmall-live-start-overlay:hover .urmall-live-start-btn-inner {
    transform: scale(1.05);
}

.urmall-live-start-btn-inner svg {
    width: 24px;
    height: 24px;
}

.urmall-live-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 30; /* Выше заглушки */
    pointer-events: auto;
}

.urmall-live-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.urmall-live-badge:hover {
    background: rgba(127, 0, 212, 0.8);
    transform: translateY(-2px);
    color: #fff;
}

.urmall-live-badge-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 8px;
}

.urmall-live-badge-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

/* --- Лайки --- */
.urmall-live-controls {
    position: absolute;
    bottom: 45px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
    pointer-events: auto;
}

.urmall-live-action-btn {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.2s ease;
    outline: none;
    padding: 0;
}

.urmall-live-action-btn svg { width: 20px; height: 20px; }

.urmall-live-hearts-zone {
    position: absolute;
    bottom: 90px;
    right: 15px;
    width: 44px;
    height: 300px;
    pointer-events: none;
    z-index: 11;
}

.urmall-live-flying-heart {
    position: absolute; bottom: 0; left: 50%; width: 24px; height: 24px; margin-left: -12px; opacity: 0;
    animation: urmallFloatUp 2s ease-out forwards;
}

@keyframes urmallFloatUp {
    0% { transform: translate(0, 0) scale(0.5); opacity: 0; }
    15% { transform: translate(calc(var(--tx) * 0.3), -30px) scale(1.2); opacity: 1; }
    100% { transform: translate(var(--tx), -200px) scale(1) rotate(calc(var(--tx) * 1deg)); opacity: 0; }
}

/* ==========================================================================
   СТИЛИ ДЛЯ CSS-ЗАГЛУШКИ (ПАУЗЫ)
   ========================================================================== */
.urmall-live-pause-screen {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(-45deg, #0a0a0f, #1b0a2a, #27033b, #0a0a0f);
    background-size: 400% 400%;
    animation: urmallGradientBG 12s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@keyframes urmallGradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.urmall-live-pause-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.urmall-live-pause-waves span {
    position: absolute;
    box-sizing: border-box;
    border: 1px solid rgba(127, 0, 212, 0.3);
    border-radius: 50%;
    animation: urmallRadar 4s linear infinite;
}

.urmall-live-pause-waves span:nth-child(1) { animation-delay: 0s; }
.urmall-live-pause-waves span:nth-child(2) { animation-delay: -1.3s; }
.urmall-live-pause-waves span:nth-child(3) { animation-delay: -2.6s; }

@keyframes urmallRadar {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 800px; height: 800px; opacity: 0; }
}

.urmall-live-pause-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
}

.urmall-live-pause-indicator {
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 119, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 0, 119, 0.2);
    margin-bottom: 8px;
}

.urmall-live-pause-dot {
    width: 14px;
    height: 14px;
    background-color: #ff0077;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff0077, 0 0 20px #ff0077;
    animation: urmallBlink 1.5s infinite ease-in-out;
}

@keyframes urmallBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

.urmall-live-pause-text {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.urmall-live-pause-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* --- ВАШ ФИРМЕННЫЙ СПИННЕР --- */
.sku-links-spinner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin:20px 0;
}

.sku-links-spinner__circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: rgba(0, 0, 0, 0.6);
    animation: sku-links-spin 0.7s linear infinite;
}

@keyframes sku-links-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   АДАПТИВ (Media Queries)
   ========================================================================== */
@media (max-width: 991px) {
    .urmall-live-wrapper { flex-direction: column; }
    .urmall-live-col-left { width: 100%; position: relative; }
    .urmall-live-col-right { width: 100%; max-height: none; padding-right: 0; }
}

@media (max-width: 768px) {
    .urmall-live-overlay { top: 0; right: 0; gap: 6px; }
    .urmall-live-badge { padding: 4px 8px; }
    .urmall-live-badge-icon { width: 16px; height: 16px; margin-right: 6px; }
    .urmall-live-badge-text { font-size: 12px; }
    .urmall-live-pause-indicator { width: 40px; height: 40px; }
    .urmall-live-pause-text { font-size: 15px; }
    .urmall-live-pause-subtext { font-size: 12px; }
    .urmall-live-products-header { font-size: 18px; }
    @keyframes urmallRadar { 0% { width: 0; height: 0; opacity: 1; } 100% { width: 400px; height: 400px; opacity: 0; } }
}
/* End */
/* /local/components/urmall/live.player/templates/.default/style.css?17759697118465 */
