body {
  --o-m-primary: #165dff;
}

body {
  --o-m-primary: #165dff;
}

.o-m-year-picker {
  display: inline-flex;
  flex-direction: column;
  box-sizing: border-box;
}
.o-m-year-picker__input {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.88);
  font-size: 14px;
  line-height: 1;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  transition: border 0.2s, box-shadow 0.2s;
}
.o-m-year-picker__input--active, .o-m-year-picker__input:hover {
  border-color: var(--o-m-primary);
  box-shadow: 0 0 0 2px rgba(5, 145, 255, 0.1);
}
.o-m-year-picker__input--has-value:hover .o-m-year-picker__input-clear {
  display: inline-block;
}
.o-m-year-picker__input-entry {
  width: 100%;
  color: rgba(0, 0, 0, 0.88);
  font-size: 14px;
  line-height: 1.5714;
  border: none;
  outline: none;
}
.o-m-year-picker__input-entry::placeholder {
  color: #a3b1bf;
}
.o-m-year-picker__input-icon {
  display: inline-block;
  color: rgba(0, 0, 0, 0.25);
  margin-inline-start: 4px;
}
.o-m-year-picker__input-clear {
  position: absolute;
  top: 50%;
  display: none;
  color: rgba(0, 0, 0, 0.25);
  background: #fff;
  transform: translateY(-50%);
  cursor: pointer;
  inset-inline-end: 11px;
}
.o-m-year-picker__drop {
  position: relative;
}
.o-m-year-picker__drop-picker {
  min-width: 280px;
  min-height: 305px;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}
