:root {
  --bg-dark: #1f1f1f;
  --bg-light: #f4f4f4;
  --text-dark: #fff;
  --text-light: #383838;
  --border-color-dark: #e2e2e2;
  --border-color-light: #ccc;
}

.screener-main[data-theme=dark] {
  --bg-color: var(--bg-dark);
  --text-color: var(--text-dark);
  --border-color: var(--border-color-dark);
  --opacity-color: rgba(255, 255, 255, .5);
}

.screener-main[data-theme=light] {
  --bg-color: var(--bg-light);
  --text-color: var(--text-light);
  --border-color: var(--border-color-light);
  --opacity-color: rgba(0, 0, 0, .5);
}

.screener {
  margin: 200px 0 50px;
}
.screener__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: auto;
}
.screener__row {
  display: grid;
  grid-template-columns: repeat(7, 1fr) 200px;
  padding: 10px;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-color);
}
.screener__row--header {
  color: var(--text-color);
  font-weight: 600;
}
.screener__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.screener__order {
  display: flex;
  align-items: center;
  gap: 20px;
}
.screener__text {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
}
.screener__cell {
  padding: 8px;
  font-size: 14px;
  color: var(--text-color);
  text-align: right;
}
.screener__cell:first-child, .screener__cell:last-child {
  text-align: left;
}
.screener__cell span {
  color: var(--opacity-color);
}
.screener__cell--header {
  font-size: 13px;
  color: var(--opacity-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  transition: 0.3s ease;
}
.screener__cell--header:first-child, .screener__cell--header:last-child {
  justify-content: flex-start;
}
.screener__cell--header[data-sort="1"] .screener__arrows svg:last-child {
  opacity: 0;
  visibility: hidden;
}
.screener__cell--header[data-sort="2"] .screener__arrows svg:first-child {
  opacity: 0;
  visibility: hidden;
}
.screener__cell--header:hover {
  color: var(--text-color);
}
.screener__cell--header:hover svg path {
  fill: var(--text-color);
}
.screener__arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
}
.screener__arrows svg {
  width: 10px;
  height: 10px;
}
.screener__arrows svg path {
  fill: var(--opacity-color);
  transition: 0.3s ease;
}
@media screen and (max-width: 1370px) {
  .screener__row {
    grid-template-columns: repeat(7, 1fr) 150px;
  }
  .screener__cell {
    font-size: 13px;
    padding: 5px;
  }
  .screener__cell--header {
    font-size: 11px;
  }
}
@media screen and (max-width: 1024px) {
  .screener__container {
    overflow-x: auto;
    white-space: nowrap;
  }
  .screener__row {
    min-width: 1200px;
  }
}

.remodal[data-remodal-id=show_full_image] {
  padding: 0;
  width: fit-content;
  max-width: unset;
  background: unset;
}
.remodal[data-remodal-id=show_full_image].full-zoom img {
  cursor: zoom-out;
  max-height: unset;
}
.remodal[data-remodal-id=show_full_image] img {
  max-height: 90vh;
  width: 100%;
  height: auto;
  border-radius: 7px;
  cursor: zoom-in;
}
.remodal[data-remodal-id=show_full_image] .remodal-close {
  top: 8px;
  right: 8px;
}
@media screen and (max-width: 768px) {
  .remodal[data-remodal-id=show_full_image] {
    padding: 12px;
  }
  .remodal[data-remodal-id=show_full_image].full-zoom {
    width: 800px;
    height: 100%;
  }
  .remodal[data-remodal-id=show_full_image] .remodal-close {
    top: -18px;
    right: 12px;
  }
}

@media screen and (max-width: 768px) {
  .remodal-wrapper.full-cover::after {
    height: 400px;
  }
  .remodal-wrapper.full-cover .full-zoom {
    height: 400px;
  }
}
.analysis {
  margin-top: 200px;
}
.analysis__list {
  color: #fff;
  max-width: 500px;
}
.analysis__item {
  background-color: #192352;
  padding: 20px 20px 5px;
  border-radius: 8px;
}
.analysis__item:not(:last-child) {
  margin-bottom: 44px;
}
.analysis__img {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
}
.analysis__img > img, .analysis__img picture img {
  max-height: 500px;
  margin: 0 auto;
  width: auto;
  height: auto;
  transition: 0.2s ease;
  cursor: pointer;
}
.analysis__img:hover .analysis__glass {
  scale: 1.2;
}
.analysis__glass {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  opacity: 0.4;
  pointer-events: none;
  transition: 0.3s ease;
}
.analysis__glass img {
  height: auto;
}
.analysis .analysis__content {
  color: #fff;
}
.analysis__wrap {
  display: flex;
  gap: 50px;
  width: fit-content;
  margin: 0 auto 40px;
  position: relative;
}
.analysis__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.analysis__date {
  font-size: 16px;
  color: #BEC2CB;
  margin-bottom: 0;
}
.analysis__comments {
  position: sticky;
  top: 90px;
  left: 0;
  height: fit-content;
}
.analysis .analysis__content img {
  border-radius: unset;
}
.analysis #comments {
  margin-top: 0;
}
.analysis .wpd-form-head, .analysis .wc_website.wpd-field {
  display: none !important;
}
.analysis #wpdcom .wc-field-submit input[type=submit] {
  border-radius: 30px;
  border: 1px solid #fff;
  transition: 0.3s ease;
}
.analysis #wpdcom .wc-field-submit input[type=submit]:hover {
  background-color: #d90e61;
}
@media screen and (max-width: 768px) {
  .analysis {
    margin-top: 160px;
  }
  .analysis__wrap {
    flex-direction: column;
  }
  .analysis__item {
    padding: 10px 10px 5px;
  }
}

.mi-voting {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mi-vote-button {
  cursor: pointer;
  font-size: 18px;
  color: #958f8f;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.mi-vote-button:hover svg path {
  fill: #FF9811;
}
.mi-vote-button.active svg path {
  fill: #FF9811;
}
.mi-vote-button svg {
  margin-right: 5px;
}
.mi-vote-button svg path {
  transition: 0.3s ease;
}

/*# sourceMappingURL=style.css.map */
