/*
    KVKK button (player control bar) & modal styles
*/
.video-js .vjs-kvkk-button {
    cursor: pointer;
    width: auto !important;
    padding: 0 .6em;
}

    .video-js .vjs-kvkk-button .vjs-icon-placeholder {
        display: none;
    }

.vjs-kvkk-button-label {
    display: inline-block;
    /*font-size: 1.1em;*/
    /*line-height: 3em;*/
    font-weight: 600;
    letter-spacing: .02em;
    white-space: nowrap;
}

    .vjs-kvkk-button-label span {
        background-color: #0026ff;
        color: #fff;
        padding: .1em .4em;
        border-radius: 1px;
    }

.kvkk-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100000000;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .6);
    padding: 20px;
}

    .kvkk-modal.kvkk-modal-open {
        display: flex;
    }

.kvkk-modal-content {
    background-color: #fff;
    color: #222;
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    padding: 24px 28px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
}

.kvkk-modal-title {
    margin: 0 0 16px;
    font-size: 1.25rem;
    font-weight: 700;
    padding-right: 28px;
}

.kvkk-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #666;
}

    .kvkk-modal-close:hover {
        color: #000;
    }

.kvkk-modal-body {
    font-size: .95rem;
    line-height: 1.5;
}
@media screen and (max-width: 560px) {
    .kvkk-modal {
        position: absolute;
        padding: 10px;
        max-height:100%;
    }
    .kvkk-modal-content {
        height:100%;
        max-height: 100%;
        border-radius: 4px;
        padding: 16px 12px;
       
    }
    .kvkk-modal-close {
        top: 9px;
        right: 6px;
        background-color:brown;
        color:white;
    }

}