@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  margin: 7px;
  font-size: 21px;
  font-weight: 600;
}

center {
  width: 100%;
}

.card {
  background: #f8f8f8;
  border-radius: 16px;
  margin-bottom: 2px;
  padding: 7px;
}

.navigation {
  display: flex;
  width: 100%;
  position: relative;
}

.navigation .wifi {
  position: absolute;
  top: 20px;
  left: 24px;
}

.navigation .logo {
  height: 42px;
}

.navigation .clock {
  font-size: 25px;
  font-weight: 600;
  position: absolute;
  top: 17px;
  right: 24px;
}

.navigation .clock .main {
  color: #000;
}

.navigation .clock .second {
  color: #959595;
}

.first-card {
  float: left;
  width: 50%;
}

.second-card {
  float: right;
  width: 50%;
}

.inline-icon {
  float: left;
  padding-right: 0px;
}

.price-object .int {
  font-size: 21px;
}

.price-object .decimal {
  font-size: 13px;
}

.price-object.up .int {
  color: #88a82f;
}

.price-object.up .decimal {
  color: #b7ce77;
}

.price-object.down .int {
  color: #ff3939;
}

.price-object.down .decimal {
  color: #ff6262;
}

.price-object.fixed .int {
  color: #000000;
}

.price-object.fixed .decimal {
  color: #3e3e3e;
}

.change-object .value {
  font-size: 18px;
  margin-left: 3px;
  float: left;
}

.change-object[mode="up"] {
  color: #627922;
}

.change-object[mode="up"] svg {
  transform: rotate(180deg);
  stroke: #899b57;
}

.change-object[mode="up"] svg.down,
.change-object[mode="up"] svg.fixed {
  display: none;
}

.change-object[mode="down"] {
  color: #ff3939;
}

.change-object[mode="down"] svg {
  stroke: #ff3939;
}

.change-object[mode="down"] svg.up,
.change-object[mode="down"] svg.fixed {
  display: none;
}

.change-object[mode="fixed"] {
  color: #bdbdbd;
}

.change-object[mode="fixed"] svg {
  stroke: #bdbdbd;
}

.change-object[mode="fixed"] svg.up,
.change-object[mode="fixed"] svg.down {
  display: none;
}

table {
  width: 100%;
  border-spacing: 0px;
}

th {
  color: #868686;
  text-align: left;
  font-weight: normal;
  padding-top: 0px;
  padding-bottom: 8px;
}

tbody tr td {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ededed;
}

tbody tr:last-child td {
  border-bottom: none;
  padding-bottom: 7px;
}

.copyright {
  font-size: 10px;
  color: #6d6d6d;
  text-align: center;
  margin: 0px;
  padding: 0px;
}