.calc-list-item {
    margin-right: 5px;
}
.calc-list-item:not(:last-child) {
    border-bottom: 1px solid #F0EEDB;
    margin-bottom: 11px;
}
.calc-list-item__top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin-bottom: 16px;
}
.calc-list-item__name {
    font-family: 'Open Sans';
    font-weight: 300;
    font-size: 18px;
    line-height: 25px;
    display: flex;
    align-items: center;
    color: #575144;
    flex-grow: 1;
}
.calc-list-item__counter {
    height: 40px;
    width: 56px;
    background: #FFFFFF;
    border: 1px solid #B5A58C;
    box-sizing: border-box;
    font-family: 'Open Sans';
    display: flex;
    align-items: center;
    text-align: center;
    color: #575144;
    outline: none;
    font-size: 19px;
}
.calc-list-item__count {
    display: flex;
    align-items: center;
    margin-right: 34px;
}
.calc-list-item__count span {
    font-family: 'Open Sans';
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #575144;
    margin-left: 9px;
    width: 20px;
}
.calc-list-item__delete {
    cursor: pointer;
    width: 22px;
    display: flex;
    justify-content: center;
}
.calc-list-item__tags {
    display: flex;
    align-items: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.calc-list-item__tag {
    background: #F0EEDB;
    border-radius: 100px;
    height: 41px;
    padding: 11px 20px;
    font-family: 'Open Sans';
    font-weight: 300;
    font-size: 14px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #575144;
    margin-right: 8px;
    margin-bottom: 9px;
}
.calc-list-item__tag-coment svg {
    margin-right: 10px;
}