﻿/* multi select */

.mms-field {
    margin-bottom: 1.25rem;
}

.mms-label {
    display: inline-block;
    margin-bottom: 0.55rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #344767;
}

.mms-hint {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.75rem;
    color: #6c757d;
}

.mms-shell {
    position: relative;
}

.mms-icon {
    position: absolute;
    top: 50%;
    left: 0.85rem;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: var(--bs-secondary);
    z-index: 3;
}

.mms-shell.has-icon .select2-selection {
    padding-left: 3.2rem !important;
}

/* Select2 Multi Styling */

.select2-container--default .select2-selection--multiple {
    min-height: 50px;
    border-radius: 0.9rem;
    border: 1px solid #d7dee7;
    padding: 0.4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.select2-selection__choice {
    background: color-mix(in srgb, var(--bs-primary) 10%, white) !important;
    border: none !important;
    color: var(--bs-primary) !important;
    border-radius: 0.6rem !important;
    padding: 0.25rem 0.6rem !important;
    font-size: 0.8rem !important;
    font-weight: 600;
}

.select2-selection__choice__remove {
    color: var(--bs-primary) !important;
    margin-right: 0.35rem !important;
}

.select2-container--default.select2-container--focus
    .select2-selection--multiple {
    border-color: var(--bs-primary);
}

.mms-shell.has-error .select2-selection {
    border-color: #dc3545 !important;
}
