/* _content/Zoomify.Web/Components/Items/UserMenu.razor.rz.scp.css */
.user-menu[b-s2owhlqypb] {
    position: relative;
}

.user-menu-button[b-s2owhlqypb] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.user-menu-dropdown[b-s2owhlqypb] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1E1E1E;
    border-radius: 12px;
    border: 1px solid #2A2A2A;
    padding: 8px;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.menu-item[b-s2owhlqypb] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
}

.menu-item:hover[b-s2owhlqypb] {
    background: #2A2A2A;
}

.menu-item i[b-s2owhlqypb] {
    color: #666;
}

.menu-item:hover i[b-s2owhlqypb] {
    color: var(--primary-color);
}

.hidden[b-s2owhlqypb] {
    display: none;
}
/* _content/Zoomify.Web/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-tf4xqqt9m5] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-tf4xqqt9m5] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Zoomify.Web/Components/Modals/ExportModal.razor.rz.scp.css */
.export-modal-overlay[b-fxnkyximi2] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.export-modal[b-fxnkyximi2] {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 500px;
    color: white;
    position: relative;
}

.export-header[b-fxnkyximi2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.export-header h2[b-fxnkyximi2] {
    margin: 0;
    font-size: 20px;
}

.close-modal[b-fxnkyximi2] {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 20px;
    padding: 4px;
}

.close-modal:hover[b-fxnkyximi2] {
    color: #fff;
}

.export-description[b-fxnkyximi2] {
    color: #666;
    margin-bottom: 24px;
    font-size: 14px;
}

.export-section[b-fxnkyximi2] {
    margin-bottom: 35px;
}

.section-header[b-fxnkyximi2] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #888;
}

.format-options[b-fxnkyximi2], .resolution-options[b-fxnkyximi2] {
    display: flex;
    gap: 8px;
}

.format-option[b-fxnkyximi2], .resolution-option[b-fxnkyximi2] {
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 8px 16px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.format-option:hover[b-fxnkyximi2], .resolution-option:hover[b-fxnkyximi2] {
    background: #333;
}

.format-option.selected[b-fxnkyximi2], .resolution-option.selected[b-fxnkyximi2] {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #1b1b1b;
    font-weight:500;
}

.export-video-button[b-fxnkyximi2] {
    background: var(--primary-color);
    border: none;
    border-radius: 6px;
    padding: 12px;
    color: #1b1b1b;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease;
}
/* _content/Zoomify.Web/Components/Modals/PricingModal.razor.rz.scp.css */
.modal[b-6vrfgbs8pi] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(4px);
    overflow: auto;
}

.modal-content[b-6vrfgbs8pi] {
    position: relative;
    background: #141414;
    margin: 5% auto;
    padding: 32px;
    width: 90%;
    max-width: 600px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp-b-6vrfgbs8pi 0.3s ease;
}

