/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/article-listing/scss/index.scss ***!
  \********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
@keyframes arrow-slide {
  0% {
    transform: translateX(0) rotate(var(--arrow-rotation, 0deg));
    opacity: 1;
  }
  45% {
    transform: translateX(var(--arrow-slide-out, 15px)) rotate(var(--arrow-rotation, 0deg));
    opacity: 0;
  }
  55% {
    transform: translateX(var(--arrow-slide-in, -15px)) rotate(var(--arrow-rotation, 0deg));
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(var(--arrow-rotation, 0deg));
    opacity: 1;
  }
}
/*
    put mixins which have consistant styles for all designs
 */
.article-list {
  --article-item-width: 376px;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--article-item-width), 1fr));
  gap: 32px;
}
@media screen and (max-width: 1023px) {
  .article-list {
    --article-item-width: 345px;
    gap: 24px;
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .article-list {
    --article-item-width: calc(100vw - 2 * 24px);
  }
}

.article-list__loader {
  grid-column: 1/-1;
}

.filter-panel {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 1023px) {
  .filter-panel {
    display: none;
  }
}

.filter-panel__item {
  position: relative;
}

.filter-panel__count {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  border-radius: 50%;
  background-color: #004547;
  width: 24px;
  height: 24px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Gotham-bold, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.01em;
  padding-top: 0.2em;
}

.filter-panel__control {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  appearance: none;
  min-width: 180px;
  width: 100%;
  padding: 0 16px;
  height: 48px;
  color: #004547;
  font-size: 16px;
  letter-spacing: -0.01em;
  border-radius: 8px;
  border: 2px solid #ccdada;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.filter-panel__control::after {
  content: "";
  width: 9px;
  height: 15px;
  mask-image: url(/dist/images/right-angle-fe5a7d913fec939fd363.svg);
  mask-repeat: no-repeat;
  mask-size: cover;
  background-color: #004547;
  transform: rotate(90deg);
}

.button.filter-panel__mobile-trigger {
  width: 100%;
  padding: 0;
  background: #ffffff;
  border: 2px solid #ccdada;
  color: #004547;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.button.filter-panel__mobile-trigger::before {
  content: "";
  width: 15px;
  height: 14px;
  mask-image: url(/dist/images/settings-3c89f949fb7fece81006.svg);
  mask-repeat: no-repeat;
  background-color: #004547;
}
@media screen and (min-width: 1024px) {
  .button.filter-panel__mobile-trigger {
    display: none;
  }
}

.side-filters {
  --bottom-controls-height: 72px;
  --bottom-padding: calc(20px + var(--bottom-controls-height));
  --top-margin: 16px;
}
@media screen and (max-width: 1023px) {
  .side-filters {
    --top-margin: 8px;
    --bottom-controls-height: 64px;
  }
}

.side-filters.modal {
  justify-content: flex-start;
}

.side-filters__modal-content {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  width: 430px;
  height: var(--full-size-vh);
  padding-top: 24px;
}
.side-filters__modal-content .modal__close {
  align-self: end;
  margin-right: 26px;
}
@media screen and (max-width: 1023px) {
  .side-filters__modal-content .modal__close {
    margin-right: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .side-filters__modal-content {
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-duration: 500ms;
    transform: translateX(-100vw);
    transition: transform 0.3s ease;
  }
}
@media screen and (max-width: 1023px) {
  .side-filters__modal-content {
    width: 100%;
  }
}

.side-filters__filter-list {
  margin-top: var(--top-margin);
  padding: 0 32px;
  overflow-y: auto;
  height: calc(var(--full-size-vh) - var(--bottom-padding) - var(--top-margin));
}
@media screen and (max-width: 1023px) {
  .side-filters__filter-list {
    padding: 0 24px;
  }
}

.side-filters__controls {
  height: var(--bottom-controls-height);
  border-top: 1px solid #ccdada;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 28px;
  padding-right: 35px;
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .side-filters__controls {
    padding-left: 24px;
    padding-right: 8px;
  }
}

.side-filters__clear-all {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  appearance: none;
}
@media screen and (max-width: 1023px) {
  .side-filters__clear-all {
    order: -1;
  }
}

.open .side-filters__modal-content {
  animation-name: slideInFromLeft;
}
@media screen and (max-width: 1023px) {
  .open .side-filters__modal-content {
    animation: none;
  }
}

.close .side-filters__modal-content {
  animation-name: slideOutToLeft;
}
@media screen and (max-width: 1023px) {
  .close .side-filters__modal-content {
    animation: none;
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideOutToLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100vw);
  }
}
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/react-filter-group/scss/index.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
@keyframes arrow-slide {
  0% {
    transform: translateX(0) rotate(var(--arrow-rotation, 0deg));
    opacity: 1;
  }
  45% {
    transform: translateX(var(--arrow-slide-out, 15px)) rotate(var(--arrow-rotation, 0deg));
    opacity: 0;
  }
  55% {
    transform: translateX(var(--arrow-slide-in, -15px)) rotate(var(--arrow-rotation, 0deg));
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(var(--arrow-rotation, 0deg));
    opacity: 1;
  }
}
/*
    put mixins which have consistant styles for all designs
 */
.filter-group__group-item {
  padding: 26px 0;
  border-bottom: 1px solid #ccdada;
}
.filter-group__group-item fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.filter-group__option-list {
  display: grid;
  gap: 8px;
}
.filter-group__option-list li:first-child {
  padding-top: 23px;
}

.filter-group__accordion-btn {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  appearance: none;
  width: 100%;
  text-align: left;
  font-family: Gotham-bold, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #004547;
}

.filter-group__show-more-btn {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  appearance: none;
  margin-top: 24px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/react-filter-item/scss/index.scss ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
@keyframes arrow-slide {
  0% {
    transform: translateX(0) rotate(var(--arrow-rotation, 0deg));
    opacity: 1;
  }
  45% {
    transform: translateX(var(--arrow-slide-out, 15px)) rotate(var(--arrow-rotation, 0deg));
    opacity: 0;
  }
  55% {
    transform: translateX(var(--arrow-slide-in, -15px)) rotate(var(--arrow-rotation, 0deg));
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(var(--arrow-rotation, 0deg));
    opacity: 1;
  }
}
/*
    put mixins which have consistant styles for all designs
 */
.filter-item__input {
  min-height: 24px;
}
.filter-item__input label {
  display: flex;
  align-items: center;
}
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/react-article-item/scss/index.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
@keyframes arrow-slide {
  0% {
    transform: translateX(0) rotate(var(--arrow-rotation, 0deg));
    opacity: 1;
  }
  45% {
    transform: translateX(var(--arrow-slide-out, 15px)) rotate(var(--arrow-rotation, 0deg));
    opacity: 0;
  }
  55% {
    transform: translateX(var(--arrow-slide-in, -15px)) rotate(var(--arrow-rotation, 0deg));
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(var(--arrow-rotation, 0deg));
    opacity: 1;
  }
}
/*
    put mixins which have consistant styles for all designs
 */
.article-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  border: 1px solid #edebeb;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 316px;
}
@media screen and (min-width: 768px) {
  .article-item {
    width: 376px;
  }
}
.article-item:hover .article-item__image, .article-item:focus-within .article-item__image {
  transform: scale(1.1);
}
.article-item:hover .article-item__title, .article-item:focus-within .article-item__title {
  color: #ffffff;
}
.article-item:hover .article-item__info, .article-item:focus-within .article-item__info {
  opacity: 1;
  color: #ffffff;
}
.article-item:hover .article-item__info-item .icon, .article-item:focus-within .article-item__info-item .icon {
  stroke: #ffffff;
}
.article-item:hover .article-item__button::after, .article-item:focus-within .article-item__button::after {
  background-color: #e5ff66;
}
.article-item:hover .article-item__button::before, .article-item:focus-within .article-item__button::before {
  animation: article-item-arrow-slide 0.4s ease;
}
.article-item:hover .article-item__content, .article-item:focus-within .article-item__content {
  background-color: #004547;
}
.article-item:hover .article-item__content-inner, .article-item:focus-within .article-item__content-inner {
  transform: translateY(0);
}
.article-item__image {
  position: absolute;
  transition: transform 0.3s ease;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
}
.article-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.article-item__image::after {
  content: "";
  display: block;
  padding-top: 50%;
  position: relative;
}
.article-item__content {
  width: 100%;
  padding: 27px 100px 27px 22px;
  z-index: 2;
  background-color: #ffffff;
  transition: background-color 0.3s ease, height 0.3s ease;
  display: flex;
  align-items: flex-end;
  height: 55%;
}
@media screen and (min-width: 768px) {
  .article-item__content {
    height: 50%;
    padding: 36px 104px 36px 32px;
  }
}
@media screen and (min-width: 768px) {
  .article-item__content-inner {
    transform: translateY(40px);
    transition: transform 0.3s ease;
  }
}
.article-item__title {
  font-family: "roc-grotesk-compressed", -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: bold;
  color: #004547;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: -0.01em;
  font-size: 40px;
}
@media screen and (min-width: 1024px) {
  .article-item__title {
    font-size: 40px;
  }
}
.article-item__title {
  padding-top: 4px;
  overflow: hidden;
  display: block;
  display: -webkit-box;
  max-height: 85px;
  line-height: 0.72;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
}
.article-item__title > span {
  color: #80a2a3;
}
@media (max-width: 370px) {
  .article-item__title {
    height: 58px;
    -webkit-line-clamp: 2;
  }
}
.article-item__info {
  display: flex;
  margin-top: 17px;
  color: #004547;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .article-item__info {
    opacity: 0;
    transition: color 0.3s ease, opacity 0.3s ease;
  }
}
.article-item__info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.article-item__info-item .icon {
  stroke: #004547;
  stroke-width: 2px;
  transition: stroke 0.3s ease;
}
.article-item__info-item:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding-right: 12px;
  margin-right: 12px;
}
.article-item__link {
  text-decoration: none;
}
.article-item__button:focus, .article-item__button:focus-visible {
  outline: none;
}
.article-item__button::after {
  content: "";
  position: absolute;
  right: 32px;
  bottom: 37px;
  width: 48px;
  height: 48px;
  background-color: #edebeb;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.article-item__button::before {
  content: "";
  position: absolute;
  right: 51px;
  bottom: 53px;
  width: 10px;
  height: 15px;
  background-color: #004547;
  mask-image: url(/dist/images/right-angle-fe5a7d913fec939fd363.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  z-index: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
@keyframes article-item-arrow-slide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  45% {
    transform: translateX(15px);
    opacity: 0;
  }
  55% {
    transform: translateX(-15px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/react-list-loader/scss/index.scss ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.infinity-list-loader {
  width: 100%;
  grid-column: 1/-1;
}
.infinity-list-loader .loader {
  --loader-size: clamp(32px, 6vw, 45px);
  margin: 0 auto;
}
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[7].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[7].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[7].use[3]!./node_modules/@epegzz/sass-vars-loader/src/sassVarsLoader.js??ruleSet[1].rules[7].use[4]!./assets/components/react-no-results/scss/index.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* general mixins and helpers */
@keyframes arrow-slide {
  0% {
    transform: translateX(0) rotate(var(--arrow-rotation, 0deg));
    opacity: 1;
  }
  45% {
    transform: translateX(var(--arrow-slide-out, 15px)) rotate(var(--arrow-rotation, 0deg));
    opacity: 0;
  }
  55% {
    transform: translateX(var(--arrow-slide-in, -15px)) rotate(var(--arrow-rotation, 0deg));
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(var(--arrow-rotation, 0deg));
    opacity: 1;
  }
}
/*
    put mixins which have consistant styles for all designs
 */
.no-results {
  font-family: Gotham-bold, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  color: #004547;
  text-transform: uppercase;
}
