/* select2 input style  */
.select2 {
  width: 100% !important;
  .select2-selection {
    height: 44px;
    border: 1px solid #dfdfdf;
    &:hover {
      border-color: #111827;
    }
    &.select2-selection--single {
      margin: 0;
      .select2-selection__rendered {
        height: 100%;
        font-size: 14px;
        display: flex;
        align-items: center;
        padding-left: 12px;
      }
      .select2-selection__arrow {
        top: 1px;
        bottom: 1px;
        right: 8px;
        b {
          border-color: transparent #888 #888 transparent;
          border-style: solid;
          border-width: 2px;
          top: 14px;
          height: 10px;
          width: 10px;
          border-radius: 2px;
          transform: rotate(45deg);
        }
      }
    }
  }
  &.select2-container--below {
    &.select2-container--open {
      .select2-selection--single {
        border-radius: 4px;
        margin: 0;
        .select2-selection__arrow {
          b {
            border-color: transparent #888 #888 transparent;
            border-style: solid;
            border-width: 2px;
            top: 20px;
            height: 10px;
            width: 10px;
            border-radius: 2px;
            transform: rotate(225deg);
          }
        }
      }
    }
  }
}

/* select2 dropdown style  */
.select2-container {
  .select2-dropdown {
    margin-top: 40px;
    background: #ffffff;
    border: 1px solid #dfdfdf;
    border-radius: 6px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
    .select2-search {
      padding: 0;
      border-radius: 6px 6px 0 0;
      border-bottom: 1px solid #dfdfdf;
      .select2-search__field {
        border-radius: 6px 6px 0 0;
        border: none;
        min-height: 40px;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 14px;
        margin: 0;
        &:focus {
          outline: none;
          border: none;
          box-shadow: none;
        }
      }
    }
    .select2-results {
      padding-top: 8px;
      padding-bottom: 8px;
      .select2-results__options {
        .select2-results__option {
          font-size: 14px;
          line-height: 1.6;
          color: #111827;
          border: none;
          padding-top: 8px;
          padding-bottom: 8px;
          padding-left: 12px;
          &.select2-results__option--highlighted {
            background-color: #f3f4f6;
          }
        }
      }
    }
  }
  &.select2-dropdown--above {
    top: -12px;
  }
}
