/* Limpezas de estilo default */
/* IMPORT DA FONTE */
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  box-sizing: border-box;
  font-family: "Figtree", sans-serif;
}

body {
  overflow-x: hidden;
  font-family: "Figtree", sans-serif, "Trebuchet MS";
  background-color: var(--bg-color);
}

/* Cores */
:root {
  --bg-color: #373737;
  --bg-color-hover: #f3bd0c;
  --bg-card-preto: #232323;
  --white-color: #fff;
  /* Gradiente */
  --inicio-cor: #fbc449;
  --fim-cor: #de9900;
  --cinza: #c0c0c0;
  --main-yellow: #de9900;
  --main-gradient: linear-gradient(
    to bottom,
    var(--inicio-cor),
    var(--fim-cor)
  );
  /* Fim Gradiente */
}

/*Scroll bar Modificacao*/

/* SCROLL */
/* Comprimento */
  ::-webkit-scrollbar {
      width: 8px;
      height: 30px;

  }
  
  /* Linha da scroll bar */
  ::-webkit-scrollbar-track {
    background: #0c0c0c00; 
  }
   
  /* Barra */
  ::-webkit-scrollbar-thumb {
    background: #DE9900; 
    border-radius: 12px;
  }
  
  /* Barra em Hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #dfb11c; 
  }

  .active-navegacao {
    color: #f0b32f !important;
  }
  .active-navegacao:hover {
    color: #ffffff !important;
  }
/* FIM SCROLL */

/* POPUP Notify */

.notificacao {
  position: absolute;
  z-index: 999;
  top: 25px;
  right: 30px;
  border-radius: 12px;
  background: #232323;
  padding: 20px 35px 20px 25px;
  box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateX(calc(100% + 30px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}

.notificacao.active {
  transform: translateX(0%);
}

.notificacao .notificacao-content {
  display: flex;
  align-items: center;
}

.notificacao-content .check {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: 35px;
  background-color: #de9900;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

.notificacao-content .message {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}

.message .text {
  font-size: 16px;
  font-weight: 400;
  color: white;
}

.message .text.text-1 {
  font-weight: 600;
  color: rgb(247, 176, 23);
}

.notificacao .close {
  position: absolute;
  
  top: 10px;
  color: #fff;
  right: 15px;
  padding: 5px;
  cursor: pointer;
  opacity: 0.7;
}

.notificacao .close:hover {
  opacity: 1;
}

.notificacao .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;

}

.notificacao .progress:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #de9900;
}

.progress.active:before {
  animation: progress 3s linear forwards;
}

p,
span,
div,
h1,
h2,
h3,
a,
button,
label,
i {
 cursor: default !important;
 -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@keyframes progress {
  100% {
    right: 100%;
  }
}

button {
  padding: 12px 20px;
  font-size: 20px;
  outline: none;
  border: none;
  background-color: #2770ff;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #2770ff;
}

.notificacao.active ~ button {
  pointer-events: none;
}

/* FIM POPUP Notify */

@media only screen and (max-width: 641px) {
  ::-webkit-scrollbar {
    width: 4px;
    height: 30px;

}
}