@keyframes analyst_reports_loading_wheel {
  0% {
    transform: rotate(7deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html {
	scrollbar-gutter: stable;
}
.analyst-reports {
  padding: 15px 0 0;
}

.analyst-reports__main {
  display: flex;
  flex-direction: column;
}

.analyst-reports__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 16px;
  margin-bottom: 35px;
}

.analyst-reports__filter--search {
  flex: 1 0 100%;
}

.analyst-reports__search-field {
  position: relative;
}

.analyst-reports__search-label {
  display: none;
}

.analyst-reports__search-input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #e6e7e8;
  color: #606162;
  font-size: 16px;
  font-weight: 350;
  padding: 0 0 0 35px;
  background: transparent;
  line-height: 35px;
  appearance: none;
  -webkit-appearance: none;
}

.analyst-reports__search-input.analyst-reports__search-input--has-value {
  padding-right: 35px;
}

.analyst-reports__search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.analyst-reports__search-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.analyst-reports__search-input:focus {
  outline: 2px solid #0076d5;
  outline-offset: 2px;
}

.analyst-reports__search-icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: #495057;
  pointer-events: none;
}

.analyst-reports__search-icon::before {
  content: "\e0a1";
  font-family: cui-font;
  font-size: 14px;
  line-height: 1;
}

.analyst-reports__search-clear {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: #606162;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.analyst-reports__search-clear:hover,
.analyst-reports__search-clear:focus-visible {
  color: #1b1c1d;
}

.analyst-reports__search-clear.is-hidden {
  display: none;
}

.analyst-reports__filter--firms {
  flex: 1 0 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 12px;
}

.analyst-reports__firm-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.analyst-reports__filter-label {
  margin: 0;
  padding: 6px 0 6px 0;
  min-height: 35px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: var(--font-preset-h600-spacing);
}

.analyst-reports__firm-list {
  display: contents;
  list-style: none;
  margin: 0;
  padding: 0;
}

.analyst-reports__firm-item {
  margin: 0;
}

.analyst-reports__firm-button {
  border: 1px solid #0076d5;
  border-radius: 6px;
  padding: 6px 12px;
  color: #0076d5;
  font-weight: 400;
  font-size: 14px;
  background: transparent;
  cursor: pointer;
}

.analyst-reports__firm-button:hover,
.analyst-reports__firm-button:focus-visible {
  background-color: #0076d529;
}

.analyst-reports__firm-button.is-active {
  background-color: #0076d5;
  color: #ffffff;
}

.analyst-reports__firm-toggle {
  border: 0;
  background: transparent;
  color: #0076d5;
  cursor: pointer;
  padding: 4px 0 4px 4px;
  min-height: 35px;
  font-size: 16px;
  flex-shrink: 0;
}

.analyst-reports__select {
  font-size: 16px;
  border-radius: 8px;
  padding: 14px 24px;
  height: 48px;
  max-height: 48px;
  width: 282px;
  max-width: 100%;
  border: 1px solid #dee2e6;
  background: #ffffff;
  color: #1b1c1d;
}

.analyst-reports__custom-date {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  width: 100%;
}

.analyst-reports__date-input {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 16px;
}

.analyst-reports__filters-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 0 100%;
}

.analyst-reports__filters-toggle,
.analyst-reports__filters-reset {
  border: 0;
  background: transparent;
  color: #0076d5;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
}

.analyst-reports__results {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 16px;
  position: relative;
  min-height: 120px;
}

.analyst-reports__results.is-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 100%;
  border: 1px solid #dee2e6;
  border-left-color: #00bceb;
  animation: analyst_reports_loading_wheel 1.1s infinite linear;
  z-index: 2;
}

.analyst-reports__results.is-loading > * {
  opacity: 0;
  pointer-events: none;
}

.analyst-reports__item {
  display: flex;
  flex: 1 1 calc(33% - 16px);
  min-width: 280px;
  gap: 24px;
}

.analyst-reports__image-link {
  position: relative;
  flex: 0 0 160px;
  text-decoration: none;
}

.analyst-reports__image {
  width: 160px;
  height: 160px;
  border-radius: 4px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.analyst-reports__disclaimer-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 0;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  line-height: 0;
}

