@font-face {
    font-family: "Titillium";
    src: url("/lib/TitilliumWeb-Regular.ttf") format("truetype");
}

body * {
    font-family: Titillium !important;
}

.bold-me {
    font-weight: bold;
}

.container {
    margin: 20px;
    padding: 10px;
    background-color: #ededed;
}

.center-my-text {
    text-align: center;
}

.table-container {
    margin-top: 10px;
    padding: 10px;
}

.budget-table {
    border: solid 2px #ababab;
    max-width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}

.budget-table th {
    border-bottom: solid 2px #ababab;
    text-align: left;
    background-color: #00c8e3;
}

.budget-table td,
.budget-table th {
    padding: 5px;
}

.budget-table .grey-row {
    background-color: #cedbe0;
}

.filters {
    background-color: white;
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
}

.filters .column-showing {
    display: flex;
}

.filters .filter-label {
    line-height: 30px;
}

.filters .column-select {
    display: flex;
}

.filters .column-select .column-select-item {
    background-color: white;
    color: #00c8e3;
    border: solid 2px #00c8e3;
    margin-left: 5px;
    padding: 3px;
    cursor: pointer;
}

.filters .column-select .column-select-item:hover {
    font-weight: bold;
}

.filters .column-select .column-select-item.active {
    background-color: #00c8e3;
    color: white;
}

.hidden {
    display: none;
}


/*Animate.css*/

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


/*Menu*/

.menu {
    display: flex;
    position: absolute;
    z-index: 21;
}

.menu-items-container {
    border: #5d9cec solid 1px;
    background-color: white;
}

.menu-items-container ul {
    margin: 0px;
    /*padding: 0px;*/
}

.menu-items-container ul li {
    list-style-type: none;
    list-style-image: url('/img/next.png');
}

.menu-item {
    padding: 8px;
    /*cursor: pointer;*/
}

.menu-item a:hover {
    font-weight: bold;
    text-decoration: none;
}

.hide {
    display: none;
}

.toggle-menu {
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}