.select2-container--default .select2-selection--single {
height: 58px;
width: 100%;
border: 1px solid #663399 !important;
border-radius: 8px;
display: flex;
align-items: center;
background-color: white;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: border-color 0.3s ease;
}
.select2-container--default .select2-selection--single.select2-selection--focused,
.select2-container--default .select2-selection--single.has-value {
border-color: red;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
display: flex !important;
align-items: center;
height: 100%;
padding: 0 10px;
gap: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered::before {
background: linear-gradient(135deg, #663399, #ff4e2b);
content: "";
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
color: #fff;
font-weight: bold;
font-size: 15px;
border-radius: 8px;
display: inline-flex;
}
#customSelectBrand + .select2-container--default .select2-selection--single .select2-selection__rendered::before {
content: "1";
}
#customSelectModel + .select2-container--default .select2-selection--single .select2-selection__rendered::before {
content: "2";
}
#customSelectYears + .select2-container--default .select2-selection--single .select2-selection__rendered::before {
content: "3";
}
#customSelectEquipment + .select2-container--default .select2-selection--single .select2-selection__rendered::before {
content: "4";
}
#customSelectOptions + .select2-container--default .select2-selection--single .select2-selection__rendered::before {
content: "5";
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
height: 58px;
width: 30px;
}
.select2-container--default .select2-results__option {
height: 38px;
line-height: 38px;
text-align: left;
font-size: 16px;
color: #333;
border-bottom: 1px solid #eee;
}
.select2-container--default .select2-results__option--highlighted {
background-color: #f0e6ff;
color: #333;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
height: 40px;
font-size: 16px;
border: 1px solid #663399 !important;
border-radius: 4px;
}
.select2-selection__rendered {
line-height: 58px !important;
}
.select2-container .select2-selection--single {
height: 58px !important;
}
.select2-selection__arrow {
height: 58px !important;
}
.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--multiple:focus,
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
outline: none;
}
.select2-container, #select-options-container {
width: 100%;
max-width: 448px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
display: block;
padding-left: 15px !important;
padding-right: 20px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
width: 40px !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
background-color: #e7dfee !important;
color: #333 !important;
}
#select-options-container.show {
display: block;
}
#select-options-container.hide {
display: none;
}
@media (max-width: 768px) {
.select2-container, #select-options-container {
width: 100%;
max-width: 100%;
}
}