

/* Start:/local/components/componentsTheme/block.wishlist/templates/.default/style.css?17703802431260*/
.wishlist__content {
    position: relative;
    display: flex;
    flex-direction: column;

    gap: clamp(20px, 0.647vw + 17.573px, 30px);
}

.wishlist__clear {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: fit-content;
    height: fit-content;

    padding: 10px;
    border-radius: 10px;

    border: solid 1px #33333300;
    background: none;

    font-weight: 600;
    font-size: 13px;
    line-height: 120%;
    color: var(--text-primary-second);

    cursor: pointer;

    transition: var(--transition);

    & svg {
        position: relative;
        width: 0px;
        min-width: 12px;
        height: 12px;

        & path {
            stroke: var(--text-primary-second);
            transition: var(--transition);
        }
    }

    &:hover {
        border-color: var(--text-primary-head);
        color: var(--text-primary-head);

        & svg {
            & path {
                stroke: var(--text-primary-head);
            }
        }
    }
}


@media(max-width: 400px) {
    .wishlist__content {
        flex-direction: column-reverse;
    }
    .wishlist__clear {
        width: 100%;
    }
}
/* End */
/* /local/components/componentsTheme/block.wishlist/templates/.default/style.css?17703802431260 */
