/*
 * Custom Select jQuery Plugin Base
 */
 .com_custom_select_wrap .custom-select {
    position: relative;
  }
  
  .com_custom_select_wrap .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;
  }
  
  .com_custom_select_wrap .custom-select__option-wrap {
    position: relative;
  }
  
  .com_custom_select_wrap .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;
  }
  
  .com_custom_select_wrap .custom-select__dropdown {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    top: 100%;
    left: 0;
  }
  
  .com_custom_select_wrap .custom-select--dropup .custom-select__dropdown {
    top: auto;
    bottom: 100%;
  }
  
  /*
   * Custom Select jQuery Plugin Theme
   */
  .com_custom_select_wrap .custom-select__option {
    position: relative;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    color: #212121;
    line-height: 1.5;
  }
  
  .com_custom_select_wrap .custom-select__option:focus {
    outline: none;
  }
  
  .com_custom_select_wrap .custom-select__option:hover,
  .com_custom_select_wrap .custom-select__option:focus {
    background-color: #f9f9f9;
  }
  
  .com_custom_select_wrap .custom-select__option--value {
    padding-right: 1.875rem;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 0.25rem;
  }
  
  .com_custom_select_wrap .custom-select__option--value::after {
    position: absolute;
    box-sizing: border-box;
    width: 0;
    height: 0;
    top: 50%;
    right: 0.75rem;
    border-width: 0.3rem;
    border-bottom-width: 0;
    border-style: solid;
    border-color: currentColor transparent;
    transform: translateY(-50%);
    content: "";
  }
  
  .com_custom_select_wrap .custom-select--active .custom-select__option--value::after {
    transform: translateY(-50%) rotate(-180deg);
  }
  
  .com_custom_select_wrap .custom-select--active .custom-select__option--value {
    border-bottom-color: transparent;
    border-radius: 0.25rem 0.25rem 0 0;
  }
  
  .com_custom_select_wrap .custom-select--active .custom-select__option--value:hover,
  .com_custom_select_wrap .custom-select--active .custom-select__option--value:focus {
    background-color: #fff;
  }
  
  .com_custom_select_wrap .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;
  }
  
  .com_custom_select_wrap .custom-select__option--selected {
    background-color: #fcfcfc;
  }
  
  .com_custom_select_wrap .custom-select__option[disabled] {
    color: #a1a1a1;
    cursor: default;
  }
  
  .com_custom_select_wrap .custom-select__option[disabled]:hover, .custom-select__option[disabled]:focus {
    background-color: transparent;
  }
  
  .com_custom_select_wrap .custom-select__option-wrap {
    overflow-y: auto;
    max-height: 11.25rem;
  }
  
  .com_custom_select_wrap .custom-select__option-wrap::-webkit-scrollbar {
    width: 16px;
  }
  
  .com_custom_select_wrap .custom-select__option-wrap::-webkit-scrollbar-thumb {
    background-color: #e6e6e6;
    background-clip: padding-box;
    border-width: 0 4px;
    border-style: solid;
    border-color: transparent;
  }
  
  .com_custom_select_wrap .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;
  }
  
  .com_custom_select_wrap .custom-select__input:focus {
    outline: none;
  }
  
  .com_custom_select_wrap .custom-select--dropup .custom-select__input {
    border-top-width: 0;
    margin-top: 0;
    transform: translateY(0);
  }
  
  .com_custom_select_wrap .custom-select__dropdown {
    overflow: hidden;
    z-index: 1;
    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;
  }
  
  .com_custom_select_wrap .custom-select--dropup .custom-select__dropdown {
    bottom: calc(100%-1px);
    border-width: 1px 1px 0;
    border-radius: 0.25rem 0.25rem 0 0;
  }
  
  .com_custom_select_wrap .com_custom_select_wrap__option {
      overflow: hidden;position: relative;box-sizing: border-box;display: block;width: 100%;padding: 0.375rem 1.25rem;background-color: transparent;border: 0;
      border-radius: 0;font-family: inherit;color: #333;line-height:1.5;white-space:nowrap;text-align:left;text-overflow:ellipsis;cursor:pointer;user-select:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}
  .com_custom_select_wrap__option:focus{outline:none}
  /* .com_custom_select_wrap__option:hover,.com_custom_select_wrap__option:focus{background-color:#07f;color: #fff } */
  .com_custom_select_wrap .com_custom_select_wrap__option--value {
      padding-right: 2.5rem;
      padding-left: 1.25rem;
      border: solid 1px #ddd;
      height: 3.21em;
  }
  .com_custom_select_wrap .com_custom_select_wrap__option--value::after { position: absolute;box-sizing: border-box; top: 50%;right: 1.25rem; transform: translateY(-50%); content: "\e619"; font-family: 'bpicon'; color: #b6b6b6; }
  .com_custom_select_wrap .com_custom_select_wrap__option--value span { font-size: 1em; font-weight: 500; color: #999; }
  .com_custom_select_wrap .com_custom_select_wrap--active .com_custom_select_wrap__option--value::after {
      content: '\e60e';
  }
  .com_custom_select_wrap .com_custom_select_wrap--active .com_custom_select_wrap__option--value,
  .com_custom_select_wrap .com_custom_select_wrap__option--value:focus { border-color: #08a600; }
  .com_custom_select_wrap .com_custom_select_wrap__dropdown {
      overflow: hidden;position: absolute;z-index: 1;box-sizing: border-box;width: 100%; top: 0; left: 0; background-color: #fff; border: solid 1px #08a600; padding: 0.5rem 0; max-height: 150px; overflow-y: auto; }
  .com_custom_select_wrap .com_custom_select_wrap--dropup.com_custom_select_wrap__dropdown {
      top: auto; bottom: calc(100% + 5px)
  }
  .com_custom_select_wrap .com_custom_select_wrap__dropdown .com_custom_select_wrap__option { color: #333; font-weight: 300; }
  .com_custom_select_wrap .com_custom_select_wrap__dropdown .com_custom_select_wrap__option:hover,
  .com_custom_select_wrap .com_custom_select_wrap__dropdown .com_custom_select_wrap__option:focus { background-color: #f1f1f1; }
  .com_custom_select_wrap .com_custom_select_wrap__dropdown .com_custom_select_wrap__option--selected { color: #08a600; }