:root {
  --primary: rgb(17, 17, 18);
  --secondary: rgb(30, 215, 96);
}

@font-face {
  font-family: "Open Sans Bold";
  src: url("../font/Open-Sans-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans Regular";
  src: url("../font/Open-Sans-Regular.ttf") format("truetype");
}

h1,
h2,
h3 {
  font-family: "Open Sans Bold", sans-serif;
  font-weight: 500;
}

p {
  font-weight: 400;
}

a {
  color: var(--secondary);
  text-decoration: none;
}

* {
  font-family: "Open Sans Regular", sans-serif;
  color: #fff;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

b {
  font-family: "Open Sans Bold", sans-serif;
  font-weight: 600;
}

html,
body {
  background-color: var(--primary);
}

.mt-5 {
  margin-top: 15px;
}

header {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}

header h1 {
  position: relative;
  top: 5px;
}

footer {
  text-align: center;
  width: 100vw;
  margin-top: 40px;
  margin-bottom: 40px;
}

footer * {
  color: rgba(255, 255, 255, 0.3);
  vertical-align: center;
  font-family: "Open Sans Bold", sans-serif;
  /* font-weight: 500; */
}

main.container {
  padding-top: 60px;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .step-hidden {
    min-width: 90vw;
    margin-bottom: 30px;
  }
  .img-step {
    width: 100vw !important;
    left: -17.5px !important;
  }
  .header-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .container {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
    margin-top: 30px;
  }
  .step-hidden {
    width: unset !important;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
    margin-top: 50px;
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="text"] {
  border: none;
  background-color: rgb(24, 24, 28);
  color: white;
  font-size: 2.1rem;
  width: 100%;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-family: "Open Sans Bold", sans-serif;
  font-weight: 600;
  border-radius: 12px;
  padding: 8px 16px;
}

#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  cursor: progress;
}

.loader,
.loader:before,
.loader:after {
  background: var(--secondary);
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  border-radius: 10px;
  width: 1em;
  height: 4em;
}
.loader {
  color: var(--secondary);
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: "";
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 3em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 4em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 3em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 4em;
  }
}

.step-hidden {
  opacity: 0.1;
  cursor: not-allowed;
  pointer-events: none;
}

.step-current {
  opacity: 1 !important;
  cursor: auto !important;
  pointer-events: all !important;
}

.my-5 {
  margin-right: 25px;
  margin-left: 25px;
}

.flex-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

#import-code,
#complete {
  flex: 2;
}

#upload-files {
  flex: 3;
}

#codeBox1 {
  margin-left: 56px;
}

.img-step {
  max-width: 600px;
  position: relative;
  left: -25px;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.divider {
  margin: 30px 0px 30px 0px;
  width: 100%;
  height: 1px;
  background-color: rgb(60, 60, 60);
}

.spotistats-button:disabled,
input:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none;
}

.spotistats-button {
  border: none;
  width: 100%;
  background-color: #1e2e29;
  color: var(--secondary) !important;
  height: 40px;
  font-family: "Open Sans Bold", sans-serif;
  font-weight: 500;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
}

.ripple {
  background-position: center;
  transition: background 0.8s;
}
.ripple:hover {
  background: #1e2e29 radial-gradient(circle, transparent 1%, #1e2e29 1%)
    center/15000%;
}
.ripple:active {
  background-color: rgb(31, 68, 44);
  background-size: 100%;
  transition: background 0s;
}
blockquote {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 4px solid rgb(60, 60, 60);
  color: rgba(255, 255, 255, 0.75);
}
.article-padding {
  margin-top: 30px;
}

.red {
  background-color: #2e1e1e !important;
  color: rgb(215, 30, 30) !important;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: rgb(24, 24, 28);
  margin: 5% auto;
  padding: 17px 20px;
  border-radius: 15px;
  width: 80%;
  max-width: 700px;
  position: relative;
  font-size: 1.15rem;
}

.close {
  position: absolute;
  color: var(--secondary);
  top: 8px;
  right: 22px;
  font-size: 2rem;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: var(--secondary);
  opacity: 0.6;
  text-decoration: none;
  cursor: pointer;
}
