.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown select {
  display: none;
}
.dropdown .dropdown__container {
  font-family: 'Noto Sans', 'Arial', 'Helvetica', 'sans-serif';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  position: relative;
}
.dropdown .dropdown__wrapper {
  position: relative;
}
.dropdown .dropdown__wrapper--select-input {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 270px;
  height: 64px;
  min-width: 130px;
  min-height: 64px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-radius: 8px;
  border: 2px solid #6e6e6e;
  background-color: transparent;
  padding: 8px 24px;
  position: relative;
  z-index: 3;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.dropdown .dropdown__wrapper--select-button {
  position: absolute;
  cursor: pointer;
  display: block;
  height: 64px;
  width: 88px;
  top: 0px;
  right: 0;
  z-index: 4;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
}
.dropdown .dropdown__wrapper--select-button svg {
  position: absolute;
  top: 24px;
  right: 24px;
  height: 16px;
  width: 16px;
  fill: #333333;
}
.dropdown .dropdown__wrapper--options-container {
  display: none;
  position: absolute;
  overflow: hidden;
  z-index: 4;
  margin-top: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 2px solid #0061a0;
  width: 270px;
  min-width: 130px;
}
.dropdown .dropdown__wrapper--options-wrapper::-webkit-scrollbar {
  width: 6px;
  height: 67px;
}
.dropdown .dropdown__wrapper--options-wrapper::-webkit-scrollbar-thumb {
  background: #6e6e6e;
  border-radius: 3px;
}
.dropdown .dropdown__wrapper--options-wrapper:-webkit-scrollbar-track {
  background-color: transparent;
}
.dropdown .dropdown__wrapper--options-wrapper {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}
.dropdown .option {
  padding: 8px 24px;
  cursor: pointer;
}
.dropdown .option.active {
  background-color: #0061a0;
  color: #ffffff;
}
.dropdown .option:not(.noresults):hover {
  background-color: #baddf5;
  color: #333333;
}
.dropdown .option:not(.noresults) mark {
  color: #0061a0;
  font-weight: 600;
  background-color: #ffffff;
}
.dropdown .option:not(.noresults):hover mark {
  background-color: #baddf5;
  color: #333333;
}
.dropdown .option.active:not(.noresults) mark {
  color: #ffffff;
  background-color: #0061a0;
}
.dropdown .option.noresults {
  display: none;
  cursor: default;
}
@media screen and (max-width: 767px) {
  .dropdown {
    width: 100%;
  }
  .dropdown .dropdown__wrapper--select-input,
  .dropdown .dropdown__wrapper--options-container {
    width: 100%;
  }
}
.dropdown.radio-dropdown .option:before {
  content: url('../../../../content/dam/globalMarketingPlatformAssets/images/checkbox-radio/Radiocircle-default.svg');
  position: relative;
  height: 24px;
  width: 24px;
  border: none;
  margin-right: 8px;
}
.dropdown.radio-dropdown .option:hover:before {
  content: url('../../../../content/dam/globalMarketingPlatformAssets/images/checkbox-radio/Radiocircle-hover.svg');
  height: 24px;
  width: 24px;
}
.dropdown.radio-dropdown .option[aria-selected="true"]:before {
  content: url('../../../../content/dam/globalMarketingPlatformAssets/images/checkbox-radio/Radiocircle-selected.svg');
  height: 24px;
  width: 24px;
}
.dropdown.radio-dropdown .option[aria-selected="true"]:hover:before {
  content: url('../../../../content/dam/globalMarketingPlatformAssets/images/checkbox-radio/Radiocircle-selectedhover.svg');
  height: 24px;
  width: 24px;
}
.dropdown.checkbox-dropdown .option:before {
  content: url('../../../../content/dam/globalMarketingPlatformAssets/images/checkbox-radio/Checkbox-default.svg');
  position: relative;
  height: 24px;
  width: 24px;
  border: none;
  margin-right: 8px;
}
.dropdown.checkbox-dropdown .option:hover {
  background-color: #baddf5;
}
.dropdown.checkbox-dropdown .option:hover:before {
  content: url('../../../../content/dam/globalMarketingPlatformAssets/images/checkbox-radio/Checkbox-hover.svg');
  height: 24px;
  width: 24px;
}
.dropdown.checkbox-dropdown .option[aria-selected="true"]:before {
  content: url('../../../../content/dam/globalMarketingPlatformAssets/images/checkbox-radio/Checkbox-selected.svg');
  height: 24px;
  width: 24px;
}
.dropdown.checkbox-dropdown .option[aria-selected="true"] {
  background-color: #0061a0;
  color: #ffffff;
}
.dropdown.checkbox-dropdown .option[aria-selected="true"]:hover:before {
  content: url('../../../../content/dam/globalMarketingPlatformAssets/images/checkbox-radio/Checkbox-selectedhover.svg');
  height: 24px;
  width: 24px;
}
.dropdown.searchable-dropdown .dropdown__container .dropdown__wrapper--select:focus .dropdown__wrapper--select-input,
.dropdown.searchable-dropdown .dropdown__container .dropdown__wrapper--select:hover .dropdown__wrapper--select-input,
.dropdown.searchable-dropdown .dropdown__container .dropdown__wrapper--select:active .dropdown__wrapper--select-input {
  border: 3px solid #0061a0;
  padding: 8px 23px;
}
.dropdown.searchable-dropdown .dropdown__container .dropdown__wrapper--select .dropdown__wrapper--select-input:focus,
.dropdown.searchable-dropdown .dropdown__container .dropdown__wrapper--select .dropdown__wrapper--select-input:hover,
.dropdown.searchable-dropdown .dropdown__container .dropdown__wrapper--select .dropdown__wrapper--select-input:active {
  border: 3px solid #0061a0;
  padding: 8px 23px;
}
.dropdown.searchable-dropdown .dropdown__container .dropdown__wrapper--select .dropdown__wrapper--select-input.active {
  padding-top: 23px;
}
.dropdown.searchable-dropdown .dropdown__container label:focus + .dropdown__wrapper .dropdown__wrapper--select-input,
.dropdown.searchable-dropdown .dropdown__container label:hover + .dropdown__wrapper .dropdown__wrapper--select-input,
.dropdown.searchable-dropdown .dropdown__container label:active + .dropdown__wrapper .dropdown__wrapper--select-input {
  border: 3px solid #0061a0;
  padding: 8px 23px;
}
.dropdown.searchable-dropdown .dropdown__container label:focus + .dropdown__wrapper button svg,
.dropdown.searchable-dropdown .dropdown__container label:hover + .dropdown__wrapper button svg,
.dropdown.searchable-dropdown .dropdown__container label:active + .dropdown__wrapper button svg {
  fill: #0061a0;
}
.dropdown.searchable-dropdown label {
  color: #6e6e6e;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  position: absolute;
  left: 24px;
  top: 20px;
}
.dropdown.searchable-dropdown label.active {
  font-size: 12px;
  line-height: 18px;
  top: 8px;
  left: 25px;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.dropdown.searchable-dropdown .dropdown__wrapper--options-container {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: none;
  margin-top: -7px;
  padding-top: 15px;
}
.dropdown.pills-dropdown {
  position: relative;
}
.dropdown.pills-dropdown .dropdown__wrapper {
  position: relative;
  width: auto;
  height: 40px;
}
.dropdown.pills-dropdown .dropdown__wrapper--select-input,
.dropdown.pills-dropdown .dropdown__wrapper--select-input.active {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  height: 40px;
  border-radius: 24px;
  border: 2px solid #6e6e6e;
  padding: 8px 24px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
.dropdown.pills-dropdown .dropdown__wrapper--select-input:hover,
.dropdown.pills-dropdown .dropdown__wrapper--select-input:focus,
.dropdown.pills-dropdown .dropdown__wrapper--select-input.active {
  border: 3px solid #0061a0;
  padding: 7px 23px;
}
.dropdown.pills-dropdown .dropdown__wrapper--select-input.active + .dropdown__wrapper--options-wrapper {
  left: 0;
}
.dropdown.pills-dropdown.multiple .dropdown__wrapper--options-container {
  padding-bottom: 0;
}
.dropdown.pills-dropdown.multiple .dropdown__wrapper--options-wrapper .option:last-child {
  margin-bottom: 8px;
}
.dropdown.pills-dropdown .dropdown__wrapper--options-wrapper {
  max-height: 210px;
}
.dropdown.pills-dropdown .dropdown__wrapper--options-wrapper .option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: 'Noto Sans', 'Arial', 'Helvetica', 'sans-serif';
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  padding: 8px 24px;
}
.dropdown.pills-dropdown .dropdown__wrapper--options-wrapper .option[data-selected-text] {
  border-bottom: 1px solid #d9d9d6;
  margin-bottom: 8px;
}
.dropdown.pills-dropdown .dropdown__wrapper--options-wrapper .option:hover {
  background-color: #baddf5;
  color: #333333;
}
.dropdown.pills-dropdown svg {
  height: 16px;
  width: 16px;
  color: #333333;
  fill: #333333;
  pointer-events: none;
  margin-left: 10px;
  margin-top: 0;
}
.dropdown.pills-dropdown .dropdown-actions {
  width: 270px;
  background: #ffffff;
  border-top: none;
  z-index: 1;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding-right: 4px;
}
.dropdown.pills-dropdown .dropdown-actions .dropdown-actions__button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 16px 8px;
}
.dropdown.pills-dropdown .dropdown-actions .dropdown-actions__border {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1px;
  background-color: #d9d9d6;
}
.dropdown.pills-dropdown .dropdown-actions .filter-sort-cancel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
.dropdown.pills-dropdown .dropdown-actions .filter-sort-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 16px;
}
.dropdown.pills-dropdown .dropdown-actions button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #007abc;
  font-family: 'Noto Sans', 'Arial', 'Helvetica', 'sans-serif';
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.dropdown.pills-dropdown .dropdown-actions button:hover {
  text-decoration: underline;
}
.dropdown.underline-dropdown {
  position: relative;
}
.dropdown.underline-dropdown .dropdown__wrapper {
  position: relative;
  width: auto;
  height: 64px;
}
.dropdown.underline-dropdown .underline-dropdown-wrapper {
  position: relative;
}
.dropdown.underline-dropdown .dropdown__container {
  width: 255px;
}
.dropdown.underline-dropdown .dropdown__wrapper--select {
  position: relative;
}
.dropdown.underline-dropdown.active .dropdown__wrapper--select-input {
  color: #333333;
}
.dropdown.underline-dropdown .dropdown__wrapper--select-input {
  color: #6e6e6e;
}
.dropdown.underline-dropdown .dropdown__wrapper--select-input.active {
  color: #333333;
}
.dropdown.underline-dropdown .dropdown__wrapper--select-input,
.dropdown.underline-dropdown .dropdown__wrapper--select-input.active {
  position: relative;
  font-family: 'Noto Sans', 'Arial', 'Helvetica', 'sans-serif';
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  box-sizing: border-box;
  outline: 1px solid transparent;
  border: none;
  box-shadow: 0 2px 0 0 #6e6e6e;
  border-radius: 8px 8px 0 0;
}
.dropdown.underline-dropdown .dropdown__wrapper--select-input .text,
.dropdown.underline-dropdown .dropdown__wrapper--select-input.active .text {
  max-width: 17ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dropdown.underline-dropdown .dropdown__wrapper--select-input:hover,
.dropdown.underline-dropdown .dropdown__wrapper--select-input:focus,
.dropdown.underline-dropdown .dropdown__wrapper--select-input.active {
  box-shadow: 0 3px 0 0 #0061a0;
}
.dropdown.underline-dropdown .dropdown__wrapper--select-input.active + .dropdown__wrapper--options-wrapper {
  left: 0;
}
.dropdown.underline-dropdown .dropdown__wrapper--options-container {
  border: none;
  width: 255px;
  border-radius: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: #f2f2f2;
  z-index: 4;
  margin-top: 0;
}
.dropdown.underline-dropdown .dropdown__wrapper--options-wrapper {
  max-height: 220px;
}
.dropdown.underline-dropdown .dropdown__wrapper--options-wrapper .option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: 'Noto Sans', 'Arial', 'Helvetica', 'sans-serif';
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  padding: 8px 24px;
  min-height: 40px;
}
.dropdown.underline-dropdown .dropdown__wrapper--options-wrapper .option[data-selected-text] {
  border-bottom: 1px solid #d9d9d6;
  margin-bottom: 8px;
}
.dropdown.underline-dropdown .dropdown__wrapper--options-wrapper .option:hover {
  background-color: #baddf5;
  color: #333333;
}
.dropdown.underline-dropdown svg {
  position: absolute;
  right: 24px;
  height: 16px;
  width: 16px;
  color: #333333;
  fill: #333333;
  pointer-events: none;
  margin-left: 10px;
  margin-top: 0;
}
.dropdown.underline-dropdown label {
  height: 18px;
  top: 30px;
  transition: .2s ease top;
  position: relative;
  visibility: hidden;
  font-size: 12px;
  font-weight: normal;
  line-height: 18px;
}
.dropdown.underline-dropdown.active label {
  transition: .2s ease top;
  top: 15px;
  z-index: 1;
  background: transparent;
  visibility: visible;
  color: #6e6e6e;
  padding-left: 24px;
}
.dropdown.filled .dropdown__wrapper--select-input {
  background-color: #0061a0;
  border: 2px solid #0061a0;
  color: #ffffff;
  -o-text-overflow: initial;
  text-overflow: initial;
}
.dropdown.filled .dropdown__wrapper--select-input:hover,
.dropdown.filled .dropdown__wrapper--select-input:focus,
.dropdown.filled .dropdown__wrapper--select-input:active {
  outline-color: #0061a0;
  outline-offset: 4px;
  outline-style: solid;
  outline-width: 3px;
}
.dropdown.filled .dropdown__wrapper--select-input svg {
  fill: #ffffff;
}
.dropdown.filled .indicator {
  height: 24px;
  width: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 50%;
  margin-left: 10px;
  font-family: 'Noto Sans', 'Arial', 'Helvetica', 'sans-serif';
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  color: #0061a0;
}
.dropdown.device-enabled {
  width: auto;
}
.dropdown.device-enabled select {
  min-width: 128px;
  font-size: 16px;
}
.dropdown.device-enabled .dropdown__container {
  display: none;
}
.dropdown.device-enabled svg {
  position: absolute;
  right: 15px;
  top: 13px;
}
.dropdown.device-enabled.pills-dropdown select {
  display: block;
  position: relative;
  top: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  height: 40px;
  border-radius: 24px;
  border: 2px solid #6e6e6e;
  padding: 8px 24px;
  min-width: 128px;
}
.dropdown.device-enabled.pills-dropdown select:focus {
  border: 3px solid #0061a0;
  padding: 7px 23px;
}
.dropdown.device-enabled.searchable-dropdown select {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 270px;
  height: 64px;
  min-width: 130px;
  min-height: 64px;
  border-radius: 8px;
  border: 2px solid #6e6e6e;
  background-color: transparent;
  padding: 8px 24px;
  position: relative;
  z-index: 3;
}
.dropdown.device-enabled.searchable-dropdown select:focus {
  border: 2px solid #0061a0;
}
.dropdown.device-enabled.searchable-dropdown svg {
  right: 24px;
  top: 24px;
}
.dropdown.device-enabled.underline-dropdown {
  width: calc(50% - 32px);
}
@media screen and (max-width: 767px) {
  .dropdown.device-enabled.underline-dropdown {
    width: 100%;
  }
}
.dropdown.device-enabled.underline-dropdown.active select {
  color: #333333;
}
.dropdown.device-enabled.underline-dropdown select {
  color: #6e6e6e;
  display: block;
  position: relative;
  font-family: 'Noto Sans', 'Arial', 'Helvetica', 'sans-serif';
  line-height: 24px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  border: none;
  box-shadow: 0 2px 0 0 #6e6e6e;
  border-radius: 8px 8px 0 0;
  border-width: 0 0 2px 0;
  padding: 8px 24px;
}
.dropdown.device-enabled.underline-dropdown select:focus {
  box-shadow: 0 3px 0 0 #0061a0;
}
.dropdown.device-enabled.underline-dropdown svg {
  position: absolute;
  right: 24px;
  top: 24px;
}
.dropdown.device-enabled.filled select {
  background-color: #0061a0;
  border: 2px solid #0061a0;
  color: #ffffff;
  -o-text-overflow: initial;
  text-overflow: initial;
}
.dropdown.device-enabled.filled select:focus ~ svg {
  fill: #ffffff;
}
.dropdown.device-enabled.filled select option {
  background-color: #ffffff;
  color: #333333;
}
.dropdown.device-enabled.filled svg {
  fill: #ffffff;
}
.keyboard-active .dropdown .dropdown__wrapper--select-input:focus,
.keyboard-active .dropdown select:focus {
  outline-color: initial;
  outline-offset: initial;
  outline-style: initial;
  outline-width: initial;
  text-decoration: initial;
}
.keyboard-active .dropdown.dropdown.filled .dropdown__wrapper--select-input:focus {
  outline-color: #0061a0;
  outline-offset: 4px;
  outline-style: solid;
  outline-width: 3px;
}
.keyboard-active .dropdown.dropdown.filled.device-enabled select:focus {
  outline-color: #0061a0;
  outline-offset: 4px;
  outline-style: solid;
  outline-width: 3px;
}
.keyboard-active .dropdown.multiple .dropdown-actions button:focus {
  outline-offset: 4px;
}
body[dir="rtl"] .dropdown .dropdown__wrapper--select-button {
  left: 0;
  right: initial;
}
body[dir="rtl"] .dropdown .dropdown__wrapper--select-button svg {
  left: 24px;
  right: initial;
}
body[dir="rtl"] .dropdown label {
  right: 24px;
  left: initial;
}
body[dir="rtl"] .dropdown label.active {
  right: 25px;
  left: initial;
}
body[dir="rtl"] .dropdown .dropdown__wrapper--select-input,
body[dir="rtl"] .dropdown select,
body[dir="rtl"] .dropdown option,
body[dir="rtl"] .dropdown .option {
  text-align: right;
}
body[dir="rtl"] .dropdown.pills-dropdown svg {
  margin-left: initial;
  margin-right: 10px;
  right: initial;
  left: 15px;
}
body[dir="rtl"] .dropdown.pills-dropdown .dropdown-actions .filter-sort-cancel {
  margin-right: auto;
  margin-left: initial;
}
body[dir="rtl"] .dropdown.pills-dropdown .filter-sort-submit {
  margin-right: 16px;
  margin-left: initial;
}
body[dir="rtl"] .dropdown.checkbox-dropdown .option:before {
  margin-left: 8px;
  margin-right: initial;
}
body[dir="rtl"] .dropdown.radio-dropdown .option:before {
  margin-left: 8px;
  margin-right: initial;
}
body[dir="rtl"] .dropdown.underline-dropdown svg {
  right: initial;
  left: 24px;
  margin-right: 10px;
  margin-left: initial;
}
body[dir="rtl"] .dropdown.filled .indicator {
  margin-right: 10px;
  margin-left: initial;
}
