header{
    z-index: 9999;
}
.diego-card.css_prefix-card-overlay .block-images:after {
    border: none;
}
.diego-card.css_prefix-card-overlay .card-description {
    padding: .875em;
}
.diego-card .btn.btn-primary.watch-list-btn:after, 
.diego-card .btn.button-primary.watch-list-btn:after, 
.diego-card .button.btn-primary.watch-list-btn:after, 
.diego-card .button.button-primary.watch-list-btn:after {
    border-radius: 50%;
}

.landscape-card-hover .diego-card.css_prefix-card-overlay .block-images img {
    aspect-ratio: 5/2.8;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.landscape-card-hover .diego-card.css_prefix-card-overlay .card-description {
    position: static;
}

.landscape-card.diego-card:hover .block-images .image-box .css_prefix-title {
    display: none;
}

.diego-card.css_prefix-card-overlay .card-description .btn.streamit-custom-btn{
    padding: 0.625em .6em;
    font-size: .8em;
}

.diego-card.css_prefix-card .block-images .card-description .btn.streamit-custom-btn {
    padding: 0.625em .5em;
    font-size: .8em;
}

/* Main container */
.restricted-form {
    position: absolute;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark overlay */
.restricted-form-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.restricted-poster {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.restricted-poster img {
    height: 100%;
    width: 100%;
}

/* Simple white form card */
.restricted-form .wpforms-container {
    position: relative;
    background: #ffffff !important;
    padding: 2rem !important;
    border-radius: 10px;
    width: 500px;
    height: 400px;
    overflow-y: auto;
    z-index: 1;
}

.restricted-form .wpforms-field-label .wpforms-required-label {
    color: var(--bs-primary-hover-bg) !important;
}

/* Submit button container */
.restricted-form .wpforms-submit-container {
    margin-top: 1.5rem;
    text-align: center;
}

/* Red submit button */
.restricted-form .wpforms-submit {
    cursor: pointer;
    width: 100%;
}

.episode-card:has(.episode-locked-icon) .episode-image:after {
    background-image: none !important;
    background-color: rgba(var(--bs-dark-rgb), .7);
}

.episode-card .episode-locked-icon svg{
    height: 40px;
    width: 40px;
}

/* Login Form Shortcode desind */
/* Container background */
/* login modal */
#login-register-popup .modal-content,
#pay-wall-popup .modal-content {
    max-width: 400px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(224, 59, 138, 0.8);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* Labels (hidden) */
.custom-login-form label {
    display: none;
}

/* Input fields */
.custom-login-form input[type="email"],
.custom-login-form input[type="password"],
.custom-login-form textarea,
.custom-login-form select {
    width: 100%;
    padding: 12px 15px;
    margin: 12px 0;
    border: 1px solid #00f2ff;
    /* cyan */
    border-radius: 6px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
}

/* On focus */
.custom-login-form input[type="email"]:focus,
.custom-login-form input[type="password"]:focus,
.custom-login-form textarea:focus,
.custom-login-form select:focus {
    border-color: #e03b8a;
    /* pink */
    box-shadow: 0 0 8px #e03b8a;
}

/* Placeholder */
.custom-login-form input::placeholder,
.custom-login-form textarea::placeholder {
    color: #00f2ff;
    /* cyan */
    font-size: 14px;
    opacity: 1;
}

/* Button */
.custom-login-form .login-btn {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: 1px solid #00f2ff;
    /* cyan */
    border-radius: 6px;
    background: transparent;
    color: #00f2ff;
    /* cyan text */
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Button hover */
.custom-login-form .login-btn:hover {
    background: #00f2ff;
    /* cyan fill */
    color: #000;
    box-shadow: 0 0 12px #e03b8a;
    /* pink glow */
}

/* Title */
.custom-login-form .form-title {
    font-size: 22px;
    font-weight: 600;
    color: #00f2ff;
    /* cyan */
    margin-bottom: 10px;
}

/* Description */
.custom-login-form .form-description {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 10px;
}

/* Loader Overlay */
.form-loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #00f2ff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.form-loader .spinner {
    border: 4px solid rgba(0, 242, 255, 0.2);
    border-top: 4px solid #00f2ff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Toast Notification */
.form-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    min-width: 250px;
    max-width: 350px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    display: none;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.form-toast.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.form-toast.success {
    background: linear-gradient(135deg, #00f2ff, #00c9a7);
    box-shadow: 0 0 15px #00f2ff;
}

.form-toast.error {
    background: linear-gradient(135deg, #e03b8a, #ff4b5c);
    box-shadow: 0 0 15px #e03b8a;
}

.diego-card.css_prefix-card-overlay .card-description .btn.watch-list-btn,
.diego-card.css_prefix-card .block-images .card-description .btn.watch-list-btn {
    height: 2.3em;
    width: 2.3em;
    min-width: 2.3em;
    line-height: 2.3em;
    font-size: .875em;
}

@media (max-width: 1399px) and (min-width: 1024.98px) {
    .diego-card.css_prefix-card-overlay .card-description .btn.watch-list-btn,
    .diego-card.css_prefix-card .block-images .card-description .btn.watch-list-btn {
        height: 2em;
        width: 2em;
        min-width: 2em;
        line-height: 2em;
        font-size: .875em;
    }

    .diego-card.css_prefix-card .block-images .card-description .btn.streamit-custom-btn {
        font-size: 0.625em;
    }
}