.mark-cell,
.log-cell,
.detail-view td {
    word-break: break-all;
}

.egais-tooltip {
    position: absolute;
    background-color: #fdfdfd;
    border: 1px solid #b8b8b8;
    box-shadow: 0 0 5px #b8b8b8;
    padding: .5em 1em;
    z-index: 1;
}

.egais-tooltip ul {
    margin: 0;
}

.egais-tooltip li {
    list-style-type: square;
}


.switcher {
    cursor: pointer;
}

.switcher::after {
    font-family: "FontAwesome";
    font-weight: 900;
    vertical-align: middle;
    margin-left: .5rem;
}

.switcher.collapsed::after {
    content: "\f105";
}

.switcher.opened::after {
    content: "\f107"
}

.flexed {
    display: flex;
    gap: 5px;
    align-items: center;
}

.flexed .form-group {
    margin: 0;
    padding: 0;
}

.flexed select {
    width: auto;
}

.flexed > label {
    margin: 0;
    white-space: nowrap;
    display: block;
}

.flexed > label::after {
    content: ":";
}

.page-size {
    display: flex;
    gap: .5em;
    margin: .5em 0;
}

.page-size > label::after {
    content: ":";
}

.comment-from-xml {
    font-weight: bolder;
    word-break: break-all;
}

.comment-from-xml-wrapper {
    align-items: flex-start;
    margin-bottom: .5em;
    padding: 0.5em;
    background-color: antiquewhite;
}

.cheque-ingredients:not(:last-child) {
    margin-bottom: 2em;
}

.cheque-ingredients table {
    margin-bottom: 5px;
}

.button-list {
    margin-bottom: 1em;
}

.id a {
    width: 6em;
    text-overflow: ellipsis;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.above-table-actions,
.view-actions {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}
.grid-actions {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.above-table-actions > .buttons-right {
    margin-left: auto;
}

.overflow-scroll {
    overflow-x: auto;
}

legend {
    width: auto;
    margin-bottom: 0;
    padding: 0 .2em !important;
}


.modal-dialog.modal-lg.modal-callback {
    max-width: 400px;
}

.sync-status {
    display: inline-block;
    margin-left: 15px;
    font-style: italic;
    font-weight: 300;

}

.loader-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation-loader 1s linear infinite;
    margin: 0 4px;
}

@keyframes rotation-loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.bg-white {
    background-color: white;
    border-radius: 3px;
}

.ttn-top-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.loading-dots {
    display:inline-block;
    clip-path: inset(0 1ch 0 0);
    animation: loading-dots 1s steps(3) infinite;
}

@keyframes loading-dots {
    to {
        clip-path: inset(0 -1ch 0 0)
    }
}

.loader-spinner {
    aspect-ratio: 1 / 1;
    height: 100%;
    border: 5px solid #0c71a2;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation-spinner 1s linear infinite;
}

@keyframes rotation-spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
