.breadcrumbs {
    display: -webkit-box;
    display: flex;
    max-width: 100%;
    margin: 2rem auto 0.75rem;
    font-size: var(--font-size-text);
    color: #3d4b5d;
    line-height: 2
}

.schema-none {
    display: none;
}

.breadcrumbs a {
    color: #3d4b5d
}

.breadcrumbs a:hover {
    text-decoration: underline
}

.breadcrumbs li:not(:first-child) {
    padding-left: 25px;
    position: relative
}

.breadcrumbs li:last-child {
    color: var(--main-color, #6689ff);
}

.breadcrumbs li:not(:first-child):before {
    margin: auto;
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    height: 15px;
    width: 1px;
    background: #d7d7d7;
}


@media (max-width: 992px) {
    .breadcrumbs li:not(:nth-last-child(2)) {
        display: none;
    }
    .breadcrumbs li:nth-last-child(2) {
        position: relative;
        padding-left: 15px;
    }
		.product .breadcrumbs li:nth-last-child(2) span.breadcrumb-text {
			display: none;
		}
	.breadcrumbs li:nth-last-child(2):before {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        height: 15px;
        width: 1px;
        background: #d7d7d7;
        font-weight: 900;
    }

}
