
/* scrollbars */
div::-webkit-scrollbar {
    width: 8px;
}
 
div::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(255,255,255,0.5); 
    border-radius: 0px;
}
 
div::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(201, 173, 167, 1);
}

.disabled {
        pointer-events: none; /* Desactiva clics */
        opacity: 0.5;         /* Reduce la opacidad */
        background-color: #a4c3b2 !important; /* Cambia el color del fondo */
        cursor: not-allowed;  /* Cambia el cursor a uno de "no permitido" */
    }

.trumbowyg-box {
      width: 1180px;
      height: 420px;
      overflow: hidden;
      margin: 0 auto;
    }
.trumbowyg-editor {
      height: calc(100% - 40px);
      overflow-y: auto;
}
