.section_top_list {
	display: flex;
	grid-gap: 20px;
	margin-bottom: 40px;
}

.section_top_list li a {
	display: block;
	padding: 20px 40px;
	border-radius: 5px;
	border: 1px solid #86BC24;
	color: #86BC24;
}
.section_top_list li a:hover {
	background: #86BC24;
	color: #fff;
}
.section_top_list li.active a {
	background: #86BC24;
	color: #fff;
	order: -1;
}

.product__item {
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: calc(33.333% - 30px);
    margin: 0 15px;
    border: 1px solid #9D99AC;
    box-shadow: 0px 8px 16px rgba(142, 141, 208, 0.12);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 50px;
}

.product__title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.product__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    color: #212121;
    max-width: 250px;
}

.product__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #4B4B4B;
    padding-bottom: 15px;
    border-bottom: 1px solid #AAAAAA;
}

.product__prop-name {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #212121;
    margin-bottom: 15px;
    margin-top: 15px;
}

.product__prop {
    border-bottom: 1px solid #AAAAAA;
}

.product__prop:nth-last-of-type(2) {
    border-bottom: none;
}

.product__prop-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}


.product__prop-item {
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 49%;
    margin-bottom: 8px;
}

.product__prop-img {
    margin-right: 15px;
}

.product__prop-img_color {
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.product__prop-img_form {
    height: 20px;
    width: auto;
}

.product__prop-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #4B4B4B;
}

.btn-product-wrap {
    margin-top: auto;
    border-top: 1px solid #AAAAAA;
}

.btn-product {
    margin-top: 30px;
}

.product__tooltip-wrap {
    position: relative;
    cursor: pointer;
}

.product__tooltip {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #C9C8D3;
    transition: all .5s;
    font-size: 12px;
    min-width: 320px;
    z-index: 1000;
}

.product__tooltip.active {
    display: block;
}

.product__tooltip-wrap:hover .product__tooltip {
    transition: all .5s;
    display: block;
}
a.product__title:hover{
    color: #86BC24;
}
@media screen and (max-width: 768px) {
    .product__item {
        flex-basis: calc(50% - 30px);
    }

    .product__inner {
        margin-bottom: -80px;
    }

    .product__tooltip {
        right: -17px;
    }
}

@media screen and (max-width: 700px), (max-width: 850px) and (max-height: 500px ) {
    .product__title {
        font-size: 24px;
    }

    .product__item {
        flex-basis: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .product__inner {
        margin-bottom: -40px;
    }

    .product__tooltip {
        right: -20px;
    }
}
