/* select 2 plugin css overrides */
.select2-container {
    padding: 0;
  }
  
  .select2-container .select2-choice {
    height: 100%;
    border: none;
    display: flex;
    align-items: center;
    padding: 0 0 0 18px;
  }
  
  .select2-container .select2-choice,
  .select2-dropdown-open .select2-choice {
    background: #fff;
  }
  
  .select2-container .select2-choice .select2-arrow b {
    background: url(../images/img/select2.png) 0 13px no-repeat;
  }
  
  .select2-container.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 12px;
  }
  
  .select2-container:not(.select2-dropdown-open) .select2-choice .select2-arrow {
    border-left: 1px solid #ccc;
    background: #fff;
  }
  
  .select2-container.select2-dropdown-open .select2-choice .select2-arrow {
    border-left: 1px solid transparent;
  }
  
  /* placeholder */
  .select2-container.noValue .select2-chosen {
    letter-spacing: 0.5px;
    color: #6a767d;
    font-size: 15px;
    font-family: "poppinsregular", sans-serif;
  }
  
  /* placeholder */
  .select2-container .select2-chosen {
    font-size: 16px;
    color: #222222;
    letter-spacing: 0.5px;
    font-family: "poppinsregular", sans-serif;
  }
  
  .select2-container-active .select2-choice,
  .select2-container-active .select2-choices {
    box-shadow: none;
  }
  
  /* select2 search */
  .select2-search {
    padding: 0 8px;
  }
  
  .select2-search,
  .select2-search input {
    min-height: 36px;
  }
  
  .select2-search input {
    font-size: 14px;
    color: #222222;
    letter-spacing: 0.5px;
    border-radius: 4px;
    font-family: "poppinsregular", sans-serif;
  }
  
  .select2-search input {
    background-size: 81px 53px !important;
    background-position: 100% -27px !important;
  }
  
  /* select2 results */
  .select2-results {
    padding: 0;
    margin: 8px 0 0 0;
  }
  
  .select2-results .select2-highlighted {
    background: #ed353a;
  }
  
  .select2-results .select2-result-label {
    padding: 5px 10px 5px;
  }
  
  .select2-drop-active {
    border: 1px solid #cccccc;
    border-top: 0;
  }
  
  .select2-dropdown-open {
    border-radius: 4px 4px 0 0;
  }