.tl {
    position: relative;
    display: flex;
    width: 35px;
    height: 35px;
    line-height: 1;
}

.tl__icon {
    position: relative;
    font-size: 35px;
    color: #d01d5c;
    z-index: 1;
}

.tl__icon_w-bg {
    background-color: #de4d7f;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

.tl__image {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.tl__label {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    margin-left: 17px;
    padding-left: 17px;
    line-height: 1;
    color: #808084;
}

.tl__label_w-bg {
    color: #fff;
    background-color: #de4d7f;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.tl__label_hoverable {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease-in-out;
    z-index: 1;
}

.tl:hover .tl__label_hoverable {
    transform: scaleX(1);
}

.tl__wrapper {
    padding-right: 1em;
    padding-left: 1em;
}
