/**
 * @file
 * Selectbox styles.
 */
/* There is a padding-left on .container that forces to move this to the left and prevents cover all the area. That is the reason for this adjustment */
.select2-container {
  width: 100% !important;
  min-width: 200px;
}
.select2-container .selection {
  position: relative;
  z-index: 1;
  display: block;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.select2-container .select2-selection--single {
  height: 29px;
}

.select2-container--default .select2-selection--single,
.select2-container--classic .select2-selection--single {
  height: 100%;
  padding: 12.5px;
  padding-right: 50px;
  border: 1px solid transparent;
  border-radius: 8px;
  line-height: 1.5;
  color: #202020;
  background: #fff;
}
.select2-container--default .select2-selection--single:focus,
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid transparent;
  outline: 0 !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: 1.5;
  color: #202020;
  font-size: 14px;
  font-weight: 600;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #3a3a3a;
}

.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  top: 0;
  right: 0;
  width: 38px;
  height: 100%;
  border: 1px solid transparent;
  border-left: 0;
  border-radius: 8px;
  background: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b,
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b::after,
.select2-container--classic .select2-selection--single .select2-selection__arrow b::after {
  position: relative;
  top: -2px;
  right: -5px;
  width: 5px;
  height: 5px;
  border: solid #606060;
  border-width: 0 1.5px 1.5px 0;
  content: "";
  transition: all 400ms ease;
  transform: rotate(45deg);
  transform-origin: center;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b,
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border: 0;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b::after,
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b::after {
  top: 3px;
  border-color: #0046b4;
  transform: rotate(225deg);
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid transparent;
}

.select2-results__options {
  padding: 10px;
}

.select2-results__option {
  padding: 5px;
  color: #202020;
  font-size: 14px;
  font-family: 600;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #ccdaf0;
  color: #202020;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  position: relative;
  color: #fff;
  background-color: #1b74ff;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable::after,
.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable::after {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 4px;
  height: 11px;
  border: solid #606060;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  position: relative;
  background: #fff;
  border-bottom: 1px solid transparent;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.select2-container--default.select2-container--open .select2-dropdown,
.select2-container--classic.select2-container--open .select2-dropdown {
  margin-top: 1px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.2);
}
.select2-container--default.select2-container--open .select2-dropdown:after, .select2-container--default.select2-container--open .select2-dropdown:before,
.select2-container--classic.select2-container--open .select2-dropdown:after,
.select2-container--classic.select2-container--open .select2-dropdown:before {
  content: "";
  position: absolute;
  left: 25px;
  display: block;
  margin-top: -11px;
  width: 0;
  height: 0;
  border-style: solid;
}
.select2-container--default.select2-container--open .select2-dropdown:before,
.select2-container--classic.select2-container--open .select2-dropdown:before {
  top: 0;
  border-width: 0 5px 10px 5px;
  border-color: transparent transparent #ddd transparent;
}
.select2-container--default.select2-container--open .select2-dropdown:after,
.select2-container--classic.select2-container--open .select2-dropdown:after {
  top: 3px;
  margin-left: 1px;
  border-width: 0 4px 8px 4px;
  border-color: transparent transparent #fff transparent;
}
.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above:after, .select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above:before,
.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--above:after,
.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--above:before {
  top: 100%;
  margin-top: 0;
  margin-bottom: -10px;
}
.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above:before,
.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--above:before {
  border-width: 10px 5px 0 5px;
  border-color: #ddd transparent transparent transparent;
}
.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above:after,
.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--above:after {
  border-width: 8px 4px 0 4px;
  border-color: #fff transparent transparent transparent;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder,
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: rgba(32, 32, 32, 0.5);
  font-weight: 600;
  font-size: 14px;
}

.select2-container .select2-selection--multiple {
  min-height: 29px;
}

.select2-container--default .select2-selection--multiple,
.select2-container--classic .select2-selection--multiple {
  display: flex;
  align-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 0;
  line-height: 1.5;
  color: #202020;
  background: #fff;
}
.select2-container--default .select2-selection--multiple:focus,
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid transparent;
}

.select2-container .select2-search--inline .select2-search__field {
  margin: 0;
  padding: 5px 10px;
  background: transparent;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: 1px solid transparent;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  display: inline-flex;
  align-items: center;
  margin: 2.5px 5px;
  border: 0;
  background-color: #b9b9b9;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display,
.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  padding: 0 10px 0 0;
  font-size: 14px;
  line-height: 1;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-flex;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  height: 100%;
  padding: 7.5px 10px;
  font-family: 300;
  color: #868686;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #535353;
}

span.select2-search.select2-search--inline {
  margin: 0;
  padding: 0;
}

.select2-container--default.select2-container--open .select2-selection--multiple,
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid transparent;
}

.select2-container--default .select2-selection--single .select2-selection__clear,
.select2-container--classic .select2-selection--single .select2-selection__clear {
  display: none;
  top: -4px;
  width: 29px;
  height: 25px;
  margin: 0;
  padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__clear span,
.select2-container--classic .select2-selection--single .select2-selection__clear span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: 300;
  line-height: 1;
  color: #868686;
}

.form-type-select .form-select {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
}

/*=== multiple select ===*/
.select2.select2-container.select2-container--classic .selection .select2-selection--multiple:after {
  position: absolute;
  top: 11px;
  right: 9px;
  width: 8px;
  height: 8px;
  border: solid #0046b4;
  border-width: 0 1px 1px 0;
  content: "";
  transition: all 400ms ease;
  transform: rotate(45deg);
  transform-origin: center;
}
.select2.select2-container.select2-container--classic.select2-container--open .selection .select2-selection--multiple:after {
  top: 16px;
  border-color: #0046b4;
  transform: rotate(225deg);
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  margin: 2.5px 5px;
  padding: 2px 8px;
  border: 0;
  background-color: #d9d9d9;
  height: 23px;
  border-radius: 25px;
  background: rgba(204, 218, 240, 0.8);
  color: #202020;
  font-size: 14px;
  font-family: 600;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 5px;
  margin-right: 0;
  padding: 0;
  color: #0046b4;
  line-height: 20px;
  font-size: 20px;
}

/*# sourceMappingURL=selectbox.css.map */
