/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
/* =========================================================
   SELECT2 - MASTENIA FORM STYLE
   ========================================================= */
.required {
    color: #dc3545;
    font-weight: bold;
}

/* Container utama */
.select2-container {
    width: 100% !important;
    font-family: inherit;
    font-size: 14px;
}

/* Kotak select */
.select2-container .select2-selection--single {
    height: 46px;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    background-color: #fff;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

/* Text pilihan */
.select2-container--default
.select2-selection--single
.select2-selection__rendered {
    color: #555;
    line-height: 44px;
    padding-left: 15px;
    padding-right: 40px;
}

/* Placeholder */
.select2-container--default
.select2-selection--single
.select2-selection__placeholder {
    color: #999;
}

/* Icon panah */
.select2-container--default
.select2-selection--single
.select2-selection__arrow {
    height: 44px;
    width: 35px;
    right: 5px;
}

.select2-container--default
.select2-selection--single
.select2-selection__arrow b {
    border-color: #999 transparent transparent transparent;
    border-width: 5px 4px 0 4px;
    margin-left: -4px;
    margin-top: -2px;
}

/* Hover */
.select2-container--default
.select2-selection--single:hover {
    border-color: #bbb;
}

/* Focus */
.select2-container--default.select2-container--focus
.select2-selection--single,
.select2-container--default.select2-container--open
.select2-selection--single {
    border-color: #999;
    outline: none;
    box-shadow: none;
}

/* =========================================================
   DROPDOWN
   ========================================================= */

.select2-container--default .select2-dropdown {
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Search box */
.select2-container--default
.select2-search--dropdown {
    padding: 10px;
    background: #fff;
}

.select2-container--default
.select2-search--dropdown
.select2-search__field {
    width: 100%;
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    font-family: inherit;
    font-size: 14px;
    color: #555;
    outline: none;
    transition: border-color 0.2s ease;
}

/* Search focus */
.select2-container--default
.select2-search--dropdown
.select2-search__field:focus {
    border-color: #999;
}

/* =========================================================
   LIST OPTION
   ========================================================= */

.select2-container--default
.select2-results__option {
    padding: 10px 15px;
    font-size: 14px;
    color: #555;
    background: #fff;
}

/* Hover / selected */
.select2-container--default
.select2-results__option--highlighted[aria-selected] {
    background-color: #f5f5f5;
    color: #333;
}

/* Option yang sudah dipilih */
.select2-container--default
.select2-results__option[aria-selected="true"] {
    background-color: #f8f8f8;
    color: #333;
}

/* =========================================================
   DISABLED
   ========================================================= */

.select2-container--default.select2-container--disabled
.select2-selection--single {
    background-color: #f5f5f5;
    border-color: #ddd;
    cursor: not-allowed;
}

.select2-container--default.select2-container--disabled
.select2-selection--single
.select2-selection__rendered {
    color: #aaa;
}

/* =========================================================
   ERROR / VALIDATION
   ========================================================= */

.select2-container.is-invalid
.select2-selection--single {
    border-color: #dc3545;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .select2-container .select2-selection--single {
        height: 44px;
    }

    .select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
        line-height: 42px;
        font-size: 14px;
    }

    .select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
        height: 42px;
    }
}