body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #280137;
  color: #c68fe6;
}

h1 {
  text-align: center;
  color: #c68fe6;
}

.highlight_pink {
  color: #280137;
  background-color: #eb3678;
}

.highlight_green {
  font-weight: bold;
  color: #280137;
  background-color: #36eba9;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.block {
  display: block;
}

.onboarding {
  text-align: center;
  margin-top: 40%;
  display: none;
}

.create {
  text-align: center;
  margin-top: 20%;
  display: none;
}

.import {
  text-align: center;
  margin-top: 20%;
  display: none;
}

.consoleLog {
  background-color: #fff;
  font-family: monospace;
  color: #280137;
  border: none;
  float: right;
  width: 350px;
  height: 100%;
  padding: 5px;
  display: none;
}

.content_bottom_scan {
  text-align: center;
  margin-top: 50px;
  display: none;
}
.container {
  width: 50%;
  min-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.float-child-element {
  margin-top: 10%;
  float: left;
  width: 50%;
  text-align: center;
}

.button_onboarding {
  background-color: #c68fe6;
  color: #280137;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.button_onboarding:disabled {
  cursor: not-allowed;
}

.button_onboarding:disabled:hover {
  cursor: not-allowed;
  background-color: #c68fe6;
}

.button_onboarding:hover {
  background-color: #eb3678;
}

.blink {
  animation: blink 0.5s infinite;
}
@keyframes blink {
  0% {
    color: #eb3678;
  }
  50% {
    color: #280137;
  }
  100% {
    color: #eb3678;
  }
}

.gif {
  width: 95%;
  position: relative;
  display: block;
  margin: auto;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
  top: -10px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #c68fe6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: #280137;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #eb3678;
}

input:focus + .slider {
  box-shadow: 0 0 1px #eb3678;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Popin */
.box {
  width: 40%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
  padding: 35px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}

.button {
  font-size: 1em;
  padding: 10px;
  color: #fff;
  border: 2px solid #eb3678;
  border-radius: 20px/50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.button:hover {
  background: #eb3678;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #c68fe6;
  color: #280137;
  border-radius: 5px;
  width: 30%;
  min-width: 400px;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #280137;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #280137;
}

.popup .close:hover {
  color: #eb3678;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px) {
  .box {
    width: 70%;
  }
  .popup {
    width: 70%;
  }
}
