.basket_message {
    background-color: var(--light-blue);
    border: 2px solid var(--border-grey);
    color: var(--white);
    padding: 15px;
    box-sizing: border-box;
    width: 0;
    opacity: 0;
    position: fixed;
    bottom: 25px;
    right: -500px;
    width: 0;
    transition: right 0s, opacity 0s;
    z-index: 997;
}

.show_basket {
    opacity: 1;
    width: 350px;
    bottom: 25px;
    right: 25px;
    animation-name: animateright;
    animation-duration: 0.4s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes animateright {
    from {right: -500px; opacity: 0}
    to {right: 25px; opacity: 1}
}

.basket_message .basket_message_flex {
    display: flex;
    align-items: center;
}

.basket_message .item_image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    margin-right: 20px;
    background-color: var(--white);
}

.basket_message .item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 100%;
}

.basket_message h3 {
    margin: -5px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 24px;
    line-height: 1.2;
}

.basket_message h3 i {
    cursor: pointer;
    margin-top: 2px;
    margin-left: 25px;
}

.basket_message h4 {
    font-size: 18px;
    margin: 0 0 5px;
}

.basket_message p {
    margin: 0;
    opacity: 0.7;
}

.basket_message p i {
    width: 28px;
}

.basket_message p .fa-wine-glass {
    margin-left: 4px;
    margin-right: -4px;
}

.basket_message .basket_panel_button {
    background-color: var(--white);
    color: var(--dark-blue);
    margin-top: 40px;
}

@media (max-width: 800px) {
    .basket_message {
        bottom: 20px;
        right: 20px;
        width: 0;
    }

    .show_basket {
        width: 350px;
        bottom: 20px !important;
        right: 20px !important;
    }
}

@media (max-width: 500px) {
    .show_basket {
        width: calc(100% - 40px);
    }
}