input:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-group {
    margin-bottom: 20px;
}

.globalTooltip {
    display:none;
    position:absolute;
    border:1px solid rgb(100,110,120);
    background-color:rgb(70,78,89);
    border-radius:5px;
    padding:6px 8px;
    text-align:center;
    color:#fff;
    font-size:13px;
    z-index: 9999999;
    max-width:200px;
    word-break: break-word;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

._loading {
    position: fixed;
    z-index: 99999999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
._loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
._loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

._loading:not(:required):after {
    content: '';
    display: block;
    font-size: 2.5vh;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 1500ms infinite linear;
    -moz-animation: spinner 1500ms infinite linear;
    -ms-animation: spinner 1500ms infinite linear;
    -o-animation: spinner 1500ms infinite linear;
    animation: spinner 1500ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

body.dark-mode .select2-container--bootstrap4 .select2-selection { background-color: transparent !important; border-color: #6c757d !important; }
body.dark-mode .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice { border-color: #6c757d !important; }
body.dark-mode .select2-results__option[aria-selected="true"] { color: rgb(200,200,200) !important; }
.nav .nav-link { font-size: 15px !important; }

.red-pulse {
    animation: red-pulse 2.2s 1;
}

@-webkit-keyframes red-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255,110,110, 0.8);
    }
    70% {
        -webkit-box-shadow: 0 0 0 12px rgba(255,110,110, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255,110,110, 0);
    }
}
@keyframes red-pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255,110,110, 0.8);
        box-shadow: 0 0 0 0 rgba(255,110,110, 0.8);
    }
    70% {
        -moz-box-shadow: 0 0 0 12px rgba(255,110,110, 0);
        box-shadow: 0 0 0 12px rgba(255,110,110, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255,110,110, 0);
        box-shadow: 0 0 0 0 rgba(255,110,110, 0);
    }
}

.input-error {
    transition: border 0.3s;
    border-color: rgb(230,120,120) !important;
}

.fa-rating-star {
    cursor:pointer;
    color: rgb(130,130,130);
}

.fa-rating-star.active {
    color: rgb(255,165,0);
}

.answer-select {
    border:1px solid rgb(220,220,220);border-radius: 6px;padding:7px 16px;font-size:15px;
    transition: all 0.2s;
}

.answer-select:not(.active):hover {
    color: white;
    border:1px solid rgb(0, 115, 230);
    background: #007bff linear-gradient(180deg,#268fff,#007bff) repeat-x;
    cursor: pointer;
}

.answer-select.active {
    color: white;
    border:1px solid rgb(0, 115, 230);
    background: #007bff linear-gradient(180deg,#268fff,#007bff) repeat-x;
}

[data-table-questions] tr.drag-active .card-header {
    background-color: rgba(0, 123, 255, 0.07) !important;
}

[data-table-questions] tr.drag-active .fas {
    transition: all 0.2s;
    font-size: 120%;
}

.drag-active {
    transition: all 0.2s;
    transform: scale(1.02);
}

.finished-row {
    transition: all 0.2s;
}

.finished-row.active {
    background-color: rgba(0, 123, 255, 0.07)
}



.callout {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    box-shadow: none;
}

.callout-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.callout-info {
    color: #4D4D4D;
    background-color: #B3B3B3;
    border-color: #999999;
}

.callout-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.callout-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}


.alert-default-info {
    color: #4D4D4D;
    background-color: #B3B3B3;
    border-color: #999999;
}

.alert-info {
    color: #4D4D4D;
    background-color: #B3B3B3;
    border-color: #999999;
}

body[data-theme-version="light"] .alert-success, body[data-theme-version="light"] .light.badge-success {
    color: #2a5b28;
}

body[data-theme-version="dark"] .alert-info {
    color: rgb(220,220,220);
    background-color: rgba(100,100,100,0.3) !important;
    border-color: rgba(100,100,100,0.5) !important;
}

.card-special {
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
    border-radius: 0.25rem;
}

body[data-theme-version="dark"] .card-special {
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.125), 0 1px 3px rgba(255, 255, 255, 0.2);
}

.btn-sm {
    padding: 0.365rem 1rem !important;
}

.float-right {
    float: right;
}

.img-circle {
    border-radius: 50%;
}
.profile-user-img {
    border: 3px solid #adb5bd;
    margin: 0 auto;
    padding: 3px;
    width: 100px;
}


.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.select2-container.select2-container--bootstrap4.select2-container--open {
    z-index: 99999;
}


