@import url("https://fonts.googleapis.com/css2?family=Overpass:wght@300;400;500;600&display=swap");

* {
  font-family: "Overpass", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
}

body {
  text-align: center;
  font-display: swap;
  font-weight: 400;
}

p {
  font-size: 18px;
  line-height: 30px;
}

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

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

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

.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: CerebriSans-SemiBold, -apple-system, system-ui, Roboto,
    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;
  }
}

/* Onboarding Checklist */

.checkbox-round {
  width: 1.3em;
  height: 1.3em;
  /* background-color: white; */
  border-radius: 50%;
  /* vertical-align: middle; */
  /* border: 1px solid #ddd; */
  /* appearance: none; */
  /* -webkit-appearance: none; */
  /* outline: none; */
  cursor: pointer;
}

.checkbox-round:checked {
  /* background-color: gray; */
}

.chklist_container {
  position: fixed;
  bottom: 0px;
  left: 28px;
  box-shadow: rgb(17 12 46 / 15%) 0px 48px 100px 0px;
  max-width: 350px;
  min-width: 350px;
  z-index: 1100;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: white;
  text-align: start;
  font-size: 16px;
}

.chklist_header {
  background-color: #fff5e5;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 16px;
  padding-bottom: 12px;
  /* 2196f30D */
}

.chklist_div {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 6px 8px;
  font-weight: 500;
  width: 100%;
}

.chklist_li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  margin-left: 12px;
}

.chklist-getstartedbtn {
  padding: 16px;
  border-radius: 6px;
}

.chklist-getstartedbtn:hover {
  background-color: rgba(0, 0, 0, 0.109);
}

.chklist_progress {
  width: 100%;
  height: 20px;
  margin-top: 8px;
}

.chklist_body {
  padding: 16px 4px;
}

.accordion {
  cursor: pointer;
  /* padding: 18px; */
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border-radius: 4px;
}

.active,
.accordion:hover {
  /* background-color: #ccc; */
}

.accordion:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078"; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f077"; /* Unicode character for "minus" sign (-) */
}

.panel {
  padding: 6px 16px;
  margin-left: 26px;
  margin-bottom: 8px;
  display: none;
  background-color: white;
  overflow: hidden;
}

.panel_txt {
  font-size: 16px;
  color: #6c6c7f;
}

.chklist_btn {
  margin-top: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  background-color: #f9ce21;
}

/*  */

/* Checkbox */

.round {
  position: relative;
}

.round label {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  height: 25px;
  left: 0;
  position: absolute;
  top: 0;
  width: 25px;
}

.round label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 7px;
  opacity: 0;
  position: absolute;
  top: 8px;
  transform: rotate(-45deg);
  width: 10px;
  fill: #ffbf00;
}

.round input[type="checkbox"] {
  visibility: hidden;
}

.round input[type="checkbox"]:checked + label {
  background-color: #ffbf00;
  border-color: #fbe1b5;
}

.round input[type="checkbox"]:checked + label:after {
  opacity: 1;
  color: #04aa6d;
}

/*  */
