/* line 1, sass/_layout.scss */
html, body {
    height: 100%;
}

/* line 5, sass/_layout.scss */
body {
    background-color: #eeeeee;
    overflow: auto;
    /*makes the body non-scrollable (we will add scrolling to the sidebar and main content containers)*/
    display: flex;
    /*enables flex content for its children*/
    box-sizing: border-box;
    flex-direction: column;
}

@font-face {
    font-family: 'Font Awesome 5 Free';
    src: url('lib/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.eot');
    src: url('lib/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.eot?#iefix') format('embedded-opentype');
    src: url('lib/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.ttf') format('truetype');
    src: url('lib/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.svg#open_sans') format('svg');
    src: url('lib/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.woff2') format('woff2');
    src: url('lib/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* line 13, sass/_layout.scss */
nav {
    flex: 0 0 auto;
}

/* line 16, sass/_layout.scss */
nav .navbar-brand {
    width: 50px;
}

/* line 19, sass/_layout.scss */
nav .navbar-brand img {
    width: 100%;
    height: auto;
}

/* line 26, sass/_layout.scss */
main {
    display: flex;
    flex: 1 1 auto;
    height: 80%;
    flex-direction: row;
}

/* line 34, sass/_layout.scss */
#sidebar {
    width: auto;
    background-color: #f8f8f8;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-top: -18px;
    position: fixed;
    height: 100%;
    padding: 70px 3px 20px;
}

/* line 45, sass/_layout.scss */
#sidebar .sidebar-buttons button:not(.btn-block) {
    width: 48%;
    margin-bottom: 4px;
}

/* line 51, sass/_layout.scss */
#sidebar.expanded {
    margin-top: 0;
    padding-top: 3px;
    position: absolute;
    top: 50px;
    left: 0;
    padding-bottom: 35px;
    height: calc(100% - 55px);
    z-index: 1;
    width: 180px;
}

/* line 91, sass/_layout.scss */
.padded-tabs {
    padding: 12px;
}

/* line 95, sass/_layout.scss */
.grid-with-bottom-buttons {
    display: flex;
    flex-direction: column;
}

/* line 99, sass/_layout.scss */
.grid-with-bottom-buttons .ftui-grid-container {
    min-height: auto;
}

/* line 104, sass/_layout.scss */
.row div.right-border-small {
    border-right: 1px solid #e5e5e5;
    margin-top: -6px;
    margin-bottom: -6px;
    padding-top: 6px;
    padding-bottom: 6px;
}

/* line 112, sass/_layout.scss */
.row div.right-border {
    border-right: 1px solid #e5e5e5;
    margin-top: -18px;
    margin-bottom: -18px;
    padding-top: 18px;
    padding-bottom: 18px;
}

/* line 120, sass/_layout.scss */
.neutral-grid-header {
    background-color: white;
}

/* line 123, sass/_layout.scss */
.neutral-grid-header .ftui-title-label {
    color: #333;
}

/* line 126, sass/_layout.scss */
.neutral-grid-header .ftui-title-label:after {
    background-color: rgba(0, 0, 0, 0.4);
}

/* line 132, sass/_layout.scss */
.row.highlight {
    background-color: #eee;
    color: #333;
    font-weight: 400;
    padding: 4px 0;
}

/* line 143, sass/_layout.scss */
.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* line 152, sass/_layout.scss */
.highlighted {
    /*background-color: red!important;*/
    background-image: repeating-linear-gradient(45deg, white 0%, white 2%, lightgreen 2%, lightgreen 4%, white 4%);
    border-width: 3px;
}

/* line 162, sass/_layout.scss */
.is-placeable {
    background-color: lightgreen;
}

.not-empty {
    background-color: lightgrey;
}

/* line 3, sass/_menu.scss */
.right-btn {
    margin-right: 15px;
}

/* line 18, sass/_menu.scss */
nav.navbar {
    border: none;
    border-radius: 0;
}

/* line 1, sass/_elements.scss */
textarea {
    resize: vertical;
}

/* line 1, sass/_typography.scss */
h5 {
    border-bottom: 1px solid #ccc;
    text-shadow: -1px 1px 0 white;
}

/* line 6, sass/_typography.scss */
h6 {
    font-size: 13px;
    font-weight: 700;
    margin-top: 0;
}


.blink_me {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;

    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;

    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@-moz-keyframes blinker {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.75;
    }
    100% {
        opacity: 1.0;
    }
}

@-webkit-keyframes blinker {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.75;
    }
    100% {
        opacity: 1.0;
    }
}

@keyframes blinker {
    0% {
        opacity: 1.0;
    }
    50% {
        opacity: 0.75;
    }
    100% {
        opacity: 1.0;
    }
}

.no-background-color {
    background-color: unset !important;
}

.hidden-input input {
    visibility: hidden;
}

.fa-mean:before {
    content: "\2205";
    font-size: 150%;
    font-weight: 700;
    font-family: Helvetica, Arial, Sans-Serif;
}

.neutral-grid-header {
    background-color: transparent;
    color: black;
    padding-right: 4px !important;
    border: 1px solid lightgrey;
}

.fa-shadow {
    filter: drop-shadow(0 0 4px);
}