

:root {
  --primary_color: #05f28f;
  --secondary_color: #6ee1f5;
}
.center-xy {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ml-1 {
  margin-left: 1rem;
}

.mr-1 {
  margin-right: 1rem;
}

.center-x {
  display: flex;
  justify-content: center;
}

.center-y {
  display: flex;
  align-items: center;
}

.bg-gradient-custom {
  background-image: linear-gradient(to right, #5ee47d 0%, #5eb1e4 100%);
}

.cs-color-white {
  color: #fff !important;
}

.cs-color-primary {
  color: #5ee47d;
}

.cs-color-secondary {
  color: #5eb1e4;
}

.cs-bg-primary {
  background-color: #5ee47d;
}

.cs-bg-secondary {
  background-color: #5eb1e4;
}

.sidenav {
  z-index: 1 !important;
}

.none {
  display: none !important;
}

#wrapper-toast {
  width: 420px;
  padding: 30px 20px;
  position: fixed;
  top: 50px;
  right: 0;
  overflow: hidden;
  transition: 1s;
  z-index: 9999;
  transition: 1s;
}

#show-toast {
  background-color: #101020;
  color: #ffffff;
  /* padding: 20px; */
  border-radius: 5px;
  cursor: pointer;
}

#close {
  cursor: pointer;
  font-size: 14px;
}

#toast {
  width: 380px;
  height: 100px;
  padding: 10px;
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgba(75, 50, 50, 0.05);
  display: flex;
  border-radius: 7px;
  justify-content: space-between;

  z-index: 99999 !important;
    transform: translate(400px);
      transition: 1s;
}

.toast-success {
    border-left: 8px solid #47d764;
}

.toast-alert {
  border-left: 8px solid #f1e538;
}

.toast-success .container-1-toast i {
color: #47d764;
}

.toast-error {
    border-left: 8px solid #df0404;
}

.toast-error .container-1-toast i {
  color: #df0404;
}
.container-1-toast,
.container-2-toast {
  align-self: center;
}

.container-1-toast i {
  font-size: 40px;
  
}

.container-2-toast p:first-child {
  color: #101020;
  font-weight: 600;
  font-size: 16px;
}

.container-2-toast p:last-child {
  font-size: 12px;
  color: #656565;
  font-weight: 400;
}

#toast button {
  align-self: flex-start;
  background-color: transparent;
  font-size: 25px;
  line-height: 0;
  color: #656565;
  cursor: pointer;
}
#close-modal {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.modal-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.modal-spinner {
  max-width: 62px;
  justify-content: center;
  color: #05f28f;

}

.primary-bg-color {
  background-color: var(--primary_color) !important;
  color:#fff !important;
}

.primary-bg-color-gradient {
  color: #fff !important;
  background-image:
        linear-gradient(90deg,
            color-mix(in srgb, var(--primary_color), #fff 30%),
            /* we mix with white for brighter */
            color-mix(in srgb, var(--primary_color), #000 30%)
            /* we mix with black for darker */
          )
}

.primary-color {
  color:  var(--primary_color);
}

.primary-color-gradient {
color: linear-gradient(90deg,
    color-mix(in srgb, var(--primary_color), #fff 30%),
    /* we mix with white for brighter */
    color-mix(in srgb, var(--primary_color), #000 30%))
}

.page-item .active {
  color:#fff !important;
}

.invisible-component {
  display: none !important;
}

.custom-icon {
  cursor: pointer;
  position: relative;
  padding: 2.5px 5px;
  background: #fff;
  color: var(--primary_color);
  font-size: 0.9rem;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: all 1s;
}

.custom-icon:after,
.custom-icon:before {
  content: " ";
  width: 5px;
  height: 5px;
  position: absolute;
  border: 0px solid var(--primary_color);
  transition: all 1s;
}

.custom-icon:after {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--primary_color);
  border-left: 2px solid var(--primary_color);
}

.custom-icon:before {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--primary_color);
  border-right: 2px solid var(--primary_color);
}

.custom-icon:hover {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.custom-icon:hover:before,
.custom-icon:hover:after {
  width: 100%;
  height: 100%;
}

.filter-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 0 1rem;
}

@media only screen and (max-width: 600px) {
  .filter-container {
    flex-direction: column;
  }
}

.filter-col {
  width: 10rem;
}

@media only screen and (min-width: 600px) {
  .filter-col {
    margin-right: 1rem;
 
  }
}

@media only screen and (max-width: 600px) {
  .filter-col {
    margin-right: 1rem;
      width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .btn-responsive {
    width: 100%;
  }
}

#chart-main {
  width: auto;
  height: 500px;
}

#chart-pie {
  width: 400px !important;
  height: 400px !important;
}

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

.my-text-center {
  text-align: center;
}

.delete-icon {
  cursor: pointer;
  position: relative;
  padding: 2.5px 5px;
  background: #fff;
  color: #df0404;
  font-size: 0.9rem;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: all 1s;
}

.delete-icon:after,
.delete-icon:before {
  content: " ";
  width: 5px;
  height: 5px;
  position: absolute;
  border: 0px solid #df0404;
  transition: all 1s;
}

.delete-icon:after {
  top: -1px;
  left: -1px;
  border-top: 2px solid #df0404;
  border-left: 2px solid #df0404;
}

.delete-icon:before {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid #df0404;
  border-right: 2px solid #df0404;
}

.delete-icon:hover {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.delete-icon:hover:before,
.delete-icon:hover:after {
  width: 100%;
  height: 100%;
}

.pointer {
  cursor: pointer;
}

.mw-6{
  min-width: 6rem;
}

.label-title {
  font-size: 2rem;
  display: block;
}



.btn-menus {

}

.btn-actions {
  margin-left: .5rem;
  margin-right: .2rem;
}

.btn-actions:has {
  padding: 1rem;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: #e7e7e7;
  border: 1px solid #cacaca;
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;

  background-color: var(--secondary_color);
}

.notification-item {
  
      border: 1px solid #000;
      /* Apenas para visualização */
      padding: 10px;
      /* Apenas para visualização */
      text-align: center;
      /* Apenas para visualização */
      margin-bottom: 15px;
      /* Espaçamento inferior */

}

.nav-btn {
  background-color: #fff;
  margin: .1rem;
  border-radius: 8px 8px 0 0;

}

.title-icon {
  position: relative;
    top: -10px;
    font-size: 12px
}

#nfs-service-code{
  width: 100%
}


#nfs-service-code option {
  max-width: 200px;
  /* defina a largura máxima */
  white-space: normal;
  /* permite que o texto quebre em várias linhas */
  word-wrap: break-word;
  /* quebra o texto quando necessário para evitar overflow */

}

.tooltip-bubble {
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 5px;
  z-index: 1000;
  max-width: 300px;
}

.tooltip-bubble input,
.tooltip-bubble button {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.tooltip-bubble button {
  width: auto;
  margin-right: 10px;
  display: inline-block;
}

.agenda-card {
  min-height: 2rem;
  width: 100%;
  border-left: .5rem solid var(--primary_color);
  padding: 1rem;
  border-radius: 3px;
  margin-bottom: 1rem;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  cursor: pointer;
}

.agenda-card:hover {

box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.fc-daygrid-event-harness {
  cursor: pointer;
}

.fc-col-header {
  background-color: var(--primary_color);
}

.fc-col-header-cell-cushion {
  color: white;
}

.custom-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.custom-info {
    background: #9f9faf3d !important;
      color: #2626e7 !important;
      font-size: .8rem !important;
}