.nice-select {
    -webkit-tap-highlight-color: #0000;
    border: none;
    box-sizing:border-box;
    clear: both;
    display: block;
    width: fit-content;
    font-family: inherit;
    outline: none;
    position: relative;
    text-align: left!important;
    transition: all .2s ease-in-out;
    user-select: none;
    white-space: nowrap
}
    .nice-select::before,
    .nice-select::after{
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        top: 0;
        background-color: var(--ama-btn-bg);
        user-select: none;
        pointer-events: none;
        border-top: var(--ama-btn-border-width) solid var(--ama-btn-border-color);
        border-bottom: var(--ama-btn-border-width) solid var(--ama-btn-border-color);
        box-sizing: border-box;
        z-index: 0
    }
    .nice-select::before{
        left: 0;
        width: calc(100% - .625rem);
        border-left: var(--ama-btn-border-width) solid var(--ama-btn-border-color);
    }
    .nice-select::after{
        right: 0;
        width: calc(100% - 1.25rem);
        transform: skew(-10deg, 0deg);
        transform-origin: right top;
        border-right: var(--ama-btn-border-width) solid var(--ama-btn-border-color);
    }
    .nice-select > .current{
        cursor: pointer;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        color: var(--ama-btn-color);
        font-size: var(--ama-btn-font-size);
        line-height: var(--ama-btn-line-height);
        font-weight: var(--ama-btn-font-weight);
        padding: var(--ama-btn-padding-y) var(--ama-btn-padding-x);
        position: relative;
        z-index: 1
    }
        .nice-select > .current::after{
            content: '';
            display: block;
            background-color: currentColor;
            width: .875rem;
            height: .875rem;
            margin-left: .625rem;
            mask: url(dropdown-arrow.svg) center no-repeat;
            mask-size: 100% auto;
            -webkit-mask: url(dropdown-arrow.svg) center no-repeat;
            -webkit-mask-size: 100% auto
        }

.nice-select.disabled {
    border-color:#ededed;
    color:#999;
    pointer-events:none
}

.nice-select.open .nice-select-dropdown {
opacity:1;
pointer-events:auto;
transform:scale(1) translateY(0)
}

.nice-select.wide{width:100%}
.nice-select.wide .nice-select-dropdown{left:0!important; right:0!important}

.nice-select.right{float:right}
.nice-select.right .nice-select-dropdown{left:auto; right:0}

.nice-select .has-multiple {
    white-space:inherit;
    height:auto;
    padding: 7px 12px;
    min-height: 36px;
    line-height: 22px
}

.nice-select .has-multiple span.current {
    padding: 0;
    display: inline-block;
    line-height: 1.75rem;
    font-size: 1rem
}

.nice-select .has-multiple .multiple-options {
    display:block;
    line-height: 24px;
    padding:0
}

.nice-select .nice-select-search-box {
    box-sizing:border-box;
    width:100%;
    padding:5px;
    pointer-events:none;
    border-radius:5px 5px 0 0
}

.nice-select .nice-select-search {
    box-sizing:border-box;
    background-color:#fff;
    border:1px solid #e8e8e8;
    border-radius:3px;
    color:#444;
    display:inline-block;
    vertical-align:middle;
    padding:7px 12px;
    margin:0 10px 0 0;
    width:100%;
    min-height:36px;
    line-height:22px;
    height:auto;
    outline:0!important;
    font-size:14px
}

.nice-select .nice-select-dropdown {
    margin-top:4px;
    background-color: #fff;
    border-radius: 0;
    box-shadow:0 0 0 1px #4444441c;
    pointer-events:none;
    position:absolute;
    top: 100%;
    left: 0;
    transform-origin: 50% 0;
    transform: scale(0.75) translateY(19px);
    transition: all .2s cubic-bezier(0.5,0,0,1.25),opacity .15s ease-out;
    z-index: 9;
    opacity: 0;
    min-width: 100%;
    max-height: 14.375rem;
    overflow-y: auto;
    overflow-x: hidden
}

.nice-select .list {
    font-size: .9375rem;
    line-height: 1.25rem;
    border-radius: .3125rem;
    box-sizing: border-box;
    padding:0
}

.nice-select .list:hover .option:not(:hover){background-color:#0000!important}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: inherit;
    padding: .4375rem .9375rem;
    list-style: none;
    outline: none;
    text-align: left;
    transition: all .2s
}
.nice-select .option.disabled[data-value=""]{
    border-top: 1px solid #ddd;
    font-weight: 700
}

.nice-select .option:hover,.nice-select .option.focus,.nice-select .option.selected.focus {background-color:#f6f6f6}

.nice-select .option.selected{font-weight:700}

.nice-select .option.disabled{
    background-color:#0000;
    color:#999;
    cursor:default
}

.nice-select .extra{float:right}

.nice-select .optgroup {
    font-weight: 700;
    padding-left: .625rem;
    padding-right: 1.125rem;
    opacity: .5;
    user-select: none;
    pointer-events: none
}

.no-csspointerevents .nice-select .nice-select-dropdown{display:none}
.no-csspointerevents .nice-select.open .nice-select-dropdown{display:block}
.nice-select .list::-webkit-scrollbar{width:0}
.hidden-select {
    opacity:0;
    width:0;
    padding:0;
    height:0;
    font-size:0;
    min-height:auto
}

.select-selection-list {
    list-style:none;
    padding:0;
    margin:0
}

.select-selection-list .select-selection {
    background-color:#e4e4e4;
    border:1px solid #aaa;
    border-radius:4px;
    box-sizing:border-box;
    display:inline-block;
    margin-left:5px;
    margin-top:5px;
    padding:2px 5px;
    position:relative;
    max-width:100%;
    overflow:hidden;
    text-overflow:ellipsis;
    vertical-align:bottom;
    white-space:nowrap
}

.select-selection-list button.remove-select-selection {
    height:15px;
    width:15px;
    line-height:15px;
    padding:0;
    background-color:#bd2919;
    border-radius:20%
}/*# sourceMappingURL=nice-select2.css.map */
