.dropdown {
  position: relative;
  display: inline-block;
  color: #2d2d2d;
}
.dropdown svg {
  fill: #003652;
}
.dropdown.dark-bg svg {
  fill: #ffffff;
}
.dropdown * {
  font-family: 'Inter', 'Roboto', 'Noto Sans', 'Open Sans', 'Arial', 'sans-serif';
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
.dropdown select {
  display: none;
}
.dropdown__container,
.dropdown__wrapper {
  position: relative;
}
.dropdown__wrapper--select-input {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  width: 270px;
  height: 64px;
  min-width: 130px;
  min-height: 64px;
  padding: 8px 24px;
  border: 2px solid #7c766e;
  border-radius: 8px;
  background-color: transparent;
  position: relative;
  z-index: 3;
}
.dropdown__wrapper--select-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 64px;
  cursor: pointer;
  appearance: none;
  background: none;
  border: none;
  z-index: 4;
}
.dropdown__wrapper--select-button svg {
  position: absolute;
  top: 24px;
  right: 24px;
}
.dropdown__wrapper--options-container {
  position: absolute;
  width: 270px;
  min-width: 130px;
  margin-top: 8px;
  padding: 8px 0;
  overflow: hidden;
  background-color: #ffffff;
  border: 2px solid #003652;
  border-radius: 8px;
  z-index: 4;
}
.dropdown__wrapper--options-wrapper {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}
.dropdown__wrapper--options-wrapper::-webkit-scrollbar {
  width: 6px;
}
.dropdown__wrapper--options-wrapper::-webkit-scrollbar-thumb {
  background: #7c766e;
  border-radius: 3px;
}
.dropdown .option {
  padding: 8px 24px;
  cursor: pointer;
}
.dropdown .option:hover {
  background-color: #cbf1ff;
}
.dropdown .option.noresults {
  display: none;
  cursor: default;
}
@media screen and (max-width: 767px) {
  .dropdown {
    width: 100%;
  }
  .dropdown__wrapper--select-input,
  .dropdown__wrapper--options-container {
    width: 100%;
  }
}
.dropdown.radio-dropdown .option:before {
  content: url('../../../../content/dam/globalMarketingPlatformAssets/images/checkbox-radio/v2/Radiocircle-default.svg');
  position: relative;
  height: 24px;
  width: 24px;
  border: none;
}
.dropdown.radio-dropdown .option:hover:before {
  content: url('../../../../content/dam/globalMarketingPlatformAssets/images/checkbox-radio/v2/Radiocircle-hover.svg');
}
.dropdown.radio-dropdown .option[aria-selected="true"]:before {
  content: url('../../../../content/dam/globalMarketingPlatformAssets/images/checkbox-radio/v2/Radiocircle-selected.svg');
}
.dropdown.radio-dropdown .option[aria-selected="true"]:hover:before {
  content: url('../../../../content/dam/globalMarketingPlatformAssets/images/checkbox-radio/v2/Radiocircle-selectedhover.svg');
}
.dropdown.checkbox-dropdown .option:before {
  content: url('../../../../content/dam/globalMarketingPlatformAssets/images/checkbox-radio/v2/Checkbox-default.svg');
  position: relative;
  height: 24px;
  width: 24px;
  border: none;
}
.dropdown.checkbox-dropdown .option:hover:before {
  content: url('../../../../content/dam/globalMarketingPlatformAssets/images/checkbox-radio/v2/Checkbox-hover.svg');
}
.dropdown.checkbox-dropdown .option[aria-selected="true"]:before {
  content: url('../../../../content/dam/globalMarketingPlatformAssets/images/checkbox-radio/v2/Checkbox-selected.svg');
}
.dropdown.checkbox-dropdown .option[aria-selected="true"]:hover:before {
  content: url('../../../../content/dam/globalMarketingPlatformAssets/images/checkbox-radio/v2/Checkbox-selectedhover.svg');
}
.dropdown:not(.checkbox-dropdown):not(.radio-dropdown) .option.active {
  background-color: #003652;
  color: #ffffff;
}
.dropdown:not(.checkbox-dropdown):not(.radio-dropdown) .option:not(.noresults):hover {
  background-color: #a8e7ff;
  color: #333333;
}
.dropdown:not(.checkbox-dropdown):not(.radio-dropdown) .option:not(.noresults) mark {
  color: #003652;
  background-color: #ffffff;
}
.dropdown:not(.checkbox-dropdown):not(.radio-dropdown) .option:not(.noresults) mark:hover {
  background-color: #a8e7ff;
  color: #333333;
}
.dropdown:not(.checkbox-dropdown):not(.radio-dropdown) .option.active:not(.noresults) mark {
  color: #ffffff;
  background-color: #003652;
}
.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 #003652;
  padding: 8px 23px;
}
.dropdown.searchable-dropdown .dropdown__container .dropdown__wrapper--select-input:focus,
.dropdown.searchable-dropdown .dropdown__container .dropdown__wrapper--select-input:hover,
.dropdown.searchable-dropdown .dropdown__container .dropdown__wrapper--select-input:active {
  border: 3px solid #003652;
  padding: 8px 23px;
}
.dropdown.searchable-dropdown .dropdown__container .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 #003652;
  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: #003652;
}
.dropdown.searchable-dropdown label {
  position: absolute;
  left: 24px;
  top: 20px;
  color: #7c766e;
  cursor: pointer;
}
.dropdown.searchable-dropdown label.active {
  top: 8px;
  left: 25px;
  transition: all 0.25s ease-in-out;
}
.dropdown.searchable-dropdown .dropdown__wrapper--options-container {
  margin-top: -7px;
  padding-top: 15px;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.dropdown.pills-dropdown .dropdown__wrapper {
  width: auto;
}
.dropdown.pills-dropdown .dropdown__wrapper--select-input {
  width: auto;
  height: 24px;
  min-width: fit-content;
  min-height: fit-content;
  padding: 4px 24px;
  border: 1px solid #67625b;
  border-radius: 24px;
  align-items: center;
  gap: 8px;
}
.dropdown.pills-dropdown .dropdown__wrapper--select-input:hover,
.dropdown.pills-dropdown .dropdown__wrapper--select-input:focus {
  border: 2px solid #003652;
  padding: 3px 23px;
}
.dropdown.pills-dropdown .dropdown__wrapper--select-input.active + .dropdown__wrapper--options-wrapper {
  left: 0;
}
.dropdown.pills-dropdown.filled .dropdown__wrapper--select-input:hover,
.dropdown.pills-dropdown.filled .dropdown__wrapper--select-input:focus {
  border: 1px solid #003652;
  padding: 4px 24px;
}
.dropdown.pills-dropdown.filled.dark-bg .dropdown__wrapper--select-input:hover,
.dropdown.pills-dropdown.filled.dark-bg .dropdown__wrapper--select-input:focus {
  border-color: #61c2e5;
}
.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: flex;
  align-items: center;
  padding: 8px 24px;
  gap: 8px;
}
.dropdown.pills-dropdown .dropdown__wrapper--options-wrapper .option[data-selected-text] {
  border-bottom: 1px solid #eae7e1;
  margin-bottom: 8px;
}
.dropdown.pills-dropdown .dropdown__wrapper--options-wrapper .option:hover {
  background-color: #a8e7ff;
  color: #333333;
}
.dropdown.pills-dropdown .dropdown-actions {
  width: 270px;
  padding-right: 4px;
  background: #ffffff;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 1;
}
.dropdown.pills-dropdown .dropdown-actions * {
  /* UI Elements/Label-SemiBold */
  font-family: 'Inter', 'Roboto', 'Noto Sans', 'Open Sans', 'Arial', 'sans-serif';
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
.dropdown.pills-dropdown .dropdown-actions__button-container {
  display: flex;
  padding: 16px 16px 8px;
}
.dropdown.pills-dropdown .dropdown-actions__button-container button {
  color: #003652;
}
.dropdown.pills-dropdown .dropdown-actions__border {
  width: 100%;
  height: 1px;
  background-color: #eae7e1;
}
.dropdown.pills-dropdown .dropdown-actions .filter-sort-cancel {
  margin-left: auto;
}
.dropdown.pills-dropdown .dropdown-actions .filter-sort-submit {
  margin-left: 16px;
}
.dropdown.underline-dropdown .dropdown__wrapper {
  width: auto;
  height: 64px;
}
.dropdown.underline-dropdown .dropdown__container {
  width: 255px;
}
.dropdown.underline-dropdown.active .dropdown__wrapper--select-input {
  color: #333333;
}
.dropdown.underline-dropdown .dropdown__wrapper--select-input {
  width: auto;
  height: 64px;
  padding: 8px 24px;
  color: #7c766e;
  border: none;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 2px 0 0 #7c766e;
  align-items: center;
}
.dropdown.underline-dropdown .dropdown__wrapper--select-input.active {
  color: #333333;
}
.dropdown.underline-dropdown .dropdown__wrapper--select-input.active + .dropdown__wrapper--options-wrapper {
  left: 0;
}
.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 #003652;
}
.dropdown.underline-dropdown .dropdown__wrapper--select-input .text {
  max-width: 17ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dropdown.underline-dropdown .dropdown__wrapper--options-container {
  width: 255px;
  margin-top: 0;
  background-color: #eae7e1;
  border: none;
  border-radius: 0 0 8px 8px;
}
.dropdown.underline-dropdown .dropdown__wrapper--options-wrapper {
  max-height: 220px;
}
.dropdown.underline-dropdown .dropdown__wrapper--options-wrapper .option {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 24px;
}
.dropdown.underline-dropdown .dropdown__wrapper--options-wrapper .option[data-selected-text] {
  border-bottom: 1px solid #eae7e1;
  margin-bottom: 8px;
}
.dropdown.underline-dropdown .dropdown__wrapper--options-wrapper .option:hover {
  background-color: #a8e7ff;
  color: #333333;
}
.dropdown.underline-dropdown svg {
  position: absolute;
  right: 24px;
  margin-top: 0;
}
.dropdown.underline-dropdown label {
  position: relative;
  top: 30px;
  height: 18px;
  visibility: hidden;
  transition: .2s ease top;
}
.dropdown.underline-dropdown.active label {
  top: 15px;
  padding-left: 24px;
  color: #7c766e;
  background: transparent;
  visibility: visible;
  z-index: 1;
  transition: .2s ease top;
}
.dropdown.filled .dropdown__wrapper--select-input {
  background-color: #003652;
  border: 1px solid #003652;
  color: #ffffff;
}
.dropdown.filled .dropdown__wrapper--select-input .indicator {
  color: #003652;
}
.dropdown.filled .dropdown__wrapper--select-input:hover,
.dropdown.filled .dropdown__wrapper--select-input:focus,
.dropdown.filled .dropdown__wrapper--select-input:active {
  outline: #003652 solid 3px;
  outline-offset: 4px;
}
.dropdown.filled .dropdown__wrapper--select-input svg {
  fill: #ffffff;
}
.dropdown.filled .indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  background-color: #ffffff;
  border-radius: 50%;
}
.dropdown.device-enabled {
  width: auto;
}
.dropdown.device-enabled select {
  min-width: 128px;
}
.dropdown.device-enabled .dropdown__container {
  display: none;
}
.dropdown.device-enabled svg {
  position: absolute;
  right: 15px;
  top: 13px;
}
.dropdown.device-enabled.pills-dropdown select {
  display: flex;
  align-items: center;
  width: auto;
  height: 40px;
  min-width: fit-content;
  padding: 4px 48px 4px 24px;
  border: 2px solid #7c766e;
  border-radius: 24px;
}
.dropdown.device-enabled.pills-dropdown select:focus {
  border: 3px solid #003652;
  padding: 3px 47px 3px 23px;
}
.dropdown.device-enabled.pills-dropdown.dark-bg select {
  border-color: #ffffff;
}
.dropdown.device-enabled.pills-dropdown.dark-bg select:focus {
  border-color: #61c2e5;
}
.dropdown.device-enabled.searchable-dropdown select {
  display: flex;
  width: 270px;
  height: 64px;
  min-width: 130px;
  min-height: 64px;
  padding: 8px 24px;
  border: 2px solid #7c766e;
  border-radius: 8px;
  background-color: transparent;
  cursor: pointer;
  z-index: 3;
}
.dropdown.device-enabled.searchable-dropdown select:focus {
  border: 2px solid #003652;
}
.dropdown.device-enabled.searchable-dropdown.dark-bg select {
  border-color: #ffffff;
}
.dropdown.device-enabled.searchable-dropdown.dark-bg select:focus {
  border-color: #61c2e5;
}
.dropdown.device-enabled.searchable-dropdown svg {
  right: 24px;
  top: 24px;
}
.dropdown.device-enabled.underline-dropdown {
  width: calc(50% - 32px);
}
.dropdown.device-enabled.underline-dropdown.active select {
  color: #333333;
}
.dropdown.device-enabled.underline-dropdown select {
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  padding: 8px 24px;
  color: #7c766e;
  border: none;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 2px 0 0 #7c766e;
  line-height: 24px;
}
.dropdown.device-enabled.underline-dropdown select:focus {
  box-shadow: 0 3px 0 0 #003652;
}
.dropdown.device-enabled.underline-dropdown svg {
  position: absolute;
  right: 24px;
  top: 24px;
}
@media screen and (max-width: 767px) {
  .dropdown.device-enabled.underline-dropdown {
    width: 100%;
  }
}
.dropdown.device-enabled.filled select {
  background-color: #003652;
  border: 2px solid #003652;
  color: #ffffff;
}
.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;
}
.dropdown.device-enabled.filled.dark-bg select {
  border-color: #ffffff;
}
.dropdown.device-enabled.filled.dark-bg select:focus {
  border-color: #61c2e5;
}
.dropdown.device-enabled.filled.dark-bg svg {
  fill: #ffffff;
}
.dropdown.dark-bg .dropdown__wrapper--select-input {
  border-color: #ffffff;
}
.dropdown.dark-bg .dropdown__wrapper--select-input:hover,
.dropdown.dark-bg .dropdown__wrapper--select-input:focus,
.dropdown.dark-bg .dropdown__wrapper--select-input:active {
  border: 2px solid #61c2e5;
}
.dropdown.dark-bg .dropdown__wrapper--select-input svg {
  fill: #ffffff;
}
.dropdown.dark-bg:not(.filled) {
  color: #333333;
}
.dropdown.dark-bg:not(.filled) .dropdown__wrapper--options-wrapper {
  color: #333333;
}
.dropdown.dark-bg:not(.filled) .dropdown__wrapper--select-input {
  color: #333333;
  background-color: #ffffff;
  border-color: #c4beb5;
}
.dropdown.dark-bg:not(.filled) .dropdown__wrapper--select-input:hover,
.dropdown.dark-bg:not(.filled) .dropdown__wrapper--select-input:focus,
.dropdown.dark-bg:not(.filled) .dropdown__wrapper--select-input:active {
  border: 2px solid #61c2e5;
}
.dropdown.dark-bg:not(.filled) svg {
  fill: #67625b;
}
.dropdown.dark-bg.filled .option {
  color: #2d2d2d;
}
.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.filled .dropdown__wrapper--select-input:focus {
  outline: #003652 solid 3px;
  outline-offset: 4px;
}
.keyboard-active .dropdown.filled.device-enabled select:focus {
  outline: #003652 solid 3px;
  outline-offset: 4px;
}
.keyboard-active .dropdown.multiple .dropdown-actions button:focus {
  outline-offset: 4px;
}
body[dir="rtl"] .dropdown .dropdown__wrapper--select-button {
  right: initial;
  left: 0;
}
body[dir="rtl"] .dropdown .dropdown__wrapper--select-button svg {
  right: initial;
  left: 24px;
}
body[dir="rtl"] .dropdown label {
  left: initial;
  right: 24px;
}
body[dir="rtl"] .dropdown label.active {
  left: initial;
  right: 25px;
}
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 .dropdown-actions .filter-sort-cancel {
  margin-left: initial;
  margin-right: auto;
}
body[dir="rtl"] .dropdown.pills-dropdown .filter-sort-submit {
  margin-left: initial;
  margin-right: 16px;
}
body[dir="rtl"] .dropdown.underline-dropdown svg {
  right: initial;
  left: 24px;
}
body[dir="rtl"] .dropdown.filled .indicator {
  margin-left: initial;
  margin-right: 10px;
}
body[dir="rtl"] .dropdown.device-enabled svg {
  left: 15px;
  right: initial;
}
body[dir="rtl"] .dropdown.device-enabled.pills-dropdown select {
  padding: 4px 24px 4px 48px;
}
body[dir="rtl"] .dropdown.device-enabled.pills-dropdown select:focus {
  border: 3px solid #003652;
  padding: 3px 23px 3px 47px;
}
body[dir="rtl"] .dropdown.device-enabled.searchable-dropdown select {
  display: flex;
  width: 270px;
  height: 64px;
  min-width: 130px;
  min-height: 64px;
  padding: 8px 24px;
  border: 2px solid #7c766e;
  border-radius: 8px;
  background-color: transparent;
  cursor: pointer;
  z-index: 3;
}
body[dir="rtl"] .dropdown.device-enabled.searchable-dropdown select:focus {
  border: 2px solid #003652;
}
body[dir="rtl"] .dropdown.device-enabled.searchable-dropdown svg {
  right: 24px;
  top: 24px;
}
body[dir="rtl"] .dropdown.device-enabled.underline-dropdown {
  width: calc(50% - 32px);
}
body[dir="rtl"] .dropdown.device-enabled.underline-dropdown.active select {
  color: #333333;
}
body[dir="rtl"] .dropdown.device-enabled.underline-dropdown select {
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  padding: 8px 24px;
  color: #7c766e;
  border: none;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 2px 0 0 #7c766e;
  line-height: 24px;
}
body[dir="rtl"] .dropdown.device-enabled.underline-dropdown select:focus {
  box-shadow: 0 3px 0 0 #003652;
}
body[dir="rtl"] .dropdown.device-enabled.underline-dropdown svg {
  position: absolute;
  right: 24px;
  top: 24px;
}
@media screen and (max-width: 767px) {
  body[dir="rtl"] .dropdown.device-enabled.underline-dropdown {
    width: 100%;
  }
}
body[dir="rtl"] .dropdown.device-enabled.filled select {
  background-color: #003652;
  border: 2px solid #003652;
  color: #ffffff;
}
body[dir="rtl"] .dropdown.device-enabled.filled select:focus ~ svg {
  fill: #ffffff;
}
body[dir="rtl"] .dropdown.device-enabled.filled select option {
  background-color: #ffffff;
  color: #333333;
}
body[dir="rtl"] .dropdown.device-enabled.filled svg {
  fill: #ffffff;
}
.keyboard-active .dropdown .option:focus {
  outline-offset: -2px;
}
