@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

.angie-video-overlay-wrapper-1a0b7486 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.angie-video-overlay-wrapper-1a0b7486.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.angie-video-container-1a0b7486 {
    position: relative;
    width: 100%;
    height: 100%;
}

.angie-video-desktop-1a0b7486 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.angie-video-skip-btn-1a0b7486 {
    position: absolute;
    bottom: 30px;
    right: 30px;
    padding: 12px 24px;
    background-color: #01B7BD;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 10;
}

.angie-video-skip-btn-1a0b7486:hover {
    background-color: #01999e;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .angie-video-overlay-wrapper-1a0b7486 {
        display: none !important;
    }
}