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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/*Variáveis*/
:root {
  /*cores*/
  --azul-escuro: #101233;
  --laranja: #FF6D00;
  --laranja-claro: #f88b38;
  --azul-cinza: #8488a3;
  --branco: #ffffff;
  --verde: #00ac50;
  --vermelho: #ff6262;
  --roxo: #5037a3;

  --laranjahover: #131b21;
  --verdehover: #00b252;
  --vermelhohover: #ff1f1f;
  --roxohover: #392F5A;

  --percent: 0;
}

/*Tipografia*/

h1 {
  font-size: 24px;
  font-weight: 500;
  color: var(--azul-escuro);
}

h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--azul-escuro);
}

h3,
h3 a {
  font-size: 14px;
  font-weight: 700;
  color: var(--azul-escuro);
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f2fcff;
}

ul {
  list-style: none;
}

/*Padrões*/
.btn,
.dt-buttons .dt-button {
  font-family: "Poppins", sans-serif;
  width: unset !important;
  color: var(--branco);
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: initial;
  z-index: 2;
}

.btn-icon {
  width: 10px;
  height: 10px;
  margin-right: 10px;
}

.btn-laranja {
  background-color: var(--laranja);
}

.btn-laranja:hover {
  background-color: var(--laranjahover);
  transition: 0.3s;
}

.btn-laranjaclaro {
  background-color: #fd8b28;
}

.btn-laranjaclaro:hover {
  background-color: var(--azul-escuro);
  transition: 0.3s;
}


.btn-roxo {
  background-color: var(--roxo);
}

.btn-roxo:hover {
  background-color: var(--roxohover);
  transition: 0.3s;
}

.btn-verde {
  background-color: var(--verde);
}

.btn-verde:hover {
  background-color: var(--verdehover);
  transition: 0.3s;
}

.btn-vermelho {
  background-color: var(--vermelho);
}

.btn-vermelho:hover {
  background-color: var(--vermelhohover);
  transition: 0.3s;
}

.btn-outline {
  background-color: var(--branco);
  color: var(--azul-cinza);
  border: 1px solid var(--azul-cinza);
}

.btn-outline:hover {
  background-color: var(--branco);
  color: var(--azul-escuro);
  border: 1px solid var(--azul-escuro);
  transition: 0.3s;
}

.btn-outline-laranja {
  background-color: var(--branco);
  color: var(--laranja);
  border: 1px solid var(--laranja);
}

.btn-outline-laranja svg path {
  stroke: var(--laranja);
  transition: 0.3s;
}

.btn-outline-laranja:hover {
  background-color: var(--branco);
  color: var(--azul-escuro);
  border: 1px solid var(--azul-escuro);
}

.btn-outline-laranja:hover svg path {
  stroke: var(--azul-escuro);
  transition: 0.3s;
}

hr {
  margin: 30px 0px 40px 0;
  border-top: 1px solid #efefef;
}

label {
  font-size: 12px;
  color: var(--azul-cinza);
  margin-bottom: 6px;
  display: block;
}

input,
select {
  height: 40px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #dfe1f0;
  padding: 0 15px;
  color: var(--azul-cinza);
  display: block;
  margin-bottom: 30px;
  outline: none;
}

textarea {
  width: 100%;
  font-family: "Poppins", sans-serif;
  outline: none;
  border-radius: 5px;
  border: 1px solid #dfe1f0;
  color: var(--azul-cinza);
  display: block;
  padding: 20px;
  margin-bottom: 30px;
}

input:focus,
select:focus {
  border: 1px solid var(--laranja);
  color: var(--laranja);
}

input[type="submit"]:focus {
  color: var(--branco) !important;
  border: none !important;
}

input[type="checkbox"] {
  border: 1px solid #34f703 !important;
  height: 15px;
  width: 15px;
  margin-bottom: 0px !important;
}

.material-icons {
  font-size: 24px !important;
}

.d-flex {
  display: flex;
  justify-content: space-between;
}

/********************************************************/
/******************** Tela de Login *********************/
/********************************************************/

.sec-login {
  display: flex;
  justify-content: space-between;
  height: 100vh;
}

.sec-login .login {
  position: relative;
  flex-basis: 100%;
  background-color: #f3f3f3;
}

.content-login {
  width: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
    padding: 50px;
    border-radius: 20px;
}

.content-login h3 {
  font-size: 16px;
  color: #000023;
  font-weight: 500;
  padding-bottom: 30px;
}

.content-login p {
  font-size: 14px;
  margin-bottom: 30px;
  color: var(--azul-cinza);
}

.image-logo-login {
  display: block;
  margin: 0 auto 100px auto;
}

.fundo-login {
  background-image: url("../images/fundo-login2.jpg");
  height: 100vh;
  width: 100%;
  flex-basis: 50%;
  background-position: center;
  background-size: cover;
}

.check-conectado {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  margin-top: -25px;
  margin-bottom: 10px;
}

.check-conectado input {
  width: 15px;
  height: 15px;
  margin-bottom: 0px;
}

.check-conectado label {
  font-size: 12px;
  color: #9e9e9e;
  padding: 10px 10px 5px 10px;
}

.btn-login {
  background-color: var(--laranja);
  color: var(--branco);
  font-weight: 700 !important;
  cursor: pointer;
  height: 40px;
  width: 100%;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 5px;
  display: block;
  text-align: center;
}

.btn-login:hover {
  background-color: var(--laranjahover);
  color: var(--branco);
  font-weight: 700 !important;
  cursor: pointer;
  transition: 0.3s;
}

