/* 20.01.2022 в связи с разработкой мобильной версии было принято решение об организации стилей:
1) Отступить от стандартной файловой структуры проекта БЭМ, которая подразумевает наличие уровней
переопределения при разделении проекта на платформы (например: mobile, desktop)
2) Создать отдельные папки с независимыми друг от друга стилями для desktop и mobile
учитывая, что при этом будет происходить copy-paste
Ссылка на документацию БЭМ для разделения проекта на платформы:
https://ru.bem.info/methodology/redefinition-levels */


.link-send-report--send-report-success{
	position: relative;
	padding-left: 20px;
}
.link-send-report--send-report-success::before{
    position: absolute;
	content: "";
    top: 1.5px;
    left: 0px;

    width: 16px;
    height: 16px;

    background: url("../../../img/icons/check-purple.svg") center no-repeat;
}


/* link-funnel */
.link-funnel{
    position: relative;
    padding-right: 25px;
}
.link-funnel::after{
    position: absolute;
    content: "";

    top: 1px;
    right: 0;

    width: 20px;
    height: 20px;

    background: url("../../../img/icons/funnel.svg") center no-repeat;
}



/* link-create-ad */
.link-create-ad{
	display: none;
	position: relative;
    padding-left: 25px;
}
.link-create-ad::after{
    position: absolute;
    content: "";

    top: 58%;
    left: 0;

    width: 20px;
    height: 20px;

    background: url("../../../img/icons/plus-square.svg") center no-repeat;

    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
/* Показ при :hover в table.css */

.link-create-ad--hidden{
    /* !important нужен для того, чтобы "перебить"
    эффект :hover у родителя table-keyword__tr*/
    display: none !important;
}