/* text utils */
.small {
    font-size: 0.9rem;
}
.nowrap {
    white-space: nowrap;
}

/* table auxiliaries */
table .column-line {
    border-left: 1px solid var(--kc-colour-dark-grey);
}
table .row-line {
    border-bottom: 1px solid var(--kc-colour-dark-grey);
}
.table th, .table td {
    padding: 1rem !important;
}
.table th {
    color: var(--kc-colour-alt-white);
}
@media screen and (max-width: 768px) {
    .table--mobile-carded tbody.table--striped tr:nth-child(even) {
        background-color: rgba(255, 255, 255, 0);
    }
}

/* date selector header */
.date_selector {
    display: flex;
    flex-direction: row;
    max-width: 95%; 
    overflow-x: auto;
}
.date_selector > .date_selector__preset,
.date_selector > .date_selector__calendar {
    padding: var(--kc-spacing-4)
}
.date_selector > .date_selector__preset {
    border-right: 1px solid black;
}
.date_selector > .date_selector__calendar {
    display: flex;
    flex-direction: column;
    gap: var(--kc-spacing-3);
}

@media screen and (max-width: 768px) {
    .date_selector > .date_selector__preset,
    .date_selector > .date_selector__calendar {
        display: none;
    }
    .date_selector {
        flex-direction: column;
        align-items: center;
        gap: var(--kc-spacing-4);
    }
    
}

/* quickbites */
.quickbites {
    display: flex;
    gap: var(--kc-spacing-5);
    margin-top: var(--kc-spacing-4);
    margin-bottom: var(--kc-spacing-5);
}

.quickbites img {
    height: 30px;
    width: 30px;
}

.quickbites > div {
    flex: 0 1 25%;
    height: unset;
}

.accordion--lined {
    border-bottom: 0;
}

#notificationList {
    width: 500px;
    max-height: 600px;
    overflow-y: auto;
}

#scrollTop {
    display: none;
    cursor: pointer;
}
#scrollTop .hidden-on-lg-down {
    position: fixed;
    bottom: 65px;
    right: 65px;
    z-index: 999;
}
#scrollTop .hidden-on-lg-up {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999;
}

@media screen and (max-width: 768px) {
    .table td:not(:first-child):not(:last-child) {
        padding-bottom: 0 !important;
    }
}

@media screen and (max-width: 1024px) {
    .bigger-icon-on-mobile {
        font-size: 1.5rem;
    }
    #notificationList {
        max-width: 90%;
        width: 90%;
    }
}

@media screen and (max-width: 1200px) {
    .quickbites {
        overflow-x: auto;
    }
    .quickbites > div {
        flex: 1 0 auto;
    }
}
