/* Pewatech/Lizwa same-slot reducing dropdown fix for accounts, parties and currencies */
.pewa-hidden-select-native,
.pewa-old-extra-party-search-hidden,
.pewa-old-extra-filter-hidden{
    display:none !important;
    visibility:hidden !important;
    height:0 !important;
    min-height:0 !important;
    max-height:0 !important;
    width:0 !important;
    min-width:0 !important;
    max-width:0 !important;
    padding:0 !important;
    margin:0 !important;
    border:0 !important;
    opacity:0 !important;
    pointer-events:none !important;
}
.pewa-slot-combo{
    position:relative !important;
    width:100% !important;
    max-width:100% !important;
    display:block !important;
    margin:0 0 10px 0 !important;
    box-sizing:border-box !important;
}
.pewa-slot-input{
    width:100% !important;
    max-width:100% !important;
    min-height:52px !important;
    box-sizing:border-box !important;
    border:1px solid #cfd9e6 !important;
    border-radius:16px !important;
    background:#fff !important;
    color:#082f49 !important;
    padding:12px 44px 12px 14px !important;
    font-size:16px !important;
    font-weight:800 !important;
    outline:none !important;
    box-shadow:none !important;
}
.pewa-slot-input:focus{
    border-color:#0f7490 !important;
    box-shadow:0 0 0 3px rgba(15,116,144,.16) !important;
}
.pewa-slot-combo::after{
    content:'⌄';
    position:absolute;
    right:14px;
    top:12px;
    color:#0f587c;
    font-weight:950;
    font-size:22px;
    line-height:1;
    pointer-events:none;
}
.pewa-slot-list{
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    top:calc(100% + 5px) !important;
    z-index:999999 !important;
    display:none;
    max-height:285px !important;
    overflow-y:auto !important;
    background:#fff !important;
    border:1px solid #b9ccdc !important;
    border-radius:14px !important;
    box-shadow:0 16px 42px rgba(15,23,42,.22) !important;
    padding:6px !important;
}
.pewa-slot-option{
    padding:10px 12px !important;
    border-radius:10px !important;
    cursor:pointer !important;
    color:#0b2540 !important;
    font-size:15px !important;
    font-weight:750 !important;
    line-height:1.25 !important;
    user-select:none !important;
}
.pewa-slot-option:hover,
.pewa-slot-option.pewa-active{
    background:#e0f2fe !important;
    color:#064e7a !important;
}
.pewa-slot-empty{
    padding:12px !important;
    color:#991b1b !important;
    font-weight:900 !important;
}
.pewa-slot-add{
    background:#e0f2fe !important;
    color:#064e7a !important;
    font-weight:950 !important;
}
@media(max-width:720px){
    .pewa-slot-input{min-height:48px !important;font-size:15px !important;}
    .pewa-slot-list{max-height:240px !important;}
}