/* @import url('https://fonts.googleapis.com/css2?family=Klee+One&display=swap'); */

body {
  margin: 0;
  padding: 0;
  /* font-family: 'Klee One', cursive; */
  user-select: none;
}

::-webkit-scrollbar {
  height: 16px;
  overflow: visible;
  width: 16px;
}
::-webkit-scrollbar-button {
  height: 0;
  width: 0;
}
body::-webkit-scrollbar-corner {
  background-clip: padding-box;
  background-color: #f5f5f5;
  border: solid #fff;
  border-width: 3px 0 0 3px;
  -webkit-box-shadow: inset 1px 1px 0 rgb(0 0 0 / 14%);
  box-shadow: inset 1px 1px 0 rgb(0 0 0 / 14%);
}
::-webkit-scrollbar-corner {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  border-width: 1px 1px 1px 5px;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
  background-clip: padding-box;
  border: solid transparent;
  border-width: 1px 1px 1px 6px;
  min-height: 28px;
  padding: 100px 0 0;
  -webkit-box-shadow: inset 1px 1px 0 rgb(0 0 0 / 10%), inset 0 -1px 0 rgb(0 0 0 / 7%);
  box-shadow: inset 1px 1px 0 rgb(0 0 0 / 10%), inset 0 -1px 0 rgb(0 0 0 / 7%);
}
::-webkit-scrollbar-track {
  background-clip: padding-box;
  border: solid transparent;
  border-width: 0 0 0 4px;
}
body::-webkit-scrollbar-track-piece {
  background-clip: padding-box;
  background-color: #f5f5f5;
  border: solid #fff;
  border-width: 0 0 0 3px;
  -webkit-box-shadow: inset 1px 0 0 rgb(0 0 0 / 14%), inset -1px 0 0 rgb(0 0 0 / 7%);
  box-shadow: inset 1px 0 0 rgb(0 0 0 / 14%), inset -1px 0 0 rgb(0 0 0 / 7%);
}


.content-install {
  min-width: 300px;
  width: 80%;
  max-width: 1000px;
  height: 100px;
  position: fixed;
  z-index: 1000;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border: 1px solid #8bc34a;
  padding: 20px;
  box-sizing: border-box;
  margin: auto;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.content-news {
  background-color: #8bc34a;
  color: #fff;
  position: absolute;
  top: -15px;
  left: 15px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 8px;
}

.content-button-install {
  padding-left: 10px;
  box-sizing: border-box;
}

.button-install {
  background-color: #fff;
  color: #8bc34a;
  border: 1px solid #8bc34a;
  border-radius: 8px;
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.2s;
}

.button-install:hover {
  background-color: #8bc34a33;
}

.close-install {
  position: absolute;
  top: -10px;
  right: 10px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
  color: #777;
}


