.lpc-currency__grid {
  position: relative;
  display: flex;
}
.lpc-currency__converter, .lpc-currency__rates {
  background: #f3f6fa;
  border-radius: 24px;
  padding: 24px;
  flex: 1 1 0;
  min-width: 0;
}
.lpc-currency__converter {
  flex: 4 1 0;
  min-width: 0;
}
.lpc-currency__rates {
  flex: 6 1 0;
  min-width: 0;
  margin-left: 24px;
}
.lpc-currency__header, .lpc-currency__rates-title {
  margin: 0 0 20px;
}
.lpc-currency__label {
  margin: 0 0 4px;
  color: #2f2f2f;
}
.lpc-currency__field-range {
  position: relative;
  margin-bottom: 14px;
}
.lpc-currency__range-value {
  width: 100%;
  height: 50px;
  border: 1px solid #c4c9d1;
  border-radius: 9px;
  background: transparent;
  padding: 0 12px;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.lpc-currency__range-price {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  width: calc(100% - 24px);
  height: 3px;
  margin: 0;
  padding: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
}
.lpc-currency__range-price::-webkit-slider-runnable-track {
  height: 3px;
  background: linear-gradient(to right, #4b2bb0 0%, #4b2bb0 var(--range-progress, 0%), #c4c9d1 var(--range-progress, 0%), #c4c9d1 100%);
  border-radius: 3px;
}
.lpc-currency__range-price::-webkit-slider-thumb {
  width: 14px;
  height: 14px;
  margin-top: -5.5px;
  border: 0;
  border-radius: 50%;
  background: #3b148a;
  appearance: none;
}
.lpc-currency__range-price::-moz-range-track {
  height: 3px;
  background: #c4c9d1;
  border-radius: 3px;
}
.lpc-currency__range-price::-moz-range-progress {
  height: 3px;
  background: #4b2bb0;
  border-radius: 3px;
}
.lpc-currency__range-price::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: #3b148a;
}
.lpc-currency__input {
  width: 100%;
  height: 50px;
  border: 1px solid #c4c9d1;
  border-radius: 9px;
  background: transparent;
  padding: 0 12px;
  font-size: 14px;
  color: #252525;
  box-sizing: border-box;
}
.lpc-currency__range {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -2px;
  height: 3px;
  background: #4b2bb0;
}
.lpc-currency__range span {
  position: absolute;
  left: 22%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #3b148a;
  transform: translateY(-50%);
}
.lpc-currency__selects {
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}
.lpc-currency__select {
  min-height: 36px;
  border: 1px solid #c4c9d1;
  border-radius: 8px;
  background: transparent;
  padding: 14px 32px 14px 12px;
  position: relative;
  cursor: pointer;
}
.lpc-currency__select::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  opacity: 0.6;
}
.lpc-currency__select.is-open .lpc-currency__dropdown {
  display: block;
}
.lpc-currency__select-current {
  display: flex;
  align-items: center;
}
.lpc-currency__select-current > img {
  margin-right: 5px;
}
.lpc-currency__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 10;
}
.lpc-currency__option {
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.lpc-currency__option > img {
  margin-right: 5px;
}
.lpc-currency__option:hover {
  background: #f3f6fa;
}
.lpc-currency__result-button {
  width: 100%;
  margin-top: 10px;
}
.lpc-currency__swap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #252525;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease;
}
.lpc-currency__swap:hover {
  transform: rotate(180deg);
}
.lpc-currency__button .lpc-button {
  width: 100%;
  min-height: 43px;
  border-radius: 8px;
  background: linear-gradient(90deg, #4931b3 0%, #320075 100%);
  color: #fff;
}
.lpc-currency__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lpc-currency__list.open .lpc-currency__item {
  display: grid;
}
.lpc-currency__item {
  display: grid;
  grid-template-columns: 85px repeat(3, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 6px;
}
.lpc-currency__item:nth-child(odd) {
  background: #fff;
}
.lpc-currency__item:nth-child(n+4) {
  display: none;
}
.lpc-currency__item.is-hidden {
  display: none;
}
.lpc-currency__code, .lpc-currency__select-current {
  font-size: 13px;
  line-height: 1.2;
  color: #252525;
  white-space: nowrap;
}
.lpc-currency__cell {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  line-height: 1.2;
  color: #252525;
  white-space: nowrap;
}
.lpc-currency__buy-label {
  color: #2f2f2f;
}
.lpc-currency__buy-value {
  font-size: 14px;
  font-weight: 700;
  color: #252525;
  flex: 0 1 83px;
}
.lpc-currency__buy-change {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lpc-currency__buy-change:before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
.lpc-currency__buy-change.up {
  color: #1ecf69;
}
.lpc-currency__buy-change.up:before {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.06 1.30566C10.0858 1.30752 10.1116 1.30877 10.1371 1.31348C10.1572 1.31718 10.1763 1.32373 10.1957 1.3291C10.2186 1.33542 10.2418 1.3409 10.2641 1.34961C10.2903 1.35988 10.3147 1.37349 10.3393 1.38672C10.3539 1.39456 10.3691 1.4012 10.3832 1.41016C10.4101 1.42716 10.4342 1.44738 10.4584 1.46777C10.4678 1.47566 10.4787 1.48178 10.4877 1.49023C10.4898 1.49221 10.4915 1.49507 10.4936 1.49707C10.5143 1.51696 10.5321 1.53924 10.5502 1.56152C10.5616 1.57543 10.5743 1.58798 10.5844 1.60254C10.6269 1.66367 10.6568 1.7325 10.6782 1.80566C10.6825 1.82045 10.6885 1.83462 10.6918 1.84961C10.6965 1.87071 10.6979 1.8923 10.7006 1.91406C10.7038 1.9398 10.7081 1.96529 10.7084 1.99121C10.7085 1.99447 10.7094 1.99771 10.7094 2.00098V7.00098C10.7094 7.38758 10.3958 7.70117 10.0092 7.70117C9.6228 7.70096 9.30902 7.38744 9.30902 7.00098V3.77051L3.01996 10.4795C2.75557 10.7613 2.31268 10.7759 2.0307 10.5117C1.74899 10.2474 1.73448 9.80445 1.99847 9.52246L8.393 2.70117H5.25921C4.8728 2.70096 4.55902 2.38744 4.55902 2.00098C4.55902 1.61451 4.8728 1.301 5.25921 1.30078H10.0092C10.0262 1.30078 10.0433 1.30447 10.06 1.30566Z' fill='%234CCE7B'/%3E%3C/svg%3E");
}
.lpc-currency__buy-change.down {
  color: #ff5870;
}
.lpc-currency__buy-change.down:before {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0597 11.1943C10.0862 11.1925 10.1126 11.1914 10.1388 11.1865C10.1572 11.1831 10.1747 11.1767 10.1925 11.1719C10.217 11.1652 10.2419 11.1597 10.2658 11.1504C10.2917 11.1402 10.3157 11.1264 10.34 11.1133C10.3546 11.1054 10.3698 11.0988 10.3839 11.0898C10.4107 11.0728 10.4349 11.0526 10.4591 11.0322C10.4685 11.0244 10.4794 11.0182 10.4884 11.0098C10.4903 11.008 10.4915 11.0057 10.4933 11.0039C10.5152 10.9829 10.5338 10.9592 10.5529 10.9355C10.5633 10.9227 10.5748 10.9109 10.5841 10.8975C10.6028 10.8706 10.6181 10.8419 10.6329 10.8125C10.6383 10.8019 10.6448 10.792 10.6495 10.7812C10.6594 10.759 10.6655 10.7353 10.673 10.7119C10.6801 10.6897 10.6887 10.6682 10.6935 10.6455C10.6973 10.6276 10.6979 10.6092 10.7003 10.5908C10.7037 10.5651 10.7076 10.5396 10.7081 10.5137C10.7082 10.5088 10.7101 10.5039 10.7101 10.499V5.49902C10.7101 5.11245 10.3965 4.79887 10.0099 4.79883C9.6233 4.79883 9.30971 5.11242 9.30971 5.49902V8.72949L3.02064 2.02051C2.75629 1.73854 2.31343 1.72406 2.03139 1.98828C1.7494 2.25264 1.73491 2.69549 1.99916 2.97754L8.39369 9.79883H5.2599C4.8733 9.79883 4.55971 10.1124 4.55971 10.499C4.55971 10.8856 4.8733 11.1992 5.2599 11.1992H10.0099C10.0267 11.1992 10.0432 11.1955 10.0597 11.1943Z' fill='%23F88282'/%3E%3C/svg%3E");
}
.lpc-currency__headline {
  display: flex;
  align-items: center;
}
.lpc-currency__imogen {
  font-size: 0;
  overflow: hidden;
  max-width: 35px;
  max-height: 35px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  flex: 0 0 autol;
}
.lpc-currency__rates-button {
  margin-top: 22px;
}
.lpc-currency__rates-button.hidden {
  display: none;
}
[data-media-source="media-lg"] .lpc-currency__converter {
  flex: 3 1 0;
}
[data-media-source="media-lg"] .lpc-currency__rates {
  flex: 7 1 0;
}
[data-media-source="media-lg"] .lpc-currency__item {
  gap: 10px;
}
[data-media-source="media-md"] .lpc-currency__grid {
  flex-direction: column;
}
[data-media-source="media-md"] .lpc-currency__converter {
  flex: 1 1 100%;
}
[data-media-source="media-md"] .lpc-currency__rates {
  flex: 1 1 100%;
  margin-left: 0;
  margin-top: 20px;
}
[data-media-source="media-md"] .lpc-currency__item {
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: auto;
  gap: 10px;
}
[data-media-source="media-md"] .lpc-currency__headline {
  grid-column: 1 / -1;
}
[data-media-source="media-md"] .lpc-currency__cell {
  flex-direction: column;
  align-items: flex-start;
}
[data-media-source="media-md"] .lpc-currency__buy-value {
  flex: none;
}
[data-media-source="media-sm"] .lpc-currency__grid {
  flex-direction: column;
}
[data-media-source="media-sm"] .lpc-currency__converter {
  flex: 1 1 100%;
}
[data-media-source="media-sm"] .lpc-currency__rates {
  flex: 1 1 100%;
  margin-left: 0;
  margin-top: 20px;
}
[data-media-source="media-sm"] .lpc-currency__rates-button {
  width: 100%;
}
[data-media-source="media-sm"] .lpc-currency__item {
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: auto;
  gap: 10px;
}
[data-media-source="media-sm"] .lpc-currency__headline {
  grid-column: 1 / -1;
}
[data-media-source="media-sm"] .lpc-currency__cell {
  flex-direction: column;
  align-items: flex-start;
}
[data-media-source="media-sm"] .lpc-currency__buy-value {
  flex: none;
}
[data-media-source="media-xs"] .lpc-currency__grid {
  flex-direction: column;
}
[data-media-source="media-xs"] .lpc-currency__converter, [data-media-source="media-xs"] .lpc-currency__rates {
  padding: 20px;
}
[data-media-source="media-xs"] .lpc-currency__converter {
  flex: 1 1 100%;
}
[data-media-source="media-xs"] .lpc-currency__rates {
  flex: 1 1 100%;
  margin-left: 0;
  margin-top: 20px;
}
[data-media-source="media-xs"] .lpc-currency__item {
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: auto;
  gap: 7px;
}
[data-media-source="media-xs"] .lpc-currency__headline {
  grid-column: 1 / -1;
}
[data-media-source="media-xs"] .lpc-currency__cell {
  gap: 4px;
  flex-direction: column;
  align-items: flex-start;
}
[data-media-source="media-xs"] .lpc-currency__buy-value {
  flex: none;
}
[data-media-source="media-xs"] .lpc-currency__rates-button {
  width: 100%;
}