@media (min-width: 1500px) {
    .col-rl-1 {
        flex: 0 0 auto;
        width: 8.33333%; }
    .col-rl-2 {
        flex: 0 0 auto;
        width: 16.66667%; }
    .col-rl-3 {
        flex: 0 0 auto;
        width: 25%; }
    .col-rl-4 {
        flex: 0 0 auto;
        width: 33.33333%; }
    .col-rl-5 {
        flex: 0 0 auto;
        width: 41.66667%; }
    .col-rl-6 {
        flex: 0 0 auto;
        width: 50%; }
    .col-rl-7 {
        flex: 0 0 auto;
        width: 58.33333%; }
    .col-rl-8 {
        flex: 0 0 auto;
        width: 66.66667%; }
    .col-rl-9 {
        flex: 0 0 auto;
        width: 75%; }
    .col-rl-10 {
        flex: 0 0 auto;
        width: 83.33333%; }
    .col-rl-11 {
        flex: 0 0 auto;
        width: 91.66667%; }
    .col-rl-12 {
        flex: 0 0 auto;
        width: 100%; }
    .offset-rl-0 {
        margin-left: 0; }
    .offset-rl-1 {
        margin-left: 8.33333%; }
    .offset-rl-2 {
        margin-left: 16.66667%; }
    .offset-rl-3 {
        margin-left: 25%; }
    .offset-rl-4 {
        margin-left: 33.33333%; }
    .offset-rl-5 {
        margin-left: 41.66667%; }
    .offset-rl-6 {
        margin-left: 50%; }
    .offset-rl-7 {
        margin-left: 58.33333%; }
    .offset-rl-8 {
        margin-left: 66.66667%; }
    .offset-rl-9 {
        margin-left: 75%; }
    .offset-rl-10 {
        margin-left: 83.33333%; }
    .offset-rl-11 {
        margin-left: 91.66667%; }
}


@media (min-width: 1700px) {
    .col-h-1 {
        flex: 0 0 auto;
        width: 8.33333%; }
    .col-h-2 {
        flex: 0 0 auto;
        width: 16.66667%; }
    .col-h-3 {
        flex: 0 0 auto;
        width: 25%; }
    .col-h-4 {
        flex: 0 0 auto;
        width: 33.33333%; }
    .col-h-5 {
        flex: 0 0 auto;
        width: 41.66667%; }
    .col-h-6 {
        flex: 0 0 auto;
        width: 50%; }
    .col-h-7 {
        flex: 0 0 auto;
        width: 58.33333%; }
    .col-h-8 {
        flex: 0 0 auto;
        width: 66.66667%; }
    .col-h-9 {
        flex: 0 0 auto;
        width: 75%; }
    .col-h-10 {
        flex: 0 0 auto;
        width: 83.33333%; }
    .col-h-11 {
        flex: 0 0 auto;
        width: 91.66667%; }
    .col-h-12 {
        flex: 0 0 auto;
        width: 100%; }
    .offset-h-0 {
        margin-left: 0; }
    .offset-h-1 {
        margin-left: 8.33333%; }
    .offset-h-2 {
        margin-left: 16.66667%; }
    .offset-h-3 {
        margin-left: 25%; }
    .offset-h-4 {
        margin-left: 33.33333%; }
    .offset-h-5 {
        margin-left: 41.66667%; }
    .offset-h-6 {
        margin-left: 50%; }
    .offset-h-7 {
        margin-left: 58.33333%; }
    .offset-h-8 {
        margin-left: 66.66667%; }
    .offset-h-9 {
        margin-left: 75%; }
    .offset-h-10 {
        margin-left: 83.33333%; }
    .offset-h-11 {
        margin-left: 91.66667%; }
}


@media (min-width: 1900px) {
    .col-g-1 {
        flex: 0 0 auto;
        width: 8.33333%; }
    .col-g-2 {
        flex: 0 0 auto;
        width: 16.66667%; }
    .col-g-3 {
        flex: 0 0 auto;
        width: 25%; }
    .col-g-4 {
        flex: 0 0 auto;
        width: 33.33333%; }
    .col-g-5 {
        flex: 0 0 auto;
        width: 41.66667%; }
    .col-g-6 {
        flex: 0 0 auto;
        width: 50%; }
    .col-g-7 {
        flex: 0 0 auto;
        width: 58.33333%; }
    .col-g-8 {
        flex: 0 0 auto;
        width: 66.66667%; }
    .col-g-9 {
        flex: 0 0 auto;
        width: 75%; }
    .col-g-10 {
        flex: 0 0 auto;
        width: 83.33333%; }
    .col-g-11 {
        flex: 0 0 auto;
        width: 91.66667%; }
    .col-g-12 {
        flex: 0 0 auto;
        width: 100%; }
    .offset-g-0 {
        margin-left: 0; }
    .offset-g-1 {
        margin-left: 8.33333%; }
    .offset-g-2 {
        margin-left: 16.66667%; }
    .offset-g-3 {
        margin-left: 25%; }
    .offset-g-4 {
        margin-left: 33.33333%; }
    .offset-g-5 {
        margin-left: 41.66667%; }
    .offset-g-6 {
        margin-left: 50%; }
    .offset-g-7 {
        margin-left: 58.33333%; }
    .offset-g-8 {
        margin-left: 66.66667%; }
    .offset-g-9 {
        margin-left: 75%; }
    .offset-g-10 {
        margin-left: 83.33333%; }
    .offset-g-11 {
        margin-left: 91.66667%; }
}

