.expense-header{
    width: 100%;
    height: 100px;
    display: block;
}
.expense-header .expenses-header-section{
    width: 40%;
    float: left;
    height: 100px;
    display: block;
}
.expense-header .expenses-header-section:first-child input:first-child{
    border-top-left-radius: 50px;
    border-color: #ccc;
    border-bottom-left-radius: 50px;
}
.expense-header .expenses-header-section:first-child input:nth-child(2){
    border-color: #ccc;
    border-right: unset;
    border-left: unset;
    border-left-color: none;
}
.expense-header .expenses-header-section:first-child button{
    border-left-color: none;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}
.expense-header .expenses-header-section h4{
    font-size: 1.3em;
}
.expense-header .expenses-header-section:last-child button{
    float: right;
    width: 30%;
    border-radius: 50px;
    margin-top: 28px;
    margin-left: 7px;
}
.expense-header .expenses-header-section:last-child{
    width: 60%;
}
.expense-body{
    width: 70%;
    height: auto;
    display: block;
    padding-bottom: 20px;
    color: black;
}
.expense-body input{
    border-radius: 50px !important;
    border: 1px solid #ccc;
}
.expense-body input:hover{
    border-radius: 50px !important;
    border: 1px solid #ccc;
}
.expenses-wrapper{
    position: fixed;
    top: 0%;
    right: 0%;
    bottom: 0%;
    left: 0%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
}
.expenses-card{
    border-radius: 12px;
    z-index: 99999;
    width: 25%;
    height: 450px;
    display: block;
    position: fixed;
    top: 15%;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    opacity: 0;
    background-color: #fff;
    transition: .3s ease-in-out;
}
.expenses-card .expenses-card-header{
    width: 90%;
    height: 70px;
    display: block;
    margin: auto;
    line-height: 70px;
    font-size: 2em;
    color: black;
}
.expenses-card .expenses-card-body{
    width: 90%;
    height: 310px;
    display: block;
    margin: auto;
}
.expenses-card .expenses-card-body input{
    border-radius: 50px;
    border-color: #ccc;
}
.expenses-card .expenses-card-footer{
    width: 90%;
    line-height: 70px;
    height: 70px;
    display: block;
    margin: auto;
}
.expenses-card .expenses-card-footer button{
    float: right;
    width: 30%;
    margin-top: 10px;
    border-radius: 50px;
    margin-right: 10px;
}
