.listModulos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
}

.listModulos01 {
    display: flex;

    justify-content: center;
}

.listModulos02 {
    display: flex;

    flex-flow: row wrap;
}

.listModulosInicial {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-flow: row wrap;
}

.divClick {
    cursor: pointer;
}

.display_vaz{
    background: #263238;
    border-radius: 30px 30px 30px 30px;
    width: 50px;
    height: 20px;
    top: 65px;
    font-size: 8px;
    color: limegreen;
    padding-left: 1px;
    padding-top: 2px;

    /* Position relative para a seta não exceder os limites do balão, já que vamos usar position absolute nele */
    position: absolute;

    margin-bottom: 1em;
}

.display{
    background: #263238;
    border-radius: 30px 30px 30px 30px;
    width: 50px;
    height: 20px;
    top: 65px;
    font-size: 12px;
    color: limegreen;
    padding-left: 1px;
    padding-top: 2px;

    /* Position relative para a seta não exceder os limites do balão, já que vamos usar position absolute nele */
    position: absolute;

    margin-bottom: 1em;
}

.display_Det{
    background: #263238;
    border-radius: 30px 30px 30px 30px;
    width: 110px;
    height: 30px;
    top: 65px;
    font-size: 25px;
    color: limegreen;
    padding-left: 1px;
    padding-top: 1px;

    /* Position relative para a seta não exceder os limites do balão, já que vamos usar position absolute nele */
    position: absolute;

    margin-bottom: 1em;
}

.balao{
    background: #263238;
    border-radius: 30px 0 0 30px;
    width: 50px;
    height: 20px;
    font-size: 15px;
    color: white;
    padding-left: 1px;
    left: 80px;

    /* Position relative para a seta não exceder os limites do balão, já que vamos usar position absolute nele */
    position: absolute;

    margin-bottom: 1em;
}
.balao:after{
    /* content necessário para a criação de um elemento vazio */
    content: "";

    width: 0;
    height: 0;

    /* position: absolute para manipularmos a posição da seta */
    position: absolute;

    /* Right com valor negativo para ele ficar para fora do balão de dialogo */
    right: 45px;

    /* E aqui o truque com as bordas */
    /* 50px é a metade da altura do elemento, assim temos uma seta da mesma altura que nosso elemento */
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #263238;

    border-radius: 5%;

}

ul {
    margin: 0;
    padding: 0;
}

li {
    margin: 5px 0;
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    border-radius: 3px;
    background: #fff; /* fallback for old browsers */
    color: #000;
    list-style: none;
}

li.drag-sort-active {
    background: transparent;
    color: transparent;
    border: 1px solid #4ca1af;
    cursor: grab;
}

span.drag-sort-active {
    background: transparent;
    color: transparent;
}

.rot {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

#map {
  height: 95%;
}

.table-concept {
    box-sizing: border-box;
}
.table-concept table {
    background-color: #ffffff;
    font-size: 16px;
    border-collapse: collapse;
}
.table-concept table tr:last-child td {
    border-bottom: 0;
}
.table-concept table tr th,
.table-concept table tr td {
    text-align: left;
    padding: 15px;
    box-sizing: border-box;
}
.table-concept table tr th {
    color: #ffffff;
    font-weight: bold;
    background-color: #32a852;
    border-bottom: solid 2px #d8d8d8;
    position: sticky;
    top: 0;
}
.table-concept table tr td {
    border: solid 1px #d8d8d8;
    border-left: 0;
    border-right: 0;
    white-space: nowrap;
}
.table-concept table tbody tr {
    transition: background-color 150ms ease-out;
}
.table-concept table tbody tr:nth-child(2n) {
    background-color: whitesmoke;
}
.table-concept table tbody tr:hover {
    background-color: #ebebeb;
}

table.sortable thead {
    background-color:#eee;
    color:#666666;
    font-weight: bold;
    cursor: default;
}