div#basketContainer {
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: var(--body-font) !important;
    cursor: pointer;
    background-color: #ffffff;
    width: 120px;
    height: 120px;
    text-align: center;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

div#basketContainer::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid var(--primary-color)!important;
    border-radius: 50%;
}