

/* Start:/local/templates/fortis2023/css/filters.css?17126714735678*/
.filter-block {
  width: 100%;
  padding-top: 30px;
}
.filter-block .filter-clear {
  display: flex;
  justify-content: end;
}
.filter-clear a[data-fx-filter-clear],
.filter-clear a[data-fx-filter-clear]:hover {
  color: #daeaee;
  opacity: 0.5;
  text-decoration-line: underline;
}
.filter-block .filter-header {
  display: none;
}
.filter-block .filter-list {
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 20px;
}
.filter-list .filter-item {
  position: relative;
  /* margin: 0 20px 20px 0; */
}

.filter-block .filter-title {
  cursor: pointer;
  display: flex;
  padding: 8px 12px;
  background: #daeaee;
  color: #030149;
}
.filter-block .filter-item.active [data-fx-filter-expand],
.filter-block .filter-header.active [data-fx-filter-expand] {
  background: #1fbff2;
}
.filter-block [data-fx-filter-expand] span {
  display: inline-block;
  height: 24px;
  width: 24px;
  background: url(/local/templates/fortis2023/img/dropdown_arrow.svg) center
    no-repeat;
  margin-left: 8px;
}
.filter-block .filter-item.active [data-fx-filter-expand] span,
.filter-block .filter-header.active [data-fx-filter-expand] span {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.filter-block .filter-item .filter-body {
    position: absolute;
    z-index: 1001;
    display: none;
    overflow-y: visible;
    background: #daeaee;
    box-shadow: 2px 4px 6px rgba(3, 1, 73, 0.4);
    padding: 25px;
    margin-top: 15px;
}
.filter-block .filter-item.active .filter-body {
    display: flex;
    /* flex-flow: column; */
    flex-wrap: wrap;
    /* max-height: 100vh; */
    width: max-content;
    overflow: visible;
}
.filter-block .filter-item.active .filter-body.filter-color {
  flex-flow: row;
  flex-wrap: wrap;
  width: 275px;
}

.filter-block a.filter-param {
    display: flex;
    color: #000;
    flex: 0;
    margin: 5px 10px;
    white-space: nowrap;
}
.filter-block a.filter-param::before {
  content: "";
  display: inline-block;
  background-image: url(/local/templates/fortis2023/img/box_blank.svg);
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-right: 10px;
}
.filter-block a.filter-param.selected::before {
  background-image: url(/local/templates/fortis2023/img/check_box.svg);
}
.filter-block .filter-color a.filter-param {
  background-color: #000;
  height: 40px;
  width: 40px;
  margin-right: 15px;
  box-shadow: 2px 4px 6px rgba(3, 1, 73, 0.4);
}
.filter-block .filter-color a.filter-param::before {
  content: none;
}

.filter-tag-links-wrap .filter-tag-links-body {
  position: relative;
}
.filter-tag-links-wrap .filter-tag-links-block-title {
  position: relative;
  text-transform: none;
  padding: 5px 0;
  height: 49px;
}
.filter-tag-links-wrap .filter-tag-links-block {
  padding: 0px 20px;
  margin: 15px -25px 0px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  max-height: 147px;
  overflow: hidden;
}
.filter-tag-links-wrap .filter-tag-links-inner {
  position: relative;
}
.filter-tag-links-wrap .filter-tag-links-inner.active .filter-tag-links-block {
  max-height: none;
}
.filter-tag-links-wrap .filter-tag-links-block .filter-tag-links-item {
  display: flex;
  margin: 0;
  min-width: 10%;
  padding: 5px 5px;
}
.filter-tag-links-wrap .filter-tag-links-block .filter-tag-links-item a,
.filter-tag-links-wrap .filter-tag-links-block .filter-tag-links-item span {
  background: #daeaee;
  color: #030149;
  text-align: center;
  width: 100%;
  min-width: 50px;
  padding: 6px;
  height: 39px;
  text-decoration: none;
  justify-content: center;
}
.filter-tag-links-wrap
  .filter-tag-links-block
  .filter-tag-links-item.active
  span {
  background-color: #1fbff2;
}
.filter-tag-links-wrap
  .filter-tag-links-block
  .filter-tag-links-item
  a
  span.color {
  display: inline-block;
  height: 16px;
  width: 16px;
  line-height: 16px;
  vertical-align: middle;
  margin-right: 4px;
}

.filter-tag-links-inner .filter-tag-links-more-btn {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  padding: 5px 0;
  height: 49px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.filter-tag-links-inner.active .filter-tag-links-more-btn {
  position: relative;
}
.filter-tag-links-inner .filter-tag-links-more-btn::after {
  content: "показать все";
  display: flex;
  justify-content: center;
  background: #daeaee;
  color: #030149;
  width: 220px;
  height: 39px;
  padding: 6px;
}
.filter-tag-links-inner .filter-tag-links-more-btn:hover::after {
  background-color: #1fbff2;
}
.filter-tag-links-inner.active .filter-tag-links-more-btn::after {
  content: "скрыть";
}

@media (max-width: 991px) {
  .filter-tag-links-inner .filter-tag-links-more-btn::after {
    width: 150px;
  }
}

@media (max-width: 991px) {
  .filter-block .filter-header {
    display: flex;
  }
  .filter-block .filter-header .filter-title {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
  .filter-block .filter-header [data-fx-filter-expand] span {
    transform: rotate(270deg);
  }
  .filter-block .filter-header.active [data-fx-filter-expand] {
    background: #daeaee;
  }
  .filter-block .filter-header.active [data-fx-filter-expand] span {
    transform: rotate(0deg);
  }

  .filter-block .filter-list {
    visibility: hidden;
    max-height: 0;
  }
  .filter-block .filter-header.active + .filter-list {
    visibility: visible;
    max-height: none;
    justify-content: space-between;
  }
  .filter-block .filter-item {
    margin: 0;
    padding: 0 20px 20px 0;
    min-width: 48%;
  }
  .filter-block .filter-item .filter-title {
    justify-content: space-between;
  }
}

/* End */


/* Start:/local/templates/fortis2023/components/bitrix/system.pagenavigation/round/style.css?17452481121623*/
.bx-pagination {
	margin: 35px 0 0;
}
.bx-pagination .bx-pagination-container {
	text-align: center;
	position: relative;
}
.bx-pagination .bx-pagination-container ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
    justify-content: center;
}
.bx-pagination .bx-pagination-container ul li {
	display: inline-block;
	margin-right: 25px;
}
	.bx-pagination .bx-pagination-container ul li:last-of-type {
		margin-right: 0;
	}
.bx-pagination .bx-pagination-container ul li span {
	padding: 0 8px;
	display: block;
	height: 46px;
	min-width: 46px;
	line-height: 46px;
	/* color: #DAEAEE; */
	font-size: 18px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bx-pagination .bx-pagination-container ul li.bx-active span {
	background: #1FBFF2;
	color: #030149;
}

.bx-pagination .bx-pagination-container ul li a {
	text-decoration: none;
	display: block;
	height: 46px;
	min-width: 46px;
	line-height: 46px;
	color: #030149;
	cursor: pointer;
}

.bx-pagination .bx-pagination-container ul li.bx-pag-prev a span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a span {
	opacity: 1;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next span{
	background: url(/local/templates/fortis2023/img/arrow_downward.svg) 50% no-repeat;
	transform: rotate(-90deg);
	opacity: 0.3;
	filter: brightness(0) saturate(100%) invert(75%) sepia(37%) saturate(5553%) hue-rotate(158deg) brightness(98%) contrast(93%); 
}
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span {
	transform: rotate(90deg);
}
/* End */


/* Start:/local/templates/fortis2023/components/bitrix/catalog/catalog/bitrix/catalog.section/table/style.css?17452481127327*/
.section-table-block {
    overflow: hidden;
    margin-top: 20px;
    padding-bottom: 50px;
    background: #DAEAEE;
    color: #030149;
}
.section-table table {
    width: 100%;
    margin-top: 10px;
}

.section-table table tr {
    border-bottom: 2px solid #030149;
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
}
    .section-table table tr.item:hover {
        background: rgb(31, 191, 242, 0.3)
    }
    .section-table table thead {
        position: sticky;
        z-index: 1;
        background-color: #DAEAEE;
    }
    .section-table table thead th {
        height: 100px;
        font-weight: 500;
        padding-right: 12px;
    }
    .section-table table td {
        padding:  20px 12px 12px 0;
    }
        .section-table table td.item-name {
            padding-left: 12px;
        }
    .section-table div.color {
        float: left;
        height: 100%;
        margin: auto;
    }
    .section-table div.color span {
        display: inline-block;
        height: 37px;
        width: 37px;
        border-radius: 3px;
        vertical-align: middle;
        margin-right: 10px;
    }
    .section-table td.item-name a {
        color:#030149;
    }
    .section-table td.item-name a:hover {
        color: #1FBFF2
    }
    .section-table tr [data-fx-good-props] {
        display: none;
    }
    .section-table td.item-price {
        text-align: end;
        min-width: 115px;
    }
    .section-table .item-btn .btn-cart {
        display: inline-block;
        position: relative;
        height: 37px;
        width: 37px;
        cursor: pointer;
    }
    .section-table .item-btn .btn-cart:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: url(/local/templates/fortis2023/img/cart_ico.svg) center no-repeat;
        width: 37px;
        height: 37px;
    }

    .item_quantity_block {
        display: flex;
        justify-content: left;
    }
    .item_quantity_block .qty-measure {
        display: flex;
        margin-right: 20px;
    }
    .item_quantity_block .qty-btn { 
        margin: auto 5px;
        cursor: pointer;
    }
    .item_quantity_block .qty-btn img { 
        filter: brightness(0) saturate(100%) invert(7%) sepia(44%) saturate(7474%) hue-rotate(242deg) brightness(83%) contrast(116%);
        max-width: 14px;
    }
    .item_quantity_block input.qty {
        width: 70px;
        background: transparent;
        border: none;
        text-align: center;
    }
    .item_quantity_block  .measure-btn-block {
        display: flex;
    }
    .item_quantity_block .qty-measure-btn {
        color: #030149;
        font-size: 14px;
        line-height: 150%;
        margin-left: 5px;
        padding: 0 12px;
        min-width: 44px;
        background-color: #DAEAEE;
        border: 1px dashed #030149;
        cursor: pointer;
    }
    .item_quantity_block .qty-measure-btn.active {
        background: #1FBFF2;            
        border: 1px dashed #1FBFF2;
        cursor: default;
    }

.ral-color-item {
    display: inline-block;
    margin: 0 5px 10px 0;
    background-color: #DAEAEE;
    color: #030149;
    font-size: 18px;
    padding: 8px;
    width: 215px;
}
    .ral-color-item span {
        display: inline-block;
        height: 40px;
        line-height: 20px;
        vertical-align: middle
    }
        .ral-color-item span.ral-color {
            width: 40px;
            margin-right: 5px
        }

@media (max-width:991px)  {
    .container.section-table {
        padding-top: 20px;
        padding-bottom: 20px;
    }
        .section-table table thead, .section-table table .item-btn {
            display: none;
        }
            .section-table table tr {
                display: flex;
                flex-direction: column;
                padding-bottom: 10px;
            }
                .section-table table td {
                    padding: 25px 0 0 0;
                }
                .section-table td.item-name div {
                    display: flex;
                }
                .section-table td.item-name div.color {
                    display: none;
                }
                .section-table td.item-name a {
                    font-weight: 300;
                    font-size: 16px;
                    line-height: 150%;
                }
                .section-table td.item-name div span {
                    margin: auto; 
                }
                .section-table td.item-name .btn-cart {
                    display: block;
                    position: relative;
                    width: 44px;
                    height: 44px;
                    padding: 0;
                    margin: 0;
                }
                .section-table td.item-name .btn-cart:before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    background: url(/local/templates/fortis2023/img/cart_ico.svg) center no-repeat;
                    width: 44px;
                    height: 44px;
                }
                .section-table tr [data-fx-good-props] {
                    display: flex;
                    justify-content: space-between;
                    opacity: 0.5;
                    padding: 12px 0;
                    font-weight: 200;
                    font-size: 14px;
                    line-height: 24px;
                    cursor: pointer;
                    width: 180px;
                }
                .section-table tr [data-fx-good-props]::after {
                    content: '';
                    background: url(/local/templates/fortis2023/img/dropdown_arrow.svg) no-repeat;
                    transform: rotate(-90deg);
                    width: 24px;
                    height: 24px;
                    margin: auto 0;
                }
                .section-table tr.expanded [data-fx-good-props]::after {
                    transform: rotate(0deg);
                }
                .section-table tr:not(.expanded) .item-prop {
                    display: none;
                }
                .section-table td.item-prop {
                    font-weight: 200;
                    font-size: 14px;
                    line-height: 140%;
                    opacity: 0.5;
                    padding: 0;
                }
                .section-table td.item-prop > div[data-label]:before {
                    content: attr(data-label);
                    margin-right: 10px;
                }
                .section-table .item_quantity_block {
                    justify-content: space-between;
                }
                .section-table .item_quantity_block .qty-measure-btn {
                    height: 44px;
                    line-height: 44px;
                }
                .section-table .item_quantity_block input.qty {
                    font-size: 16px;
                    line-height: 150%;
                }
                .section-table .item_quantity_block .qty-btn img {
                    max-width: 100%;
                }
                .section-table tr.item td.item-price {
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 150%;
                }
}
/* End */
/* /local/templates/fortis2023/css/filters.css?17126714735678 */
/* /local/templates/fortis2023/components/bitrix/system.pagenavigation/round/style.css?17452481121623 */
/* /local/templates/fortis2023/components/bitrix/catalog/catalog/bitrix/catalog.section/table/style.css?17452481127327 */
