.basket_message {
    display: none;
    background-color: var(--light-blue);
    border: 2px solid var(--border-grey);
    color: var(--white);
    padding: 15px;
    box-sizing: border;
    width: 350px;
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    animation-name: animateright;
    animation-duration: 0.4s;
    animation-delay: 0.6s;
}

.show_basket {
    display: block;
}

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

.basket_message .item_image {
    width: 90px;
    height: 90px;
    overflow: hidden;
    margin-right: 20px;
}

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

.basket_message h3 {
    margin: -7px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
}

.basket_message h3 i {
    cursor: pointer;
}

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

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

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