#loginSection {
    margin-top: 100px;
}

#appSection {
    display: none;
}

.password-field {
    max-width: 400px;
    margin: 0 auto;
}

.masked-password {
    -webkit-text-security: disc;
}

.masked-password:hover {
    -webkit-text-security: none;
}

.mono-text,
#recordPwd,
#recordCaptionDisplay {
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 1px;
    font-weight: bold;
    font-size: large;
}


.caption-highlight {
    font-family: 'Courier New', Courier, monospace;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    background: #fff;
    min-height: calc(2.25rem + 2px);
    word-break: break-all;
}

.caption-highlight .op-or,
.caption-highlight .op-and {
    color: #dc3545;
    font-weight: bold;
}

.caption-highlight .brace {
    color: #dc3545;
    font-weight: bold;
}

.dropdown-menu {
    background-color: #fff !important;
    max-height: 250px;
    overflow-y: auto;
}

.dt-button-collection {
    z-index: 9999 !important;
    min-width: 150px !important;
    width: auto !important;
    max-height: 50vh !important;
    overflow-y: auto !important;
}

.dt-button-collection>* {
    min-width: 150px !important;
}


.no-border {
    border: none !important;
    background-color: transparent !important;
    padding-left: 0 !important;
}

.modal-backdrop.show {
    opacity: 0.5;
}



.modal {
    overflow-x: hidden;
}

.modal-dialog-centered {
    margin: 0.5rem auto;
}

.modal-body {
    overflow-x: auto;
}

.modal-content {
    overflow-x: auto;
    background-color: #fff;
}

table.dataTable>tbody>tr>td {
    white-space: normal;
    max-width: 30ch;
    word-wrap: break-word;
}

.dt-scroll-body {
    background-color: #f8f9fa !important;
}



#passwordModal,
#triggerKeyPwdModal,
#hintModal {
    background-color: rgba(0, 0, 0, 0.5);
}

#currentPwdSection.d-none {
    display: none !important;
}

#loginSection h1 {
    font-size: 2.3rem;
}

div.dt-button-collection {
    margin-top: 0px !important;
    min-height: 50px !important;
}

.dt-column-order {
    color: red;
}

.blink {
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
    100% {
        opacity: 30%;
    }
}

#db-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-color: rgba(255, 255, 255, 0.9);
}

#db-background img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    transform: translate(-50%, -50%);
    animation: db-parallax 40s ease-in-out infinite;
    opacity: 0.12;
    /* filter: blur(4px); */
}

@keyframes db-parallax {
    0% {
        transform: translate(-50%, -80%);
    }

    25% {
        transform: translate(-45%, -70%);
    }

    50% {
        transform: translate(-50%, -50%);
    }

    75% {
        transform: translate(-55%, -70%);
    }

    100% {
        transform: translate(-50%, -80%);
    }
}

@media (orientation: portrait) {
    #db-background img {
        animation: db-parallax-portrait 30s ease-in-out infinite;
    }
}

@keyframes db-parallax-portrait {
    0% {
        transform: translate(-50%, -85%)
    }

    50% {
        transform: translate(-50%, -65%)
    }

    100% {
        transform: translate(-50%, -85%)
    }
}

#dbIconWrapper {
    animation: db-icon-move 25s ease-in-out infinite;
    transform-origin: center center;
}


#dbIconOverlay.click-disabled {
    pointer-events: none;
}

#dt-search-0 {
    margin-bottom: .25rem !important;
}




@keyframes db-icon-move {

    0% {
        transform: translate(0, 0);
    }

    7% {
        transform: translate(var(--coeff-7x), var(--coeff-7y));
    }

    14% {
        transform: translate(var(--coeff-14x), var(--coeff-14y));
    }

    21% {
        transform: translate(var(--coeff-21x), var(--coeff-21y));
    }

    28% {
        transform: translate(var(--coeff-28x), var(--coeff-28y));
    }

    35% {
        transform: translate(var(--coeff-35x), var(--coeff-35y));
    }

    42% {
        transform: translate(var(--coeff-42x), var(--coeff-42y));
    }

    49% {
        transform: translate(var(--coeff-49x), var(--coeff-49y));
    }

    56% {
        transform: translate(var(--coeff-56x), var(--coeff-56y));
    }

    63% {
        transform: translate(var(--coeff-63x), var(--coeff-63y));
    }

    70% {
        transform: translate(var(--coeff-70x), var(--coeff-70y));
    }

    77% {
        transform: translate(var(--coeff-77x), var(--coeff-77y));
    }

    84% {
        transform: translate(var(--coeff-84x), var(--coeff-84y));
    }

    91% {
        transform: translate(var(--coeff-91x), var(--coeff-91y));
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes vibrate {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-15px);
    }

    75% {
        transform: translateX(15px);
    }
}


@keyframes spin-success {

    0% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }

    50% {
        transform: rotate(270deg) scale(3);
        opacity: 0.5;
    }

    100% {
        transform: rotate(720deg) scale(8);
        opacity: 0;
    }
}