﻿/* =========================================================
   PREMIUM SELECT
   ========================================================= */

.premium-select {
    position: relative;
    width: 100%;
}

/* =========================================================
   TRIGGER
   ========================================================= */

.premium-select-trigger {
    height: 56px;
    min-height: 56px;
    border: 1px solid #dbe4f0;
    border-radius: 18px;
    background: #fff;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: .2s;
}

    .premium-select-trigger:hover {
        border-color: #cbd5e1;
    }

/* =========================================================
   SELECTED VALUE
   ========================================================= */

.premium-select-selected {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.premium-select-selected-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.premium-select-selected-text {
    font-size: 15px;
    font-weight: 600;
    color: #166534;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =========================================================
   ARROW
   ========================================================= */

.premium-select-arrow {
    font-size: 12px;
    color: #64748b;
    flex-shrink: 0;
}

/* =========================================================
   MENU
   ========================================================= */

.premium-select-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(15,23,42,.12);
    z-index: 9999;
    display: none;
    /* IMPORTANT */

    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
}

.premium-select.open .premium-select-menu {
    display: block;
    
}
.open {
    background: none;
}

/* =========================================================
   ITEM
   ========================================================= */

.premium-select-item {
    height: 48px;
    border-radius: 14px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: .2s;
}

    .premium-select-item:hover {
        background: #f8fafc;
    }

/* =========================================================
   ITEM ICON
   ========================================================= */

.premium-select-item-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
}

/* =========================================================
   ITEM TEXT
   ========================================================= */

.premium-select-item-text {
    font-size: 15px;
    font-weight: 500;
    color: #166534;
}

.premium-select {
    position: relative;
    width: 100%;
}

.premium-select-menu::-webkit-scrollbar {
    width: 6px;
}

.premium-select-menu::-webkit-scrollbar-track {
    background: transparent;
}

.premium-select-menu::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 20px;
}

