/* * Custom Select jQuery Plugin Base */ 
.select_01 .custom-select { position: relative; }
 .select_01 .custom-select__option { overflow: hidden; box-sizing: border-box; display: block; width: 100%; padding: 0; background-color: transparent; border: 0; border-radius: 0; font-family: inherit; white-space: nowrap; text-align: left; text-overflow: ellipsis; cursor: pointer; user-select: none; -webkit-appearance: none; -moz-appearance: none; appearance: none; }
 .select_01 .custom-select__option-wrap { position: relative; }
 .select_01 .custom-select__input { box-sizing: border-box; display: block; width: 100%; padding: 0; border-width: 1px 0; border-style: solid; border-radius: 0; font-family: inherit; -webkit-appearance: none; -moz-appearance: none; appearance: none; }
 .select_01 .custom-select__dropdown { position: absolute; box-sizing: border-box; width: 100%; top: 100%; left: 0; }
 .select_01 .custom-select--dropup .custom-select__dropdown { top: auto; bottom: 100%; }
 /* * Custom Select jQuery Plugin Theme */ 
 .select_01 .custom-select__option { position: relative; padding: 16px 10px; font-size: 14px; color: #212121; line-height: 120%; font-weight: 600; border-bottom: 1px solid #d1d1d1; }
 .select_01 .custom-select__option:focus { outline: none; }
 .select_01 .custom-select__option:hover, .select_01 .custom-select__option:focus { background-color: #f1f1f1; }
 .select_01 .custom-select__option--value { padding-right: 1.875rem; background-color: #f1f1f1; border: 1px solid #f1f1f1; border-radius: 2px; }
 .select_01 .custom-select__option--value::after { position: absolute; width: 20px; height: 20px; top: 16px; right: 0.75rem; border-bottom-width: 0; content: ""; background: url(../../../img/arrows/arrow_dropdown.svg) center center no-repeat; }
 .select_01 .custom-select--active .custom-select__option--value::after { transform: translateY(0px) rotate(-180deg); }
 .select_01 .custom-select--active .custom-select__option--value { border-bottom-color: transparent; /* border-radius: 0.25rem 0.25rem 0 0; */ }
 .select_01 .custom-select--active .custom-select__option--value:hover, .select_01 .custom-select--active .custom-select__option--value:focus { background-color: #f1f1f1; }
 .select_01 .custom-select--dropup.custom-select--active .custom-select__option--value { border-top-color: transparent; border-bottom-color: #e6e6e6; border-radius: 0 0 0.25rem 0.25rem; }
 .select_01 .custom-select__option--selected { background-color: #fcfcfc; }
 .select_01 .custom-select__option[disabled] { color: #a1a1a1; cursor: default; }
 .select_01 .custom-select__option[disabled]:hover, .select_01 .custom-select__option[disabled]:focus { background-color: transparent; }
 .select_01 .custom-select__option-wrap { overflow-y: auto; max-height: 11.25rem; }
 .select_01 .custom-select__option-wrap::-webkit-scrollbar { width: 16px; }
 .select_01 .custom-select__option-wrap::-webkit-scrollbar-thumb { background-color: #e6e6e6; background-clip: padding-box; border-width: 0 4px; border-style: solid; border-color: transparent; }
 .select_01 .custom-select__input { position: relative; z-index: 1; height: 2.25rem; margin-top: -1px; padding: 0 0.75rem; border-color: #e6e6e6; transform: translateY(1px); font-size: 1rem; color: #212121; }
 .select_01 .custom-select__input:focus { outline: none; }
 .select_01 .custom-select--dropup .custom-select__input { border-top-width: 0; margin-top: 0; transform: translateY(0); }
 .select_01 .custom-select__dropdown { overflow: hidden; z-index: 22; top: calc(100% - 1px); background-color: #fff; border-width: 0 1px 1px; border-style: solid; border-color: #e6e6e6; border-radius: 0 0 0.25rem 0.25rem; }
 .select_01 .custom-select--dropup .custom-select__dropdown { bottom: calc(100% - 1px); border-width: 1px 1px 0; border-radius: 0.25rem 0.25rem 0 0; }