.acount-actions {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

.acount-actions a {
  font-size: 14px;
  color: var(--azul-cinza);
}
.acount-actions a:hover {
  color: var(--laranja);
}

.assinatura-reframe {
  border-top: 1px solid #dbdbdb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.assinatura-reframe img {
  margin-top: 30px;
  width: 150px;
}

/*****Trigger******/

.msg-error {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 12px !important;
  background-color: #ff0000;
  padding: 15px 10px 15px 60px;
  border-radius: 5px;
  text-align: left;
  margin-top: 20px;
  display: block;
  justify-content: center;
  align-items: center;
  transition: ease-in all 0.5s;
  margin-bottom: 15px;
}

.msg-error:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 24px;
  height: 24px;
  background: url("../images/icon-error.svg");
  margin-left: 20px;
}

.msg-error-popup {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 12px !important;
  background-color: #ff0000;
  padding: 15px 10px 15px 60px;
  border-radius: 5px;
  text-align: left;
  margin-top: 20px;
  display: none;
  justify-content: center;
  align-items: center;
  transition: ease-in all 0.5s;
}

.msg-error-popup:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 24px;
  height: 24px;
  background: url("../images/icon-error.svg");
  margin-left: 20px;
}

.msg-success {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 12px !important;
  background-color: #41b962;
  padding: 15px 10px 15px 60px;
  border-radius: 5px;
  text-align: left;
  margin-top: 20px;
  display: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.msg-success:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 24px;
  height: 24px;
  background: url("../images/icon-success.svg");
  margin-left: 20px;
}

.msg-success-popup {
  position: relative;
  width: 100%;
  color: #fff;
  font-size: 12px !important;
  background-color: #41b962;
  padding: 15px 10px 15px 60px;
  border-radius: 5px;
  text-align: left;
  margin-top: 20px;
  display: none;
  justify-content: center;
  align-items: center;
}

.msg-success-popup:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 24px;
  height: 24px;
  background: url("../images/icon-success.svg");
  margin-left: 20px;
}

.add-project-popup .msg-success,
.add-project-popup .msg-error,
.exclude-project-popup .msg-success,
.exclude-project-popup .msg-error,
.edit-project-popup .msg-success,
.edit-project-popup .msg-error,
.controle-popup .msg-success,
.controle-popup .msg-error,f
.open-popup .msg-success,
.open-popup .msg-error,
.add-pasta-popup .msg-success,
.add-pasta-popup .msg-error {
  display: none;
}
#lista-arquivos{
  padding: 10px 0 0 20px;
  list-style-type: square;
}

/********************************************************/
/********************** Projetos ************************/
/********************************************************/

.container {
  padding: 30px 60px;
}

.page-title {
  display: flex;
  align-items: center;
  height: 100%;
}

.page-title a {
  border-right: 1px solid #e1e1e1;
  height: 100%;
  padding: 20px 30px 20px 0px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.page-title a p {
  font-size: 14px;
  padding-left: 15px;
  color: #000023;
  cursor: pointer;
}

.page-title h1 {
  margin-left: 30px;
}

.top-bar form {
  width: 25%;
  display: flex;
}
.top-bar form input {
  margin-bottom: 0;
}

.search-bar {
  width: 85%;
  height: 40px;
  background-color: var(--branco);
  border: 1px solid #e9e9e9;
  border-radius: 5px 0 0 5px;
  color: var(--azulescuro);
  font-size: 12px;
  padding: 0px 15px;
}

.search-icon {
  width: 15%;
  height: 40px;
  background-color: var(--branco);
  border: 1px solid #e9e9e9;
  border-radius: 0 5px 5px 0;
}
.search-icon:hover {
  background-color: var(--laranja);
  transition: all 0.3s;
}

/*Tooltip*/

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip:hover .tooltip-content {
  visibility: visible;
}
.ver-anotacao:hover ~ .tooltip-content-anotacao {
  visibility: visible;
}

.tooltip-content {
  display: flex;
  flex-direction: column;

  position: absolute;
  visibility: hidden;
  width: auto;
  background-color: #4a4a4a;
  color: white;
  text-align: center;
  border-radius: 5px;
  bottom: 100%;
  left: 0;
  /* margin-left: -38px; */
  margin-bottom: 10px;
  padding: 10px;
}

.tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #4a4a4a transparent transparent transparent;
}

.tooltip-content-anotacao {
  display: flex;
  flex-direction: column;

  position: absolute;
  visibility: hidden;
  width: 250px;
  background-color: var(--laranja);
  color: white;
  text-align: center;
  border-radius: 5px;
  bottom: 100%;
  left: 65px;
  white-space: normal;
  /* margin-left: -38px; */
  margin-bottom: 10px;
  padding: 15px;
  font-size: 11px;
  font-weight: normal;
  text-align: left;
}

.tooltip-content-anotacao::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--laranja) transparent transparent transparent;
}

/*Breadcrumb*/
.breadcrumb {
  margin: 0 auto;
  padding: 30px 60px 0 60px;
  display: flex;
  justify-content: space-between;
}

.breadcrumb ul {
  display: flex;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-of-type)::after {
  content: "\203a";
  margin: 0 10px;
  color: #c1c3d1;
}

.breadcrumb-link {
  text-decoration: none;
  font-size: 12px;
  display: flex;
  align-items: center;
  color: #c1c3d1;
}

.breadcrumb-link:hover {
  color: #8488a3;
}

.breadcrumb-link-active {
  color: #8488a3;
}

.breadcrumb-icon {
  font-size: 15px !important;
  padding-right: 5px;
  color: #c1c3d1;
}

