@font-face {
  font-family: 'Gotham';
  src: local('Gotham Bold'), local('Gotham-Bold'),
      url('../fonts/GothamBold/Gotham-Bold.woff2') format('woff2'),
      url('../fonts/GothamBold/Gotham-Bold.woff') format('woff'),
      url('../fonts/GothamBold/Gotham-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: local('Gotham Regular'), local('Gotham-Book'),
      url('../fonts/GothamRegular/Gotham-Regular.woff2') format('woff2'),
      url('../fonts/GothamRegular/Gotham-Regular.woff') format('woff'),
      url('../fonts/GothamRegular/Gotham-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --tt-color-primary: #2C8CEF;
  --tt-color-black: #000;
  --tt-color-white: #fff;
  --tt-color-gray: #9B9B9B;
  --tt-color-gray-light: #CAD8DE;
  --tt-color-gray-lightest: #DDEBF1;
}

#trading-tools {
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0;
  color: var(--tt-color-black);
  overflow: auto;
}

.trading-tools__tabs {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 30px;
}

.trading-tools__tab {
  flex: 1;
  font-weight: 700;
  color: var(--tt-color-black);
  font-size: 17px;
  padding: 10px;
  transition: all 0.2s ease;
  text-align: center;
  border-bottom: 7px solid;
  text-decoration: none;
  border-color: var(--tt-color-gray-lightest);
  cursor: pointer;
}

.trading-tools__tab--active {
  color: var(--tt-color-white);
  background-color: var(--tt-color-primary);
  border-color: var(--tt-color-primary);
}

.trading-tools__markets {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trading-tools__market {
  display: flex;
  text-decoration: none;
  color: var(--tt-color-black);
  padding: 15px 7px;
  white-space: nowrap;
  border-radius: 10px 10px 0 0;
  transition: all 0.2s ease;
  font-size: 14px;
  cursor: pointer;
}

.trading-tools__market.active {
  background-color: var(--tt-color-white);
}

.trading-tools__market-name {
  border-bottom: 1px solid;
}

.trading-tools__market.active .trading-tools__market-name {
  border-color: transparent;
}

.trading-tools__markets-count {
  font-style: italic;
  color: var(--tt-color-primary);
  font-size: 10px;
  padding-left: 2px;
}

/* .trading-tools__table {
  min-width: 1280px;
} */

.trading-tools__table table {
  width: 100%;
}

.trading-tools__table table tr th {
  background-color: var(--tt-color-white);
  color: var(--tt-color-gray);
  padding: 16px;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}

.trading-tools__table table tr td {
  padding: 16px 5px;
  font-size: 16px;
  background-color: var(--tt-color-gray-lightest);
  text-align: center;
}

.trading-tools__table table tr:nth-child(even) td {
  background-color: var(--tt-color-gray-light);
}

.trading-tools__symbol-name {
  color: var(--tt-color-primary);
}
