.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.toast-top-center {
    margin-top: 30px;
}

.ngx-tooltip {
    font-size: 14px;
}

.pointer {
    cursor: pointer;
}

.medium {
    font-weight: 600;
}

.w-100 {
    width: 100%;
}

.list-container {
    position: relative;
    transition: all 0.3s ease-in-out;
    width: calc(100vw - 386px);
    height: calc(100vh - 150px);
    padding: 30px 70px 70px 70px;
    overflow-y: auto;
    background-color: var(--normal-gray);

    .row {
        display: flex;
    }
}

.list-container.closed-menu {
    width: calc(100vw - 140px);
}

.container-title {
    font-size: 22px;
    font-weight: 600;
}

.container-title.small {
    font-size: 17px;
}

.back-icon {
    position: absolute;
    left: 70px;
    font-size: 24px;
    top: 44px;
    cursor: pointer;
}

.capitalize {
    text-transform: capitalize;
}

.d-none {
    display: none !important;
}

lib-card {
    position: relative;
    border-radius: 5px;

    .card-container {
        padding: 15px;
        justify-content: initial !important;
    }

    fa-icon.card-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -13px;
        left: -13px;
        border-radius: 5px;
        font-size: 30px;
        width: 60px;
        height: 60px;
        color: white;
    }
}

table.data-table {
    outline: 1px solid var(--dark-gray);
    width: 100%;
    border-radius: 5px;
    border-collapse: collapse;
    overflow-y: scroll;

    th,
    td {
        padding: 6px;
        text-align: center;
    }
    th {
        font-weight: 600;
    }
}

.table-wrapper{
    border-radius: 5px;
}

div.checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 13px;
    height: 13px;
    border: 1px solid #ced4da;
    border-radius: 3px;
    cursor: pointer;
    background-color: white;
}

div.checkbox.checked {
    background-color: var(--blue-button);
}

div.checkbox.checked:before {
    content: "\2713";
    display: inline-block;
    color: #fff;
    font-size: 10px;
}