.breadcrumb-icon:hover {
  font-size: 15px !important;
  padding-right: 5px;
  color: #8488a3;
}

.botao-voltar a {
  display: flex;
  align-items: center;
  color: #8488a3;
  cursor: pointer;
}

.botao-voltar a:hover {
  color: var(--azul-escuro);
}

.botao-voltar span {
  font-size: 15px !important;
  padding-right: 5px;
}

.botao-voltar p {
  font-size: 13px;
}

/*Main Header*/

.main-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.main-header p {
  font-size: 12px;
  color: var(--azul-cinza);
}
.main-header h1 a{
  color: var(--azul-escuro);
  text-decoration: underline;
}

/*Top bar*/
.top-bar {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  border-bottom: 1px solid #e1e1e1;
  background-color: white;
  padding: 0px 60px;
  height: 100px;
}

.top-bar .logo-empresa {
  margin-top: 5px;
}

.top-bar .sec-titulo {
  display: flex;
  align-items: center;
}

.top-bar .sec-titulo .logo-empresa {
  margin-right: 30px;
  border-right: 1px solid #e1e1e1;
  height: 100%;
  width: 170px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.top-bar .sec-titulo .logo-empresa a {
  margin-bottom: -5px;
}

.nav-bar ul {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.nav-bar li {
  padding: 15px;
  margin-right: 20px;
}

.nav-bar li a {
  font-size: 14px;
  display: flex;
  align-items: center;
  color: var(--azul-escuro);
  transition: 0.3s;
}

.nav-bar li a:hover {
  color: var(--laranja);
  transition: 0.3s;
}

.nav-bar li a:active {
  color: var(--verde);
  transition: 0.3s;
}

.nav-bar li a span {
  font-size: 14px;
  margin-right: 10px;
}

.perfil {
  position: absolute;
  top: 23px;
  right: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.perfil p {
  font-size: 14px;
  padding: 10px 30px 10px 10px;
  text-align: center;
  border-radius: 5px;
}

.perfil a {
  font-size: 14px;
  color: var(--azul-escuro);
}

.perfil a.logout {
  font-size: 12px;
  color: #8488a3;
  display: flex;
  align-items: center;
  padding: 10px;
  transition: 0.3s;
}

.perfil a.logout:hover {
  color: var(--laranja);
}

.perfil a.logout img {
  margin-right: 3px;
}

.perfil a.logout .icon-config,
.icon-logout {
  margin-right: 3px;
  font-size: 22px !important;
}

.perfil .action-perfil {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.perfil .logo-perfil {
  display: block;
  margin-bottom: -5px;
  margin-left: 15px;
  margin-top: -5px;
}

.perfil .logo-perfil img {
  width: 100%;
  border-radius: 5px;
  margin: -11px 0 0 0;
}

.sub-header {
  position: relative;
  height: 100px;
  margin-left: 100px;
}

.sub-header .active {
  color: var(--laranja) !important;
  border-bottom: 2px solid var(--laranja);
  /* transition: 0.2s; */
}

.sub-header nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .sub-header nav ul li {
  padding: 10px 30px;
} */
.sub-header nav ul li a {
  display: flex;
  align-items: center;
  color: var(--azul-cinza);
  font-size: 14px;
  font-weight: regular;
  height: 100px;
  padding: 0 30px;
}

.sub-header nav ul li a:hover {
  color: var(--laranja);
  border-bottom: 2px solid var(--laranja);
}

.sub-header nav ul li a span {
  margin-right: 8px;
}

.sub-header .perfil {
  font-size: 14px;
  position: absolute;
  top: 0;
  right: 0;
  padding: 18px 40px 0 0;
  display: flex;
}

.sub-header .perfil a {
  color: var(--azul-escuro);
}

.sub-header .perfil .logout {
  display: flex;
  align-items: center;
  color: var(--azul-cinza);
  margin-left: 30px;
  transition: 0.3s;
}

.sub-header .perfil .logout:hover {
  color: var(--laranja);
  transition: 0.3s;
}

.link-home {
  color: var(--azul-cinza);
  background-color: #e5f5fa;
  padding: 13px 13px 10px 13px;
  border-radius: 5px;
  transition: 0.3s;
  width: 50px;
  height: 50px !important;
  justify-content: center;
  margin-right: 40px;
  display: none !important;
}

.link-home:hover {
  color: var(--branco) !important;
  background-color: var(--laranja);
}

.link-home span {
  margin-right: 0px !important;
}

.sub-menu {
  position: relative;
  height: 100px;
  width: 200px;
}

.sub-menu .sub-menu-content {
  visibility: hidden;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.sub-menu:hover .sub-menu-content {
  visibility: visible !important;
  position: absolute !important;
  top: 100px !important;
  left: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  background-color: white !important;
  border-radius: 0 0 10px 10px !important;
  border: 1px solid #e1e1e1 !important;
}

.sub-menu:hover .sub-menu-content li {
  width: 100%;
}

.sub-menu:hover .sub-menu-content li a {
  height: 50px;
  text-align: center;
}

.sub-menu:hover .sub-menu-content li a.active {
  background-color: rgb(238, 238, 238);
  color: var(--laranja);
  border: none;
}
.sub-menu:hover .sub-menu-content li:last-child a.active {
  background-color: rgb(238, 238, 238);
  color: var(--laranja);
  border: none;
  border-radius: 0 0 10px 10px;
}

/**/

.box-list-projects {
  position: relative;
  display: grid;
  grid-template-columns: 2% auto 10% 10% max-content;
  background-color: var(--branco);
  padding: 30px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 5px 20px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 20px 5px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.quantity-files {
  font-size: 12px;
  font-weight: 400;
  color: var(--azul-cinza);
}

.ultima-att {
  font-size: 12px;
  font-weight: 400;
  color: var(--azul-cinza);
}

.departamentos {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}

.departamentos p {
  background-color: #f2f2f2;
  padding: 3px 10px;
  border-radius: 3px;
  margin-right: 5px;
  margin-bottom: 5px;
  color: var(--azul-escuro);
  font-weight: 400;
}

.categorias {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}

.categorias p {
  background-color: #f1f3ff;
  padding: 3px 10px;
  border-radius: 3px;
  margin-right: 5px;
  margin-bottom: 5px;
  color: var(--azul-escuro);
  font-weight: 400;
}

.entregas {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}

.entregas p {
  background-color: #ffebe1;
  padding: 3px 10px;
  border-radius: 3px;
  margin-right: 5px;
  margin-bottom: 5px;
  color: var(--azul-escuro);
  font-weight: 400;
}
.entregas p#brasil-center {
  display: none;
}

.link-projects {
  font-size: 12px;
  font-weight: 500;
  color: var(--laranja);
}

.link-projects a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--laranja);
}

.link-projects img {
  padding-left: 10px;
  width: 17px;
}

/**More Option Projetos**/
.options-projects {
  display: flex;
  justify-content: space-evenly;
  justify-self: end;
  position: relative;
}

.more-options {
  position: absolute;
  top: 0;
  right: -20px;
  border: 1px solid #cbcbcb;
  background-color: white;
  padding: 10px 20px;
  width: auto;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  z-index: 999;
}

.more-options-active {
  visibility: visible;
  opacity: 1;
  top: 30px;
}

.btn-more-options {
  cursor: pointer;
}

.more-options .options {
  display: flex;
  border-bottom: 1px solid rgb(211, 211, 211);
  padding: 8px 5px;
}

.more-options .options:last-child {
  display: flex;
  border-bottom: none;
  padding: 8px 5px;
}

.more-options .options a {
  padding: 5px 15px 5px 8px;
  font-size: 14px;
  color: var(--azul-cinza);
  cursor: pointer;
}

.more-options .options a:hover {
  color: var(--laranja);
}

.resposta {
  margin-top: 80px;
}

/*Add project popup*/

.add-project-popup,
.add-pasta-popup {
  visibility: hidden;
  opacity: 0;
  transition: ease-in all 0.3s;
}
.add-project-popup.active,
.add-pasta-popup.active {
  visibility: visible;
  opacity: 1;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--azul-escuro);
  opacity: 15%;
  width: 100%;
  height: 100vh;
}

.content-project-popup,
.content-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-color: var(--branco);
  width: 600px;
  /* max-height: 600px; */
  height: auto;
  border-radius: 5px;
  padding: 40px;
  /* overflow-y: scroll; */
}

.content-project-popup input[type="submit"],
.content-popup input[type="submit"] {
  float: right;
  margin-bottom: 0px;
}

.header-popup {
  /* display: flex;
  justify-content: space-between; */
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0f0f5;
  margin-bottom: 30px;
}
.header-popup img {
  cursor: pointer;
  position: absolute;
  top: -10px;
  right: 20px;
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 50%;
}

.dropdowns-select {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.dropdowns-select.coordenadores {
  padding-bottom: 0;
}

.dropdowns-select > div {
  flex-basis: 48%;
  position: relative;
}
.dropdowns-select > div.double {
  flex-basis: 100%;
}
.dropdowns-select > div.double .open-multiselect {
  width: 100%;
}
#blk-lista-usuarios .form-check-label,
#blk-lista-usuarios-edit .form-check-label {
  max-width: 450px;
  text-transform: uppercase;
}

.select-departamentos {
  display: flex;
  justify-content: space-between;
}

.select-departamentos div {
  flex-basis: 48%;
}

.select-perfil,
.select-tipo-entrega {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 15px 5px;
  margin-bottom: 30px;
}

.select-perfil div,
.select-tipo-entrega div {
  display: flex;
}

.select-perfil div label,
.select-tipo-entrega div label {
  padding-left: 10px;
  margin-bottom: 0px;
}

.select-tipo-entrega .sub-entrega {
  position: absolute;
  top: 75px;
  left: 0;
  background-color: transparent;
  border-radius: 5px;
  padding: 15px;
}

/*Edit project popup*/

.edit-project-popup {
  visibility: hidden;
  opacity: 0;
  transition: ease-in all 0.3s;
}
.edit-project-popup.active {
  visibility: visible;
  opacity: 1;
}

.edit-project-popup .content-project-popup form p,
.edit-popup .content-popup form p {
  margin-bottom: 20px;
}

/*Exclude project popup*/

.exclude-project-popup,
.controle-popup {
  visibility: hidden;
  opacity: 0;
  transition: ease-in all 0.3s;
}
.exclude-project-popup.active,
.controle-popup.active {
  visibility: visible;
  opacity: 1;
}

.exclude-project-popup .content-project-popup form p,
.controle-popup .content-popup form p {
  margin-bottom: 20px;
}

.exclude-btns {
  display: flex;
  justify-content: space-between;
  float: none;
}

/*Add arquivo popup*/
.add-arquivos-popup {
  visibility: hidden;
  opacity: 0;
}
.add-arquivos-popup.active {
  visibility: visible;
  opacity: 1;
}

.add-arquivos-popup p {
  font-size: 12px;
  color: var(--azul-cinza);
  /* text-align: center; */
  padding-bottom: 10px;
}

.add-arquivos-popup .name-arquivos {
  padding: 15px 0;
  border-top: 1px solid #e0f0f5;
  border-bottom: 1px solid #e0f0f5;
}

.add-arquivos-popup input[type="file"] {
  display: none;
}

.add-arquivos-popup .select-file {
  margin-left: auto;
  margin-right: auto;
  display: table;
  padding: 10px 0 40px 0;
}
.speech-wrapper{
  /* display: flex; */
  height: 300px;
  overflow: hidden;
  overflow-y: scroll;
}
 
.speech-wrapper .bubble {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  background: #f5f5f5;
  border-radius: 4px;
  /* box-shadow: 2px 8px 5px #000; */
  position: relative;
  margin: 15px 15px 15px 15px;
  float: left;
}

.speech-wrapper .bubble.self {
  float: right;
  background: #fbeee6;
}

.speech-wrapper .bubble .txt {
  padding: 8px 55px 8px 14px;
}
.speech-wrapper .bubble .txt p{
  padding-bottom: 0;
}
.speech-wrapper .bubble .txt .name {
  font-weight: 600;
  font-size: 12px;
  margin: 0 0 4px;
  color: var(--laranja);
}

.speech-wrapper .bubble .txt .name span {
  font-weight: normal;
  color: #b3b3b3;
}
.speech-wrapper .bubble.self .txt .name span {
  color: #f5f5f5;
}

.speech-wrapper .bubble .txt .message {
  font-size: 12px;
  margin: 0;
  color: #2b2b2b;
  padding-bottom: 20px;
}

.speech-wrapper .bubble .txt .timestamp {
  font-size: 11px;
  position: absolute;
  bottom: 8px;
  right: 10px;
  text-transform: uppercase;
  color: #999;
}

.speech-wrapper .bubble .bubble-arrow {
  position: absolute;
  width: 0;
  bottom: 42px;
  left: -16px;
  height: 0;
}

.speech-wrapper .bubble.self .bubble-arrow {
  right: -2px;
  bottom: 40px;
  left: auto;
}

.speech-wrapper .bubble .bubble-arrow:after {
  content: "";
  position: absolute;
  border: 0 solid transparent;
  border-top: 9px solid #f5f5f5;
  border-radius: 0 20px 0;
  width: 15px;
  height: 30px;
  transform: rotate(145deg);
}

.speech-wrapper .bubble.self .bubble-arrow:after {
  transform: rotate(45deg) scaleY(-1);
  border-top: 9px solid #fbeee6;
}
.speech-wrapper .anotacao_anterior{
  display: block;
  width: 95%;
  margin: 0 auto;
  font-size: 12px;
  background: #eee;
  padding: 8px 55px 8px 14px;
}

/*******************/
/***Filtro Select***/
/*******************/
/* .btn-group {
  overflow: hidden;
  height: auto;
  cursor: pointer;
}

.btn-group.open{
  overflow: visible;
  height: auto;
} */
.open-multiselect {
  position: absolute;
  width: 250px;
  height: 40px;
  top: 25px;
  z-index: 1;
}
.multiselect-container.dropdown-menu {
  display: none;
  background-color: rgb(255, 255, 255);
  position: relative;
  border: 1px solid #c5c5c5;
  border-radius: 5px;
  padding-bottom: 10px;
  height: 180px;
  overflow-y: scroll;
  position: absolute;
  z-index: 100;
  width: 250px;
}
#blk-lista-usuarios-edit .multiselect-container.dropdown-menu,
#blk-lista-usuarios-add .multiselect-container.dropdown-menu{
  width: 520px;
}

