.price h1 {
    margin-bottom: 20px;
}

.price * {
    box-sizing: border-box;
}

.price__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-family: 'Ubuntu',sans-serif;
}

.price__table tr {
    border-bottom: 1px solid #D5D5D5;
}

.price__table:last-child {
        border-bottom: none;
}

.price__table td {
        padding: 10px;
    }

.price__table-company {
    background: #136737;
}

.price__table-type {
    background: linear-gradient(to right,#9cb620,#7ea01b);
}

.price__table-company,
.price__table-type {
    font-family: "PT Sans", sans-serif;
    font-weight: bold;
    height: 50px;
}

.price__table-company td,
.price__table-type td {
    padding: 0;
    padding-left: 10px;
    color: #fff;
}


.price__table-type td {
    padding-left: 20px;
}

.price__table-name {
    color: #e86d32;
}

.price__table-block {
    display: flex;
    align-items: center;
}

.price__table-block-type {
    margin-right: 30px;
}


.price__table-store {
    width: 90px;
    text-align: center;
}


.price__table-price {
    width: 125px;
    text-align: center;
}

.price__table-price:after {
    content: " Руб."
}

.price__table-add {
    height: 25px;
    border: none;
    outline: none;
    background:  url(../img/basket.svg) no-repeat left center;
    background-size: contain;
    padding-left: 30px;
    float: right;
    cursor: pointer;
}

.price__table-add:hover {
    background-image:  url(../img/basket-hover.svg);
}


.price__table-td-add {
    width: 130px;
}


.price__table-item .select {
    width: 123px;
}

.price__table-count {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}


@media screen and (max-width: 800px) {
    .price__table tr {
        display: block;
    }

    .price__table td {
        display: block;
    }

    .price__table-name {
        text-align: center;
    }

    .price__table-count {
        display: flex !important;
    }

    .price__table-td-add,
    .price__table-price,
    .price__table-store {
        width: 100%;
    }

    .price__table-add {
        float: none;
    }

    .price__table-company td,
    .price__table-type td {
        padding: 15px;
    }
}


.price__table-company a,.price__table-type a,.price__table-name a{text-decoration:none;}
.price__table-company a:hover,.price__table-type a:hover,.price__table-name a:hover{text-decoration:underline;}

.price__table {
    table-layout: fixed;
}

.price__table-count {
    width: 300px;
}

@media screen and (max-width: 816px) {
    .price__table-count {
        margin: 0 auto;
        justify-content: center;
    }
}

@media screen and (max-width: 360px) {
    .price__table-count {
        width: 100%;
    }

    .price__table-count form:nth-child(2) {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .price__table-count p {
        margin: 0;
        margin-bottom: 5px;
    }
}