.select2-container {
    width: 100% !important;
    font-family: inherit;
}

/* main box */
.select2-container--default .select2-selection--single {
    height: 42px !important;
    border: 1px solid #ccc !important;
    border-radius: 3px !important;
    background: #fff !important;
    padding: 6px 45px 6px 12px !important;
    position: relative;
}

/* text */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333 !important;
    line-height: 28px !important;
    padding-left: 0 !important;
}

/* clear cross button */
.select2-selection__clear {
    display: block !important;
    position: absolute !important;
    right: 28px !important;
    top: 50% !important;
    transform: translateY(-50%);
    font-size: 18px !important;
    color: #666 !important;
    cursor: pointer;
    z-index: 9;
}

/* dropdown */
.select2-dropdown {
    border: 1px solid #ccc !important;
    border-radius: 3px !important;
    z-index: 9999 !important;
}

/* hover */
.select2-results__option--highlighted {
    background: #f0f0f0 !important;
    color: #333 !important;
}

/* custom arrow */
.select2-container--default .select2-selection--single::after {
    content: "⌄";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #777;
    transition: 0.3s;
    pointer-events: none;
}

/* rotate arrow */
.select2-container.dropdown-open .select2-selection--single::after {
    transform: translateY(-50%) rotate(180deg);
}

/* hide default arrow only */
.select2-selection__arrow {
    display: none !important;
}