.orange.onk-notice {
    background-color: #fed166;
}
.blue.onk-notice {
    background-color: #8CD8F6;
}
.red.onk-notice {
    background-color: #e54028;
    color: #fff;
}
.green.onk-notice {
    background-color: #a1d976;
}
.white.onk-notice {
    outline: 1px solid #ccc;
    background-color: #fff;
    color: #000;
}

.onk-notice  {
    position: fixed;
    top: 10px;
    left: 50%;
    
    background: #fff;
    
    font-size: 14px;
    padding: 7px 15px;
    font-weight: 700;
    color: #000;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, .6);
    z-index: 3000;
}

.onk-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 2000;
    overflow-y: auto;
}
.onk-popup > .outer {
    display: table;
    
    height: 100%;
    width: 100%;
}
.onk-popup > .outer > .middle {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.onk-popup > .outer > .middle > .inner {
	position: relative;
    display: inline-block;
    background: #fff;
    margin: 0 auto;
    font-size: 14px;
    padding: 20px;
    color: #000;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, .4);
    text-align: left;
    max-height: 100%;
    overflow-y: auto;
}
.onk-popup > .outer > .middle > .inner > div {
    overflow: hidden;
}
.onk-popup > .outer > .middle > .inner > .close {
    background: url('/assets/images/vendor/close.png') center no-repeat;
    width: 18px;
    height: 18px;
    background-size: contain;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.onk-popup-list, .onk-popup-hover {
    position: absolute;

    background: #fff;
    color: #000;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, .6);
    border: 1px solid #ccc;
    z-index: 3000;
}
.onk-popup-list li {
    list-style: none;
    padding: 5px 10px;
}
.onk-popup-list li:hover, .onk-popup-list li.current {
    background: #eee;
    cursor: pointer;
}
.onk-popup-hover {
    padding: 10px;
}