#aknp_search_box{
    appearance: none;
    background: transparent;
    font: inherit;
    font-size: 1.5em;
    height: 100%;
    padding: 10px;
    width: 100%;
}
.aknp-search-dropdown > li.ui-menu-item a{
    background: #fff;
    border-radius: 4px;
    box-shadow:  0 1px 3px 0 #d4d9e1;;
    display: block;
    padding-left: 10px;
    width: 98%;
    text-decoration: none;

}
.aknp-search-dropdown > li.ui-menu-item {
    padding-left:0px;
}
.aknp-search-dropdown > li.ui-menu-item a:not(.ui-state-active) {
    border: 1px solid transparent;

}
/*.ui-state-default,*/
.aknp-search-dropdown  .ui-state-active  {
    border: 1px solid #d63638;
}
.ui-menu .ui-menu-item-wrapper {
    margin-left:0;
    position: relative;
    padding: 5px;
    width: 100%;
    font-size: 1.1em;
    display:block;
}

.aknp_modal {
    position: absolute;
    z-index: 10000; /* 1 */
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
}

.aknp_modal.is-visible {
    visibility: visible;
}

.aknp_modal-overlay {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 0%, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.aknp_modal.is-visible .aknp_modal-overlay {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}
.aknp_modal-wrapper {
    position: absolute;
    z-index: 9999;
    top: 6em;
    left: 50%;
    width: 32em;
    margin-left: -16em;
    background-color: #fff;
    border-radius: 4px;
}

.aknp_modal-transition {
    transition: all 0.3s 0.12s;
    transform: translateY(-10%);
    opacity: 0;
}
.aknp_modal.is-visible .aknp_modal-transition {
    transform: translateY(0);
    opacity: 1;
}

.aknp_modal-header,
.aknp_modal-content {
    padding: 1em;
}
.aknp_modal-footer {
    font-size: 10px;
    padding: 10px 0px;
}

.aknp_modal-header {
    border-bottom: 1px solid #e8e8e8;
}

.aknp_modal-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1em;
    color: #aaa;
    background: none;
    border: 0;
}

.aknp_modal-close:hover {
    color: #777;
}

.aknp_modal-heading {
    font-size: 1.125em;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.aknp_modal-content > *:first-child {
    margin-top: 0;
}

.aknp_modal-content > *:last-child {
    margin-bottom: 0;
}
.aknp_modal-content span{
    font-size: smaller;
    padding-top: 5px;
    display: block;
}
.aknp-search-dropdown {
    max-height: 300px;
    min-height: 100px;
    overflow-y: scroll;
    scrollbar-width: thin;
    padding: 0 12px;
}
.aknp_shortcut{
    float: right;
    font-size: 10px;
    padding: 2px 5px;
    border: 1px solid #5b656d;
}