.multiselect-container .multiselect-filter > input.multiselect-search {
  margin-left: 0rem !important;
  margin-bottom: 10px;
  padding-left: 2.3rem;
}

.multiselect-container .multiselect-filter > .fa-search {
  z-index: 1;
  padding-left: 0rem;
}

label.form-check-label {
  padding-left: 10px;
  max-width: 190px;
}

span.multiselect-group.dropdown-item-text {
  display: block;
  font-size: 14px;
  cursor: pointer;
}
/*span.multiselect-group.dropdown-item-text::before{
  content: "Clique para selecionar todos os filhos";
  position: absolute;
  background-color: #f5f5f5;
  border-radius: 5px;
  padding-left: 15px 5px;
}*/

button.dropdown-item {
  width: 100%;
  background-color: white;
}

button.dropdown-item .form-check {
  display: flex;
  padding: 5px 5px 0 0 !important;
  text-align: initial;
}

button.dropdown-item.multiselect-all.active {
  background-color: #efefef !important;
}

button.multiselect-option.dropdown-item.active {
  background-color: #efefef !important;
}

.multiselect-container .multiselect-option.multiselect-group-option-indented {
  padding-left: 30px;
}

button.dropdown-item {
  border: none;
}

button.multiselect.dropdown-toggle.custom-select {
  height: 40px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #dfe1f0;
  padding: 0 15px;
  color: var(--azul-cinza);
  display: block;
  outline: none;
  cursor: pointer;
  position: relative;
}

