:root {
    --background: #e5e7eb;
    --red: #ef4444;
    --zinc: #ebebeb;
    --gray: #c0c0c0;
    --blue: #3483fa;
    --blue2: #004e98;
    --withe: #ffffff;
    --green: #84cc16;
    --black: #080707;
    --shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    --menu-hover: #e3e9f7;
    --menu-active: #4f46e5;



}

#sidebar {
    display: flex;
    flex-direction: column;
    background-color: var(--withe);
    position: relative;
    transition: all .5s;
    min-width: 82px;
    /*z-index: 2;*/
    /*height: 100vh;*/

}

.sidebar-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.sidebar-header img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-bottom: 5px;
}

.title-app {
    display: none;
}

#open-btn {
    /*margin-left: auto;*/
    padding: 1em;
    border: none;
    border-radius: .5em;
    background: none;
    cursor: pointer;
}


#sidebar.open-sidebar {
    min-width: 15%;
}

#sidebar.open-sidebar .sidebar-header {
    flex-direction: row !important;
}


#sidebar.open-sidebar .title-app {
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
}

#sidebar.open-sidebar .side-item a {
    justify-content: flex-start;
    gap: 14px;
}

#sidebar.open-sidebar .item-description {
    width: 150px;
    height: auto;
}

#sidebar.open-sidebar .icon-drop {
    width: 20px !important;
    height: 20px !important;
    display: flex;
}

#sidebar.open-sidebar #open-btn {
    margin-left: auto;
}


.menu-title {
    font-weight: bold;
    font-size:13px;
    padding:10px;
}

#list-item {

    display: flex;
    flex-direction: column;
    padding: 10px;
}

.side-item {
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
}

.side-item.active {
    background: var(--menu-active);

}

.side-item.active a {
    color: var(--menu-hover);
}

.side-item a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
}

.side-item a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.side-item:hover:not(.active) {
    background-color: #e3e9f7;
}

.item-description {
    width: 0px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 12px;
    transition: width .6s;
    height: 0px;
}

.menu-drop ul {
    display: none;
}

.icon-drop {
    width: 0px !important;
    height: 0px !important;
    overflow: hidden;
    white-space: nowrap;
}

main {
    width: 100%;
    /*z-index: 1;*/
}


#nav-bar {
    height: 75px;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 5px;
    background: var(--withe);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}

#nav-profile {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.actions {
    float: right;
    margin-right: 5px;
}



#nav-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}



#nav-profile li{
    list-style-type: none;
    position: relative;
    padding:  0.625rem 0 0.5rem;
}

#nav-profile li ul {

    flex-direction: column;
    position: absolute;
    background-color: #fff;
    align-items: flex-start;
    width: 16rem;
    right: -20px;
    top: 4.5rem;
    border-radius: 0.325rem;
    gap: 0;
    padding: 1rem 0;
    /*box-shadow: 0px 0px 100px rgb(20 18 20 0.25);*/
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.12);

    opacity: 0;
    display: none;
}


#nav-profile li:hover > ul, li ul:hover {
    display: flex;
    visibility: visible;
    opacity: 1;
    z-index: 10;
}

.material-icons {
    color: #888888;
    transition: all 0.3s ease-out;

}

.material-icons:hover {
    color: #ff9800;
    transform: scale(1.25) translateY(-4px);
}

.profile{
    height: 3rem;
    width: auto;
    cursor: pointer;
}

#nav-profile .sub-item{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.725rem;
    cursor: pointer;
    padding: 0.5rem 1.5rem;

}

#nav-profile .sub-item:hover{
    background-color: rgb(234, 232, 232, 0.4);
}

#nav-profile .sub-item p {
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0.4rem 0;
    color: #888888;
    cursor: pointer;
}

#nav-profile .sub-item:hover .material-icons {
    color: #ff9800;
    transform: scale(1.08) translateY(-2px);
}

#nav-profile .sub-item p:hover {
    color: #000;
    cursor: pointer;
}


