.page[name='basket'] > .header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 64px;
}
.page[name='basket'] > .header > .side > .button {
    padding: 20px;
}
.page[name='basket'] > .header > .side > .button > img {
    display: block;
    height: 24px;
}
.page[name='basket'] > .header > .center {
    display: table;
    width: calc(100% - 128px);
    height: 100%;
    text-align: center;
}
.page[name='basket'] > .header > .center > div {
    display: table-cell;
    font-size: 18px;
    font-weight: 600;
    vertical-align: middle;
}
.page[name='basket'] > .content {
    position: absolute;
    top: 64px;
    right: 0;
    bottom: 50px;
    left: 0;
    padding-bottom: 24px;
    overflow-y: auto;
}
.page[name='basket'] > .content > .items {
    overflow: hidden;
    width: 100%;
    margin-bottom: 48px;
}
.page[name='basket'] > .content > .items > .message {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    width: 80%;
    text-align: center;
}
.page[name='basket'] > .content > .items > .item {
    white-space: nowrap;
    transition: transform 0.2s;
}
.page[name='basket'] > .content > .items > .item > table {
    width: 100%;
    display: inline-table;
    border-spacing: 0;
    table-layout: fixed;
    vertical-align: top;
    margin-top: 12px;
}
.page[name='basket'] > .content > .items > .item > table > tbody > tr > td:first-child {
    text-align: center;
    width: 88px;
}
.page[name='basket'] > .content > .items > .item > table > tbody > tr > td:first-child > img {
    height: 73px;
    max-width: calc(100% - 20px);
    object-fit: contain;
    border-radius: 8px;
}
.page[name='basket'] > .content > .items > .item > table > tbody > tr > .information {
    width: calc(100% - 180px);
    overflow: hidden;
}
.page[name='basket'] > .content > .items > .item > table > tbody > tr > .information > div[key='title'] {
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 6px;
}
.page[name='basket'] > .content > .items > .item > table > tbody > tr > .information > div[key='description'] {
    font-size: 11px;
    margin-bottom: 8px;
    display: inline-block;
    padding: 2px 6px;
    border-radius: 8px;
}
.page[name='basket'] > .content > .items > .item > table > tbody > tr > .unit {
    width: 92px;
    overflow: hidden;
    margin-top: 24px;
    text-align: center;
    padding-right: 10px;
}
.page[name='basket'] > .content > .items > .item > table > tbody > tr > .unit > .button {
    border-radius: 50%;
    width: 23px;
    height: 23px;
    line-height: 23px;
}
.page[name='basket'] > .content > .items > .item > table > tbody > tr > .unit > input {
    width: 43%;
    text-align: center;
}
.page[name='basket'] > .content > .items > .item > .operations {
    display: inline-flex;
    height: 100px;
    width: 74px;
    overflow: auto;
}
.page[name='basket'] > .content > .items > .item > .operations > .button {
    width: 74px;
    height: 100px;
    text-align: center;
    display: inline-block;
}
.page[name='basket'] > .content > .items > .item > .operations > .button > img {
    margin: 20px auto 12px;
    display: block;
}
.page[name='basket'] > .content > .button {
    width: 270px;
    text-align: center;
    padding: 10px;
    border-radius: 36px;
    font-size: 18px;
    font-weight: 500;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
}