.se-anchor-tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.se-anchor-tools__item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px 32px;
    margin: 10px 10px;
    background: var(--se-main-color-grey);
    border: 1px solid #e2e3e8;
    border-radius: 5px;
    transition: background .24s;
}

.se-anchor-tools__item:hover {
    cursor: pointer;
    background: #fff;
}

.se-anchor-tools__item:hover .se-anchor-tools__item-icon_arrow-marker {
    top: 0;
    transform: scale(1);
}

.se-anchor-tools__item-icon_top-marker {
    position: absolute;
    top: -5px;
    left: 12px;
}

.se-anchor-tools__item-icon_arrow-marker {
    position: absolute;
    top: -10px;
    left: 7px;
    overflow: hidden;
    transition: .24s;
    transform: scale(0);
}

.se-anchor-tools__item-new-label {
    padding: 1px 7px;
    margin-left: 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    color: #1863fd;
    background: var(--se-shape-color-blue);
    border: 1px solid var(--se-accent-blue);
    border-radius: 5px;
}

.se-anchor-tools__item-link {
    z-index: 1;
    display: flex;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--se-heading-color);
}

.se-anchor-tools__item-link:hover {
    text-decoration: none;
}

@media screen and (max-width: 575px) {
    .se-anchor-tools__item {
        width: 100%;
        margin: 10px 0;
    }
}