﻿

.fee-list .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    padding: 10px 0;
}

    .fee-list .item:not(:last-child) {
        border-bottom: 1px solid #ccc;
    }

.fee-list .service::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% - 100px);
    right: 100px;
    border-bottom: 1px dotted #000;
}

.fee-list .service, .fee-list .fee {
    background: #fff;
    z-index: 1;
    padding: 0 10px;
}

.fee-list .fee {
    text-align: right;
}
