#vidprotect-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    z-index: -100;
    display: flex;
}

#vidprotect-popup .popup {
    margin: auto;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    position: relative;
    transition: all 1s ease-in-out;

    @media (min-width: 600px) {
        padding: 30px;
    }
}

.vidprotect-link {
    text-align: center;
    font-size: 18px;
    text-decoration: none !important;
    display: block !important;
}

#vidprotect-popup .close {
    position: absolute;
    top: 0;
    left: 10px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;

    @media (min-width: 600px) {
        top: 20px;
        left: 30px;
    }
}

#vidprotect-popup .vidprotect-example {
    border: none;
    border-radius: 15px;
    inset: 0;
    width: 354px;
    height: 200px;

    @media (min-width: 600px) {
        width: 426px;
        height: 240px;
    }

    @media (min-width: 768px) {
        width: 640px;
        height: 360px;
    }
}

#vidprotect-popup .content {
    margin-top: 40px;
    padding: 5px;

    @media (min-width: 600px) {
        padding: 10px;
    }

    @media (min-width: 768px) {
        padding: 20px;
    }
}

#vidprotect-popup input {
    width: 100%;
    padding: 5px;
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 20px;
}

#vidprotect-popup button {
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: #ffffff !important;
    padding: 10px 20px;
    font-size: 18px;
    width: 100%;
    cursor: pointer;
}


#vidprotect-popup button:disabled,
#vidprotect-popup button[disabled] {
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
}

#vidprotect-popup input,
#vidprotect-popup .tel-label {
    text-align: center;
}