    #price-list ul{
        list-style: none;
        padding: 0;
    }
    #price-list ul ul{
        padding: 10px 0 10px 10px;
    }
    #price-list .price-row{
        display: flex;
        justify-content: space-between;
        align-items: end;
        padding: 2px 5px;
        transition: all 0.4s ease;
    }
    #price-list .price-row:nth-child(odd){
        background-color: #eee;
    }
    #price-list .price-row:hover{
        color: #1b9ab4;
    }
    #price-list .price{
        min-width: 100px;
        text-align: right;
    }
    
    #price-list ul li>a>i{ /* chevron */
        display: block;
        transform: rotate(90deg);
        transition: transform 0.4s ease;
    }
    #price-list ul li>a.collapsed>i{
        transform: rotate(0);
    }
    #price-list ul li>a{
        display: flex;
        align-items: center;
        transition: all 0.4s ease;
    }
    #price-list ul li>a>span{
        font-family: var(--bina-font-family);
        text-transform: uppercase;
        line-height: 1.2em;
        margin-right: 10px;
    }
    
    /* 1 */
    #price-list ul.level-1>li>a{
        justify-content: space-between;
        background-color: #c4819a; /* ������-��������� */
        color: #fff;
        padding: 5px 10px;
        margin-bottom: 2px;
    }
    #price-list ul.level-1>li>a:hover{
        background-color: #EAA7BF;
    }
    #price-list ul.level-1>li>a>span{
        font-size: 20px;
        /* font-weight: bold; */
    }
    /* 2 */
    #price-list ul.level-2>li>a{
        color: #444;
    }
    #price-list ul.level-2>li>a:hover{
        color: #1b9ab4;
    }
    #price-list ul.level-2>li>a>span{
        font-size: 16px;
        /* font-weight: bold; */
    }
    /* 3 */
    #price-list ul.level-3>li>a{
        color: #444;
    }
    #price-list ul.level-3>li>a:hover{
        color: #1b9ab4;
    }
    #price-list ul.level-3>li>a>span{
        font-size: 15px;
        /* font-weight: bold; */
    }
    /*--*/

