.image-button-bar {
    text-align: center;
    height: 2rem;
}
.buttons-bar {
    display: flex;
}

input[type="range"] {
    pointer-events: none;
    cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
    /*Webkit Browsers like Chrome and Safari*/
    pointer-events: auto;
    cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
    /*Firefox*/
    pointer-events: auto;
    cursor: pointer;
}
input[type="range"]::-ms-thumb {
    /*Internet Explorer*/
    pointer-events: auto;
    cursor: pointer;
}

.text-label {
    margin-right: 0.4rem;
}

.badge-container {
    border: 0.05rem solid #005b96;
    text-align: center;
    width: 1.8rem;
    height: 1.8rem;
    display: inline-block;
    padding: 0.1rem 0.1rem 0.1rem 0.1rem;
}

.badge-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.btn-xs {
    font-size: 0.4rem;
    height: 1rem;
    margin-top: 0.1rem;
    padding: 0.035rem 0.15rem;
}

.btn-close {
    padding-left: 3px;
}

.btn-header {
    background-color: #f1f1fc;
}

.emergency-btn {
    color: #ff5160;
    background-color: #ffffff;
    border-color: #ff5160;
}

.emergency-btn:hover {
    background-color: #ff0000;
    color: #ffffff;
}

.emergency-btn:active {
    color: #ff0000;
    background-color: #ffffff;
}

.itemEditor {
    display: flex;
    flex-direction: column;
    border: 0.05rem solid #dadee4;
    border-radius: $border-radius;
    margin-bottom: 0.4rem;
    width: 100%;
}

.information-buttons-bar {
    display: flex;
    align-content: center;
    justify-content: center;
}

.drop-zone {
    border: none;
    height: 100%;
}

.selection-list {
    list-style-type: none;
}

.item-selection-list {
    cursor: pointer;
    text-align: center;
    border-radius: 10px;
}

.item-selection-list:hover {
    background-color: #f1f1fc;
}

.files-list {
    border: 0.05rem solid #dadee4;
    border-radius: $border-radius;
    padding: 5px 5px !important;
    overflow-x: hidden;
    overflow-y: scroll !important;
}

.drop-zone--over {
    border-radius: 10px;
    background: linear-gradient(90deg, blue 50%, transparent 50%),
        linear-gradient(90deg, blue 50%, transparent 50%),
        linear-gradient(0deg, blue 50%, transparent 50%),
        linear-gradient(0deg, blue 50%, transparent 50%);
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size:
        15px 4px,
        15px 4px,
        4px 15px,
        4px 15px;
    animation: border-dance 4s infinite linear;
    overflow: hidden !important;
}

.fieldset-no-top-separator {
    margin-top: -1.8rem;
}

.fieldset-bottom-separator {
    border-bottom: 0.05rem solid #dadee4;
}
.fieldset-top-separator {
    border-top: 0.05rem solid #dadee4;
}

.fieldset-bottom-separator legend {
    margin-left: -0.5rem;
}

.slider-ctrl label,
span.input-group-addon {
    color: #000;
}

.field-group {
    color: blue;
    font-size: 0.8rem;
}

