.suggestion-btn {
    display: inline-block;
    position: relative;
    width: 18px;
    height: 18px;
    padding: 0;
    background: #d2d2d2;
    border: 0;
    border-radius: 50%;
    cursor:pointer;
}

.suggestion-btn:before {
    content: '';
    display: block;
    width: 4px;
    height: 11px;
    background-image: url(../img/info.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    bottom: -3px;
    margin: auto;
}
.suggestion-btn.active:before {
    background-image: url(../img/close.svg);
    width: 10px;
    height: 10px;
    bottom: -4px;
}
.suggestion:hover .main-title-suggestion{
    color:#bf465c;
}

.suggestion{
display: inline;
}
.suggestion:hover .suggestion-btn{
    background-color:#bf465c;

}

.suggestion .hide-part{
    display: inline-block;
    margin-left: 6px;
}
.suggestion_text_popup{
    display: block;
    position: absolute;
    left: 0;
    z-index: -1;
    color: #000;
    opacity: 0;
    pointer-events: stroke;
    transition: opacity .16s;

}
.suggestion_text_popup:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1029;
    width: 30px;
    height: 12px;
    background: url(../img/arrow.svg);

    opacity:0;
}
.suggestion_text_popup {
    width: 207px;
    padding: 15px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #fcfcfc;
    box-shadow: 0 5px 10px rgba(0,0,0,.3);
    font-size:12px;
}
.hide-part.active .suggestion_text_popup{
    opacity: 1;
    z-index: 1000;

}

.suggestion_text_popup.right-suggest:after{
    transform: rotate(-90deg);
    top: calc(50% - 5px);
    left: -19px;
    opacity:1;

}

.suggestion_text_popup.left-suggest:after{
    transform: rotate(90deg);
    top: calc(50% - 5px);
    left: calc(100% - 11px);
    opacity:1;
}




.hide-part {
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 0px;
}