button.multiselect.dropdown-toggle.custom-select::after {
  display: block;
  font-family: "Material Icons";
  content: "arrow_drop_down";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  font-size: 20px;
}

.multiselect-filter.d-flex.align-items-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

span.material-icons.search-dropdown {
  position: absolute;
  top: 40%;
  left: 5px;
  transform: translateY(-50%);
  color: #c1c1c1;
}

/*header arquivos*/

.header-entrega {
  background: rgb(252, 238, 230);
  background: linear-gradient(
    90deg,
    rgba(252, 238, 230, 1) 0%,
    rgb(242 252 255) 100%
  );
  padding: 15px 20px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  /* position: absolute;
  top: 0;
  left: 0; */
  width: 70%;
}

.header-com-arquivo .header-entrega {
  margin-bottom: -80px !important;
}

.header-entrega .titulo-entrega {
  display: flex;
  align-items: center;
  background-color: azure;
  padding: 5px 15px;
  border-radius: 5px;
  margin-right: 30px;
  height: 40px;
}

.header-entrega .titulo-entrega p {
  font-size: 11px;
  margin-right: 10px;
  color: #ababab;
}

.header-entrega .titulo-entrega h1 {
  font-size: 16px;
  color: var(--laranja);
}

div#lista-arquivos_wrapper {
  margin-bottom: 30px;
}

