/* YouTube Cookieman Consent Overlay */

.youtube-embed-wrapper {
    position: relative;
}

.youtube-consent-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #1a1a1a;
}

.youtube-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-consent-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 2rem 2rem 2.5rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 4px;
    width: 90%;
    max-width: 380px;
}

.youtube-consent-overlay p {
    margin-bottom: 15px;
    font-size: 1.5rem;
    line-height: 1.4;
}

.youtube-consent-overlay .btn {
    background-color: rgba(155, 155, 155, 0.5);
    border-color: #ffffffa2;
    border-radius: 0;
    color: #fff;
    font-size: 16px;
    padding: 11px 22px 9px;
    margin-top: 0;
}

.youtube-consent-overlay .btn:hover {
    background-color: rgba(223, 157, 24, 0.4);
}

.youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}