﻿[v-cloak] > * {
    display: none
}

[v-cloak]::before {
    content: "loading…"
}

i.fas, i.far, i.fa, i.fab {
    margin-right: 7px;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
    content: 'Browse...';
}

.custom-file-input:lang(pl) ~ .custom-file-label::after {
    content: 'Wybierz plik...';
}

.modal-xxl {
    max-width: 75% !important;
}

.text-with-dots {
    display: block;
    max-width: 95%;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}

.newLine {
    white-space: pre-line;
}

.router-link-active {
    color: #fff;
    background-color: #007bff;
    font-weight: bold;
}

.dropdown-item.active {
    color: #fff;
    background-color: #000 !important;
    font-weight: bold;
}

.collapsed > .when-open,
.not-collapsed > .when-closed {
    display: none;
}

/*------------------------------------------------*/
.fa-pulse {
	display: inline-block;
	-moz-animation: pulse 2s infinite linear;
	-o-animation: pulse 2s infinite linear;
	-webkit-animation: pulse 2s infinite linear;
	animation: pulse 2s infinite linear;
}

@-webkit-keyframes pulse {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
@-moz-keyframes pulse {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
@-o-keyframes pulse {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
@-ms-keyframes pulse {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes pulse {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
/*------------------------------------------------*/
.fa-bounce {
    display: inline-block;
    position: relative;
    -moz-animation: bounce 1s infinite linear;
    -o-animation: bounce 1s infinite linear;
    -webkit-animation: bounce 1s infinite linear;
    animation: bounce 1s infinite linear;
}

@-webkit-keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
    70% { top: -0.3em; }
    100% { top: 0; }
}
@-moz-keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
    70% { top: -0.3em; }
    100% { top: 0; }
}
@-o-keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
    70% { top: -0.3em; }
    100% { top: 0; }
}
@-ms-keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
    70% { top: -0.3em; }
    100% { top: 0; }
}
@keyframes bounce {
    0% { top: 0; }
    50% { top: -0.2em; }
    70% { top: -0.3em; }
    100% { top: 0; }
}
/*------------------------------------------------*/
#divDebugConsole {
    position: absolute;
    border: 1px solid black;
    background-color: white;
    user-select: none;
    display: none;
    z-index: 1500;
    max-height: 350px;
    max-width: calc(100% - 10px);
    left: 5px;
    overflow: auto;
}

.debugConsoleHeader {
    background: orange;
    margin: 0;
    text-align: center;
    padding: 6px;
}

p.debugConsoleHeader:active {
    cursor: move;
}
/*------------------------------------------------*/

/*------------------------------------------------*/
.hr-sect {
    display: flex;
    flex-basis: 100%;
    align-items: center;
    color: rgba(0, 0, 0, 0.35);
    margin: 8px 0px;
}

    .hr-sect:before,
    .hr-sect:after {
        content: "";
        flex-grow: 1;
        background: rgba(0, 0, 0, 0.35);
        height: 1px;
        font-size: 0px;
        line-height: 0px;
        margin: 0px 8px;
    }
/*------------------------------------------------*/