.service{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.search-label{
    display: block !important;
}
.search-form-inputs{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}
.search-form-btns{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}
.search-form-btns button{
    margin-right: 10px;
}
.shopping-part{
    display: flex;
    gap: 30px;
}
.services{
    width: 70%;
}
#cart-box{
    width: 30%;
    height: fit-content;
    border: 1px solid #cf7c00;
    border-radius: 5px;
    z-index: 3;
    right: 10px;
    top: 60px;
    padding: 10px;
    background: #f5e7cbd0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
}
.cart-box-item{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row;
    gap: 10px;
    width: 100%;
}
.item-box-del-btn{
    padding: 0 !important;
}
.item-box-del-btn:checked,
.item-box-close-btn:checked{
    border: none !important;
}
.item-box-del-btn svg{
    width: 20px !important;
    height: 20px !important;
}
.cart-title{
    font-size: 1.2rem;
    font-weight: bold;
    width: 100%;
    text-align: center;
}