* {
    font-family: 'Open Sans', Arial, sans-serif;
}

body {
    height: 100%;
    /* background-color: #f0eded; */
    background-color: #f8f9fb;
    max-width: 100vw;
    overflow-y: auto;
}

table thead tr {
    background: linear-gradient(20deg, #B50000, #B50000, #472D2D);
    color: white;
}

td {
    border-bottom: 1px solid #dee2e6;
}

.navbar {
    padding: .5rem 0rem ;
}

.list-group-item.active {
    background: linear-gradient(20deg, #B50000, #B50000, #472D2D);
}

.btn-primary {
     background: linear-gradient(20deg, #B50000, #B50000, #472D2D);
    border-color: #0b619e;
}

.nav_bg {
    background: linear-gradient(20deg, #B50000, #B50000, #472D2D);
}

.clear_total {
    color: cornflowerblue;
}

.clear_total:hover {
    text-decoration: underline;
    color:black
}

.result_total .total .sign{
    display: inline-block;
    font-family: "Lato",sans-serif;
    font-size: 38px;
    font-weight: 500;
    vertical-align: middle;
}

.result_total .total .currency{
    font-family: "Lato",sans-serif;
    font-size: 70px;
    font-weight: 500;
    letter-spacing: -2px;
    line-height: 60px;
    padding: 0;
    vertical-align: middle;
    color: #0b619e;
}

.result_total .total .cent{
    display: inline-block;
    font-family: "Lato",sans-serif;
    font-size: 34px;
    font-weight: 600;
    vertical-align: bottom;
    color: #0b619e;
}

.result_total .month{
    font-family: "Lato",sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 3px;
    vertical-align: bottom;
}

.buttons {
    margin-top: 60px;
    margin-right: 20px;
}

#info {
    font-size: 30px;
    color: crimson;
}

#info:hover {
    color: #0b619e;
}

/* LG */
@media (min-width: 992px) and (max-width: 1199.98px) { 
    .result_total .total .sign{
        font-size: 36px;
    }
    .result_total .total .currency{
        font-size: 60px;
    }
    .result_total .month{
        font-size: 27px;
    }
}
/* MD */
@media (min-width: 768px) and (max-width: 991.98px) { 
    .result_total .total .sign{
        font-size: 35px;
    }
    .result_total .total .currency{
        font-size: 50px;
    }
    .result_total .month{
        font-size: 25px;
    }

    #logout {
        float: right;
    }
}
/* SM */
@media (min-width: 576px) and (max-width: 767.98px) { 
    .result_total .total .sign{
        font-size: 30px;
    }
    .result_total .total .currency{
        font-size: 45px;
    }
    .result_total .month{
        font-size: 21px;
    }
    #logout {
        float: right;
    }
}
/* XS */
@media (max-width: 575.98px) {
    .result_total .total .sign{
        font-size: 28px;
    }
    .result_total .total .currency{
        font-size: 40px;
    }
    .result_total .month{
        font-size: 18px;
    }
    #logout {
        float: right;
    }
}

