.basket-popup {
    position: absolute;
    z-index: -10;
    top: 100%;
    right: 0;
    width: 100%;
    max-width: 469px;
    padding: 44px 40px;
    background-color: #ffffff;
    background-color: var(--white-color, #ffffff);
    border-radius: 6px;
    border-radius: var(--small-radius, 6px);
    -webkit-box-shadow: 0px 0px 16px rgba(13, 30, 42, 0.12);
    box-shadow: 0px 0px 16px rgba(13, 30, 42, 0.12);
    -webkit-box-shadow: var(--shadow-third, 0px 0px 16px rgba(13, 30, 42, 0.12));
    box-shadow: var(--shadow-third, 0px 0px 16px rgba(13, 30, 42, 0.12));
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
}

.basket-popup_hide {
    display: none;
}

a:hover + .basket-popup,
.basket-popup:hover {
    z-index: 100;
    opacity: 1;
}

.basket-popup::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 30px;
    width: 15px;
    height: 15px;
    border-radius: 2px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #ffffff;
    background-color: var(--white-color, #ffffff);
}

.basket-popup__title {
    margin-bottom: 35px;
    color: #37474F;
    color: var(--main-color, #37474F);
    font-family: "Raleway";
    font-family: var(--secondary-font-family, "Raleway");
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 31.2px;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}

.basket-popup__list-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 18px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0,101,220,0.2);
    border-bottom: 1px solid var(--blue-washy-color, rgba(0, 101, 220, 0.2));
}

.basket-popup__product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.basket-popup__product a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 15px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20.8px;
}

.basket-popup__product span {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: auto 0;
}

.basket-popup__product img {
    width: 70px;
    height: 51px;
}

.basket-popup__product .button {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
    margin: auto 0;
    visibility: hidden;
}

.basket-popup__product:hover .button {
    visibility: visible;
}

.basket-popup__button .button {
    width: 100%;
}


[data-entity="basket-icon"] {
    position: relative;
    --count: attr(data-count);
}

[data-entity="basket-icon"] .basket__number {
    display: none;
    position: absolute;
    top: -7px;
    right: -7px;
    width: 19px;
    height: 19px;
    background-color: #E6274D;
    background-color: var(--pink-color, #E6274D);
    border-radius: 50%;
    border-radius: var(--circle-radius, 50%);
    color: #ffffff;
    color: var(--white-color, #ffffff);
    font-family: "Open Sans";
    font-family: var(--main-font-family, "Open Sans");
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
}

[data-entity="basket-icon"] .basket__number::before {
    content: var(--count);
    display: inline;
    margin: auto;
    line-height: 1;
}

[data-entity="basket-icon"].active .basket__number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
