h1 {
    text-align: center;
}
table.cart {
    border-collapse: collapse;
    border: 1px solid  #666;
}

table.cart td {
    border: 1px solid #666;
    padding: 5px 10px;
    text-align: center;
}

table.cart img {
    width: 48px;
}

table.cart span.total {
    font-weight: 800;
}

table.cart button.btn-table,button.btn-clear {
    font-size: 16px;
    font-weight: normal;
    text-transform: none;
    text-align: right;
}

table.cart button.btn-table a{
    color: #fff;
}

.goods {
    position: relative;
}

.goods img {
    width: 150px;
    display: block;
    margin: 0 auto;
    max-height:  222px;
}

.goods h2 {
    font-size: 22px;
    margin: 0 0 20px 0;
    line-height: 100%;
}

.goods .package.featured.block-goods {
    text-align: center;
    min-height: 70vh;
}

.goods .package.featured p.price {
    font-size: 16px;
    font-weight: 800;
    margin: 20px 0;
}

.container .basket {
    position: absolute;
    right: 3vh;
    top: 5vh;
    width: 20vh;
    height: 20vh;
    transition-property: transform;
    transition: 0.4s;
}

.container .basket img{
    width: 20vh;
    height: 20vh;
}

.container .basket:hover {
    transform: scale(1.1);
    cursor: pointer;
}


@media (max-width: 768px) {
    table tr td {
        display: block;
    }
    table tr{
        border: 5px solid #4caf50;
    }
    table button {
        font-size: 18px;
    }
} 

@media (max-width: 451px) { 
    .container .basket {
        position: relative;
    }
    .container__flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}
