body,html{
    font-family: Roboto, sans-serif;
    background-color: #E9E9E9;
    color: #4a4a4a;
}

h3,
h2,
h1{
    /* color: white; */
    font-weight: 100;
    line-height: 1;
}

h1{
    font-size: 60px;
}

h2{
    font-size: 40px;
}

h3{
    font-size: 30px;
}

button {
    border: none;
    border-radius: 10px;
    padding: 10px 12px;
    background-color: #8eff6c;
    cursor: pointer;
}

a {
    cursor: pointer;
    /* color: #000000; */
    text-decoration: auto;
    border-radius: 5px;
    /* background-color: antiquewhite; */
    padding: 5px 8px;
    display: block;
    font-weight: 100;
    /* width: fit-content; */
    text-align: center;
}

.task-wrapper{
    color: #000000;
}

.task-wrapper a{
    background-color: antiquewhite;
}

.form-wrapper{
    background-color: #2196f3;
    padding: 40px;
    border-radius: 20px;
}

.task-wrapper {
    border-radius: 20px;
    background-color: aliceblue;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
}

.item-wrapper {
    margin-bottom: 5px;
}

textarea,
input[type="text"],
input[type="date"],
input[type="number"],
select {
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid #0000003b;
}

.delete_row{
    cursor: pointer;
}
.delete_row.--task{
    position: absolute;
    right: 14px;
    top: 10px;
}

.tasks{
    width: 100%;
}

/* index style */

.inner {
    min-height: 95vh;
}

.cont {
    margin: 40px 0;
}

.fcols {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0 -10px;
    margin-bottom: 20px;
}

.fcol {
    margin: 0 10px;
}

.fcol.full-width{
    width: 100%;
}

.fcard {
    background-color: white;
    padding: 40px 38px;
    border-radius: 40px;
    width: 100%;
    height: 100%;
    text-align: left;
    color: #4a4a4a;
    position: relative;
}

.fcard.--add{
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
    width: 300px;
    height: 100%;
    position: relative;
}

.fcard.--add span{
    position: absolute;
    font-weight: 400;
    font-size: 200px;
    line-height: 7px;
    text-align: center;

    color: #FFFFFF;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    height: 40px;
    left: 0;
    right: 0;
}

.fcard.--money p{
    margin: 0;
}

.fcard p{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    line-height: 1.3;
}

.fcard-link{
    font-weight: 500;
    font-size: 16px;
    color: #2A5BD9;
    padding: 0;
    background-color: transparent;
    padding-top: 10px;
}

.--rigth-sided{
    margin-right: 0;
    margin-left: auto;
    display: block;
    width: fit-content;
}

.money{
    font-weight: 500;
    font-size: 20px;
    line-height: 35px;
    text-align: center;

    color: #000000;
}
.money-title{
    margin-right: 25px;
}

.--green{
    color: #057D0A;
}

.table tfoot td.--green, .table tfoot th.--green,
.table tbody td.--green, .table tbody th.--green{
    color: #057D0A;
}

.--red,
th.--red{
    color: #D11515;
}

.table tfoot td.--red, .table tfoot th.--red{
    color: #D11515;
}

.flist-item{
    margin-bottom: 20px;
}

.--cross{
    color: #D11515;
    position: absolute;
    right: 30px;
    top: 30px;
}

.--edit{
    color: #939393;
    position: absolute;
    right: 60px;
    top: 29px;
}

.fcard .ftitle{
    padding: 0;
    text-align: left;
}

.table{
    border-radius: 20px;
    width: 100%;
}

.cp-btn{
    background-color: white;
}

.form-total{
    position: absolute;
    right: 40px;
    color: white;
    font-size: 30px;
}

.cont-desc{
    margin-top: 20px;
}

th.pay-status{
    text-align: center;
    color: #ff0606;
    cursor: pointer;
}

th.pay-status._enable{
    text-align: center;
    color: #057D0A;
}

.create_form{
    flex-direction: column;
    display: flex;
    gap: 10px;
}