/*---- SELECT 2 -----*/
.floating-label-group {
    position: relative;
}

.floating-label-group .floating-label {
    height: 20px;
    font-size: 13px;
    color: #cccccc;
    position: absolute;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
    transition: all 0.1s ease;
}

.floating-label-group .select2.select2-container--focus~.floating-label,
.floating-label-group .select2.select2-container--below~.floating-label {
    top: 3px;
    bottom: 0px;
    left: 20px;
    font-size: 11px;
    opacity: 1;
    color: #FF5200 !important;
    background: #fff;
    padding: 0 5px;
}

.select2-container {
    max-width: 297px;
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #E2E2E7;
    border-radius: var(--bdr-radius);
    width: 100%;
    height: 56px;
    outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border: 1.5px solid #FF5200;
    box-shadow: 0px 8px 16px 0px #02060C1A;
    border-radius: var(--bdr-radius);
    outline: none;
}

.select2-selection__clear {
    display: none;
}

.select2-container--open .select2-dropdown--below {
    box-shadow: var(--box-shadow);
    border-radius: var(--bdr-radius);
    background-color: var(--light-text-inverse);
}

.results-found {
    align-self: stretch;
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: var(--padding-xl);
    gap: 19px;
}