.breadcrumbs_section {
    margin-top: 5px;
    padding: 15px 15px;
  }

  .breadcrumbs {
    --cssuiBreadcrumbsTextColor: var(--breadcrumbsTextColor);
    --cssuiBreadcrumbsTextColorActive: var(--breadcrumbsTextColorActive);
    --cssuiBreadcrumbsDivider: var(--breadcrumbsDivider);
    --cssuiBreadcrumbsDividerColor: var(--breadcrumbsDividerColor, inherit);
    --cssuiBreadcrumbsDividerSize: var(--breadcrumbsDividerSize, 16px);
    --cssuiBreadcrumbsIndent: var(--breadcrumbsIndent, 8px);

    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;

    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs {
    --breadcrumbsTextColor: #0056b3;
    --breadcrumbsTextColorActive: #6c757d;
}

.centraliza {

position: fixed; 
  
  /* Posiciona o ponto inicial no meio da tela */
  top: 50%;
  left: 50%;
  
  /* Desloca a div de volta em 50% do seu próprio tamanho */
  transform: translate(-50%, -50%);
  
  /* Garante que fique acima de tudo */
  z-index: 9999; 
}

.centraliza-topo-20 {
    top:20% !important;
}



.breadcrumbs__item {
    display: inline-block;
    position: relative;

    padding-right: calc(var(--cssuiBreadcrumbsDividerSize) + var(--cssuiBreadcrumbsIndent));
    margin-right: var(--cssuiBreadcrumbsIndent);

    color: var(--cssuiBreadcrumbsTextColor);
}

.breadcrumbs__element {
    color: inherit;
    font-weight: 200;
    font-size: 0.80rem;
}


.breadcrumbs_type1 {
    --breadcrumbsDivider: "/";
}

.breadcrumbs_type1 .breadcrumbs__item:after {
    margin-top: 2px;
}

.breadcrumbs__item:after {
    content: var(--cssuiBreadcrumbsDivider);
    width: var(--cssuiBreadcrumbsDividerSize);
    height: var(--cssuiBreadcrumbsDividerSize);

    line-height: 1;
    text-align: center;

    font-family: "Arial";
    font-size: var(--cssuiBreadcrumbsDividerSize);
    color: var(--cssuiBreadcrumbsDividerColor);

    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.breadcrumbs__item_active {
    margin-right: 0;
    padding-right: 0;
    color: var(--cssuiBreadcrumbsTextColorActive);
}

.breadcrumbs__item_active:after {
    display: none;
}


.page {
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    background: white;
    padding: 10px;
    padding-bottom: 50px;
    padding-bottom: 80px;
    width: 99%;
    min-height: 100vh;
    
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.12);

    border-radius: 0px;
    min-width: 240px;
    margin-top:5px;
    
  }


.title-container {
  display: flex; /* Arranges title and button in a row */
  align-items: center; /* Vertically aligns items in the center */
  justify-content: space-between; /* Pushes title and button to opposite ends */
  padding:  10px 0px;
  border-bottom: 1px solid #ccc;
  margin-bottom:10px;
}

.title-label {
  font-size: 1.2em;
  font-weight: 300;
  color: #4f46e5;
}

.title-block {
  font-size: 1.0em;
  font-weight: 200;
  color: #333;
}


.close-button {
  color: #4f46e5;
  border: none;
  border-radius: 50%; /* Makes the button round */
  width: 25px;
  height: 25px;
  font-size: 1em;
  font-weight:bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1; /* Adjusts vertical alignment of the 'x' */
  padding: 0; /* Remove default padding */
}

.close-button:hover {
  background-color: #e55337; /* Darker red on hover */
}

.container {
    padding:10px;
    border: solid 1px #cccc;
}

.box {
    width:100%;
    margin-top:0px; 
}

.box-padding {

    padding:20px;
}

.box-boder {

    border: solid 1px rgba(0,0,0, 0.5);
}

.box-competencia {

    padding:15px;
    border: solid 1px #e7e7e7;
    background-color: #e7e7e7;

}

.input-box {
    width:100%;
    margin-top:10px; 
}


.font-bold {
    font-weight:bold;
}

.column {
  display: flex;
  column-gap: 15px;
  align-items: center;
}

.box label {
  color: #333;
  font-size: 0.8rem;
  /*font-weight: bold;*/
  
  margin-bottom: 10px !important;
}


.box label {
  color: #333;
  font-size: 0.8rem;  
  margin-bottom: 10px !important;
}


.table-font {
  color: #333;
  font-size: 0.8rem;  
}



.input-box label {
  color: #333;
  font-size: 0.8rem;
  margin-bottom: 10px !important;
}


.container-form :where(.input-box input[type="text"], .select-box, .input-box textarea ) {
  position: relative;
  height: 35px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  /*margin-top: 8px;*/
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
}

.input-box input::placeholder  {
    font-size:0.8rem;
}

.col-20 {
    width:20% !important;
}

.col-25 {
    width:25% !important;
}

.col-30 {
    width:30% !important;
}


.col-35 {
    width:35% !important;
}


.col-50 {
    width:50% !important;
}

.container-search {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-search {
  overflow: hidden;
  width: 100%;
  vertical-align: middle;
  white-space: nowrap;
}

.form-search .input-search {

      padding: 0 5px 0 5px !important;
      width: 100%;
      float: left;
      padding-left: 15px;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px;
      -webkit-transition: all .55s ease;
      -moz-transition: all .55s ease;
      -ms-transition: all .55s ease;
      -o-transition: all .55s ease;
      transition: all .55s ease;
}

.icon-search {
    display: flex;         /* Enables flexbox properties */
    justify-content: center; /* Centers horizontally */
    align-items: center;   /* Centers vertically */
    height: 40px;          /* Example height */
    width: 40px;           /* Example width (for a square button) */
    /* Add other styling like background-color, border, etc. */
}

.container-search a.icon {


      -webkit-border-top-right-radius: 5px;
      -webkit-border-bottom-right-radius: 5px;
      -moz-border-radius-topright: 5px;
      -moz-border-radius-bottomright: 5px;
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px;
      border: none;
      background: #232833;
      text-align:center;
      height: 35px;
      width: 50px;
      color: #4f5b66;
      opacity: 0;
      font-size: 10pt;
      -webkit-transition: all .55s ease;
      -moz-transition: all .55s ease;
      -ms-transition: all .55s ease;
      -o-transition: all .55s ease;
      transition: all .55s ease;
      outline:none;
      opacity: 1;

}


.search-button {
  height: 35px !important;
  font-weight: 400;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #4070f4;
  cursor: pointer;
  width: 70px !important;
  margin-top: 0 !important;
  top: 2px;
  vertical-align: auto;

}

.text-center {
    align-items:center; 
    justify-content:center;
}

.border-botton-block {
    border-bottom: 1px solid #ccc;
}

.divDadosContribuinte {
    padding: 10px 0px;
}

.divTitle_block {
    padding: 10px 0px;
}

.container input[type=checkbox]{
    margin-top: 0 !important; 
}


.btn {
    /*width: 100%;*/
    height: 35px;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    padding: 5px 10px;
}


.btnRed {

    background-color: var(--red);
}

.btnZinc {

    background-color: var(--zinc);
    color: #000000 !important;

}

.btnBGray {
    background-color: var(--gray);
}

.btnBlue {
    background-color: var(--blue);
}

.btnBlue2 {
    background-color: var(--blue2);
}

.btnGreen {
    background-color: var(--green);
}


button:disabled,
button[disabled] {
    background-color: #cccccc;
    color: #666666;
}

.span-error{
    width:100%;
    color:#ff0000;
    font-size:10px;
}

.Scroll {
  overflow: auto;
}


.mascara {
    background: rgba(0,0,0, 0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 20px;
    z-index: 999999999999999 !important;
}


#floatingCirclesG {
    position: relative;
    width: 61px;
    height: 61px;
    margin: auto;
    transform: scale(0.6);
    -o-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
}

.f_circleG {
    position: absolute;
    background-color: rgb(255,255,255);
    height: 11px;
    width: 11px;
    border-radius: 6px;
    -o-border-radius: 6px;
    -ms-border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    animation-name: f_fadeG;
    -o-animation-name: f_fadeG;
    -ms-animation-name: f_fadeG;
    -webkit-animation-name: f_fadeG;
    -moz-animation-name: f_fadeG;
    animation-duration: 1.2s;
    -o-animation-duration: 1.2s;
    -ms-animation-duration: 1.2s;
    -webkit-animation-duration: 1.2s;
    -moz-animation-duration: 1.2s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
}

#frotateG_01 {
    left: 0;
    top: 25px;
    animation-delay: 0.45s;
    -o-animation-delay: 0.45s;
    -ms-animation-delay: 0.45s;
    -webkit-animation-delay: 0.45s;
    -moz-animation-delay: 0.45s;
}

#frotateG_02 {
    left: 7px;
    top: 7px;
    animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    -ms-animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
}