/* .header-entrega h1 {
  background-color: white;
  padding: 5px 15px;
  font-size: 14px;
  border-radius: 10px;
  color: #f68d2e;
  margin-right: 30px;
} */

/**************/
/***DataTable**/
/**************/

div#lista-arquivos_length label {
  display: flex;
  align-items: center;
}

div#lista-arquivos_length select {
  margin-bottom: 0px !important;
  margin-left: 8px;
  margin-right: 8px;
}

.dataTables_wrapper .dataTables_length {
  float: right !important;
  margin-left: 30px;

  margin-bottom: 15px;
  padding-top: 10px;
}

.dataTables_wrapper .dataTables_length select {
  width: auto !important;
  display: inline;
  margin-bottom: 0px !important;
}

/* .dataTables_filter {
  padding-top: 10px;
} */

div.dataTables_filter label {
  display: flex;
  align-items: center;
}

div.dataTables_filter input {
  margin-bottom: 0px;
}

.table-arquivos {
  background-color: var(--branco);
}

.head-table {
  color: #9f9f9f;
  font-size: 14px;
  -webkit-box-shadow: 0px 4px 15px 5px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 4px 15px 5px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
}

.table-arquivos th {
  padding: 20px 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

.table-arquivos td {
  font-size: 11px !important;
  font-weight: 500;
  text-align: center;
}

.table-arquivos .author {
  background-color: #f2f2f2;
  padding: 3px;
  border-radius: 3px;
}

.table-arquivos .arquivos {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.sec-arquivos {
  display: flex;
  /* grid-template-columns: 60% 30% 10%; */
  justify-content: space-between;
  align-items: center;
}

.content-anotacao {
  white-space: initial;
  text-align: left;
  color: var(--azul-cinza);
  line-height: 12px;
  font-weight: normal;
  padding: 0 20px;
}

.anotacoes {
  color: #c1c3d1;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}

.clear-anotacao {
  font-size: 12px;
  color: var(--azul-cinza);
}

.anotacoes .material-icons {
  user-select: none;
}

.anotacoes .material-icons:hover {
  color: var(--laranja);
}

.options-anotacoes {
  background-color: rgb(255, 255, 255);
  border: 1px solid #e4e4e4;
  z-index: 5;
  padding: 10px;
  position: absolute;
  top: 25px;
  left: 10px;
  border-radius: 5px;
  display: none;
  transition: 0.3s;
}

.options-anotacoes.options-anotacoes-active {
  display: block;
  transition: 0.3s;
}

.add-anotacao {
  background-color: #f5f5f5;
  border-radius: 5px;
  outline: none;
  border: none;
  font-size: 11px !important;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 3px 8px;
  cursor: pointer;
}

.add-anotacao .material-icons {
  color: var(--laranja);
  font-size: 20px !important;
  margin-right: 3px;
}

.more-opt {
  color: #c1c3d1;
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding: 7px 0;
}

.more-opt:hover {
  color: var(--laranja) !important;
}

.more-opt .material-icons {
  font-size: 18px !important;
  margin-right: 5px;
}

/*teste note*/

.icon-note {
  position: relative;
}

.icon-note .material-icons {
  font-size: 20px !important;
  color: #c1c3d1;
  margin-top: 3px;
}

.indicador {
  position: absolute;
  top: 0;
  right: -5px;
  background-color: var(--laranja);
  width: 12px;
  height: 12px;
  font-size: 8px;
  color: white;
  border-radius: 50%;
  padding-top: 1px;
}

.arquivo-name {
  width: auto;
}
.arquivo-tamanho {
  width: 10%;
}
.arquivo-data {
  width: 10%;
}
.arquivo-autor {
  width: 10%;
}
.arquivo-acoes {
  width: 10%;
}

.projeto-name {
  width: 15% !important;
}
.projeto-departamento {
  width: 20% !important;
}
.projeto-categoria {
  width: 20% !important;
}
.projeto-entrega {
  width: 15% !important;
}

.projeto-info-atualizacao {
  width: 10% !important;
}

.projeto-tamanho {
  width: 10% !important;
}
.projeto-acoes {
  width: 10% !important;
}

.btn-add-projeto {
  margin-bottom: -50px;
  display: flex;
}

tr {
  background-color: var(--branco) !important;
}

td {
  padding: 30px !important;
}

.odd {
  background-color: var(--branco) !important;
}
.odd td {
  padding: 20px 30px 20px 30px !important;
}

tr.odd > .sorting_1 {
  min-width: 350px;
  background-color: transparent !important;
}

.even {
  background-color: var(--branco) !important;
}
.even td {
  padding: 20px 30px 20px 30px !important;
}

tr.even > .sorting_1 {
  min-width: 350px;
  background-color: transparent !important;
}

.name-arquivos {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  text-align: left;
  
}
.table-arquivos td.select-checkbox {
  padding: 0 0 0 60px !important;
}

.name-arquivos h3 {
  text-align: left;
}

.name-arquivos div {
  padding-left: 30px;
}

.name-arquivos p {
  font-size: 11px;
  font-weight: 400;
  color: var(--azul-cinza);
  text-align: start;
}
.name-arquivos img{
  max-width: 39px;
}

.ações {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.ações a {
  cursor: pointer;
}

.ações img {
  padding: 0 13px;
}

table.dataTable.row-border tbody th,
table.dataTable.row-border tbody td,
table.dataTable.display tbody th,
table.dataTable.display tbody td {
  border-top: 1px solid #e0f0f5 !important;
}

table.dataTable thead th,
table.dataTable thead td {
  padding: 10px 18px;
  border-bottom: 1px solid #e0f0f5;
}

table.dataTable tfoot th,
table.dataTable tfoot td {
  padding: 10px 18px 6px 18px;
  border-top: 1px solid #e0f0f5 !important;
}

/**páginação**/

.paginate_button {
  font-size: 12px;
  color: var(--azul-cinza);
  cursor: pointer;
}

.dataTables_info {
  font-size: 12px;
  color: var(--azul-cinza);
}

a.paginate_button.current {
  border: 1px solid var(--laranja) !important;
  width: 30px;
  height: 30px;
  border-radius: 50% !important;
  background-color: var(--laranja) !important;
  background: none !important;
  font-size: 12px;
}

div#lista-arquivos_paginate {
  margin-top: 30px;
}

/**Display nones*
div#lista-arquivos_length {
    display: none;
}*/

/********************************************************/
/********************** Feature anotações ************************/
/********************************************************/

/********************************************************/
/********************** Editar Perfil ************************/
/********************************************************/

.editar-perfil {
  width: 500px;
  margin: 0 auto;
  margin-top: 60px;
}

.editar-perfil h3 {
  padding-bottom: 30px;
}
#blk-senha {
  display: none;
}

.config {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  margin-top: 50px;
}

.config .sidebar-config {
  flex-basis: 30%;
  border-right: 1px solid rgb(234 234 234);
  padding-right: 30px;
}

.config .sidebar-config h2 {
  margin-bottom: 30px;
}

.config .sidebar-config .nav-list a {
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 10px;
  align-items: center;
  padding: 15px 35px;
  border-radius: 8px;
  border: 1px solid #d2d2d2;
  color: var(--azul-escuro);
  margin-bottom: 10px;
  justify-content: flex-start;
  transition: ease-in 0.3s;
}

.config .sidebar-config .nav-list a:hover {
  background-color: var(--laranja);
  color: var(--branco);
  transition: ease-in 0.3s;
}

.config .sidebar-config .nav-list a.active {
  background-color: var(--laranja) !important;
  color: var(--branco) !important;
  transition: ease-in 0.3s;
  border: none;
}

.config .sidebar-config .nav-list a span {
  font-size: 14px;
  text-align: center;
}

.config-edit {
  flex-basis: 70%;
  margin-left: 30px;
}

.config-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.config-header .voltar {
  display: flex;
}

.config-header .voltar img {
  margin-right: 10px;
}

.config-header .voltar a {
  font-size: 14px;
  color: var(--azul-escuro);
}

.text-alterar-senha {
  margin-bottom: 30px;
}

a#alterar-senha {
  color: var(--azul-cinza);
  background-color: #e0edf1;
  padding: 5px 10px;
  border-radius: 5px;
}

/********************************************************/
/********************** Editar Perfil ************************/
/********************************************************/
.user {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  /*border-bottom: 1px solid #d2d2d2;*/
  margin-bottom: 20px;
  background-color: var(--branco);
  border-radius: 5px;
  -webkit-box-shadow: 0px 3px 5px 0px rgb(0 0 0 / 5%);
  box-shadow: 0px 3px 5px 0px rgb(0 0 0 / 5%);
}

.arrow-acoes {
  color: #c1c3d1;
  cursor: pointer;
  background-color: #f7f7f7;
  border-radius: 50%;
  margin: 0 15px;
}

.lista-filhos {
  /*border: 1px solid red;*/
  padding: 0;
  margin: 0;
  height: 0;
  overflow: hidden;
}
.lista-filhos.open {
  height: 100%;
  overflow: visible;
}

.user.filho {
  width: 90%;
  float: right;
  position: relative;
}

img.conect-cats {
  position: absolute;
  top: -75px;
  left: -30px;
  z-index: -1;
}

.user .user-name {
  font-size: 14px;
  color: var(--laranja);
  font-weight: bold;
}

.user.filho p.user-name {
  color: var(--azul-cinza) !important;
  font-weight: normal;
}

/********************************************************/
/********************** Drop Zone************************/
/********************************************************/
.lista-arquivos {
  min-height: 100px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  padding: 20px;
  max-height: 350px;
  overflow-y: auto;
}
.lista-arquivos::before {
  content: "Clique ou arraste seus arquivos";
  display: block;
  text-align: center;
  margin-top: 30px;
  width: 60%;
  margin: 50px auto;
  background-color: #d1782c;
  color: white;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}
.lista-arquivos.dz-started::before {
  display: none;
}
.lista-arquivos .dz-preview {
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  border-bottom: 1px solid #e1e1e1;
  padding: 10px 0px;
}

.detalhes-up-arquivos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lista-arquivos .dz-preview:last-child {
  border-bottom: none;
}
/* .lista-arquivos .dz-details{
    padding-left: 30px;
} */
.lista-arquivos .dz-image {
  display: none;
}
.lista-arquivos .dz-filename {
  font-size: 14px;
  font-weight: 700;
  color: var(--azul-escuro);
}
.lista-arquivos .dz-size,
.lista-arquivos .dz-size strong {
  font-size: 11px;
  font-weight: 400;
  color: var(--azul-cinza);
  text-align: start;
}

.dz-success-mark {
  display: none;
}
.dz-error-mark {
  display: none;
}

.dz-details {
  flex-basis: 75%;
}
/*progress*/

.dz-progress {
  flex-basis: 20%;
  height: 6px;
  background-color: #e4e4e4;
  border-radius: 3px;
}

.dz-error-message {
  font-size: 11px;
  color: red;
  /* background-color: #ff0000; */
  /* padding: 10px 20px; */
  border-radius: 5px;
  margin: 5px 0;
  font-weight: 600;
}

span.dz-upload {
  height: 6px;
  background-color: #56d675;
  display: block;
  border-radius: 3px;
}

/*Add pop up*/
.popup {
  visibility: hidden;
  opacity: 0;
  transition: ease-in all 0.3s;
}

.popup.active {
  visibility: visible;
  opacity: 1;
}
table.dataTable tbody td{
  position: relative;
}
table.dataTable tbody td.select-checkbox:before,
table.dataTable tbody th.select-checkbox:before {
  content: " ";
  margin-top: 0px !important;
  border: 1px solid #c1c3d1 !important;
}

table.dataTable tbody td.select-checkbox:before,
table.dataTable tbody td.select-checkbox:after,
table.dataTable tbody th.select-checkbox:before,
table.dataTable tbody th.select-checkbox:after {
  display: block;
  position: absolute;
  top: 1.2em;
  left: 30px !important;
  width: 16px !important;
  height: 16px !important;
  box-sizing: border-box;
}

table.dataTable.stripe tbody tr.odd.selected,
table.dataTable.display tbody tr.odd.selected {
  background-color: #ededed !important;
}

table.dataTable.stripe tbody tr.even.selected,
table.dataTable.display tbody tr.even.selected {
  background-color: #f7f7f7 !important;
}


table.dataTable tr.selected td.select-checkbox:after,
table.dataTable tr.selected th.select-checkbox:after {
  font-family: 'Material Icons';
    content: 'check_box';
    font-size: 20px;
    margin-top: -13px;
    margin-left: -8px;
    text-align: center;
    color: #ff6d00;
    text-shadow: none !important;
}

/*select all*/
table.dataTable tr th.select-checkbox.selected::after {
  font-family: "Material Icons" !important;
    content: '\e834';
    font-size: 20px;
    margin-top: -4px;
    margin-left: -8px;
    text-align: center;
    color: #E35205;
    text-shadow: none !important;
}

#dt-user-name table.dataTable tr th.select-checkbox.selected::after {
  content: "✔";
  font-size: 20px;
  margin-top: -16px;
  margin-left: -6px;
  text-align: center;
  color: #E35205;
  text-shadow: none !important;
}

