

/* Start:/local/templates/redesign/css/tags.css?17228627641666*/
.component-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}
.coc-content__tags.component-tags {
  padding-top: 60px;
}
.component-tags__control {
  flex-shrink: 0;
  display: none;
}
.component-tags__control--show{
  display: block;
}
.component-tags__list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  height: 100%;
  justify-content: flex-start;
  max-height: 30px;
  overflow: hidden;
  transition: 0.8s ease-out;
}
.component-tags__list--show-all {
  max-height: 735px;
}
.component-tags__link {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 250px;
  display: block;
  font-weight: 700;
  font-size: 12px;
  color: #7D858C;
  text-transform: uppercase;
  background-color: #E5EAEC;
  border-radius: 4px;
  text-align: center;
  padding: 6px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.component-tags__link--current {
  background-color: #B12535;
  color: #fff;
}
.component-tags__link:hover {
  color: #fff;
  background-color: #7D858C;
  text-decoration: none;
}
.component-tags__toggle {
  background: #7D858C;
  border-radius: 5px;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  height: fit-content;
  line-height: 1;
  padding: 10px 10px;
  text-transform: uppercase;
  transition: opacity 0.25s;
}
.component-tags__toggle:hover {
  opacity: 0.6;
}
@media (max-width: 1024px){
  .component-tags {
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
  }
  .component-tags__list{
    justify-content: center;
  }
  .coc-content__tags.component-tags {
    padding-top: 40px;
    margin-bottom: 25px;
  }
}
/* End */


/* Start:/local/templates/redesign/js/js_simple_modal/js_simple_modal.css?17035942121712*/
.js-disable-scroll{
  overflow: hidden;
  padding-right: 10px;
}
.js-simple-modal {
  --s-offset: max(2vmin, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.js-simple-modal--opacity {
  opacity: 1;
}
.js-simple-modal--visibility {
  visibility: visible;
}
.js-simple-modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
}

.js-simple-modal__container {
  background-color: #fff;
  position: relative;
  border-radius: 10px;
  width: 95%;
  max-width: 600px;
}
.js-simple-modal__container--90{
  width: 90vw;
  height: 90vh;
  padding: var(--s-offset);
}
.js-simple-modal__close {
  position: absolute;
  right: var(--s-offset);
  top: var(--s-offset);
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: none;
  z-index: 15;
  transition: 0.3s ease-in-out;
}
.js-simple-modal__container--90 .js-simple-modal__close{
  right: var(--s-offset);
  top: var(--s-offset);
  width: calc(var(--s-offset) * 2);
  height: calc(var(--s-offset) * 2);
}
.js-simple-modal__close:hover {
  opacity: 0.75;
}
.js-simple-modal__close-line {
  position: relative;
  display: block;
}
.js-simple-modal__close-line::after,
.js-simple-modal__close-line:before{
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  background-color: #777;
  transform-origin: center;
}
.js-simple-modal__close-line::after{
  transform: rotate(45deg);
}
.js-simple-modal__close-line::before{
  transform: rotate(-45deg);
}
/* End */


/* Start:/local/templates/redesign/components/bitrix/catalog.item/tile/style.css?17334708101359*/
.catalog-content__cards .card-component__img.card-component__img--gallery img:not([data-index="0"]) {
    object-fit: cover;
    border-radius: 5px;
}

.card-component__img-slides {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 4;
    display: none;
}

.catalog-content__cards .card-component__img-slides {
    display: flex;
}
.slick-list .card-component__img-slides {
    display: flex;
}
@media (max-width: 1024px){
    .slick-list .card-component__img-slides {
        display: none;
    }
}

.card-component__img-slides-item {
    height: 100%;
    flex: 1 1 auto;
}

.card-component__img-dots {
    bottom: 6px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    position: absolute;
    width: 100%;
}

.card-component__img-dots-item {
    background: #cfd2d3;
    border-radius: 100%;
    height: 5px;
    margin-left: 2px;
    width: 5px;
}

.card-component__img-dots-item--active {
    background: #b12535;
}


@media screen and (max-width: 576px) and (min-width: 321px) {
    .catalog-content__cards--secondary .card-component--single .card-component__img-dots,
    .card-component--horizontal .card-component__img-dots {
        bottom: 50px;
    }
}
.catalog-content__cards .card-component__img-slides ~ .card-component__img {
    overflow: unset;
}
/* End */
/* /local/templates/redesign/css/tags.css?17228627641666 */
/* /local/templates/redesign/js/js_simple_modal/js_simple_modal.css?17035942121712 */
/* /local/templates/redesign/components/bitrix/catalog.item/tile/style.css?17334708101359 */