.close-modal[b-6vrfgbs8pi] {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-modal:hover[b-6vrfgbs8pi] {
    color: #fff;
}

.modal h2[b-6vrfgbs8pi] {
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
    color: #fff;
}

@keyframes modalSlideUp-b-6vrfgbs8pi {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-finder-section[b-6vrfgbs8pi] {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #2A2A2A;
}

.plan-finder-prompt[b-6vrfgbs8pi] {
    color: #fff;
    margin-bottom: 16px;
}

.plan-finder-button[b-6vrfgbs8pi] {
    background: #2A2A2A;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.plan-finder-button:hover[b-6vrfgbs8pi] {
    background: #3A3A3A;
    transform: translateY(-2px);
}
/* _content/Zoomify.Web/Components/Pages/Export.razor.rz.scp.css */

.timeline[b-j1vcyzeeuz] {
    position: relative;
    padding: 32px 0;
}

.timeline[b-j1vcyzeeuz]::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2A2A2A;
}

.timeline-item[b-j1vcyzeeuz] {
    position: relative;
    padding-left: 64px;
    margin-bottom: 32px;
}

.timeline-point[b-j1vcyzeeuz] {
    position: absolute;
    left: 17px;
    width: 16px;
    height: 16px;
    background: #2A2A2A;
    border: 2px solid #141414;
    border-radius: 50%;
    top: 30px;
}

.timeline-item.requested .timeline-point[b-j1vcyzeeuz] {
    background: var(--primary-color);
    animation: pulse 1.5s ease-in-out infinite;
}

.timeline-item.completed .timeline-point[b-j1vcyzeeuz] {
    background: #45ca4e;
}

.timeline-item.error .timeline-point[b-j1vcyzeeuz] {
    background: #F0434B;
}

.timeline-content[b-j1vcyzeeuz] {
    background: #141414;
    padding: 24px;
    border-radius: 12px;
}

.timeline-content h3[b-j1vcyzeeuz] {
    margin-bottom: 8px;
    font-size: 18px;
}

.timeline-content p[b-j1vcyzeeuz] {
    color: #666;
}

.error-details[b-j1vcyzeeuz] {
    margin-top: 16px;
    padding: 16px;
    background: rgba(240, 67, 75, 0.1);
    border-radius: 8px;
    color: #F0434B;
}

.download-section[b-j1vcyzeeuz] {
    text-align: center;
    margin-top: 48px;
}

.download-button[b-j1vcyzeeuz] {
    padding: 16px 32px;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: #1b1b1b;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.download-button:hover[b-j1vcyzeeuz] {
    transform: translateY(-2px);
}

.download-warning[b-j1vcyzeeuz] {
    margin-top: 16px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.not-found[b-j1vcyzeeuz] {
    text-align: center;
    padding: 48px;
}

.not-found h2[b-j1vcyzeeuz] {
    margin-bottom: 16px;
}

.not-found p[b-j1vcyzeeuz] {
    color: #666;
}

/* _content/Zoomify.Web/Components/Pages/Home.razor.rz.scp.css */
:root[b-b1pb0lavlt] {
    --card-bg: rgba(255, 255, 255, 0.03);
}

section[b-b1pb0lavlt] {
    margin: 5rem 0;
}


.container[b-b1pb0lavlt] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header[b-b1pb0lavlt] {
    position: fixed;
    width: 100%;
    background: var(--bg-dark);
    z-index: 1001;
}

nav[b-b1pb0lavlt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo[b-b1pb0lavlt] {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links[b-b1pb0lavlt] {
    display: flex;
    gap: 20px;
    align-items: center;
    background:  var(--bg-dark);
}

.nav-links a[b-b1pb0lavlt] {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover[b-b1pb0lavlt] {
    color: var(--primary-color);
}

.btn-primary:hover[b-b1pb0lavlt] {
    opacity: 0.9;
}


.hamburger[b-b1pb0lavlt] {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
}

/* Hero Section */
.hero[b-b1pb0lavlt] {
    padding: 8rem 0 4rem;
    text-align: center;
}

.hero h1[b-b1pb0lavlt] {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p[b-b1pb0lavlt] {
    color: rgb(193 193 193 / 80%);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons[b-b1pb0lavlt] {
    display: flex;
    gap: .5rem;
    justify-content: center;
    flex-direction: column;
}

.demo-video[b-b1pb0lavlt] {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.demo-video img[b-b1pb0lavlt] {
    width: 100%;
    height: auto;
}

/* Features */
.features[b-b1pb0lavlt] {
    padding: 4rem 0;
    background: rgba(0,0,0,0.3);
}

.features h2[b-b1pb0lavlt] {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid[b-b1pb0lavlt] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card[b-b1pb0lavlt] {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.feature-card h3[b-b1pb0lavlt] {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* How It Works */
.how-it-works[b-b1pb0lavlt] {
    background: linear-gradient(180deg, transparent, rgba(223, 163, 0, 0.05), transparent);
    padding: 6rem 0;
}

.how-container[b-b1pb0lavlt] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.how-container .subtitle[b-b1pb0lavlt] {
    margin-bottom: 4rem;
}

.features-grid[b-b1pb0lavlt] {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.features-list[b-b1pb0lavlt] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item[b-b1pb0lavlt] {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number[b-b1pb0lavlt] {
    background: rgba(223, 163, 0, 0.1);
    color: black;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content[b-b1pb0lavlt] {
    flex: 1;
}

.feature-item:hover[b-b1pb0lavlt] {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.feature-item.active[b-b1pb0lavlt] {
    background: rgba(223, 163, 0, 0.1);
    border: 1px solid var(--primary-color);
}

.feature-item.active .step-number[b-b1pb0lavlt] {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.feature-item h3[b-b1pb0lavlt] {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: white;
}

.feature-item p[b-b1pb0lavlt] {
    color: #86868b;
    font-size: 1rem;
    line-height: 1.6;
}

.demo-container[b-b1pb0lavlt] {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
}

.demo-overlay[b-b1pb0lavlt] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    cursor: pointer;
}

.play-icon[b-b1pb0lavlt] {
    width: 60px;
    height: 60px;
    background: rgba(223, 163, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon i[b-b1pb0lavlt] {
    color: var(--bg-dark);
    font-size: 1.5rem;
}

/* Animação de fade-out */
@keyframes fadeOut-b-b1pb0lavlt {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: scale(0.95); /* Opcional: animação de encolhimento */
    }
}

.demo-overlay.fade-out[b-b1pb0lavlt] {
    animation: fadeOut-b-b1pb0lavlt 0.4s ease-out forwards;
}

/* Opcional: animação para o botão de play */
.play-icon[b-b1pb0lavlt] {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.demo-overlay.fade-out .play-icon[b-b1pb0lavlt] {
    transform: scale(0.8); /* Encolhe o botão */
    opacity: 0; /* Esconde o botão */
}

.demo-image[b-b1pb0lavlt] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.demo-image.active[b-b1pb0lavlt] {
    display: block;
}

@media (max-width: 768px) {
    .how-it-works[b-b1pb0lavlt] {
        padding: 3rem 0;
    }

    .features-grid[b-b1pb0lavlt] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .demo-container[b-b1pb0lavlt] {
        /* order: -1; */
        margin-bottom: 2rem;
    }

    .feature-item:hover[b-b1pb0lavlt] {
        transform: none;
    }
}

/* FAQ */
.faq-container[b-b1pb0lavlt] {
    width: 100%;
    text-align: justify;
  }

  .faq-item[b-b1pb0lavlt] {
    border-radius: 8px;
    overflow: hidden;
  }

  .faq-question[b-b1pb0lavlt] {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
  }

  .faq-arrow[b-b1pb0lavlt] {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    min-width: 24px;
  }

  .faq-arrow.active[b-b1pb0lavlt] {
    transform: rotate(180deg);
  }

  .faq-answer[b-b1pb0lavlt] {
    line-height: 25px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    color: #a1a1a1;
    padding: 0 1.5rem;
  }

  .faq-answer.active[b-b1pb0lavlt] {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;  /* Mais espaço para conteúdo maior */
    padding-bottom: 1.5rem;
  }

  @media (max-width: 768px) {
    body[b-b1pb0lavlt] {
      padding: 1rem;
    }
    
    .hero p[b-b1pb0lavlt] {
        font-size: 1.1rem;
    }

    .faq-question[b-b1pb0lavlt] {
      font-size: 0.9rem;
      padding: 1.2rem;
    }

    .faq-answer[b-b1pb0lavlt] {
        font-size: 0.9rem;
    }

    .feature-icon[b-b1pb0lavlt] {
        width: 30px !important;
        height: 30px !important;
        border-radius: 7.5px !important;
    }

    .feature-icon svg[b-b1pb0lavlt] {
        width: 15px !important;
        height: 15px !important;
    }

    .feature-title[b-b1pb0lavlt] {
        font-size: 1.2rem !important;
    }

    section[b-b1pb0lavlt] {
        margin: 1rem 0;
    }
  }

/* Footer */
footer[b-b1pb0lavlt] {
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid[b-b1pb0lavlt] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    font-size: 14px;
}

.footer-col h4[b-b1pb0lavlt] {
    color: #86868b;
    margin-bottom: 1rem;
    font-weight: normal;
    text-transform: uppercase;
}

.footer-col ul[b-b1pb0lavlt] {
    list-style: none;
}

.footer-col ul li[b-b1pb0lavlt] {
    margin-bottom: 0.5rem;
}

.footer-col a[b-b1pb0lavlt] {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover[b-b1pb0lavlt], .footer-col li:hover[b-b1pb0lavlt] {
    color: var(--primary-color);
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger[b-b1pb0lavlt] {
        display: block;
    }

    .nav-links[b-b1pb0lavlt] {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        padding: 1rem;
        flex-direction: column;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links.active[b-b1pb0lavlt] {
        display: flex;
    }

    .hero h1[b-b1pb0lavlt] {
        font-size: 1.7rem;
    }

    .features-grid[b-b1pb0lavlt],
    .steps-grid[b-b1pb0lavlt],
    .footer-grid[b-b1pb0lavlt] {
        grid-template-columns: 1fr;
    }

    .hero-buttons[b-b1pb0lavlt] {
        flex-direction: column;
    }
}


@media screen and (max-width: 500px) {
    .hero h1[b-b1pb0lavlt] {
        font-size: 1.3rem;
    }

    .label-compability[b-b1pb0lavlt] {
        font-size: 0.9rem;
    }

    /* .hero p {
        font-size: 0.9rem;
    } */
}


@media screen and (max-width: 400px) {
    .browser-icon[b-b1pb0lavlt] {
        width: 56px !important;
        height: 56px !important;
        border-radius: 11.2px !important;
    }

    .browser-icon img[b-b1pb0lavlt] {
        width: 33.6px !important;
        height: 33.6px !important;
    }
}

.designed-container[b-b1pb0lavlt] {
    background-color: #000;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.title[b-b1pb0lavlt] {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.subtitle[b-b1pb0lavlt] {
    color: #86868b;
    font-size: 24px;
    text-align: center;
    margin-bottom: 48px;
}

.browser-icons[b-b1pb0lavlt] {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 20px;
}

.browser-icon[b-b1pb0lavlt] {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: #1d1d1f;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: 50% 100%;
    position: relative;
}

.browser-icon img[b-b1pb0lavlt] {
    width: 48px;
    height: 48px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Efeito hover no ícone principal */
.browser-icon:hover[b-b1pb0lavlt] {
    transform: scale(1.5) translateY(-10px);
    background: #2d2d2f;
    z-index: 1000;
}

.browser-icon:hover img[b-b1pb0lavlt] {
    transform: scale(1.1);
}

/* Efeito nos ícones adjacentes */
.browser-icon:hover + .browser-icon[b-b1pb0lavlt] {
    transform: scale(1.2) translateY(-5px);
}

.browser-icon:has(+ .browser-icon:hover)[b-b1pb0lavlt] {
    transform: scale(1.2) translateY(-5px);
}

/* Efeito suave ao mover o mouse entre ícones */
.browser-icons:hover .browser-icon:not(:hover)[b-b1pb0lavlt] {
    transform: scale(0.9);
}

/* .designed-container {
    background-color: #000;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  }

  .title {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
  }

  .subtitle {
    color: #86868b;
    font-size: 24px;
    text-align: center;
    margin-bottom: 48px;
  }

  .browser-icons {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    height: 120px;
    cursor: pointer;
  }

  .browser-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: #1d1d1f;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    transform-origin: 50% 100%;
  }

  .browser-icon img {
    width: 48px;
    height: 48px;
    transition: all 0.2s ease;
  } */

  


  /* Why Zoomify */


.why-container[b-b1pb0lavlt] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title[b-b1pb0lavlt] {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.features-grid-why[b-b1pb0lavlt] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card[b-b1pb0lavlt] {
    background: #1E1E1E;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-card[b-b1pb0lavlt]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.feature-card:hover[b-b1pb0lavlt] {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover .feature-icon[b-b1pb0lavlt] {
    transform: scale(1.1);
}

.feature-content[b-b1pb0lavlt] {
    position: relative;
    z-index: 1;
}

.feature-icon[b-b1pb0lavlt] {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-icon svg[b-b1pb0lavlt] {
    width: 30px;
    height: 30px;
    color: var(--bg-dark);
}

.feature-title[b-b1pb0lavlt] {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.feature-description[b-b1pb0lavlt] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

.blur-effect[b-b1pb0lavlt] {
    position: absolute;
    width: 150px;
    height: 150px;
    filter: blur(80px);
    opacity: 0.1;
    border-radius: 50%;
}

.blur-1[b-b1pb0lavlt] { top: -50px; left: -50px; }
.blur-2[b-b1pb0lavlt] { bottom: -50px; right: -50px; }

@media (max-width: 1024px) {
    .features-grid-why[b-b1pb0lavlt] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-container[b-b1pb0lavlt] {
        padding: 40px 20px;
    }

    .section-title[b-b1pb0lavlt] {
        font-size: 1.5rem;
    }

    .features-grid-why[b-b1pb0lavlt] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card[b-b1pb0lavlt] {
        padding: 2rem;
    }
}

/* pricing */

.pricing-table[b-b1pb0lavlt] {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
}

#pricing[b-b1pb0lavlt] {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.pricing-column[b-b1pb0lavlt] {
    width: 450px;
}


.mobile-only[b-b1pb0lavlt] {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .mobile-hidden[b-b1pb0lavlt] {
       display: none !important;
    }

    .mobile-only[b-b1pb0lavlt] {
        display: flex !important;
    }

    .subtitle[b-b1pb0lavlt] {
        font-size: 1.1rem;
    }

    .pricing-column[b-b1pb0lavlt] {
        width: 100%;
    }
    
} 


.before-after-section[b-b1pb0lavlt] {
    padding: 4rem 2rem;
    font-family: system-ui, -apple-system, sans-serif;
  }

  .before-after-section .section-header[b-b1pb0lavlt] {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .before-after-section .subtitle[b-b1pb0lavlt] {
    max-width: 800px;
    margin-bottom: 0px;
  }

  .section-header[b-b1pb0lavlt] {
    text-align: center;
    margin-bottom: 3rem;
  }

  .video-comparison[b-b1pb0lavlt] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .before-after-section .video-container[b-b1pb0lavlt] {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

 .before-after-section .video-container:hover[b-b1pb0lavlt] {
    transform: translateY(-5px);
  }

  .video[b-b1pb0lavlt] {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video-label[b-b1pb0lavlt] {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
  }

  @media (max-width: 768px) {
    .video-comparison[b-b1pb0lavlt] {
      grid-template-columns: 1fr;
    }
    
    .section-title[b-b1pb0lavlt] {
      font-size: 2rem;
    }
  }

  #top-label[b-b1pb0lavlt] {
    height: 35px;
    background: #1d1d1d;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 14px;
  }

  .label-compability[b-b1pb0lavlt] {
    background: #141714;
    padding: 15px;
    color: #6adf00;
    margin-top: 70px;
    display: inline;
    border-radius: 5px;
    margin-bottom: 30px;
  }


  .steps-grid[b-b1pb0lavlt] {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
}

.step-card[b-b1pb0lavlt] {
    background: var(--purple-gradient);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.step-number[b-b1pb0lavlt] {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: 600;
    font-size: 14px;
}

.step-content[b-b1pb0lavlt] {
    margin-top: 32px;
}

.step-title[b-b1pb0lavlt] {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.step-description[b-b1pb0lavlt] {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.step-example[b-b1pb0lavlt] {
    margin-top: 24px;
    background: #161616;
    border-radius: 6px;
    padding: 16px;
    min-height: 80px;
}

.code-example[b-b1pb0lavlt] {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 13px;
    color: #c5c5c5;
}

.connector[b-b1pb0lavlt] {
    padding: 0 24px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector svg[b-b1pb0lavlt] {
    width: 24px;
    height: 24px;
}

.logos-container[b-b1pb0lavlt] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.analytics-preview[b-b1pb0lavlt] {
    border-radius: 4px;
    padding: 8px;
    font-size: 12px;
}

#progress-bar-container[b-b1pb0lavlt] {
    width: 100%;
    height: 6px;
    background: #e4e4e4;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
  }
  
  #progress-bar[b-b1pb0lavlt] {
    width: 0;
    height: 100%;
    background: #22c55e;
    border-radius: 2px;
    transition: width 2s ease-out; /* Duração da animação */
  }

@media (max-width: 768px) {
    .steps-grid[b-b1pb0lavlt] {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .connector[b-b1pb0lavlt] {
        transform: rotate(90deg);
        padding: 16px 0;
    }
}

.record-button[b-b1pb0lavlt] {
    background: #ff4444;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.showcase-section[b-b1pb0lavlt] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.showcase-intro[b-b1pb0lavlt] {
    text-align: center;
    margin-bottom: 80px;
}

.showcase-intro h1[b-b1pb0lavlt] {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
}

.showcase-intro p[b-b1pb0lavlt] {
    font-size: 20px;
    color: #94A3B8;
}

.showcase-grid[b-b1pb0lavlt] {
    display: grid;
    gap: 40px;
}

.content-block[b-b1pb0lavlt] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-block:nth-child(even)[b-b1pb0lavlt] {
    direction: rtl;
}

.content-block:nth-child(even) .block-text[b-b1pb0lavlt] {
    direction: ltr;
}

.block-text[b-b1pb0lavlt] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.block-text h3[b-b1pb0lavlt] {
    font-size: 28px;
    margin-bottom: 16px;
}

.block-text p[b-b1pb0lavlt] {
    color: #94A3B8;
    font-size: 18px;
    line-height: 1.7rem;
}

.preview-container[b-b1pb0lavlt] {
    background: #1E2028;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
}

.preview-container[b-b1pb0lavlt]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.2), transparent);
}

.play-indicator[b-b1pb0lavlt] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: #4d2ef4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-indicator[b-b1pb0lavlt]::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .content-block[b-b1pb0lavlt] {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .content-block:nth-child(even)[b-b1pb0lavlt] {
        direction: ltr;
    }

    .block-text[b-b1pb0lavlt] {
        order: 1;
    }

    .showcase-intro h1[b-b1pb0lavlt] {
        font-size: 36px;
    }

    .block-text h3[b-b1pb0lavlt] {
        font-size: 24px;
    }
}
/* _content/Zoomify.Web/Components/Pages/Studio.razor.rz.scp.css */
.editor-container[b-p3c9nc87tu] {
    display: flex;
    flex-direction: column;
    background: #0A0A0A;
    padding: 24px;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header[b-p3c9nc87tu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.header h1[b-p3c9nc87tu] {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.export-button[b-p3c9nc87tu] {
    padding: 12px 24px;
    color: black;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.export-button:hover[b-p3c9nc87tu] {
    /*background: #a37a01;*/
    transform: translateY(-1px);
}

.main-content[b-p3c9nc87tu] {
    display: flex;
    flex: 1;
    gap: 24px;
}

#fileInput[b-p3c9nc87tu], #backgroundInput[b-p3c9nc87tu] {
    display: none;
}

.zoom-selection[b-p3c9nc87tu] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.zoom-area[b-p3c9nc87tu] {
    position: absolute;
    border: 2px solid var(--primary-color);
    background: rgba(37, 99, 235, 0.2);
}

.controls[b-p3c9nc87tu] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.keyframe-list[b-p3c9nc87tu] {
    margin-top: 20px;
    max-height: 70vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 16px;

}

.keyframe-item[b-p3c9nc87tu] {
    padding: 16px;
    background: #2A2A2A;
    border-radius: 12px;
    border: 1px solid #3B3B3B;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.keyframe-item:hover[b-p3c9nc87tu] {
    border-color: #4B4B4B;
    transform: translateY(-1px);
}

.timeline-header[b-p3c9nc87tu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.timeline-header h2[b-p3c9nc87tu] {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.playback-controls[b-p3c9nc87tu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.play-pause-btn[b-p3c9nc87tu] {
    background: transparent;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin: 0 auto;
}

.play-pause-btn:hover[b-p3c9nc87tu] {
    transform: translateY(-1px);
}

.playback-controls .button[b-p3c9nc87tu] {
    padding: 12px 20px;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: #1b1b1b;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.playback-controls .button:hover[b-p3c9nc87tu] {
    background: var(--primary-color);
    transform: translateY(-1px);
}

.pricing-button[b-p3c9nc87tu] {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.pricing-button:hover[b-p3c9nc87tu] {
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}


.delete-btn[b-p3c9nc87tu] {
    padding: 9px 20px;
    background: #F0434B;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.delete-btn:hover[b-p3c9nc87tu] {
    background: #B91C1C;
}

.header-actions[b-p3c9nc87tu] {
    display: flex;
    gap: 20px;
    align-items: center;
}

.video-settings[b-p3c9nc87tu] {
    margin-top: 24px;
    padding: 16px;
    background: #1E1E1E;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.video-settings h3[b-p3c9nc87tu] {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.setting-item[b-p3c9nc87tu] {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.setting-header[b-p3c9nc87tu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.setting-header .scale-value[b-p3c9nc87tu] {
    color: #999;
    font-size: 14px;
}

.tabs-container[b-p3c9nc87tu] {
    display: flex;
        gap: 10px;
        margin-bottom: 16px;
        border-bottom: 1px solid #2A2A2A;
        padding-bottom: 8px;
        justify-content: space-between;
}

.tab-button[b-p3c9nc87tu] {
    display: flex
;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: center;
}

.tab-button:hover[b-p3c9nc87tu] {
    background: #2A2A2A;
    color: #fff;
}

.tab-button.active[b-p3c9nc87tu] {
    background: var(--primary-color);
    color: #1b1b1b;
}

.tab-button i[b-p3c9nc87tu] {
    font-size: 16px;
}

.tab-content[b-p3c9nc87tu] {
    display: none !important;
}

.tab-content.active[b-p3c9nc87tu] {
    display: block !important;
}

.action-buttons[b-p3c9nc87tu] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.action-buttons .button[b-p3c9nc87tu] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: #1b1b1b;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.action-buttons .button:hover[b-p3c9nc87tu] {
    background: #1D4ED8;
    transform: translateY(-1px);
}

.action-buttons .button i[b-p3c9nc87tu] {
    font-size: 16px;
}

.playback-controls[b-p3c9nc87tu] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.play-pause-btn i[b-p3c9nc87tu] {
    font-size: 40px;
}

.no-keyframe-message[b-p3c9nc87tu] {
    text-align: center;
    padding: 32px;
    color: #666;
}

.no-keyframe-message p:first-child[b-p3c9nc87tu] {
    font-size: 18px;
    margin-bottom: 8px;
    color: #888;
}

.no-keyframe-message p:last-child[b-p3c9nc87tu] {
    font-size: 14px;
}

.keyframe-details[b-p3c9nc87tu] {
    margin-top: 20px;
}

a[b-p3c9nc87tu] {
    color: var(--primary-color);
    text-decoration: none;
}

/*find my plan*/


.option-button[b-p3c9nc87tu] {
    background: #2A2A2A;
    border: 2px solid transparent;
    color: white;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-button:hover[b-p3c9nc87tu] {
    background: #3A3A3A;
}

.option-button.selected[b-p3c9nc87tu] {
    border-color: var(--primary-color);
    background: #1D4ED8;
}


.question-container[b-p3c9nc87tu] {
    max-width: 500px;
    margin: 0 auto;
}

.question[b-p3c9nc87tu] {
    margin-bottom: 32px;
}

.question h3[b-p3c9nc87tu] {
    color: #fff;
    margin-bottom: 16px;
}

.options-grid[b-p3c9nc87tu] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.result-container[b-p3c9nc87tu] {
    text-align: center;
    color: white;
}

.result-container p[b-p3c9nc87tu] {
    margin: 24px;
    font-size: 15px;
}


.plan-button[b-p3c9nc87tu] {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.plan-button.current[b-p3c9nc87tu] {
    background: #2A2A2A;
    color: #666;
    cursor: default;
}

.plan-button.pro[b-p3c9nc87tu] {
    background: var(--primary-color);
    color: #1b1b1b;
}

.plan-button.pro:hover[b-p3c9nc87tu] {
    background: #a37a01;
    transform: translateY(-2px);
}

.plan-button.starter[b-p3c9nc87tu] {
    background: #4B5563;
    color: white;
}

.plan-button.starter:hover[b-p3c9nc87tu] {
    background: #374151;
    transform: translateY(-2px);
}

.close-modal[b-p3c9nc87tu] {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #2A2A2A;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover[b-p3c9nc87tu] {
    color: #fff;
    background: #3A3A3A;
    transform: scale(1.1);
}

.progress-bar[b-p3c9nc87tu] {
    width: 100%;
    height: 4px;
    background: #2A2A2A;
    margin-bottom: 32px;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill[b-p3c9nc87tu] {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.question-number[b-p3c9nc87tu] {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.export-status-container[b-p3c9nc87tu] {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
}

.export-header[b-p3c9nc87tu] {
    margin-bottom: 48px;
}

.export-header h1[b-p3c9nc87tu] {
    font-size: 32px;
    margin-bottom: 24px;
}

.export-info[b-p3c9nc87tu] {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.info-item[b-p3c9nc87tu] {
    background: #141414;
    padding: 16px;
    border-radius: 12px;
    min-width: 200px;
}

.info-item .label[b-p3c9nc87tu] {
    color: #666;
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.info-item .value[b-p3c9nc87tu] {
    font-size: 16px;
    font-weight: 500;
}


@keyframes pulse-b-p3c9nc87tu {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal[b-p3c9nc87tu] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content[b-p3c9nc87tu] {
    background: #1E1E1E;
    padding: 32px;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.pricing-column[b-p3c9nc87tu] {
    background-color: #1E1E1E;
}

.modal-content h3[b-p3c9nc87tu] {
    margin-bottom: 24px;
    color: #fff;
}

.progress-container[b-p3c9nc87tu] {
    margin-bottom: 24px;
}

.progress-bar[b-p3c9nc87tu] {
    background: #2A2A2A;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill[b-p3c9nc87tu] {
    background: var(--primary-color);
    height: 100%;
    width: 0;
    transition: width 0.3s ease;
}

.progress-text[b-p3c9nc87tu] {
    color: #999;
    font-size: 14px;
}

.cancel-button[b-p3c9nc87tu] {
    padding: 12px 24px;
    background: #F0434B;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.cancel-button:hover[b-p3c9nc87tu] {
    background: #B91C1C;
}

.mobile-message[b-p3c9nc87tu] {
    display: none;
}


@media screen and (max-width: 768px) {
    .header-actions[b-p3c9nc87tu] {
       display: none !important;
    }

    .mobile-message[b-p3c9nc87tu] {
        display: block;
        margin: 20px;
        color: #737373;
        line-height: 25px;
    }
} 

#webcam-position-ctn[b-p3c9nc87tu] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.size-option[b-p3c9nc87tu] {
    padding: 8px 15px;
    border: 1px solid #2e2e2e;
    border-radius: 5px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}

.size-option-active[b-p3c9nc87tu] {
    background: var(--primary-color);
    color: black;
    font-weight: 500;
    border: none;
}

#webcam-size-ctn[b-p3c9nc87tu] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#webcam-settings > div[b-p3c9nc87tu] {
    margin-bottom: 30px;
}

.camera-visibility[b-p3c9nc87tu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
