
.enquiry-form .select2-container--default .select2-selection--single {
	background: transparent;
	border-bottom: 2px solid #bca0784d;
	border-top: 0px;
	border-right: 0px;
	border-left: 0px;
	border-radius: 0px;
	box-shadow: none;
	width: 100%;
	padding: 0px 20px 0px 0px;
    color: #000000;
    font-size: 16px;
    font-weight: 300;
    font-family: "Outfit";
    height: 45px;
}


/* 1️⃣ Placeholder state */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #BFB5B0;
    font-size: 16px;
    font-weight: 300;
    font-family: "Outfit";
}

/* 2️⃣ Selected value state */
.select2-container--default .select2-selection--single .select2-selection__rendered:not(.select2-selection__placeholder) {
    color: #000;
    font-size: 16px;
    font-weight: 00;
    font-family: "Outfit";
}

/* Selected value (normal text) */

/* Style the dropdown itself */
.select2-container .select2-selection__clear{
	display: none;
}

.select2-container .select2-dropdown {
    background-color: #FFFFFF !important;
    border: none !important;
}
.select2-container--open .select2-dropdown {
    left: 0;
    top: 20px;
    border: 2px solid #F9F9F7 !important;
}

.select2-container--default .select2-results__option--selected{
	background-color: #F9F9F7;
	font-size: 16px;
	font-weight: 400;
}

.select2-container--default .select2-results>.select2-results__options{
	max-height: max-content !important;
}

.select2-container .select2-dropdown .select2-results__options .select2-results__option {
    padding: 15px 10px;
    user-select: none;
    -webkit-user-select: none;
    border-bottom: 2px solid #F9F9F7;
	color: #BFB5B0;
    font-weight: 300;
    font-family: "Outfit";
    font-size: 14px;
}

.select2-container--default .select2-results__option:last-child {
    border-bottom: none !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container .select2-dropdown .select2-results__options .select2-results__option:hover{
	background-color: #F9F9F7 !important;
	color: #000000 !important;
}

/* Hide the search box */
.select2-container .select2-search {
    display: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #000000;
    font-size: 16px;
    font-family: "Outfit";
    font-weight: 400;
    padding: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none !important;
    width: 10px !important;
    height: 10px !important;
    background-image: url(../images/form-dropdown.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-indent: -9999px;
}