.x-treelist-nav .x-treelist-item-text {
    line-height: 41px !important;
}

.mlinhas {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 1px;
    margin-left: 1px;

.mcolunas {
    position:relative;
}

.animar {
 animation: pulse 2s infinite linear;
}
@keyframes pulse {
    0% {
            box-shadow: 0 0 8px 6px transparent,
                        0 0 0 0 transparent,
                        0 0 0 0 transparent;
        }

    10% {
            box-shadow: 0 0 8px 6px #4c4687,
                        0 0 12px 10px transparent,
                        0 0 12px 5px #b0aaf0;
        }

    80%, 100% {
                box-shadow: 0 0 8px 6px transparent,
                            0 0 0 30px transparent,
                            0 0 0 30px transparent;
              }
}

@media only screen and (min-width: 0px) and (max-width: 600px) {
    .mcolunas {
        display:inline-block;
        width:100%;
        padding:0px 20px 0px 20px;
    }
}

.mcolunas2 {
    position:relative;
}

@media only screen and (min-width: 0px) and (max-width: 600px) {
    .mcolunas2 {
        display:inline-block;
        width:50%;
    }
}

.mcolunas3 {
    position:relative;
}

@media only screen and (min-width: 0px) and (max-width: 600px) {
    .mcolunas3 {
        display:inline-block;
        width:33%;
    }
}

.mcolunas4 {
    position:relative;
}

@media only screen and (min-width: 0px) and (max-width: 600px) {
    .mcolunas4 {
        display:inline-block;
        width:25%;
    }
}



.export-modal {
  display: none;
  position: absolute;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.22s;
  pointer-events: none;
}
.export-modal.visible {
  opacity: 1;
  pointer-events: auto;
}
.export-modal::before {
  content: "";
  position: absolute;
  left: 32px; 
  top: -10px;
  border-width: 0 8px 10px 8px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  filter: drop-shadow(0 -1px 1px #8882);
  z-index: 10000;
}
.export-modal-content {
  background: #fff;
  border: 1px solid #888;
  border-radius: 6px;
  box-shadow: 0 2px 16px #0003;
  padding: 14px 14px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.export-modal-content button {
  width: 100%;
  min-height: 36px;
  border-radius: 4px;
  text-align: center;
  box-sizing: border-box;
  margin: 0;   
}