#frotateG_03 {
    left: 25px;
    top: 0;
    animation-delay: 0.75s;
    -o-animation-delay: 0.75s;
    -ms-animation-delay: 0.75s;
    -webkit-animation-delay: 0.75s;
    -moz-animation-delay: 0.75s;
}

#frotateG_04 {
    right: 7px;
    top: 7px;
    animation-delay: 0.9s;
    -o-animation-delay: 0.9s;
    -ms-animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
}

#frotateG_05 {
    right: 0;
    top: 25px;
    animation-delay: 1.05s;
    -o-animation-delay: 1.05s;
    -ms-animation-delay: 1.05s;
    -webkit-animation-delay: 1.05s;
    -moz-animation-delay: 1.05s;
}

#frotateG_06 {
    right: 7px;
    bottom: 7px;
    animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    -ms-animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
}

#frotateG_07 {
    left: 25px;
    bottom: 0;
    animation-delay: 1.35s;
    -o-animation-delay: 1.35s;
    -ms-animation-delay: 1.35s;
    -webkit-animation-delay: 1.35s;
    -moz-animation-delay: 1.35s;
}

#frotateG_08 {
    left: 7px;
    bottom: 7px;
    animation-delay: 1.5s;
    -o-animation-delay: 1.5s;
    -ms-animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
}


