.prices {
    font-family: "Noto Serif", serif;
    margin-bottom: 80px;
}
.prices h2 {
    display: block;
    font-size: 42px;
    line-height: 1.23;
    margin-bottom: 24px;
}
.prices ul li:before {
    content: none;
}
.prices ul li {
    padding-left: 0;
    margin: 0;
}
.prices__list {
    margin-left: auto;
    margin-right: auto;
}
.prices__i-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: inherit;
    font-size: 16px;
    line-height: 24px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.prices__i-name {
    width: 60%;
    padding-right: 40px;
}
.prices__i-price {
    width: 20%;
    white-space: nowrap;
}
.prices__i-code {
    width: 20%;
    color: #CFC2BF;
}

@media screen and (max-width: 600px) {
    .prices {
        margin-bottom: 40px;
    }
    .prices__i-link {
        align-items: flex-start;
    }
    .prices__i-name {

    }
    .prices h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .prices__i-code {
        width: 100%;
        text-align: right;
    }
    .prices__i-price {
        text-align: right;
    }
}