.analyst-reports__disclaimer-icon:hover,
.analyst-reports__disclaimer-icon:focus-visible {
  background-color: rgba(255, 255, 255, 0.28);
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.analyst-reports__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.analyst-reports__title {
  font-size: 16px;
  font-weight: 350;
  line-height: 140%;
  color: #1b1c1d;
  text-decoration: none;
  margin-bottom: 8px;
}

.analyst-reports__title:hover {
  text-decoration: underline;
  text-decoration-color: #c3c4c5;
  text-underline-offset: 5px;
}

.analyst-reports__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.analyst-reports__firm-tag {
  font-size: 12px;
  line-height: 24px;
  color: #0076d5;
  border: 1px solid #0076d5;
  border-radius: 2px;
  padding: 0 8px;
  text-decoration: none;
}

.analyst-reports__firm-tag:hover,
.analyst-reports__firm-tag:focus-visible {
  background-color: #0076d529;
}

.analyst-reports__date {
  color: #606162;
  font-size: 12px;
  font-weight: 350;
  line-height: 140%;
  letter-spacing: 0.02em;
}

.analyst-reports__empty {
  flex: 1 0 100%;
  color: #606162;
  font-size: 16px;
}

.analyst-reports__load-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.analyst-reports__load-more-button {
  border: 1px solid #0076d5;
  border-radius: 48px;
  background: transparent;
  color: #0076d5;
  cursor: pointer;
  padding: 8px 24px;
  font-size: 16px;
}

.analyst-reports__load-more-button:hover,
.analyst-reports__load-more-button:focus-visible {
  border-color: #0060ad;
  color: #0060ad;
}

.analyst-reports-disclaimer-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: rgba(0, 0, 0, 0.5);
}

.analyst-reports-disclaimer-modal.is-open {
  display: flex;
}

body.analyst-reports-disclaimer-modal-open {
  overflow: hidden;
}

.analyst-reports-disclaimer-modal__close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1001;
  display: flex;
  width: 6.4rem;
  height: 6.4rem;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: none;
  cursor: pointer;
}

.analyst-reports-disclaimer-modal__close-icon {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  pointer-events: none;
}

.analyst-reports-disclaimer-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 99.6rem;
  max-height: calc(100vh - 20rem);
  overflow: auto;
  padding: 8rem;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.analyst-reports-disclaimer-modal__content {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  word-break: break-word;
}

.analyst-reports-disclaimer-modal__content p {
  margin: 0 0 1em;
}

.analyst-reports .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.is-hidden {
  display: none !important;
}

@media (min-width: 781px) {
  .analyst-reports__filters-actions {
    flex: 0 0 auto;
    align-self: center;
    min-height: 48px;
  }

  .analyst-reports--filtered .analyst-reports__filters-reset {
    display: inline-flex;
    align-items: center;
  }

  .analyst-reports__filters-toggle {
    display: none;
  }
}

@media (max-width: 780px) {
  .analyst-reports__filters {
    flex-direction: column;
    align-items: stretch;
  }

  .analyst-reports__filter {
    width: 100%;
    flex: 1 0 100%;
  }

  .analyst-reports__filter--firms {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .analyst-reports__filter-label {
    width: 100%;
    padding: 6px 0;
  }

  .analyst-reports__firm-tags {
    width: 100%;
  }

  .analyst-reports__filter--sort,
  .analyst-reports__filter--date {
    width: 100%;
  }

  .analyst-reports__select {
    width: 100%;
  }

  .analyst-reports__filters-actions {
    justify-content: center;
    width: 100%;
  }

  .analyst-reports__filters-toggle {
    display: none;
  }

  .analyst-reports--filtered .analyst-reports__filters-reset {
    display: inline-flex;
    justify-content: center;
    width: 100%;  
  }

  .analyst-reports__item {
    flex: 1 1 100%;
    min-width: 0;
  }

  .analyst-reports-disclaimer-modal__dialog {
    padding: 2.4rem;
  }
  .analyst-reports__empty {
    text-align: center;
  }
}

@media screen and (min-width: 781px) and (max-width: 1024px) {
  .analyst-reports__item {
    flex: 1 1 calc(50% - 12px);
  }
}
