._cc-ss-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999997;
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: 100%;
}

._cc-security-keyboard {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999998;
    background: #e8e8ea;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset;
}

._cc-sk-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e8e8ea;
}

._cc-sk-wrapper._cc-sk-warp {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 999999;
}

._cc-sk-bubbles {
    background-color: #a5c5dd;
    position: absolute;
    z-index: 10000000;
}

._cc-security-loading {
    height: 50px;
    line-height: 50px;
    background-color: #fff;
    padding-left: 15px;
    margin: 0 16px;
    border: 1px solid #ebedf0;
    border-radius: 6px;
}

@keyframes _cc-sk-enter {
    from {
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes _cc-sk-leave {
    to {
        transform: translate3d(0, 100%, 0);
    }
}

._cc-sk-enter-active {
    animation: _cc-sk-enter 0.3s both ease-out;
}

._cc-sk-leave-active {
    animation: _cc-sk-leave 0.3s both ease-in;
}