.dhk-popup-container {
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 45, 45, 0.5);
    display: none;
    font-family: 'Open Sans', arial, sans-serif;
}

.dhk-popup-close-btn {
    width: 44px;
    height: 44px;
    position: absolute;
    right: -22px;
    top: -22px;
    cursor: pointer;
    background: url(clientlib-popup/resources/images/popup-close-btn.svg) center no-repeat;
    z-index: 10000;
}

.dhk-popup-inner {
    width: 67%;
    position: absolute;
    background-color: #fff;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dhk-popup-inner-content {
    padding: 80px 7.7%;
    text-align: center;
    max-height: 70vh;
    overflow-y: scroll;
}

.dhk-popup-title {
    font-size: 38px;
    line-height: 54px;
    margin-bottom: 64px;
    font-weight: 800;
}

.dhk-popup-desc {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 64px;
}

.dhk-popup-code {
    color: #ED1C24;
    font-size: 64px;
    line-height: 88px;
    margin-bottom: 64px;
    font-weight: 700;
    word-wrap: normal;
}

.dhk-popup-input,
html[dir] .dhk-popup-input {
    width: 100%;
    margin-bottom: 64px;
    height: 36px;
    text-align: center;
    font-size: 20px;
}

.dhk-popup-input,
.dhk-popup-input:focus {
    border: none;
    border-bottom: 1px solid rgba(33, 37, 41, 1);
    outline: none;
}

.dhk-popup-btn { 
    font-size: 20px;
    line-height: 27px;
    padding: 16px 72px;
    color: #ED1C24;
    border: 1px solid #ED1C24;
    display: inline-block;
    cursor: pointer;
    font-weight: 600;
}
html[dir] a.dhk-popup-ok-btn {
    display: inline-block;
    padding: 8px 26px;
    background-color: #ED1C24;
    color: #fff;
}
.dhk-popup-btn.restore-code-confirm-btn { 
    background-color: #ED1C24;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .dhk-popup-inner {
        width: 91%;
    }

    .dhk-popup-inner-content {
        padding: 32px 9%;
    }

    .dhk-popup-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 32px;
    }
    
    .dhk-popup-desc {
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 32px;
    }
    
    .dhk-popup-code {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 32px;
        word-wrap: break-word;
    }
    
    .dhk-popup-btn {
        width: 100%;
        font-size: 20px;
        padding: 16px 37.5px;
    }

}