@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html, body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background-color: #050516;
}

/* Btn */
.btn {
  padding: 10px 20px;
  border-radius: 15px;
  font-weight: 600;
}
.btn span {
  font-size: 16px;
}
.btn i {
  position: relative;
  top: 2px;
}

.btn-primary {
  /*background-color: $mainColor;
  border: 2px solid $mainColor;*/
  background: #b278f0;
  background: linear-gradient(180deg, rgb(178, 120, 240) 0%, rgb(131, 52, 235) 100%);
  color: #fff;
  box-shadow: inset 0.2px 1px 2px rgba(255, 255, 255, 0.3);
  border: 0 !important;
  outline: 3px solid transparent;
  transition: all 0.2s;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  border: 0 !important;
  outline: 3px solid rgba(131, 52, 235, 0.5);
  box-shadow: inset 1px 1.5px 2px rgba(255, 255, 255, 0.3);
  color: #fff !important;
}

.btn-light {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn-light:hover, .btn-light:focus, .btn-light:active {
  background-color: transparent !important;
  color: rgb(255, 255, 255) !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
}

.btn-secondary {
  /*background-color: rgb(255, 255, 255, .8);
  color: #000;
  border: 2px solid rgb(255, 255, 255, 0);*/
  background: #ffffff;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(230, 230, 230) 100%);
  color: #000;
  box-shadow: inset 0.2px 1px 2px rgba(255, 255, 255, 0.3);
  border: 0px solid transparent !important;
  outline: 3px solid transparent;
  transition: all 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
  /*background-color: rgb(255, 255, 255, .9) !important;
  color: #000 !important;
  border: 2px solid rgb(255, 255, 255, 0) !important;*/
  outline: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 1px 1.5px 2px rgba(255, 255, 255, 0.3);
  color: #000 !important;
}

.form-control {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  padding: 10px;
  color: rgb(255, 255, 255) !important;
  outline: 0 !important;
}
.form-control:focus, .form-control:active {
  border: 1px solid #8334eb;
  background-color: rgba(255, 255, 255, 0.05);
  outline: 0 !important;
  box-shadow: 0px 0px 10px 4px rgba(131, 52, 235, 0.3);
}
.form-control:disabled {
  background-color: rgb(20, 20, 20) !important;
  border: 1px solid rgb(40, 40, 40) !important;
  opacity: 0.7;
}
.form-control:disabled:focus, .form-control:disabled:active {
  box-shadow: 0;
}

/* Nav */
.navbar-brand {
  font-weight: 800;
  transition: opacity 0.3s;
  min-width: 221px;
}
.navbar-brand:hover {
  opacity: 0.7 !important;
  transition: opacity 0.3s;
}

.nav-link {
  margin: 0px 15px;
}/*# sourceMappingURL=bootstrap_rewrite.css.map */