.myaccount-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

}
.myaccount-header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.myaccount-header-right .svg-icon {
    display: flex;
    align-self: center;
    cursor: pointer;
}
.myaccount-header-right .cart-icon-wrapper {
    position: relative;
    cursor: pointer;
}
.myaccount-header-right .cart-badge {
    display: flex;
    width: 18px;
    height: 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 20px;
    background: #FF514D;
    color: #FFFFFF;

    position: absolute;
    top: -4px;
    right: -6px;
    z-index: 100;

    font-size: 11px;
    font-weight: 700;
    line-height: 14px;
}