i#icon-light, i#icon-dark {
    cursor: pointer;
}


.axiom-logo-container {
    position:absolute;bottom:0;width:100%;background:white;border-bottom-left-radius: 1rem;border-bottom-right-radius: 1rem;display:flex;justify-content: center;padding:20px 0 20px 0;
}

body[data-theme-version='dark'] .axiom-logo-container {
    background: #29293c;
}

#main-wrapper.menu-toggle .axiom-logo-container {
    display: none !important;
}
body[data-theme-version='light'] .axiom-logo {
    content: url(/assets/img/axiom-logo-gray.svg);
}
body[data-theme-version='dark'] .axiom-logo {
    content: url(/assets/img/axiom-logo-white.svg);
}

.chat-reply-tile {
    background: rgb(238, 238, 238);
}

body[data-theme-version='dark'] .chat-reply-tile {
    background: rgba(120, 120, 120,0.6);
    color: white;
}


.red-pulse {
    -webkit-animation: red-pulse 1.4s infinite;
    animation: red-pulse 1.4s infinite
}

@-webkit-keyframes red-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(249,112,112,.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 9px rgba(63,112,249,0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(63,112,249,0);
    }
}

@keyframes red-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(249,112,112,.4);
        box-shadow: 0 0 0 0 rgba(249,112,112,.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 9px rgba(63,112,249,0);
        box-shadow: 0 0 0 9px rgba(63,112,249,0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(63,112,249,0);
        box-shadow: 0 0 0 0 rgba(63,112,249,0);
    }
}


.orange-pulse {
    -webkit-animation: orange-pulse 1.4s infinite;
    animation: orange-pulse 1.4s infinite
}

@-webkit-keyframes orange-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 167, 85,.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 9px rgba(255, 167, 85,.4);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 167, 85,.4);
    }
}

@keyframes orange-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 167, 85,.4);
        box-shadow: 0 0 0 0 rgba(255, 167, 85,.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 9px rgba(255, 167, 85,.4);
        box-shadow: 0 0 0 9px rgba(255, 167, 85,.4);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 167, 85,.4);
        box-shadow: 0 0 0 0 rgba(255, 167, 85,.4);
    }
}

.modal-body {
    background-color: rgb(245,245,245) !important;
}

body[data-theme-version='dark'] .modal-body {
    background-color: rgb(35, 35, 50) !important;
}

@media all and (max-width: 1024px) {
    .navbar-abas-logo {
        content: url('/assets/img/abas_chain.svg') !important;
        border-radius: 8px;
    }

    .brand-logo {
        width:1px;
    }
}


.visible-mobile {
    display: none;
}

.visible-desktop {
    display: block;
}

@media all and (max-width: 1200px) {
    .visible-mobile {
        display: block !important;
    }

    .visible-desktop {
        display: none !important;
    }
}



/* Translate widget - preklad uzivatelskeho obsahu (translate-widget.js + translatableText.vue) */
.translatable-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    margin-top: 6px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--primary, #e2001a);
    background: #fff;
    border: 1px solid rgba(226, 0, 26, .3);
    border-radius: 30px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
    cursor: pointer;
    text-decoration: none;
    transition: all .15s ease;
}

.translatable-toggle:hover {
    color: #fff;
    background: var(--primary, #e2001a);
    border-color: var(--primary, #e2001a);
    text-decoration: none;
}

.translatable-toggle i {
    font-size: 13px;
}

.translatable-toggle--active {
    color: #fff;
    background: var(--primary, #e2001a);
    border-color: var(--primary, #e2001a);
}

.translatable-toggle--active:hover {
    color: var(--primary, #e2001a);
    background: #fff;
}

body[data-theme-version="dark"] .translatable-toggle {
    background: #212130;
    border-color: rgba(248, 75, 106, .5);
    color: #f84b6a;
    box-shadow: none;
}

body[data-theme-version="dark"] .translatable-toggle:hover,
body[data-theme-version="dark"] .translatable-toggle--active {
    background: var(--primary, #e2001a);
    border-color: var(--primary, #e2001a);
    color: #fff;
}
