﻿/*------ selectbox------------------------------------------------*/
.nice-select {
    -webkit-tap-highlight-color: transparent;
    border-radius: 6px;
    border: solid 1px #eee;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    height: 41px;
    line-height: 41px;
    background: #f7f9fb;
    color: #666;
    outline: 0;
    padding-left: 42px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    z-index: 10; /* Ana select kutusu için temel z-index */
}

    .nice-select:before {
        font-family: 'Font Awesome 6 Free';
        content: "\f03a"; /* fa-bars */
        color: #F9B90F;
        font-size: 12px;
        font-weight: 900;
        position: absolute;
        left: 16px;
        top: 0;
        z-index: 11; /* Bars ikonu */
    }

    .nice-select:hover {
        border-color: #eee
    }

    .nice-select:after {
        font-family: 'Font Awesome 6 Free';
        content: "\f107"; /* fa-angle-down */
        font-weight: 900;
        font-size: 14px;
        color: #3AACED;
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform .15s ease-in-out;
        z-index: 12; /* Ok ikonu */
        border: none !important;
        width: auto;
        height: auto;
        margin: 0;
    }

    .nice-select.open:after {
        content: "\f106"; /* fa-angle-up */
        transform: translateY(-50%) rotate(0deg);
    }

    .nice-select.open {
        z-index: 100; /* Açık select diğerlerinin üstünde */
    }

        .nice-select.open .list {
            opacity: 1;
            pointer-events: auto;
            -webkit-transform: scale(1) translateY(0);
            -ms-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
            z-index: 99; /* Açılan liste */
        }

    .nice-select .list {
        background-color: #fff;
        box-shadow: 0 0 0 1px rgba(68,68,68,.11);
        box-sizing: border-box;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        position: absolute;
        width: 100%;
        left: 0;
        -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scale(.75) translateY(-21px);
        -ms-transform: scale(.75) translateY(-21px);
        transform: scale(.75) translateY(-21px);
        -webkit-transition: all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;
        transition: all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;
        z-index: 99; /* Liste */
        margin-top: 5px;
        top: 100%;
        border-top: 0;
        border-radius: 0 0 5px 5px;
        max-height: 210px;
        overflow-y: scroll;
        padding: 52px 0 0;
    }

    .nice-select .nice-select-search-box {
        box-sizing: border-box;
        position: absolute;
        width: 100%;
        margin-top: 5px;
        top: 100%;
        left: 0;
        z-index: 101; /* Arama kutusu */
        padding: 5px;
        background: #fff;
        opacity: 0;
        pointer-events: none;
        border-radius: 5px 5px 0 0;
        -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scale(.75) translateY(-21px);
        -ms-transform: scale(.75) translateY(-21px);
        transform: scale(.75) translateY(-21px);
        -webkit-transition: all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;
        transition: all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;
    }

        .nice-select .nice-select-search-box:before {
            content: "\f002"; /* FontAwesome search */
            font-family: 'Font Awesome 6 Free';
            position: absolute;
            color: #ccc;
            bottom: 8px;
            font-size: 13px;
            left: 16px;
            font-weight: 900;
            transition: all .2s ease-in-out;
            z-index: 102; /* Arama ikonu */
        }

    .nice-select.open .nice-select-search-box {
        opacity: 1;
        pointer-events: auto;
        -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }

    /* Diğer stiller aynı kalıyor */
    .nice-select.disabled {
        border-color: #ededed;
        color: #999;
        pointer-events: none
    }

        .nice-select.disabled:after {
            border-color: #ccc
        }

    .nice-select.wide {
        width: 100%
    }

        .nice-select.wide .list {
            left: 0 !important;
            right: 0 !important
        }

    .nice-select.right {
        float: right
    }

        .nice-select.right .list {
            left: auto;
            right: 0
        }

    .nice-select.small {
        font-size: 12px;
        height: 36px;
        line-height: 34px
    }

        .nice-select.small:after {
            height: 4px;
            width: 4px
        }

        .nice-select.small .option {
            line-height: 34px;
            min-height: 34px
        }

    .nice-select .option {
        cursor: pointer;
        font-weight: 400;
        line-height: 40px;
        list-style: none;
        min-height: 40px;
        outline: 0;
        width: 100%;
        padding-left: 18px;
        padding-right: 29px;
        text-align: left;
        -webkit-transition: all .2s;
        transition: all .2s
    }

        .nice-select .option.focus,
        .nice-select .option.selected.focus,
        .nice-select .option:hover {
            background-color: #f6f6f6
        }

        .nice-select .option.disabled {
            background-color: transparent;
            color: #999;
            cursor: default
        }

.no-csspointerevents .nice-select .list {
    display: none
}

.no-csspointerevents .nice-select.open .list {
    display: block
}

.nice-select .list::-webkit-scrollbar {
    width: 0
}

.nice-select.no-search-select .list {
    padding: 0 !important
}

.nice-select.has-multiple span.current {
    float: left;
    font-size: 10px;
    margin-bottom: 3px;
    margin-right: 3px
}

.nice-select.has-multiple .multiple-options {
    display: block;
    padding: 0
}



   

.nice-select.no-search-select .nice-select-search-box {
    display: none
}

.nice-select .nice-select-search {
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: none;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    padding: 12px 32px 12px 33px;
    margin: 0 10px 0 0;
    width: 100% !important;
    min-height: 36px;
    line-height: 22px;
    height: auto;
    outline: 0 !important; border: 0.2px solid rgb(247 241 241);
}

.nice-select.open .nice-select-search-box {
    opacity: 1;
    z-index: 105;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0)
}