html, body, #app, #page-wrapper, .ns-container-page {
    height: 100%;
}

#app {
    height: 100%;
}

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

.ns-flex {
    -webkit-flex: 1; /* Safari 6.1+ */
    -ms-flex: 1; /* IE 10 */
    flex: 1;
}

.ns-col {
    display: -webkit-flex; /* Safari */
    -webkit-flex-direction: row-reverse; /* Safari 6.1+ */
    display: flex;
    flex-direction: column;
}

.row-wrap {
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
    flex-wrap: wrap;
}

.ns-row {
    display: -webkit-flex; /* Safari */
    -webkit-flex-direction: row; /* Safari 6.1+ */
    display: flex;
    flex-direction: row;
}

.ns-divide {
    height: 40px;
    width: 1px;
    background-color: #37474F;
}

.ns-middle * {
    vertical-align: middle;
}

.ns-middle-flex {
    display: -webkit-flex; /* Safari */
    display : flex;
    align-items : center;
}

.ns-content {
    height: 100%;
    margin-left: 65px;
}

.highlightCard .ant-card-head {
    border-bottom: 0;
    height: 180px !important;
}

.highlightCard .ant-card-head-title {
    text-align: center;
}

.highlightCard .ant-card-body {
    padding: 5px !important;
}

.highlightCard .roundCardTitle {
    margin: 17px;
    height: 144px;
    width: 144px;
    border-radius: 105.88px;
    background-color: #495E68;
    font-size: 50px;
    color: #ffffff;
    line-height: 144px;
}

.highlightCard .ant-card-body li {
    font-size: 16px;
    margin-bottom: 10px;
}

.itemClickable {
    cursor: pointer;
}


.table-cel-text-center {
    text-align: center;
}

.table-cel-center-actions {
    display: flex;
    justify-content: space-evenly;
}

.table-link {
    color: #33BBFF;
    text-decoration: underline;
}

/* Remove setas para o campo de number */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.table-detail {
    position: relative;
    overflow-y: auto;
    max-height: calc(100vh - 137px);
}