﻿@charset "UTF-8";
.ExchangeRate-Container {
  background-color: transparent;
  color: #00204E;
  padding: 47px 20px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 47px;
  font-family: Montserrat, system-ui, sans-serif;
}
@media screen and (max-width: 1200px) {
  .ExchangeRate-Container {
    padding: 25px 10px;
    gap: 25px;
    font-size: 0.8em;
  }
}

.ExchangeRate-Container .ExchangeRate-Card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1000px;
  padding: 40px;
  margin: 0 auto;
  border-radius: 16px;
  background-color: #FFFFFF;
  border: 1px solid #E2E6EC;
  box-shadow: 0 4px 16px rgba(0, 32, 78, 0.06);
}
@media screen and (max-width: 1200px) {
  .ExchangeRate-Container .ExchangeRate-Card {
    gap: 14px;
    padding: 16px;
    border-radius: 10px;
  }
}
.ExchangeRate-Container .ExchangeRate-Select-Container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 600px) {
  .ExchangeRate-Container .ExchangeRate-Select-Container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
.ExchangeRate-Container .ExchangeRate-Select-Container select {
  appearance: base-select;
  display: flex;
  align-items: center;
  position: relative;
}
.ExchangeRate-Container .ExchangeRate-Select-Container select::picker-icon {
  content: "⌟";
  rotate: 45deg;
  font-size: 30px;
  position: absolute;
  right: 30px;
  top: calc(50% - 32px);
  color: #00204E;
}
@media screen and (max-width: 1200px) {
  .ExchangeRate-Container .ExchangeRate-Select-Container select::picker-icon {
    right: 20px;
  }
}
.ExchangeRate-Container .ExchangeRate-Select-Label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #637389;
}
.ExchangeRate-Container .ExchangeRate-Select {
  background-color: #FFFFFF;
  border-radius: 100px;
  width: 250px;
  height: 50px;
  padding: 6px 29px;
  border: 1px solid #CBD2DC;
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 600;
  color: #00204E;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.ExchangeRate-Container .ExchangeRate-Select:hover, .ExchangeRate-Container .ExchangeRate-Select:focus {
  border-color: #00204E;
  box-shadow: 0 0 0 3px rgba(0, 32, 78, 0.08);
  outline: none;
}
@media screen and (max-width: 1200px) {
  .ExchangeRate-Container .ExchangeRate-Select {
    width: 150px;
    height: 30px;
    padding: 3px 14px;
  }
}
.ExchangeRate-Container .ExchangeRate-Table-Container {
  position: relative;
  padding: 24px 24px 24px 28px;
  background-color: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E2E6EC;
  overflow: hidden;
}
.ExchangeRate-Container .ExchangeRate-Table-Container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #EA0437;
}
@media screen and (max-width: 1200px) {
  .ExchangeRate-Container .ExchangeRate-Table-Container {
    padding: 12px 12px 12px 16px;
    border-radius: 10px;
  }
}
.ExchangeRate-Container .ExchangeRate-Table {
  width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.ExchangeRate-Container .ExchangeRate-Table thead {
  background-color: #00204E;
}
.ExchangeRate-Container .ExchangeRate-Table thead .ExchangeRate-Table-Head {
  text-align: left;
  color: #FFFFFF;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 12px;
}
.ExchangeRate-Container .ExchangeRate-Table thead .ExchangeRate-Table-Head:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  padding-left: 16px;
}
.ExchangeRate-Container .ExchangeRate-Table thead .ExchangeRate-Table-Head:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding-right: 16px;
}
.ExchangeRate-Container .ExchangeRate-Table tbody tr {
  border-bottom: 1px solid #E2E6EC;
  transition: background-color 0.12s ease;
}
.ExchangeRate-Container .ExchangeRate-Table tbody tr:nth-child(even) {
  background-color: #F5F7FA;
}
.ExchangeRate-Container .ExchangeRate-Table tbody tr:hover {
  background-color: #E8ECF1;
}
.ExchangeRate-Container .ExchangeRate-Table tbody tr:last-child {
  border-bottom: none;
}
.ExchangeRate-Container .ExchangeRate-Table tbody td {
  padding: 10px 12px;
  vertical-align: middle;
  color: #00204E;
  font-weight: 500;
}
.ExchangeRate-Container .ExchangeRate-Table tbody td:first-child {
  padding-left: 16px;
}
.ExchangeRate-Container .ExchangeRate-Table tbody td:last-child {
  padding-right: 16px;
}
.ExchangeRate-Container .ExchangeRate-Table th:nth-child(1), .ExchangeRate-Container .ExchangeRate-Table th:nth-child(3), .ExchangeRate-Container .ExchangeRate-Table th:nth-child(5), .ExchangeRate-Container .ExchangeRate-Table td:nth-child(1), .ExchangeRate-Container .ExchangeRate-Table td:nth-child(3), .ExchangeRate-Container .ExchangeRate-Table td:nth-child(5) {
  width: 1%;
  white-space: nowrap;
}
.ExchangeRate-Container .ExchangeRate-Table th:nth-child(2), .ExchangeRate-Container .ExchangeRate-Table th:nth-child(4), .ExchangeRate-Container .ExchangeRate-Table td:nth-child(2), .ExchangeRate-Container .ExchangeRate-Table td:nth-child(4) {
  width: auto;
}
.ExchangeRate-Container .ExchangeRate-Table tbody td:nth-child(3) {
  font-weight: 700;
  color: #00204E;
  font-feature-settings: "tnum" 1;
}
.ExchangeRate-Container .ExchangeRate-Table tbody td:nth-child(1),
.ExchangeRate-Container .ExchangeRate-Table tbody td:nth-child(5) {
  font-weight: 700;
  font-size: 0.9em;
  color: #4A5568;
  letter-spacing: 0.04em;
}
