body{
    font-family: Open Sans;
    font-family: Open Sans;
}


.red { color: #FF5049 !important; }
.red-focus:focus { border: 1px solid #FF5049 !important; }

.top{
    background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url(back.png);
    background-size: cover;
    background-position-x: center;
    font-size: 70px;
    

}

.close{
    border: 2px solid;
    border-radius: 50%;
    font-style: normal;
    padding: 0px 15px 5px 15px;
}

.budget{
    text-align: center;
    color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 738px;
}

.budget__title{
    font-size: 40px;
}

.budget__value{
    font-size: 100px;
    margin: 4% 0%;
}

.budget__income{
    text-transform: uppercase;
    display: flex;
    font-size: 40px;
    justify-content: space-around;
    background: #28B9B5;
    align-items: center;
    padding: 4% 0%;
    color: black;
    margin: 1% 4%;
}

.right{
    display: flex;
    color: white;}


.budget__income--percentage{
    margin-left: 25px;
    
}

.budget__expenses--percentage{
    margin-left: 25px;
    background-color:  rgba(255, 255, 255, 0.2);
}

.budget__expenses{
    text-transform: uppercase;
    display: flex;
    font-size: 40px;
    justify-content: space-around;
    background: #FF5049;
    align-items: center;
    padding: 4% 0%;
    color: black;
    margin: 1% 4%;

    
}

.budget__expense--percentage{
    margin-left: 25px;
}

.add{
    display: flex;
    /* align-items: center; */
    background-color: #e7e7e7;
    /* margin: 1%; */
    padding: 3% 1%;
}

.add__container{
    display: flex;
    width: 100%;
    justify-content: center;
}

.add__type{
    border: 1px solid #e7e7e7;
    /* background-color: #e7e7e7; */
    transition: border 0.3s;
    font-size: 100px;
    width: 15%;
}

.add__description{
    width: 40%;
    font-size: 40px;
    /* border-radius: 5px; */
    margin: 0px 20px;
    text-align: center;
}

.add__value{
    width: 30%;
    font-size: 40px;
    text-align: center;
    /* border-radius: 5px; */
}

.add__btn{
    border: 7px solid;
    border-radius: 40%;
    background: none;
    color: #28B9B5;
    font-size: 70px;
    width: 10%;
    margin-left: 10px;
}
.add__btn:active { transform: translateY(2px); 
outline: none;}

.add__btn:focus{
    outline: none;
}

.add__type:focus,
.add__description:focus,
.add__value:focus {
    outline: none;
    border: 1px solid #28B9B5;
}



.container {
    text-align: center;
    margin: 60px auto;
}

.income,
.expenses {
    margin-left: 30px;
}

h2 {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}

.icome__title { font-size: 50px; color: #28B9B5; }
.expenses__title { font-size: 50px; color: #FF5049; }

.item {
    padding: 13px;
    border-bottom: 1px solid #e7e7e7;
    font-size: 40px;
}

.item:first-child { border-top: 1px solid #e7e7e7; }
.item:nth-child(even) { background-color: #f7f7f7; }

.item__description {
    float: left;
    width: 65%;
    text-align: left;
    
}

.item__value {
    float: left;
    transition: transform 0.3s;
}

.item__percentage {
    float: left;
    margin-left: 25px;
    transition: transform 0.3s;
    font-size: 20px;
    background-color: #FFDAD9;
    padding: 3px;
    border-radius: 3px;
    width: 32px;
    text-align: center;
}

.income .item__value,
.income .item__delete--btn {
    color: #28B9B5;
}

.expenses .item__value,
.expenses .item__percentage,
.expenses .item__delete--btn {
    color: #FF5049;
}


.item__delete {
    float: left;
}

.item__delete--btn {
    font-size: 50px;
    background: none;
    border: none;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    display: none;
}

.item__delete--btn:focus { outline: none; }
.item__delete--btn:active { transform: translateY(2px); }

.item:hover .item__delete--btn { display: block; }
.item:hover .item__value { transform: translateX(-20px); }
.item:hover .item__percentage { transform: translateX(-20px); }


.unpaid {
    background-color: #FFDAD9 !important;
    cursor: pointer;
    color: #FF5049;

}

.unpaid .item__percentage { box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1); }
.unpaid:hover .item__description { font-weight: 900; }

