.remodal-wrapper.currencyLocaleSelectorModalParent {
  overflow: hidden;
}

.remodal.currencyLocaleSelectorModal {
  display: none;
}

.remodal-wrapper .remodal.currencyLocaleSelectorModal {
  width: 100%;
  padding: 16px 36px 24px;
  border-radius: 8px;
  min-height: 75%;
  display: flex;
  flex-direction: column;
  margin: auto;
  margin-top: 5%;
}

.currencyLocaleSelectorModal .close {
  right: 16px;
  top: 16px;
  left: auto;
}

.currencyLocaleSelectorModal .remodal-close {
  right: 16px;
  top: 16px;
  left: auto;
}

.currencyLocaleSelectorModal .remodal-close:before {
  font-size: 36px;
  color: #6B6B6B;
}

.currencyLocaleSelectorModal .tabList {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
}

.currencyLocaleSelectorModal .tabList button {
  outline: none;
}

.currencyLocaleSelectorModal .tabTrigger {
  font-family: Nunito, -apple-system, BlinkMacSystemFont, avenir next, arial, sans-serif;
  padding: 12px 0;
  font-size: 16px;
  margin-right: 24px;
  border: none;
  background: transparent;
  color: #5e6f78;
}

.currencyLocaleSelectorModal .tabTrigger[data-state="active"] {
  font-weight: 700;
  color: #172e6a;
  border-bottom: 2px solid #172e6a;
}

.currencyLocaleSelectorModal .tabPanel {
  display: none;
  flex-direction: column;
  padding-top: 24px;
  flex: 1 0 auto;
}

.currencyLocaleSelectorModal .tabPanel[data-state="active"] {
  display: flex;
}

.currencyLocaleSelectorModal .tabPanel .searchInput {
  width: 100%;
  display: block;
  height: 50px;
  background-color: #f3f3f3;
  border: none;
  flex-shrink: 0;
  padding: 0 16px;
  border-radius: 16px;
  font-family: Nunito, -apple-system, BlinkMacSystemFont, avenir next, arial, sans-serif;
  font-size: 16;  
}

.currencyLocaleSelectorModal .listContainer {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 20px;
  flex: 1 1;
  flex-basis: 0;
  overflow-y: auto;  
}

.currencyLocaleSelectorModal .listContainer button {
  cursor: pointer;
  background-color: transparent;
  display: flex;
  width: 100%;
  font-family: Nunito, -apple-system, BlinkMacSystemFont, avenir next, arial, sans-serif;
  padding: 12px;
  border-radius: 16px;
  font-size: 16;
  color: #8d8d8d;
  margin-bottom: 2px;
  align-items: center;
  border: 2px solid white;  
}

.currencyLocaleSelectorModal .listContainer button[data-selected="true"] {
  border: 2px solid #172e6a;
  color: #172e6a;  
}

.currencyLocaleSelectorModal button span {
  font-family: Nunito, -apple-system, BlinkMacSystemFont, avenir next, arial, sans-serif;
  display: flex;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 16px;  
}

.currencyLocaleSelectorModal button .icon {
  width: 24px;
  line-height: 24px;
  font-size: 24px;
  margin-right: 8px;  
}

.currencyLocaleSelectorModal button .currencyCode {
  color: #585858;
  width: 30%;
  font-weight: 700;
  text-align: left;  
}

.currencyLocaleSelectorModal .listContainer button[data-selected="true"] .currencyCode,
.currencyLocaleSelectorModal .listContainer button[data-selected="true"] .localeName,
.currencyLocaleSelectorModal .listContainer button[data-selected="true"] .salaryFormatName {
  color: #172e6a;   
}

.currencyLocaleSelectorModal button .circleCheck {
  display: none;
}

.currencyLocaleSelectorModal button[data-selected="true"] .circleCheck {
  display: flex;
  color: #172e6a;
  width: 16px;
  height: 16px;
  margin-left: auto;
  flex-shrink: 0;
}

.currencyLocaleSelectorModal button .localeName {
  width: 45%;
  color: #585858;
  font-weight: 700;
  text-align: left;
}

.currencyLocaleSelectorModal button .helperText {
  display: none;
  font-weight: 400;
  font-size: 14px;
  margin-top: 2px;
}

.currencyLocaleSelectorModal button .localeAbbr {
  margin-left: 32px;
}

.currencyButton {
  display: flex;
  border: none;
  font-weight: 700;
  font-family: Nunito, -apple-system, BlinkMacSystemFont, avenir next, arial, sans-serif;
  margin: 0 8px 0 12px;
  padding: 7.5px 12px;
  border-radius: 320px;
  align-self: center;
  cursor: pointer;  
  align-items: center;
  white-space: nowrap;
  background-color: #f0f0f1;
  color: #5e6f78;
}

.currencyButton span {
  font-size: 12px;
}

.currencyButton-xs .helperText {
  text-decoration: underline;
  margin-left: auto;
  font-size: 10px;
  color: #727272;
}

.currencyButton span:not(:first-child), .currencyButton-xs span {
  margin-left: 5px;
}

.currencyButton .fa-angle-down {
  font-size: 14px;
  margin-left: 5px;
}

.currencyButton-xs {
  color: #071230;
  position: relative;
  font-weight: 700;
  font-family: Nunito, -apple-system, BlinkMacSystemFont, avenir next, arial, sans-serif;
  background-color: transparent;
  width: 100%;
  white-space: nowrap;
  align-items: center;
  padding: 6px 0 0;
  border: none;
  display: none;
}

@media (max-width: 992px) {
  .remodal-wrapper.currencyLocaleSelectorModalParent {
    padding: 0;
  }

  .remodal-wrapper .remodal.currencyLocaleSelectorModal {
    height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 16px 24px 24px;
  }

  .currencyLocaleSelectorModal button .localeSample, .currencyLocaleSelectorModal button .localeAbbr {
    display: none;
  }

  .currencyLocaleSelectorModal button .helperText {
    display: flex;
  }

  .currencyLocaleSelectorModal button .localeName {
    width: auto;
    flex-grow: 1;
    flex-direction: column;
  }
  .currencyButton {
    display: none;
  }

  .currencyButton-xs {
    display: flex;
  }
}