.fields-line {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.items-group-content {
    display: flex;
    flex-direction: column;
    margin-top: -1rem;
    padding-bottom: 0.5rem;
    width: 100%;
}

.item-list-move {
    flex-grow: 1;
}

.item-list-name {
    display: flex;
    justify-content: center;
}

.field-group-content {
    display: flex;
    flex-direction: column;
    padding-left: 0.5rem;
    margin-top: -1rem;
    padding-bottom: 0.5rem;
    max-width: fit-content;
}

.maxwidth {
    width: 100%;
    max-width: 100%;
}

.terminal {
    font-size: $font-size-sm;
    white-space: pre-wrap;
    word-break: break-all;
    border: 0.05rem solid #dadee4;
    border-radius: $border-radius;
    padding: 5px 5px !important;
    margin-top: 0px !important;
    overflow-x: hidden;
    overflow-y: scroll !important;
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;

    .echo {
        color: blue;
    }
    .error {
        color: red;
        font-weight: bolder;
    }
    pre {
        margin: 0px 5px;
        white-space: pre-wrap;
        word-break: break-all;
    }
}

@keyframes border-dance {
    0% {
        background-position:
            0 0,
            100% 100%,
            0 100%,
            100% 0;
    }
    100% {
        background-position:
            100% 0,
            0 100%,
            0 0,
            100% 100%;
    }
}

.comment {
    background: #f1f1fc;
    color: #005b96;
    padding-left: 0.5rem;
}

.submitBtn {
    display: none;
}

.has-modification .submitBtn {
    display: block;
}

.files-list-footer {
    color: #005b96;
}

.file-line-controls {
    flex-grow: 1;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
}
.flex-pack,
.file-line-name {
    align-items: center;
    justify-content: flex-start;
    display: flex;
    flex-wrap: nowrap;
}

.file-line-action label,
.file-line-action {
    cursor: pointer;
}

.file-line-action:active {
    color: blue;
    font-weight: bolder;
}

.file-line {
    display: -ms-flexbox;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    line-height: 2.2rem;
}

.bordered {
    border: 0.05rem solid #dadee4;
    border-radius: $border-radius;
}

.bordered_warning {
    border: 0.1rem solid $warning-color;
    border-radius: $border-radius;
}

.file-line:hover {
    color: #005b96;
    background-color: #f1f1fc;
    border-radius: $border-radius;
}


.m-05 {
    margin: 0.05rem !important;
}

.min2rem {
    min-width: 2rem;
}

.min1rem {
    min-width: 1rem;
}

.contentContainer,
.extensionContainer ,
.cameraContainer,
.imageContainer {
    border: none;
    overflow: hidden;
    flex: 1;
    padding: 5px;
}
.cameraContainer,
.imageContainer {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto; /* Centers the image horizontally */
}
.picture-container {
    width: 100%;
    max-height: calc(100% - 3rem);
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    object-fit: contain;
}
.contentContainer,
.extensionContainer {
    height: 100%;
    width: 100%;
    
}

.page-container {
    display:flex;
    flex-direction: column;
    height: 100% ;
    overflow: hidden;    
}
.extra-content-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    position:absolute;
    z-index: 9999;
    opacity: 1;
    display: block;
    pointer-events: auto!important;
    user-select: auto!important;
    -moz-user-select: auto!important;
    -webkit-user-select:auto!important;
    -ms-user-select: auto!important;
    overflow: hidden;
    background-color: #fff;
}

.fallback-content {
    display: none;
    text-align: center; font-size: 1.5rem; background-color: red; color: white; margin-top: 0.5rem;
}

.page-target-container {
    flex:1;
    z-index: auto;
}

.panel-target-container {
    z-index: auto;
    overflow: hidden;
}


.body-extension {
    overflow-y: auto !important;
}

.mobile-view .btn-header,
.btn-header:hover,
.mobile-view .btn-close,
.btn-close:hover {
    color: white !important;
    background-color: blue !important;
}

.logo {
    padding-top: 7px;
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 5px;
}

.clearShortkey,
.passwordReveal {
    color: #c0c0c0;
    cursor: pointer;
    margin-top: -0.22rem !important;
    margin-right: 0.9rem !important;
}

.clearShortkey:hover,
.passwordReveal:hover {
    color: blue;
}

.align-top {
    align-items: top !important;
    -ms-flex-align: top !important;
}

a label {
    cursor: pointer;
}

.flex-wrap .form-label {
    margin-right: 10px;
}

.form-select {
    color: #000;
}

.notification-line {
    padding-top: 4px !important;
    padding-left: 4px;
    padding-right: 4px;
    cursor: pointer;
}
.notification-line:hover {
    background-color: #f1f1fc;
}

.feather-icon-container .text-menu-item,
.feather-icon-container .text-ellipsis,
.feather-icon-container label {
    vertical-align: top;
    margin-left: 0.25rem;
}

.tooltip > svg,
.tooltip > span {
    pointer-events: none;
}
.form-group-inline {
    margin-bottom: 0.4rem;
}

.form-group .form-label,
.form-switch {
    cursor: pointer;
    user-select: none;
}

.has-modification svg {
    color: $warning-color;
}

.has-error svg {
    color: $error-color;
}

.has-success svg {
    color: $success-color;
}

.has-modification label,
.has-modification .form-input-hint,
.is-modified + .form-input-hint {
    color: $warning-color;
}

.has-modification .form-input,
.form-input.is-modified,
.has-modification .form-select,
.form-select.is-modified {
    background: #fffaf7;
    border-color: $warning-color;
}

.has-modification .form-input:focus,
.form-input.is-modified:focus,
.has-modification .form-select:focus,
.form-select.is-modified:focus {
    box-shadow: 0 0 0 0.1rem rgba(232, 86, 0, 0.2);
}

