:root {
  --v10-color-primary: #2280bd;
  --swiper-theme-color: #2280bd;
  --header_active_bg_color: #2280bd;
  --header_active_color: #fff;
  --header_font_color: #fff;
  --border_color: #E8E8E8;
  --box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  --float-zIndex: 1000100;
  --float-mask-zIndex: 1000050;
  --fancybox-zIndex: 1000000;
  --header-zIndex: 999999;
  --mobile-header-height: 60px;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.is-invisible {
  visibility: hidden !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 990px) {
  .mobile-hidden {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none !important;
  }
}

.standard-item-wrapper {
  display: block;
  box-sizing: border-box;
  background: #fff;
}
.standard-item-wrapper:not(:last-child) {
  border-bottom: 1px solid #DEE5ED;
}

.standard-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  text-decoration: none;
  transition: background-color 0.2s;
}
.standard-item:hover {
  background-color: #f5faf8;
}
.standard-item:hover .standard-item-text {
  color: var(--v10-color-primary);
}
@media (max-width: 990px) {
  .standard-item {
    padding: 12px 14px;
    gap: 8px;
  }
}

.standard-item-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #D1D5DC;
  flex-shrink: 0;
}

.standard-item-text {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.8);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: color 0.2s;
}

.standard-item-date {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-size: 12px;
  line-height: 1;
  color: #5A6C8A;
  white-space: nowrap;
}
.standard-item-date .date-icon {
  display: block;
  width: 14px;
  height: 14px;
}
@media (max-width: 990px) {
  .standard-item-date {
    font-size: 11px;
  }
  .standard-item-date .date-icon {
    width: 12px;
    height: 12px;
  }
}

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