body {
  text-align: center;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
}

.downloadButton {
  margin: 0px 16px;
  padding: 12px 21px;
  font-size: 16px;
  border-radius: 24px;
  border: none;
  background-color: #222931;
  color: white;
  cursor: pointer;
}

.button.important {
  background: #fdd231 !important;
}

.steps {
  text-align: left;
  max-width: 750px;
  margin: 0 auto;
}

li {
  font-size: 18px;
}

.browser-logo {
  width: 45px;
  vertical-align: middle;
  margin-right: 5px;
}

.license {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}

svg:not(:root).svg-inline--fa {
  overflow: visible;
}

.svg-inline--fa.fa-w-16 {
  width: 1em;
}

.button svg {
  margin-right: 0.7em;
}

.svg-inline--fa {
  display: inline-block;
  font-size: inherit;
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}

.license-wrapper {
  margin: 32px 0;
}

.steps .button {
  margin-left: 1em;
}

.loguinho {
  width: 100px;
}

.button {
  align-items: center;
  background-color: #f6f6f6;
  border-radius: 8px;
  border-style: none;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  height: 56px;
  justify-content: center;
  line-height: 1.5;
  margin-right: 24px;
  outline: 0;
  padding: 0 40px;
  position: relative;
  text-align: center;
  transition: background 0.15s;
  user-select: none;
  vertical-align: middle;
}

#copy_license {
  cursor: pointer;
  padding: 16px;
  border-radius: 16px;
}

#copy_license:hover {
  background-color: rgb(204, 202, 202);
}

/* The snackbar - position it at the top and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 2147483648; /* Add a z-index if needed */
  right: 24px; /* Center the snackbar */
  top: 30px; /* 30px from the top */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
      However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }
  to {
    top: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }
  to {
    top: 0;
    opacity: 0;
  }
}