.o-m-year-picker__drop-picker-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 40px;
  padding-right: 8px;
  padding-left: 8px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
}
.o-m-year-picker__drop-picker-header-pre {
  min-width: 1.6em;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.o-m-year-picker__drop-picker-header-pre:hover {
  color: rgba(0, 0, 0, 0.88);
}
.o-m-year-picker__drop-picker-header-pre > span {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  line-height: 40px;
  transform: rotate(-45deg);
}
.o-m-year-picker__drop-picker-header-pre > span::before {
  position: absolute;
  top: 0;
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 0 solid currentcolor;
  content: "";
  inset-inline-start: 0;
  border-block-start-width: 1.5px;
  border-block-end-width: 0;
  border-inline-start-width: 1.5px;
  border-inline-end-width: 0;
}
.o-m-year-picker__drop-picker-header-pre > span::after {
  position: absolute;
  top: 4px;
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 0 solid currentcolor;
  content: "";
  inset-inline-start: 4px;
  border-block-start-width: 1.5px;
  border-block-end-width: 0;
  border-inline-start-width: 1.5px;
  border-inline-end-width: 0;
}
.o-m-year-picker__drop-picker-header-info {
  flex: 1;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
.o-m-year-picker__drop-picker-header-next {
  min-width: 1.6em;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.o-m-year-picker__drop-picker-header-next:hover {
  color: rgba(0, 0, 0, 0.88);
}
.o-m-year-picker__drop-picker-header-next > span {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  line-height: 40px;
  transform: rotate(135deg);
}
.o-m-year-picker__drop-picker-header-next > span::before {
  position: absolute;
  top: 0;
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 0 solid currentcolor;
  content: "";
  inset-inline-start: 0;
  border-block-start-width: 1.5px;
  border-block-end-width: 0;
  border-inline-start-width: 1.5px;
  border-inline-end-width: 0;
}
.o-m-year-picker__drop-picker-header-next > span::after {
  position: absolute;
  top: 4px;
  display: inline-block;
  width: 7px;
  height: 7px;
  border: 0 solid currentcolor;
  content: "";
  inset-inline-start: 4px;
  border-block-start-width: 1.5px;
  border-block-end-width: 0;
  border-inline-start-width: 1.5px;
  border-inline-end-width: 0;
}
.o-m-year-picker__drop-picker-body {
  display: grid;
  grid-template-rows: 24px 24px 24px 24px;
  grid-template-columns: 60px 60px 60px;
  gap: 60px 30px;
  height: calc(100% - 40px);
  padding: 20px;
}
.o-m-year-picker__drop-picker-body-button {
  width: 100%;
  height: 100%;
  color: rgba(0, 0, 0, 0.88);
  background-color: #fff;
  border: none;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  transition: all 0.2s;
}
.o-m-year-picker__drop-picker-body-button:not(.o-m-year-picker__drop-picker-body-button--active):hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.o-m-year-picker__drop-picker-body-button--active {
  color: #fff;
  background-color: var(--o-m-primary);
}
.o-m-year-picker__drop-picker-body-button--disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}

.o-m-trigger__popup {
  position: absolute;
}

.o-m-teleport--disabled {
  display: none;
  visibility: hidden;
}

.o-m-tag {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  white-space: nowrap;
  background-color: rgb(225, 236, 254);
}
.o-m-tag--medium {
  height: 26px;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 4px;
}

.o-m-resize-observer {
  position: relative;
}

.o-m-link {
  color: var(--o-m-primary);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
  cursor: pointer;
}

.o-m-guide__header {
  height: 96px;
  padding: 20px;
  background-color: #fff;
}
.o-m-guide__header-title {
  color: rgba(0, 0, 0, 0.85);
  font-weight: bold;
  font-size: 20px;
  line-height: 28px;
}
.o-m-guide__header-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.o-m-guide__header-info-desc {
  color: rgba(0, 0, 0, 0.65);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
.o-m-guide__header-info-action {
  color: var(--o-m-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
}
.o-m-guide-flow {
  padding: 16px 20px;
  background-color: rgb(243, 244, 247);
}
.o-m-guide-flow__card {
  padding-top: 16px;
  padding-bottom: 20px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 4px;
}
.o-m-guide-flow__card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
  padding-left: 16px;
}
.o-m-guide-flow__card-header-title {
  color: #1d2129;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
}
.o-m-guide-flow__card-header-action {
  color: rgba(0, 0, 0, 0.447);
  cursor: pointer;
  transition: all 0.2s;
}
.o-m-guide-flow__card-header-action:hover {
  transform: rotateZ(360deg);
}
.o-m-guide-flow__card-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.o-m-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.o-m-flow-step__img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.o-m-flow-step__title {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: bold;
  font-size: 16px;
}
.o-m-flow-step__title--linkable {
  margin-top: 24px;
  color: var(--o-m-primary);
  font-weight: 400;
}
.o-m-flow-step__desc {
  margin-top: 8px;
  color: #2d303e;
  font-weight: 400;
  font-size: 12px;
}

.o-m-dataset-card {
  flex: 1;
  min-width: 260px;
  padding-bottom: 26px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  transition: all 0.2s;
}
.o-m-dataset-card:hover {
  box-shadow: 0 6px 12px 5px rgba(52, 103, 166, 0.1), 0 -2px 10px 0 rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}
.o-m-dataset-card__img {
  width: 100%;
  height: 188px;
  margin-bottom: 20px;
}
.o-m-dataset-card__img--error {
  background-color: rgb(216, 216, 216);
}
.o-m-dataset-card__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.o-m-dataset-card__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-right: 10px;
  padding-left: 10px;
}
.o-m-dataset-card__head-title {
  padding-right: 6px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.o-m-dataset-card__head-action {
  padding-right: 10px;
  white-space: nowrap;
}
.o-m-dataset-card__head-action-button:not(:last-child) {
  margin-right: 20px;
}
.o-m-dataset-card__desc {
  height: 60px;
  margin-bottom: 12px;
  padding-right: 12px;
  padding-left: 12px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.o-m-dataset-card__tags {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 4px;
  padding-right: 12px;
  padding-left: 12px;
}
.o-m-dataset-card__tags-left {
  min-width: 60px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 400;
  font-size: 12px;
  line-height: 26px;
}
.o-m-dataset-card__tags-right {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.o-m-dataset-card__tags-right-tag {
  margin-right: 8px;
  margin-bottom: 8px;
}
.o-m-dataset-card__tags-right-tag:last-child {
  margin-right: 0;
}
.o-m-dataset-card__label1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 12px;
  padding-right: 12px;
  padding-left: 12px;
}
.o-m-dataset-card__label1-left {
  min-width: 60px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 400;
  font-size: 12px;
}
.o-m-dataset-card__label1-right {
  flex: 1;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  font-size: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.o-m-dataset-card__label2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-right: 12px;
  padding-left: 12px;
}
.o-m-dataset-card__label2-left {
  min-width: 60px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 400;
  font-size: 12px;
}
.o-m-dataset-card__label2-right {
  flex: 1;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 400;
  font-size: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.o-m-category {
  background-color: #fff;
}
.o-m-category__header {
  padding: 20px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: bold;
  font-size: 20px;
  line-height: 22px;
}
.o-m-category__body {
  padding-right: 20px;
  padding-left: 20px;
}