.loader-box {
    background-image: linear-gradient(to bottom, #f5f5f5, #e6eaf1 130%);
    margin-top: 150px;
    border-radius: 5px;
}


.margem-inferior {
  margin-bottom: 15px;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.mascaraPopUp {
  background: rgba(0,0,0, 0.5);
  z-index: 999999999 !important;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  padding-top: 20px;
  overflow: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}


.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
  box-shadow: 0 3px 9px rgba(0,0,0,.5);
}

.modal-header {
  padding: 7px 15px;
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-body {
  padding: 7px 15px;
}
.modal-body {
  position: relative;
  padding: 15px;
}


/* css antigo nfe */

.box-autenticidade {
  background-color: #fafafa;
  padding: 5px;
  width: 450px;
  border: 1px solid #e3e3e3;
  margin: 0px 10px 0px 60px;
  float: left;
}


.subtitSecao {
  background-color: #E2E8EB;
  border-bottom: solid 1px #e7e7e7;
  margin: 10px 0 5px 0;
  font-weight: bold;
  font-size:12px;
  list-style: url(../img/arrow_black.gif);
  padding: 8px 0 8px 15px;
}


.tituloCampo1 {
    font-size:12px;
    color:#267C7D;
    font-weight:bold
}

.menu-toggle {
    display: none; /* Botão oculto no desktop */
}



@media (min-width: 768px) {
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
  }
}

@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

@media (min-width: 768px) {
  .modal-dialog-log {
    width: 80%;
  }



}







/*Responsive*/
@media screen and (max-width: 600px) {
    .column {
    flex-wrap: wrap;
    }

    #sidebar.open-sidebar {
        width: 80px !important;
        min-width: 80px !important;
    }


.col-20 {
    width:100% !important;        
}

.col-25 {
    width:100% !important;
}

.col-30 {
    width:100% !important;
}


.col-35 {
    width:100% !important;
}


.col-50 {
    width:100% !important;
}






}

@media screen and (max-width: 700px) {

    #sidebar.open-sidebar {
        width: 60px !important;
        min-width: 60px !important;
    }

    .menu-title {
        display:none;
    }
}
