:root {
  --primary-color: #000;
  --yellow: #f9c01c;
  --yellow-gradient-top: #2b2105;
  --dark-yellow: #483e1b;
  --grey: #1e1d1a;
  --black-dark: rgb(31, 31, 31);
  --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);
}

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 {
  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: #1b1b1b !important;
}

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

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-redeem {
  margin-top: 0;
  margin-left: 5rem;
  margin-right: 5rem;
}

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

.description {
  text-align: justify;
  font-size: 1.4rem;
  color: #fff;
}

.swap-general-container {
  border-style: groove;
  border-color: var(--yellow);
  border-radius: 12px;
  box-shadow: 4px 4px var(--yellow);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -150px;
  margin-left: -225px;
}

.redeem-swap-item {
  color: #000;
}

#swap-stable-label {
  color: #fff;
  font-size: 1.5rem;
}
#swap-settings-icon {
  background-color: transparent !important;
  margin-left: auto !important;
}

.swap-input {
  border-radius: 12px !important;
  padding-right: 10px !important;
}

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

.control > input {
  border-style: hidden;
}

.control > input::placeholder {
  font-size: 3vh !important;
}
select {
  border-top-right-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
}

.swap-btn-redeem-modal {
  border-radius: 12px !important;
}

.coin-logo {
  height: 26px;
  width: 26px;
}

.coin-logo-stable-balance {
  height: 26px;
  width: 26px;
}
.cusd-balance-value {
  font-size: 1.3rem;
}
.swap-active-coin {
  border-top-right-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
  background-color: transparent !important;
}

.swap-active-coin:hover {
  background-color: transparent !important;
}

.migration-info {
  color: var(--yellow);
  font-size: 2.5rem;
}

.blurred-body {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.stable-balance-title {
  color: white;
  font-size: 4vh;
}
.stable-amount-container {
  display: inline-flex;
  flex-direction: row;
  margin-top: 2rem;
}
.stable-balance-name {
  color: white;
  font-size: 2vh;
}

.stable-balance-amount {
  color: var(--yellow);
  font-size: 2vh;
}

#user-cusd-balance-label {
  color: var(--grey-placeholder);
  font-size: 2.2vh;
}

#user-cusd-balance {
  color: var(--yellow);
  font-size: 2.2vh;
}

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

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);
}
