:root {
  --primary-color: #000;
  --yellow: #f9c01c;
  --yellow-gradient-top: #2b2105;
  --dark-yellow: #483e1b;
  --grey: #1e1d1a;
  --black-dark: rgb(31, 31, 31);
  --black-light: rgb(54, 54, 54);
  --grey-placeholder: rgb(156, 156, 156);
}

@font-face {
  font-family: Aristotelica-Pro-Display-Condensed-ExtraLight;
  src: url(../../fonts/Aristotelica_Pro_Text_Condensed_Extralight.otf);
}

@font-face {
  font-family: Aristotelica-Pro-Display-Condensed-Regular;
  src: url(../../fonts/Aristotelica_Pro_Text_Condensed_Regular.otf);
}

@font-face {
  font-family: Aristotelica-Pro-Display-Extra-Light;
  src: url(../../fonts/zetafonts-aristotelica-pro-display-extralight.otf);
}

@font-face {
  font-family: Aristotelica-Pro-Text-Extra-Light;
  src: url(../../fonts/zetafonts-aristotelica-pro-text-extralight.otf);
  font-weight: 400;
}

@font-face {
  font-family: Aristotelica-Demibold;
  src: url(../../fonts/zetafonts-aristotelicaicons-demibold.otf);
}

@font-face {
  font-family: Aristotelica-CDN-Extra-Light;
  src: url(../../fonts/zetafonts-aristotelicapro-cndtext-extralight.otf);
}
@media only screen and (min-device-width: 1080px) and (max-device-width: 5000px) {
body,
html {
  margin: 0;
  background-color: var(--primary-color);
  font-family: Aristotelica-Pro-Display-Condensed-ExtraLight;
  background-image: linear-gradient(
    to bottom right,
    var(--yellow-gradient-top),
    #000
  );
  background-attachment: fixed;
}

/* NAVBAR */
.navbar {
  background-color: initial;
  margin: 20px;
}

.navbar-logo {
  width: 150px;
}

.navbar-item {
  margin: 5px;
  font-size: 1.2rem;
}

.navbar-active-item {
  font-family: Aristotelica-Pro-Display-Condensed-Regular;
  font-size: 1.4rem;
}

#btn-connect {
  background-color: var(--dark-yellow);
  color: var(--yellow);
  border-color: var(--yellow);
  border-width: 2px;
}
.modal-card-head {
  background-color: var(--black-dark);
}

.modal-card-body {
  background-color: rgb(17, 17, 17);
}
.modal-card-title {
  color: white;
}
.wallet-provider-name {
  color: white;
  font-size: 2rem;
}

.wallet-provider-detail {
  color: var(--yellow);
}

.wallet-address {
  color: white;
  font-size: 1.5rem;
}

#metamask-container:hover {
  background-color: var(--black-dark) !important;
}

#wallet-connect-container:hover {
  background-color: #1b1b1b !important;
}

/* Input */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  display: none;
}

input {
  background-color: var(--black-dark) !important;
  color: white !important;
}

input::placeholder {
  color: var(--grey-placeholder) !important;
  font-family: Aristotelica-Pro-Display-Condensed-ExtraLight;
}

/* SECTION */
/* LEFT SIDE */
#section-stake {
  margin-top: 0;
  margin-left: 5rem;
  margin-right: 5rem;
}

.title {
  font-size: 6rem;
  color: #fff;
}

.stake-description {
  text-align: justify;
  font-size: 1.4rem;
  color: #fff;
  max-width: 80%;
}

.apr-container {
  column-count: 3;
  display: flex;
  column-gap: 1rem;
}

.cusd-logo-stake {
  max-width: 150px;
  max-height: 150px;
  margin-right: 2.5rem;
}

.apr-value {
  font-size: 4rem;
  color: #fff;
  text-shadow: 1px 0px rgba(255, 255, 255, 0), 0px 1px rgba(255, 255, 255, 0);
}

.apr-label {
  color: var(--yellow);
  font-size: 4rem;
  text-shadow: 1px 0px rgba(255, 255, 255, 0), 0px rgba(255, 255, 255, 0);
}

.total-staked-label {
  color: #fff;
  font-size: 2rem;
}

.total-staked-value {
  color: var(--yellow);
  font-size: 2rem;
}

.main-container {
  column-count: 2;
  column-gap: 10rem;
  display: flex;
}

/* LEFT SIDE */
.left-side {
  width: 70%;
}
/* RIGHT SIDE */
.right-side {
  width: 30%;
  padding-right: 2rem;
}

#claim-cusd-rewards-btn {
  width: 100%;
  height: 50px;
  background: var(--yellow);
  font-size: 1.2vw;
}

.bsv-value {
  font-size: 1.8vw;
}

.control > input {
  border-style: hidden;
  border-radius: 12px;
  font-size: 1.2vw;
  width: 100%;
}

.control > a {
  width: 100%;
  border-style: hidden;
  font-size: 1.2vw;
  border-radius: 12px;
}

.button {
  transition: 0.3s;
  background-size: 200% auto;
  font-family: Aristotelica-Pro-Display-Condensed-ExtraLight;
  font-weight: bold;
}

.button:hover {
  color: var(--yellow);
}

.button:focus {
  color: var(--yellow);
  outline: none !important;
  box-shadow: none !important;
}

.button.is-warning {
  transition: 0.3s;
  background-image: linear-gradient(
    to right,
    var(--yellow) 0%,
    rgb(241, 228, 36) 51%,
    var(--yellow) 100%
  );
  background-size: 200% auto;
}

.button.is-warning:hover {
  background-position: 99% center;
}

.stake-unstake-buttons {
  background-image: linear-gradient(
    to right,
    var(--grey) 0%,
    rgb(15, 15, 15) 51%,
    var(--grey) 100%
  );
  color: var(--yellow);
  border-style: hidden;
  font-size: 1.2vw;
  width: 100%;
  height: 40px;
}

.stake-unstake-buttons:hover {
  background-position: 99% center;
}

.button-series > button {
  background-image: linear-gradient(
    to right,
    var(--grey) 0%,
    rgb(15, 15, 15) 51%,
    var(--grey) 100%
  );
  color: var(--yellow);
  border-style: hidden;
  font-size: 1.2vw;
  width: 48%;
  height: 40px;
}
.button-series > button:hover {
  background-position: 99% center;
}

.max-button {
  background-color: var(--black-dark) !important;
  color: var(--grey-placeholder) !important;
}

.max-button:hover {
  color: var(--yellow) !important;
}

.input {
  outline: none !important;
  box-shadow: none !important;
}

.amount-value {
  color: var(--yellow);
}

label {
  color: rgb(241, 241, 241);
}

/* FOOTER */
footer {
  font-size: 1.2rem;
}

.footer {
  position: fixed;
  bottom: 0;
  padding: 0;
  padding-left: 3rem;
  width: 100%;
  background-color: var(--black-dark);
}

/* HELPERS */
.yellow-text {
  color: var(--yellow);
}

button {
  border-radius: 12px !important;
}
}