/* variables */
/* catalog categories */
/* press review categories */
/* industries */
/* fonts */
/* mixins */
.columns {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 1399px) {
  .columns {
    flex-direction: column;
  }
}

.column--left {
  width: 25%;
}
@media (max-width: 1599px) {
  .column--left {
    width: 22.5%;
  }
}
@media (max-width: 1399px) {
  .column--left {
    width: 100%;
    margin-bottom: 25px;
  }
}

@media (min-width: 1024px) and (max-width: 1399px) {
  .btn-group--items {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
  }
}
@media (max-width: 1023px) {
  .btn-group--items {
    display: flex;
    flex-direction: column-reverse;
  }
}

.btn-group--item .btn--icon > svg {
  fill: #101010;
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .btn-group--item:last-child {
    margin-bottom: 4px;
  }
}
@media (max-width: 1023px) {
  .btn-group--item:first-child {
    margin-bottom: 0px;
  }
  .btn-group--item:last-child {
    margin-bottom: 15px;
  }
}

.btn-group--itemFilter {
  display: none;
}
.btn-group--itemFilter .btn--icon > svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 1399px) {
  .btn-group--itemFilter {
    display: flex;
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .btn-group--itemFilter {
    width: auto;
    flex: 1;
    margin-right: 15px;
  }
}

@media (min-width: 1024px) and (max-width: 1399px) {
  .btn-group--itemInfo {
    width: 250px;
  }
}

.column--right {
  width: 71.25%;
}
@media (max-width: 1599px) {
  .column--right {
    width: 73.75%;
  }
}
@media (max-width: 1399px) {
  .column--right {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .column--right {
    margin-bottom: 0px;
  }
}

.loader {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

/* filter panel - start */
.filter-panel {
  opacity: 0;
  pointer-events: none;
  transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.filter-panel.load {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 1399px) {
  .filter-panel {
    max-height: 0px;
    transition: all 500ms cubic-bezier(0, 1, 0, 1);
    overflow: hidden;
    padding: 0 10px;
  }
  .filter-panel.show {
    max-height: 2500px;
    margin-bottom: 50px;
    transition: all 750ms cubic-bezier(0.23, 1, 0.32, 1);
  }
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .filter-panel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.filter-panel--group {
  margin-bottom: 30px;
}
.filter-panel--group:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) and (max-width: 1399px) {
  .filter-panel--group {
    width: calc((100% - 50px) / 2);
  }
}

.heading--filterPanel {
  margin-bottom: 5px;
}

.filter-panel--groupButtons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1399px) {
  .filter-panel--groupButtons {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}

.filter--input {
  width: 100%;
  border: 0px;
  border-bottom: 1px solid #D4D4D4;
  font-size: 1.0625rem;
  line-height: 1.375;
  padding-bottom: 2px;
}
.filter--input::placeholder {
  color: #777777;
  opacity: 1;
}
.filter--input:-ms-input-placeholder {
  color: #777777;
}
.filter--input::-ms-input-placeholder {
  color: #777777;
}
.filter--input:focus {
  outline: none;
}

.filter--checkbox {
  display: none;
}
.filter--checkbox:checked + .filter-checkbox--label .filter-checkbox--labelSquare:after {
  opacity: 1;
}

.filter--select {
  width: 100%;
  font-size: 1.0625rem;
  background-color: #F3F3F3;
  border: 0px;
  padding: 8px 5px;
}
.filter--select:focus {
  outline: none;
}

.filter-panel--search {
  display: flex;
  align-items: center;
}
.filter-panel--search .filter--input {
  width: calc(100% - 30px);
}
.filter-panel--search > svg {
  fill: #777777;
  margin-right: 15px;
}

.filter-panel--dates {
  display: flex;
  align-items: center;
}
.filter-panel--dates > svg {
  stroke: #777777;
  margin-right: 15px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .filter-panel--dates {
    flex-direction: column;
    align-items: flex-start;
  }
  .filter-panel--dates > svg {
    display: none;
  }
}
@media (max-width: 767px) {
  .filter-panel--dates {
    flex-direction: column;
    align-items: flex-start;
  }
  .filter-panel--dates > svg {
    display: none;
  }
}

.filter-panel--date {
  position: relative;
  display: flex;
  align-items: center;
  width: 175px;
  border-bottom: 1px solid #D4D4D4;
}
.filter-panel--date > svg {
  display: none;
  fill: #999999;
  margin-right: 15px;
}
.filter-panel--date > label {
  color: #777777;
  cursor: pointer;
  margin-right: 10px;
  font-size: 1.0625rem;
  padding-bottom: 2px;
}
.filter-panel--date .filter--input {
  border-bottom: 0px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .filter-panel--date {
    width: 100%;
    margin-bottom: 15px;
  }
  .filter-panel--date:last-child {
    margin-bottom: 0px;
  }
  .filter-panel--date:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 4px;
    left: 0;
    bottom: -2px;
    background-color: #FFFFFF;
  }
  .filter-panel--date > svg {
    display: block;
  }
  .filter-panel--date > label {
    margin-right: 0px;
    width: 50px;
  }
  .filter-panel--date .filter--input {
    width: calc(100% - 66px);
  }
}
@media (max-width: 1399px) {
  .filter-panel--date {
    width: calc((100% - 51px) / 2);
  }
}
@media (max-width: 767px) {
  .filter-panel--date {
    width: 100%;
    margin-bottom: 15px;
  }
  .filter-panel--date:last-child {
    margin-bottom: 0px;
  }
  .filter-panel--date:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 4px;
    left: 0;
    bottom: -2px;
    background-color: #FFFFFF;
  }
  .filter-panel--date > svg {
    display: block;
  }
  .filter-panel--date > label {
    margin-right: 0px;
    width: 50px;
  }
  .filter-panel--date .filter--input {
    width: calc(100% - 66px);
  }
}

.filter-panel--dateStart {
  margin-right: 20px;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .filter-panel--dateStart {
    margin-right: 0px;
  }
}
@media (max-width: 767px) {
  .filter-panel--dateStart {
    margin-right: 0px;
  }
}

.filter-checkbox--wrap {
  margin-bottom: 10px;
}

[data-article-type="1"] .filter-checkbox--labelSquare {
  background-color: #E9E963;
}

[data-article-type="2"] .filter-checkbox--labelSquare {
  background-color: #EFAFB1;
}

[data-article-type="3"] .filter-checkbox--labelSquare {
  background-color: #8BE17C;
}

.filter-checkbox--label {
  display: flex;
  cursor: pointer;
}

.filter-checkbox--labelSquare {
  position: relative;
  width: 15px;
  height: 15px;
  margin-top: 3px;
  margin-right: 15px;
  border-radius: 5px;
}
.filter-checkbox--labelSquare:after {
  content: "";
  width: 100%;
  height: 7px;
  position: absolute;
  top: 1px;
  left: 2px;
  border: 3px solid #333333;
  border-top: none;
  border-right: none;
  background: rgba(0, 0, 0, 0);
  transform: rotate(-45deg);
  opacity: 0;
  transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
}

.filter-checkbox--labelText {
  width: calc(100% - 30px);
  font-size: 1.0625rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (min-width: 1400px) {
  .btn-reset-filters {
    background-color: transparent;
    color: #333333;
    padding: 0;
  }
  .btn-reset-filters .btn--title {
    font-weight: 400;
  }
}

body:not(.touch-device) .btn-reset-filters:hover {
  background-color: transparent;
}

.btn-search-articles {
  width: 156px;
}

/* filter panel - end */
/* articles - start */
.articles--wrap {
  position: relative;
  opacity: 0;
  pointer-events: none;
  margin-bottom: 200px;
}
.articles--wrap.load {
  opacity: 1;
  pointer-events: all;
}

.articles {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
}
.articles::after {
  content: "";
  width: calc((100% - 40px) / 3);
}

.search-no-results {
  width: 100%;
  padding: 50px 0;
  font-size: 1.125rem;
  color: #999999;
}
@media (min-width: 768px) {
  .search-no-results {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .search-no-results {
    padding: 20px 0;
  }
}

.articles--loadMore {
  position: absolute;
  width: 325px;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 20px;
}
.articles--loadMore .btn--title {
  font-size: 1.1875rem;
  text-transform: none;
}
@media (max-width: 479px) {
  .articles--loadMore {
    width: 95%;
  }
}

.article {
  position: relative;
  width: calc((100% - 40px) / 3);
  padding: 10px 15px 10px 35px;
  margin-bottom: 30px;
  color: #333333;
  overflow: hidden;
}
.article:after {
  content: "";
  position: absolute;
  top: 44px;
  left: 0px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  z-index: -5;
  transition: transform 250ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.article[data-article-type="1"]:after {
  background-color: #E9E963;
}
.article[data-article-type="2"]:after {
  background-color: #EFAFB1;
}
.article[data-article-type="3"]:after {
  background-color: #8BE17C;
}
@media (max-width: 1023px) {
  .article {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 767px) {
  .article {
    width: 100%;
  }
}

body:not(.touch-device) .article:hover:after {
  transform: scale(15);
}

.article--date {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.article--title {
  font-size: 1.25rem;
  font-weight: 700;
  transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
  margin-bottom: 10px;
}
.article--title svg {
  display: inline-block;
  margin-left: 10px;
  transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
}

.article--abstract {
  font-size: 0.9375rem;
  line-height: 1.46;
  height: 2.92rem;
  overflow: hidden;
}

.article--highlight {
  display: flex;
  flex-direction: column;
  background-color: #F3F3F3;
  padding: 20px;
  margin-bottom: 60px;
  border-radius: 5px;
  overflow: visible;
}
.article--highlight:nth-of-type(n+4) {
  margin-bottom: 30px;
}
.article--highlight:after {
  content: "";
  position: absolute;
  top: -25px;
  left: auto;
  right: 30px;
  width: 60px;
  height: 60px;
  z-index: 0;
}
.article--highlight .article--title {
  font-size: 1.5rem;
  margin-bottom: 70px;
}
.article--highlight .article--abstract {
  font-size: 1rem;
  line-height: 1.375;
  margin-top: auto;
  height: 4.125rem;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .article--highlight:nth-of-type(n+4) {
    margin-bottom: 60px;
  }
  .article--highlight .article--title {
    font-size: 1.25rem;
    margin-bottom: 50px;
  }
}

body:not(.touch-device) .article--highlight:hover:after {
  transform: scale(1.25);
}

/* articles - end */