.has-modification .form-checkbox .form-icon,
.form-checkbox.is-modified .form-icon,
.has-modification .form-radio .form-icon,
.form-radio.is-modified .form-icon,
.has-modification .form-switch .form-icon,
.form-switch.is-modified .form-icon {
    border-color: $warning-color;
}

.has-modification .form-checkbox input:checked + .form-icon,
.form-checkbox.is-modified input:checked + .form-icon,
.has-modification .form-radio input:checked + .form-icon,
.form-radio.is-modified input:checked + .form-icon,
.has-modification .form-switch input:checked + .form-icon,
.form-switch.is-modified input:checked + .form-icon {
    background: $warning-color;
    border-color: $warning-color;
}

.has-modification .form-checkbox input:focus + .form-icon,
.form-checkbox.is-modified input:focus + .form-icon,
.has-modification .form-radio input:focus + .form-icon,
.form-radio.is-modified input:focus + .form-icon,
.has-modification .form-switch input:focus + .form-icon,
.form-switch.is-modified input:focus + .form-icon {
    border-color: $warning-color;
    box-shadow: 0 0 0 0.1rem rgba(232, 86, 0, 0.2);
}

.has-modification .form-checkbox input:indeterminate + .form-icon,
.form-checkbox.is-modified input:indeterminate + .form-icon {
    background: $warning-color;
    border-color: $warning-color;
}

.has-button-submit .form-input {
    border-radius: 0.2rem !important;
}

.has-modification {
    .has-button-submit .form-input {
        border-top-right-radius: 0px !important;
        border-bottom-right-radius: 0px !important;
    }
}

.flatbtn {
    input[type="radio"] {
        display: none;
        &:not(:disabled) ~ label {
            cursor: pointer;
        }
        &:disabled ~ label {
            color: hsla(150, 5%, 75%, 1);
            border-color: hsla(150, 5%, 75%, 1);
            box-shadow: none;
            cursor: not-allowed;
        }
    }
    label {
        font-size: 0.8rem;
        height: 1.8rem;
        line-height: 1.8rem;
        display: block;
        background: white;
        border: 0.05rem solid #005b96;
        border-top: 0em;
        text-align: center;
        color: #005b96;
        position: relative;
        min-width: 2rem;
    }

    input[type="radio"]:active + label {
        background: blue;
        color: white;
    }
    input[type="radio"]:checked + label {
        background: #005b96;
        color: white;
    }
    .last-button {
        border-radius: 0px 0px 5px 5px;
    }
}

.btn.btn-screen {
    background: transparent;
    border: 0;
    color: currentColor;
    height: 1rem;
    line-height: 0.8rem;
    margin-left: 0.2rem;
    margin-right: -2px;
    opacity: 1;
    padding: 0.1rem;
    text-decoration: none;
    width: 1rem;
}

.btn.btn-screen:hover {
    background: blue;
    color: #fff;
    border: 0;
}

.nested-button {
    color: blue ;
    background-color: #f1f1fc;
}

.insensitive {
    pointer-events: none;
}
.text-straigth {
    overflow: hidden !important;
    white-space: nowrap;
    text-overflow: ellipsis !important;
}

.icon-btn {
    min-width: 2rem;
}

.filelist-occupation {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.text-like-icon {
    font-size: 1.4rem;
    vertical-align: top;
}

.button-mininal {
    min-width: 2.5rem;
}

.icon-clear,
.icon-reveal {
    margin-top: 0.15rem;
}

.iframe-container {
    z-index: 0 !important;
}

.go-previous {
    height: 2rem !important;
}

.go-previous-text {
    font-size: 1.4rem;
}

.progress-value-label {
    margin-left: 15px;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.content-icon {
    padding: 0 20px;
}

.empty-content {
    flex-wrap: nowrap !important;
}

.no-margin-no-padding {
    margin: 0 !important;
    padding: 0 !important;
}

.modal_title {
    line-height: 24px !important;
}


.modals-container {
    overlay: auto!important;
    z-index:100000 !important;
}

.toasts-container {
    position: fixed;
    z-index: 100000 !important;
    right: 0.5rem;
    top: 0.5rem;

    > .toast {
        margin: 0.2rem 0;
    }
}
:fullscreen .toasts-container{
    top: 1.2rem;
    z-index: 100000 !important;
    overlay: auto!important;
}

@media (max-width: $size-xs) {
  [class~="col-"],
  .column {
    flex-basis: 100% ;
    width: 100%;
  }
}