/* Ограничение ширины сайта */

body {
    max-width: 1920px;
    margin: 0 auto;
}

/* СКРЫТИЕ КНОПОК "КОРЗИНА/ИЗБРАННОЕ" */

@media screen and (max-width: 1200px) {
  .uc-opencart,
  .uc-openfavorite {
    display: none;
  },
  #rec1230781731, .uc-runline {
      padding-top: 75px;
  }
}

.t396__elem[data-elem-type="text"] a { 
    text-decoration: none;
    -webkit-transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.t396__elem[data-elem-type="text"] a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 20%;
    opacity: 0;
    width: 100%;
    height: 100%;
    border-bottom: 0px solid #87947d;
    -webkit-box-shadow: inset 0px -1px 0px 0px #87947d;
    -moz-box-shadow: inset 0px -1px 0px 0px #87947d;
    box-shadow: inset 0px -1px 0px 0px #87947d;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    pointer-events: none;
}

.t396__elem[data-elem-type="text"] a:hover::after {
    opacity: 1;
    bottom: -0px;
}

/* СТИЛЬ ДЛЯХЛЕБНЫХ КРОШЕК */

.breadcrumbs {
    font-family: 'TildaSans', Arial, sans-serif;
    font-weight: 300;
    color: #87947d;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    text-transform: uppercase;
    padding: 30px 0;
}

.breadcrumbs .current {
    font-weight: 700;
}

.breadcrumbs ul {
    padding-left: 0 !important;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
    
.breadcrumbs li {
    display: flex;
    align-items: center;
    margin: 0 5px;
}
    
.breadcrumbs li:first-child {
    margin-left: 0;
}
    


.breadcrumbs li:hover {
    text-decoration: underline;
}
    
    