#header-actions #header-basket > * {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

#header-actions #header-basket a:hover i,
#header-actions #header-basket a:hover span {
    color: var(--theme-color1);
}

#header-actions #basket > div > #total {
    position: absolute;
    width: 23px;
    height: 23px;
    background-color: red;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-weight: bold;
    margin-top: -16px;
    margin-left: 14px;
    font-size: 12px;
}

@media (max-width: 767px) {
    #header-actions #header-basket > a > span {
        display: none;
    }
}