.component-link-dropdown {
    position: relative;
}

.component-link-dropdown .link-dropdown-head {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    background: #473bf0;
    border-radius: 50%;
    cursor: pointer;
}

.component-link-dropdown .link-dropdown-head svg {
    color: white;
    height: 24px;
}

.component-link-dropdown .link-dropdown-body {
    position: absolute;
    top: calc(100% + 0.5rem);
    background: white;
    padding: 1.25rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    right: 0;
    opacity: 0;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    transform: translateY(-25%);
    visibility: hidden;
    transition: 300ms all cubic-bezier(0.16, 1, 0.3, 1);;
    min-width: 300px;
}

.component-link-dropdown .link-dropdown-body a {
    font-size: 0.9rem;
    color: #323232;
    transition: 300ms all cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1.2em;
}

.component-link-dropdown .link-dropdown-body a:hover,
.component-link-dropdown .link-dropdown-body a.current {
    color: #473bf0;
}

.component-link-dropdown.open .link-dropdown-body {
    visibility: visible;
    opacity: 1;
    transform: none;
}