* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --theme-body-font: "Poppins", sans-serif;
  --theme-color-dark: #000000;
  --theme-color-info: #3b8df7;
  --theme-color-success: #00ff84;
  --theme-color-grey: #bebebe;
  --theme-color-grey-x: #c7c7c7;
  --theme-color-light: #fff;
  --theme-color-border: #232323;
}

body {
  font-size: 1rem;
  font-family: var(--theme-body-font);
  color: var(--theme-color-grey);
  line-height: 1.5rem;
  background-color: var(--theme-color-dark);
}

.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.container-fluid {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--theme-heading-font);
  font-weight: 700;
  color: var(--font-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600 !important;
}

h3 {
  font-size: 1.563rem;
}

h4 {
  font-size: 1.25rem;
}

.button-custom {
  padding: 0.938rem 2.2rem;
  border-radius: 600px;
  font-family: var(--theme-body-font);
  font-size: 1rem;
  line-height: 1.5rem;
  display: inline-block;
  font-weight: 400;
  text-align: center;
}

.button-custom-gradient {
  background: var(--theme-color-info);
  color: var(--theme-color-light);
}
.button-custom-gradient:hover {
  color: var(--theme-color-light) !important;
}

.button-custom-success {
  background: var(--theme-color-success);
  color: var(--theme-color-dark);
  border: 1px solid var(--theme-color-success);
}
.button-custom-success:hover {
  color: var(--theme-color-info) !important;
  background-color: transparent;
  border: 1px solid var(--theme-color-info);
}

.button-custom-info {
  background: var(--theme-color-info);
  color: var(--theme-color-light);
  border-radius: 0 !important;
  border: none;
}
.button-custom-info:hover {
  color: var(--theme-color-light) !important;
}

input,
select {
  border-radius: 4px;
  width: 100%;
  padding: 11.6px 16.5px 11.6px 0;
  border: 1px solid #fff;
  color: var(--theme-color-alt);
  font-size: 14px;
}/*# sourceMappingURL=global.css.map */