html {
  background-color: #000;
}

p {
  margin: 0;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 16px;
}

body {
  font-family: Outfit, sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 16px;
  overflow-x: hidden;
  margin-bottom: 16px;
}

* {
  font-family: Outfit, sans-serif;
  box-sizing: border-box;
}

.header {
  background: #ffffff26;
}

.tabs {
  display: flex;
  justify-content: space-around;
  padding: 6px 0;
  gap: 10px;
}

.tabs button {
  background-color: inherit;
  color: white;
  border: none;
  padding: 14px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: clamp(14px, 2vw, 18px);
  border-radius: 8px;
  width: 100%;
}

.tabs button:hover {
  background-color: #555;
}

.tabs button.active {
  background-color: #000;
}

.tabcontent {
  display: none;
  border-top: none;
  margin-top: 32px;
}

.tabcontent.active {
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
}

tr {
  background: linear-gradient(180deg, #ffffff1a, #ffffff12);
  display: grid;
  grid-template-columns: 3fr 3fr 2fr;
  border-radius: 24px;
  justify-content: space-between;
  overflow: hidden;
}

th, td {
  padding: 16px;
  text-align: left;
}

th + th, td + td {
  padding-left: 6px;
}

th {
  background-color: #f2f2f2;
}

input[type=number] {
  width: 100%;
  box-sizing: border-box;
  padding: 5px;
}

tr td:first-child {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(16px, 1.5vw, 18px);
}

tr td:nth-child(2) {
  display: flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

tr td:nth-child(3) {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: bold;
}

tr td:first-child img {
  border-radius: 16px;
  max-width: 64px;
}

@media (max-width: 600px) {
  .header {
    overflow-x: auto;
  }
}
.input-profit {
  margin-bottom: 6px;
}

.input-price,
.input-profit {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #000;
  color: #fff;
  padding: 10px 20px !important;
  border-radius: 20px;
  display: block;
  font-size: clamp(14px, 1.5vw, 16px);
  outline: 0;
  transition: 0.3s;
}

.input-price:focus,
.input-profit:focus {
  background: #151515;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@media (max-width: 600px) {
  table tr {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  th, td {
    padding: 16px;
  }

  tr td:first-child {
    padding-bottom: 0;
  }

  tr td:first-child img {
    max-width: 48px;
  }
}
.ln-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.ln-header-left {
  order: 2;
  padding-top: 16px;
}

.ln-header-social {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 60px;
  display: flex;
  padding: 5px;
}

@media (min-width: 768px) {
  .ln-header {
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .ln-header-left {
    order: 1;
    padding-top: 32px;
  }
}
@media (min-width: 1024px) {
  .ln-header-social {
    border-radius: 100px;
    padding: 8px;
  }
}
.ln-header-social a {
  align-items: center;
  background-color: #ffffff26;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  margin-right: 4px;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  width: 28px;
}

.ln-header-social a {
  align-items: center;
  background-color: #ffffff26;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  margin-right: 4px;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  width: 28px;
}

@media (min-width: 1024px) {
  .ln-header-social a {
    height: 52px;
    width: 52px;
  }
}
.ln-header-center {
  align-items: center;
  border: 2px solid #2a2832;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top: none;
  display: flex;
  flex: 0 0 100%;
  justify-content: center;
  order: 1;
  padding: 12px 20px;
}

@media (min-width: 768px) {
  .ln-header-center {
    flex: 0 0 auto;
  }
}
@media (min-width: 1024px) {
  .ln-header-center {
    border-bottom: 8px solid #2a2832;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    border-left: 8px solid #2a2832;
    border-right: 8px solid #2a2832;
    order: 2;
    padding: 32px 60px;
  }
}
.ln-header-center-logo {
  height: 60px;
  position: relative;
  width: 60px;
}

@media (min-width: 1024px) {
  .ln-header-center-logo {
    height: 90px;
    width: 90px;
  }
}
.ln-header-center p {
  font-size: 26px;
  font-weight: 500;
  margin-left: 16px;
}

@media (min-width: 1024px) {
  .ln-header-center p {
    font-size: 32px;
    margin-left: 30px;
  }
}
.ln-header-right {
  order: 3;
  padding-top: 16px;
}

@media (min-width: 768px) {
  .ln-header-right {
    order: 3;
    padding-top: 32px;
  }
}
.ln-header-center-logo img {
  display: block;
  height: auto;
  max-width: 100%;
  z-index: 3;
}

.ln-header-right .button {
  align-items: center;
  background: linear-gradient(90deg, #2253ff 1.46%, #3a66ff00 50.8%, #2253ff 99.81%);
  border: 1px solid #2252fd;
  border-radius: 71px;
  color: #fff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  height: 40px;
  justify-content: center;
  padding: 0 10px;
  position: relative;
}

@media (min-width: 1024px) {
  .ln-header-right .button {
    font-size: 22px;
    height: 54px;
    padding: 0 20px;
  }
}
.ln-header-right .button span {
  align-items: center;
  background: linear-gradient(93deg, #5a60ff, #bf36ff);
  border-radius: 8px;
  display: flex;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  height: 26px;
  justify-content: center;
  position: absolute;
  right: -10px;
  text-align: center;
  top: -13px;
  width: 90px;
}

.ln-header-right .button span:after {
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  content: "";
  display: block;
  height: 22px;
  left: 0;
  position: absolute;
  top: 0;
  width: 86px;
}

.ln-header-right .button .icon {
  height: 28px;
  margin-left: 16px;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  width: 28px;
}

@media (min-width: 1024px) {
  .ln-header-right .button .icon {
    margin-left: 32px;
  }
}
.ln-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0 48px;
  text-align: center;
}

.ln-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  margin-top: 0;
}

@media (min-width: 768px) {
  .ln-content h1 {
    font-size: 60px;
    line-height: 64px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .ln-content h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 84px;
    margin-bottom: 20px;
  }
}
tbody {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

@media screen and (max-width: 1720px) {
  tbody {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .tabcontent {
    margin-top: 20px;
  }

  tbody {
    gap: 20px;
  }

  table tr {
    border-radius: 16px;
  }

  td, th {
    padding: 12px !important;
  }

  tr td:nth-child(2) {
    padding-top: 2px !important;
  }

  tr td:nth-child(3) {
    padding: 8px !important;
    margin-top: 6px;
  }
}
@media screen and (max-width: 576px) {
  .tabcontent {
    margin-top: 16px;
  }

  tbody {
    gap: 16px;
  }

  .container {
    padding: 0 14px;
  }
}

/*# sourceMappingURL=style.css.map */
