/* Explicit feature UI styles for 1080p baseline + 720p overrides. */

.explicit-lock-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    z-index: 2;
}

.channel-image .h-channel-explicit-lock {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    display: block;
    z-index: 2;
}

.player-bg-explicit-lock {
    position: absolute;
    top: 280px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    z-index: 2;
}

.explicit-pin-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
    background: rgba(12,12,14,0.8);
    z-index: 10001;
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.explicit-pin-modal {
    position: relative;
    width: 1031px;
    background: rgba(21,24,30,1);
    border-radius: 8px;
    padding: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
}

.explicit-pin-modal-content {
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 48px;
}

.explicit-pin-modal-title {
    font-family: 'TV2ZFont-bold', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: normal;
    color: rgba(231,239,254,1);
    text-align: center;
    margin-bottom: 32px;
}

.explicit-pin-modal-body {
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: -webkit-flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.explicit-pin-left {
    width: 651px;
    margin-right: 40px;
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: -webkit-flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.explicit-pin-modal-subtitle {
    font-family: 'TV2ZFont-regular', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: normal;
    color: rgba(231,239,254,1);
    margin-bottom: 60px;
}

.explicit-pin-boxes {
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
}

.explicit-pin-box {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(72,75,81,1);
    border-radius: 4px;
    margin-right: 16px;
    position: relative;
    color: rgba(231,239,254,1);
    background: rgba(21,24,30,1);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: border-color 0.15s ease;
    transition: border-color 0.15s ease;
}

.explicit-pin-box span {
    font-family: 'TV2ZFont-bold', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: 58%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
}

.explicit-pin-box:last-child {
    margin-right: 0;
}

.explicit-pin-box.focused {
    border-color: rgba(22,100,243,1);
}

.explicit-pin-box.filled {
    border-color: rgba(22,100,243,1);
}

.explicit-pin-box.error {
    border-color: rgba(223,45,32,1);
}

.explicit-pin-error {
    font-family: 'TV2ZFont-Regular', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: rgba(223,45,32,1);
    min-height: 22px;
    width: 368px;
    margin-top: 8px;
    margin-bottom: 4px;
    display: none;
    margin-left: 142px;
}

.explicit-pin-error.visible {
    display: block;
}

.explicit-pin-numpad {
    background: rgba(35,37,42,1);
    border-radius: 4px;
    padding: 24px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.explicit-pin-numpad-row {
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px;
}

.explicit-pin-numpad-row:last-child {
    margin-bottom: 0;
}

.explicit-pin-numpad-key {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    margin-right: 16px;
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-family: 'TV2ZFont-Regular', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: rgba(231,239,254,1);
    border: 2px solid transparent;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: default;
    -webkit-transition: background-color 0.15s ease, border-color 0.15s ease;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.explicit-pin-numpad-key:last-child {
    margin-right: 0;
}

.explicit-pin-numpad-icon {
    width: 32px;
    height: 32px;
    display: block;
}
.explicit-pin-numpad-key.focused {
    background: rgba(22,100,243,0.4);
    border-color: rgba(22,100,243,1);
}

.explicit-pin-bottom-buttons {
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.explicit-pin-confirm {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 16px 32px;
    background: rgba(207,223,252,0.3);
    border: 2px solid transparent;
    border-radius: 4px;
    font-family: 'TV2ZFont-bold', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: rgba(231,239,254,1);
    text-align: center;
    cursor: default;
    margin-bottom: 16px;
    -webkit-transition: background-color 0.15s ease, border-color 0.15s ease;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.explicit-pin-confirm.focused {
    background-color: rgba(22,100,243,0.4);
    border-color: rgba(22,100,243,1);
}

.explicit-pin-cancel {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 16px 32px;
    background: rgba(207,223,252,0.3);
    border: 2px solid transparent;
    border-radius: 4px;
    font-family: 'TV2ZFont-bold', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: rgba(231,239,254,1);
    text-align: center;
    cursor: default;
    -webkit-transition: background-color 0.15s ease, border-color 0.15s ease;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.explicit-pin-cancel.focused {
    background-color: rgba(22,100,243,0.4);
    border-color: rgba(22,100,243,1);
}

.explicit-success-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
    background: rgba(12,12,14,0.8);
    z-index: 10002;
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.explicit-success-box {
    width: 631px;
    background: rgba(21,24,30,1);
    border-radius: 8px;
    padding: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
}

.explicit-success-icon-wrap {
    width: 80px;
    height: 80px;
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto 40px auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.explicit-success-icon {
    width: 80px;
    height: 80px;
    display: block;
}

.explicit-success-title {
    font-family: 'TV2ZFont-bold', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: rgba(231,239,254,1);
    margin-bottom: 24px;
    line-height: normal;
}

.explicit-success-subtitle {
    font-family: 'TV2ZFont-Regular', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: rgba(231,239,254,1);
    margin-bottom: 40px;
    line-height: 32px;
}

.explicit-success-ok-btn {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background: rgba(22,100,243,0.4);
    border: 2px solid rgba(22,100,243,1);
    border-radius: 4px;
    font-family: 'TV2ZFont-bold', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: rgba(231,239,254,1);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    cursor: default;
    -webkit-transition: background-color 0.15s ease, border-color 0.15s ease;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.explicit-success-ok-btn.focused {
    background: rgba(22,100,243,0.4);
    border-color: rgba(22,100,243,1);
}

.explicit-parental-page {
    position: absolute;
    top: 0;
    left: 138px;
    width: 1782px;
    height: 1080px;
    background: rgba(21,24,30,1);
    overflow: hidden;
}

.explicit-parental-header {
    padding: 60px 80px 40px 80px;
}

.explicit-parental-title {
    font-family: 'TV2ZFont-bold', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    color: rgba(231,239,254,1);
}

.parental-control-section {
    padding: 0;
}

.explicit-toggle-row {
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 16px 20px 16px 16px;
    border-radius: 4px;
    -webkit-transition: background-color 0.15s ease, border-color 0.15s ease;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.explicit-toggle-row.focused {
    background-color: rgba(22,100,243,0.4);
    outline: 2px solid rgba(22,100,243,1);
}

.explicit-toggle-label {
    font-family: 'TV2ZFont-bold', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: rgba(231,239,254,1);
    line-height: normal;
}

.explicit-toggle-switch {
    position: relative;
    width: 60px;
    height: 60px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

#parental-toggle-img {
    width: 100%;
    height: 100%;
}

.explicit-toggle-track {
    width: 60px;
    height: 30px;
    border-radius: 15px;
    background: rgba(237, 250, 234, 0.2);
    position: relative;
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
}

.explicit-toggle-track.on {
    background: rgba(22,100,243,1);
}

.explicit-toggle-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    top: 4px;
    left: 4px;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.explicit-toggle-thumb.on {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
        transform: translateX(30px);
}

/* 720p overrides: include only values that differ from 1080p baseline. */
@media screen and (max-width: 1280px) and (min-width: 720px) {

    .explicit-pin-modal-backdrop {
        width: 1280px;
        height: 720px;
    }

    .explicit-success-dialog {
        width: 1280px;
        height: 720px;
    }

    .explicit-parental-page {
        width: 1188px;
        height: 720px;
    }

    .explicit-lock-icon {
        width: 40px;
        height: 40px;
    }

    .channel-image .h-channel-explicit-lock {
        top: 5px;
        right: 5px;
        width: 26px;
        height: 26px;
    }

    .player-bg-explicit-lock {
        width: 67px;
        height: 67px;
        top: 186px;
    }

    .explicit-pin-modal {
        width: 687px;
        padding: 27px;
        border-radius: 8px;
    }

    .explicit-pin-modal-content {
        margin-bottom: 32px;
    }

    .explicit-pin-modal-title {
        font-size: 25px;
        line-height: normal;
        margin-bottom: 21px;
    }

    .explicit-pin-left {
        width: 434px;
        margin-right: 27px;
    }

    .explicit-pin-modal-subtitle {
        font-size: 19px;
        line-height: normal;
        margin-bottom: 40px;
    }

    .explicit-pin-box {
        width: 53px;
        height: 53px;
        border-radius: 4px;
        margin-right: 11px;
    }

    .explicit-pin-box span {
        font-size: 32px;
    }

    .explicit-pin-error {
        font-size: 16px;
        min-height: 16px;
        width: 245px;
        margin-top: 16px;
        margin-bottom: 5px;
        margin-left: 95px;
    }

    .explicit-pin-numpad {
        padding: 16px;
    }

    .explicit-pin-numpad-row {
        margin-bottom: 11px;
    }

    .explicit-pin-numpad-key {
        width: 40px;
        height: 40px;
        margin-right: 11px;
        font-size: 24px;
    }

    .explicit-pin-numpad-icon {
        width: 21px;
        height: 21px;
    }

    .explicit-pin-confirm {
        padding: 11px 21px;
        font-size: 19px;
        border-radius: 4px;
        margin-bottom: 11px;
    }

    .explicit-pin-cancel {
        padding: 11px 21px;
        font-size: 19px;
        border-radius: 4px;
    }

    .explicit-success-box {
        width: 421px;
        padding: 27px;
    }

    .explicit-success-icon-wrap {
        width: 53px;
        height: 53px;
        margin-bottom: 27px;
    }

    .explicit-success-icon {
        width: 53px;
        height: 53px;
    }

    .explicit-success-title {
        font-size: 24px;
        line-height: normal;
        margin-bottom: 16px;
    }

    .explicit-success-subtitle {
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 27px;
    }

    .explicit-success-ok-btn {
        padding: 11px 21px;
        font-size: 19px;
    }

    .explicit-toggle-row {
        padding: 11px 13px 11px 11px;
        border-radius: 3px;
    }

    .explicit-toggle-label {
        font-size: 19px;
    }

    .explicit-toggle-switch {
        width: 40px;
        height: 40px;
    }

    .explicit-toggle-track {
        width: 40px;
        height: 20px;
        border-radius: 10px;
    }

    .explicit-toggle-thumb {
        width: 14px;
        height: 14px;
        top: 3px;
        left: 3px;
    }

    .explicit-toggle-thumb.on {
        -webkit-transform: translateX(22px);
        -ms-transform: translateX(22px);
            transform: translateX(22px);
    }

}
