@-webkit-keyframes expand {
    0% {
        -webkit-transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
    }

    100% {
        z-index: 1;
    }
}

@keyframes expand {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }

    100% {
        z-index: 1;
    }
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

section {
    overflow: hidden;
}

.h-100 {
    height: 100%;
}

.overflow-auto {
    overflow: auto;
}

.p-3 {
    padding: 1rem;
}

.px-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-sm > li > a {
    padding: 5px 10px;
}

.loader-container {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -20px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 0 0 6.66667px #141414;
    width: 40px;
    height: 40px;
}

    .loader:before, .loader:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        display: block;
        margin: -21px 0 0 -21px;
        border-radius: 50%;
        z-index: 2;
        width: 42px;
        height: 42px;
    }

    .loader:before {
        background-color: #141414;
        -webkit-animation: expand 1.6s linear infinite both;
        -moz-animation: expand 1.6s linear infinite both;
        animation: expand 1.6s linear infinite both;
    }

    .loader:after {
        background-color: white;
        -webkit-animation: expand 1.6s linear 0.8s infinite both;
        -moz-animation: expand 1.6s linear 0.8s infinite both;
        animation: expand 1.6s linear 0.8s infinite both;
    }

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    vertical-align: middle;
}

.tab-content .tab-pane {
    padding: 20px 0px;
}

.total .text {
    float: left;
    width: 160px;
    margin: 4px;
}

.total .text-input {
    float: left;
    width: 320px;
    padding: 0 8px;
    margin: 0;
}

.total .value {
    float: left;
    padding: 4px 16px;
    margin: 4px;
    font-weight: bold;
    width: 100px;
}

.total .value2 {
    float: right;
    padding: 4px 16px;
    margin: 4px;
    font-weight: bold;
}

.total .value-input {
    float: right;
    padding: 0 16px;
    margin: 0;
}

    .total .value-input .amount {
        width: 100px;
    }

    .total .value-input .form-group {
        float: left;
    }

.other {
    padding: 4px 8px;
    width: 240px;
}

.activity-type {
    width: 100%;
    padding: 4px 8px;
    border-radius: 2px;
}

.setting-row {
    padding: 5px 0px;
}

.calculation-operand {
    float: left;
    width: 60px;
    text-align: right;
}

.calculation-operator {
    float: left;
    width: 30px;
    text-align: center;
    font-weight: normal;
}

.calculation-total {
    text-align: right;
    font-weight: bold;
}

.weekend {
    background-color: #dddddd;
}

