@font-face {
  font-family: Lexend;
  src: url("https://static.smartstock.africa/font/lexend.ttf");
}

@font-face {
  font-family: RobotoVariable;
  src: url("https://static.smartstock.africa/font/Roboto.ttf");
}

@font-face {
  font-family: Jost;
  src: url("https://static.smartstock.africa/font/jost.ttf");
}

@font-face {
  font-family: Figtree;
  src: url("https://static.smartstock.africa/font/figtree.ttf");
}

:root {
  --Lexend: "Lexend", sans-serif;
  --Roboto: "Roboto", sans-serif;
  --Jost: "Jost", sans-serif;
  --Figtree: "Figtree", sans-serif;
}
body {
  height: 100svh;
  width: 100%;
  background-color: var(--body-color);
  overflow: hidden;
  margin: 0px;
}

#loader {
  position: relative;
  z-index: 101;
  background: linear-gradient(
    90deg,
    var(--body-color) 0%,
    rgba(0, 0, 0, 0) 20%,
    var(--body-color) 75%,
    var(--body-color) 100%
  );
  animation: streak 8.5s linear infinite;
}

#loaderIcon,
#loader {
  height: 20px;
}

@keyframes streak {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100rem 0%;
  }
}

#payout {
  height: 100%;
  width: 100%;
  display: flex;
}

#payoutBox {
  margin: auto;
  padding: 5px;
  background: white;
  border-radius: 5px;
}

.planHeader {
  text-align: center;
  margin-bottom: 16px;
  background: var(--body-color);
  color: white;
  border-radius: 5px;
}

.planHeader h2 {
  font-size: 22px;
  margin: 0;
  font-family: var(--Figtree);
}

.planSubtitle {
  font-size: 13px;
  opacity: 0.7;
  font-family: var(--Jost);
}

.planPrice {
  text-align: center;
  margin: 20px 0;
  font-family: var(--Jost);
}

.planPrice .amount {
  font-size: 40px;
  font-weight: bold;
  font-family: var(--Figtree);
}

.planPrice .currency,
.planPrice .period {
  font-size: 14px;
  opacity: 0.7;
}

.planFeatures {
  margin: 20px 0;
  font-family: var(--Jost);
  text-align: center;
}

.feature {
  padding: 2.5px 0;
  font-size: 80%;
  font-weight: 450;
}

.payoutButton {
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  background: var(--body-color);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--Jost);
  font-weight: 500;
  letter-spacing: 1px;
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.payoutButton:hover {
  opacity: 0.9;
}

.secureNote {
  margin-top: 12px;
  font-size: 12px;
  text-align: center;
  opacity: 0.6;
  font-family: var(--Jost);
}

#consumerDetails {
  margin: 5px;
  padding: 5px;
  font-family: var(--Jost);
}

.details {
  border: 1px solid var(--body-color);
  border-radius: 5px;
  margin: 5px;
}

.detailsName {
  padding-left: 5px;
  background: var(--body-color);
  letter-spacing: 1px;
}

.detailsValue {
  border-top: 1px solid var(--body-color);
  padding-left: 5px;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
}
