.basket-container form{
    display: grid;
    grid-template-columns: repeat(12, 70px);
    grid-gap: 30px;
    justify-content: space-between;
}

.order {
    grid-column-start: span 4;
    background-color: #edeef2;
    border-radius: 10px;
    padding: 15px;
    word-break: break-word;
}

.order__total {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px 20px;
    display: grid;
    grid-gap: 15px;
}

.order__total-saving, .order__total-price {
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}

.order__total-saving {
    color: #808080;
}

.order__total-price {

    font-size: 1.714em;
}

.order__btn {
    display: block;
    border-radius: 5px;
    text-align: center;
}

.order__btn-credit {
    background-color: #ffffff;
    color: #777777;
    border: 1px solid #8d92a6;
}

.product-list, .basket-empty {
    grid-column-start: span 8;
}

.product {
    display: grid;
    grid-template-columns: repeat(8,70px);
    grid-gap: 30px;
    margin-bottom: 30px;
}
.product::after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background-color: #edeef2;
    grid-column-start: span 10;
}
.product:last-child {
    margin-bottom: 0;
}
.product:last-child::after {
    display: none;
}
.product__image {
    grid-column-start: span 2;
    width: 170px;
}

.product__image img{
    width: 100%;
}

.product__body {
    grid-column-start: span 6;
    display: grid;
    grid-template-columns: 300px 130px auto;
    grid-template-rows: 25px auto auto 90px;
    justify-content: space-between;
}

.product__description {
    color: #999999;
    grid-row-start: 1;
}
.product__title {
    grid-row-start: 2;
    margin: 10px 0;
}
.product__title a{
    font-weight: 500;
    font-size: 1.286em;
    color: #222;
}

.product__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 25px;
    grid-row-gap: 10px;
    grid-row-start: 3;
}

.product__info-name {
    color: #777777;
    display: flex;
}
.product__info-name::after {
    content: '';
    display: block;
    width: 100%;
    background: #edeef2;
    height: 1px;
    align-self: center;
}
.product__info-item {
    font-weight: 300;
}

.product__count {
    grid-column-start: 2;
    grid-row-start: 3;
}
.product__count-btn {
    border: none;
    background: none;
    color: #8d92a6;
    font-size: 1.429em;
}
.product__price {
    grid-column-start: 3;
    grid-row-start: 3;
}
.product__count-text {
    border: none;
    font-size: 1.143em;
    width: 20px;
}
.product__price-old {
    color: #999999;
    text-decoration: line-through;

}

.product__price-actual {
    font-weight: 500;
    font-size: 2.143em;
}

.product__buttons {
    grid-column-start: 3;
    grid-row-start: 4;
}

.product__button {
    font-weight: 300;
    color: #777777;
    font-size: 0.929em;
    text-align: center;
    padding: 5px;
    margin-top: 10px;
    border: 1px solid #777;
    border-radius: 15px;
}

.product__button:hover {
    border: 1px solid #ac328d;
}

.order__form {
    border-radius: 10px;
}

.order__form form[name='priceForm'], .addressForm, .adr-contact {
    display: grid;
    grid-gap: 10px;
}

.order__form form[name='priceForm'] label > span {
    color: #d01111;
}

.order__form .form-policy{
	width: 400px;
}

.adr-contact {
    grid-template-columns: auto auto;
}