/* Mods to bootstrap */

/* Reset font size from Bootstrap default of 16px */
html {
    font-size: 14px;
}

button svg {
    pointer-events: none;
}

/* Remove padding on modal-open as I dont have scrollbars */
.modal-open {
    padding-right: 0 !important;
}

/* Adjust vertical alignment of icons */
.bi {
    vertical-align: -0.125em;
    margin-bottom: calc(-0.125em / 2);
}

/* reset color of the toast body, otherwise its too dark */
.toast-body {
    background-color: rgb(255, 255, 255);
}

/* tooltip contents */
.tooltip .tooltip-inner {
    text-align: left;
    font-size: 1rem;
    max-width: 400px !important;
}


.tooltip .tooltip-inner ul {
    padding-left: 1.5em;
    margin-bottom: 0;
}

/* Additional CSS */

@keyframes fadeToBlack {
    0% {
        opacity: 0;
    }

    /* Start (not visible if 'forwards' is used) */
    100% {
        opacity: 1;
    }
}

.fade-text.animate {
    animation: fadeToBlack 0.5s ease;
}

/* Extracted from inline styles */
.app-container {
    min-height: 100vh;
    margin: 0 auto;
}

.scroll-container {
    background-color: rgb(247, 247, 247);
    overflow-y: scroll;
}