.form-control {
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: none !important;
  margin-bottom: 15px;
}

.form-control:focus {
  border: 1px solid #34495e;
}

.select2.select2-container {
  width: 100% !important;
}

.select2.select2-container .select2-selection {
  border: 1px solid #9e9e9e;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  height: 44px;

  outline: none !important;
  border-radius: 5px;
  transition: all 0.15s ease-in-out;
}

.select2.select2-container .select2-selection .select2-selection__rendered {
  color: #333;
  line-height: 38px;
  font-size: 1.4rem;
}

.select2.select2-container.select2-container--open
  .select2-selection.select2-selection--single {
  background: #f8f8f8;
}

.select2.select2-container.select2-container--open
  .select2-selection.select2-selection--single
  .select2-selection__arrow {
  -webkit-border-radius: 0 3px 0 0;
  -moz-border-radius: 0 3px 0 0;
  border-radius: 0 3px 0 0;
}

.select2.select2-container.select2-container--open
  .select2-selection.select2-selection--multiple {
  border: 1px solid #34495e;
}

.select2.select2-container .select2-selection--multiple {
  height: auto;
  min-height: 44px;
}

.select2.select2-container
  .select2-selection--multiple
  .select2-search--inline
  .select2-search__field {
  margin-top: 0;
  height: 32px;
}

.select2.select2-container
  .select2-selection--multiple
  .select2-selection__rendered {
  display: block;
  padding: 0 4px;
  line-height: 29px;
}

.select2.select2-container
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 4px 4px 0 0;
  padding: 0 6px 0 22px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  position: relative;
}

.select2.select2-container
  .select2-selection--multiple
  .select2-selection__choice
  .select2-selection__choice__remove {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  margin: 0;
  text-align: center;
  color: #e74c3c;
  font-weight: bold;
  font-size: 16px;
}

.select2-container .select2-dropdown {
  background: transparent;
  border: none;
}

.select2-container .select2-dropdown .select2-search {
  padding: 0;
}

.select2-container .select2-dropdown .select2-search input {
  border-color: #9e9e9e;
  height: 44px;
  min-height: 44px;

  border-radius: 4px;
  border-width: 1px;
  background: #ffffff;
  font-size: 14px;

  padding: 12px;
}

.select2-container .select2-dropdown .select2-results {
  padding: 0;
}

.select2-container .select2-dropdown .select2-results ul {
  background: #fff;
}

.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background: none !important;
  color: #333 !important;
}

.select2-container--default .select2-results__option--selected {
  background: none !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  font-weight: 400;
  font-size: 1.4rem;
  vertical-align: middle;
  color: #9e9e9e;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 12px !important;
}

.select2-search--dropdown {
  padding: 1rem 0;
  text-align: center;
}

.select2-container--open .select2-dropdown--below {
  border: 1px solid #9e9e9e;
  padding: 8px;
  background: #fff;
}

.select2-results__options li {
  cursor: pointer;
  padding: 1.2rem 0.8rem;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 160%;
  letter-spacing: 0%;
  vertical-align: middle;
  border-bottom: 1px solid #f5f5f5;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 26px !important;
  position: absolute;
  top: 7px !important;
  right: 15px !important;
  width: 20px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow::after {
  content: url(../images/Chevron_Down.svg); /* You can use Unicode, SVG, or an icon font like Font Awesome */
  font-size: 12px;
  color: #555;
  position: absolute;
  right: 1px;
  top: 18px;
  transform: translateY(-50%);
}


.select2-results__option.skeleton {
    height: 20px;
    margin: 5px 10px;
    /* background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%); */
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #F9F9F9 29.8%, rgba(255, 255, 255, 0) 54.69%);

    background-size: 200% 100%;
    animation: skeleton-loading 1.2s infinite;
    border-radius: 4px;
    pointer-events: none;
  }
  @keyframes skeleton-loading {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
}