table.dataTable thead th.select-checkbox {
  position: relative;
}

table.dataTable thead th.select-checkbox:before,
table.dataTable thead th.select-checkbox:after {
  display: block;
  position: absolute;
  top: 1.2em;
  left: 30px !important;
  width: 16px !important;
  height: 16px !important;
  box-sizing: border-box;
}

table.dataTable tbody td.select-checkbox:before,
table.dataTable thead th.select-checkbox:before {
  content: ' ';
  margin-top: 0px !important;
  margin-left: -6px;
  border: 1px solid #C1C3D1 !important;
  border-radius: 3px;
}

table.dataTable .pasta td.select-checkbox:before,
table.dataTable .pasta td.select-checkbox:after{
  display: none;
}
#dt-user-name table.dataTable tbody td.select-checkbox:before,
table.dataTable thead th.select-checkbox:before {
  content: ' ';
  margin-top: 5px !important;
  margin-left: -6px;
  border: 1px solid #C1C3D1 !important;
  border-radius: 3px;
}

.dt-buttons {
  margin-top: 12px;
  margin-bottom: -60px;
  display: block;
  background-color: transparent;
  text-align: left;
  width: 100%;
  padding: 10px 20px 30px 750px;
}

.dt-buttons .dt-button {
  /* font-size: 12px; */
  color: var(--azul-cinza);
  background-color: white;
  outline: none;
  border: 1px solid var(--azul-cinza);
  /* border-radius: 5px; */
  /* padding: 5px 30px; */
  cursor: pointer;
  margin-right: 15px;
  pointer-events: none;
  opacity: 0.5;
}

/* .dt-buttons .dt-button:hover {
  font-size: 12px;
  color: var(--azul-cinza);
  background-color: #feeee0;
  outline: none;
  border: 1px solid var(--azul-cinza);
  border-radius: 5px;
  padding: 5px 30px;
  cursor: pointer;
  margin-right: 15px;
} */

.dt-buttons .dt-button.enable {
  opacity: 1;
  pointer-events: initial;
}

/********************************************************/
/********************** Media Queries *******************/
/********************************************************/

@media screen and (max-width: 1024px) {
  .box-list-projects {
    grid-template-columns: 2% auto 10% 15% max-content;
  }
}

@media screen and (max-width: 1366px) {
  .multiselect-container.dropdown-menu {
    height: 130px;
  }
}
