path[data-v-f1b0e2] {
  fill: none;
  stroke: #FF1493;
  stroke-width: 2;
}
.starred[data-v-f1b0e2]  path {
  fill: #FF1493;
}
@keyframes blink-up {
  from {
    background-color: #28a745;
  }
  to {
    background-color: #fff;
  }
}
@keyframes blink-down {
  from {
    background-color: #dc3545;
  }
  to {
    background-color: #fff;
  }
}
.rates-list__item_change_up {
  animation: blink-up 3s 1;
}
.rates-list__item_change_down {
  animation: blink-down 3s 1;
}
.rates-list__item__name {
  white-space: nowrap;
  font-weight: 600;
}
.rates-list__item__name__code {
  color: #999;
  font-size: 0.8em;
  font-weight: 400;
}
.rates-list__item__name__logo {
  width: 1em;
  height: 1em;
  margin-top: 0.5vw;
  vertical-align: top;
  margin-right: 0.75vw;
}
.rates-list__item__price {
  text-align: right;
  white-space: nowrap;
  font-weight: 600;
}
.rates-list__item__price__positive {
  color: #28a745;
}
.rates-list__item__price__negative {
  color: #dc3545;
}
.rates-list__item__change {
  width: 10px;
  white-space: nowrap;
  text-align: right;
  font-size: 0.7em;
  line-height: 1;
}
.rates-list__item__change__positive {
  color: #28a745;
}
.rates-list__item__change__negative {
  color: #dc3545;
}
.rates-list__item__change__week {
  font-size: 0.6em;
}
.rates-list__item__chart {
  width: 2em;
}
.rates-list__item__chart > div svg {
  width: 100%;
  height: auto;
}
.rates-list__item__favourite {
  width: 1em;
}
.rates-list__item__favourite button {
  border: none;
  background: none;
  cursor: pointer;
}
.rates-list {
  overflow-x: auto;
  padding: 10px;
  position: relative;
  min-height: 400px;
  /* Highlight animation for scrolled-to items */
}
.rates-list > table {
  width: 100%;
  border-collapse: collapse;
}
.rates-list > table > tbody > tr > td {
  padding: 5px;
  vertical-align: middle;
  border-top: 1px solid #eee;
}
.rates-list > table > tbody > tr:first-child td {
  border-top: none;
}
.rates-list .overlay-center {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
}
.rates-list .overlay-center .overlay-content {
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 90%;
  animation: fadeIn 0.3s ease-out;
}
.rates-list__loading {
  position: fixed;
  top: 15px;
  left: 15px;
}
.rates-list__loading .loading-text {
  color: #aaa;
  font-size: 10px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
}
.rates-list__error .error-content .error-icon {
  font-size: 3em;
  margin-bottom: 15px;
  animation: shake 0.5s ease-in-out;
}
.rates-list__error .error-content .error-title {
  color: #e74c3c;
  margin: 0 0 15px 0;
  font-size: 1.5em;
}
.rates-list__error .error-content .error-message {
  color: #666;
  font-size: 1.1em;
  line-height: 1.5;
  margin-bottom: 25px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 6px;
  border-left: 4px solid #e74c3c;
  text-align: left;
  word-break: break-word;
}
.rates-list__error .error-content .retry-button {
  background: #3498db;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.rates-list__error .error-content .retry-button:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}
.rates-list__error .error-content .retry-button:active {
  transform: translateY(0);
}
.rates-list__item__name {
  max-width: 175px;
}
@keyframes highlight-pulse {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: rgba(255, 215, 0, 0.3);
  }
}
.rates-list .rates-list__item.highlighted {
  animation: highlight-pulse 2s ease;
}
.rates-list .rates-list__item.highlighted td {
  position: relative;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .container {
    width: 748px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 972px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1180px;
  }
}

.row {
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  box-sizing: border-box;
}

.col {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  flex-basis: 6.25%;
  max-width: 6.25%;
}

.col-2 {
  flex: 0 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  flex-basis: 12.5%;
  max-width: 12.5%;
}

.col-3 {
  flex: 0 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  flex-basis: 18.75%;
  max-width: 18.75%;
}

.col-4 {
  flex: 0 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  flex-basis: 25%;
  max-width: 25%;
}

.col-5 {
  flex: 0 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  flex-basis: 31.25%;
  max-width: 31.25%;
}

.col-6 {
  flex: 0 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  flex-basis: 37.5%;
  max-width: 37.5%;
}

.col-7 {
  flex: 0 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  flex-basis: 43.75%;
  max-width: 43.75%;
}

.col-8 {
  flex: 0 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  flex-basis: 50%;
  max-width: 50%;
}

.col-9 {
  flex: 0 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  flex-basis: 56.25%;
  max-width: 56.25%;
}

.col-10 {
  flex: 0 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  flex-basis: 62.5%;
  max-width: 62.5%;
}

.col-11 {
  flex: 0 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  flex-basis: 68.75%;
  max-width: 68.75%;
}

.col-12 {
  flex: 0 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  flex-basis: 75%;
  max-width: 75%;
}

.col-13 {
  flex: 0 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  flex-basis: 81.25%;
  max-width: 81.25%;
}

.col-14 {
  flex: 0 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  flex-basis: 87.5%;
  max-width: 87.5%;
}

.col-15 {
  flex: 0 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  flex-basis: 93.75%;
  max-width: 93.75%;
}

.col-16 {
  flex: 0 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  flex-basis: 100%;
  max-width: 100%;
}

html {
  font-family: "Courier New", monospace;
}

body {
  margin: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 3vw;
  line-height: 1.375;
  color: #333;
  background-color: #ffffff;
}

a:focus {
  outline: none;
}

/*# sourceMappingURL=/src.ad74a082.css.map */