.link-custom-arrow {
    color: var(--color-blue-new);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-default);
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.2px;
}

.link-custom-arrow--isGrey {
    color: var(--color-PayneGrayLight);
}

.link-custom-arrow:hover {
    color: var(--color-light-blue2);
}

.link-custom-arrow:active {
    color: var(--color-light-blue);
}

.link-custom-arrow--disabled {
    pointer-events: none;
    color: var(--color-FrenchGray);
}

.link-custom {
    color: var(--color-PayneGrayLight);
    text-decoration: underline;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    transition: var(--transition-default);
}

.link-custom:hover {
    color: var(--color-blue-new);
}

.link-custom:active {
    color: var(--color-light-blue2);
}

.link-custom--disabled {
    pointer-events: none;
    color: var(--color-FrenchGray);
}
