.cart {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: rgba(255,255,255,0.8);
    width: 100%;
    position: absolute;
    height: calc(100% - 178px);
    z-index: 8888;
    
}
.cart_hidden {
    display: none;
}
.cart__container {
    font-size: 14px;
    padding: 40px 36px 36px 40px;
    box-shadow: 2px 10px 18px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 2px 2px;
    background: var(--white);
    width: 80%;
    max-width: 1117px;
}

.cart__inner {
    margin: 0 auto;
    max-width: 854px;
    width: 100%;
    position: relative;
    max-height: 100vh;
    overflow: auto;
}

.cart__item{
    display: flex;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.cart__item-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.cart__item-description {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 773px;
    height: 74px;
    border-radius: 5px;
    border: 2px solid var(--dark-blue);
    align-items: center;
}
.cart__item-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart__item-dropdown-control {
    border: 0;
    outline: 0;
    width: 56px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: none;
    cursor: pointer;
}
.cart__item-title {
    justify-self: center;
}
.cart__item-category {
    background: var(--dark-blue);
    height: 30px;
    margin-right: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 123px;
    border-radius: 2px;
    justify-self: flex-end;
}
.cart__delete-button {
    height: 74px;
    width: 74px;
    border-radius: 5px;
    border: none;
    outline: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, var(--pink) 0%, var(--light-orange) 100%);
}
.cart__download-button_bottom,
.cart__download-button {
    outline: 0;
    cursor: pointer;
    display: flex;
    background: none;
    align-items: center;
    gap: 16px;
    align-self: flex-end;
}
.cart__download-button_bottom {
    position: relative;
    margin: 80px 0 0 auto;
    outline: 0;
    cursor: pointer;
}