.MYUI-SimpleCell {
  overflow: hidden;
  border-radius: 0px;
}

.MYUI-SimpleCell:nth-child(1) {
  border-radius: var(--border_radius_optimaze) var(--border_radius_optimaze) 0px 0px;
}

.MYUI-SimpleCell:last-child {
  border-radius: 0px 0px var(--border_radius_optimaze) var(--border_radius_optimaze);
}

.MYUI-SimpleCell:nth-child(1):nth-last-child(1) {
  border-radius: inherit;
}

.MYUI-SimpleCell__in {
  display: flex;
  align-items: center;
  min-height: calc(42px - var(--PADDING_bottom_or_top) * 2);
  padding: var(--PADDING_bottom_or_top) var(--PADDING_left_or_right) var(--PADDING_bottom_or_top) var(--PADDING_left_or_right);
}

.MYUI-SimpleCell__content {
  color: var(--text_primary);
  font-size: var(--font_size_footnote);
  font-weight: var(--font_weight_default);
}

.MYUI-SimpleCell__in--bottom {
  align-items: flex-start;
  color: var(--text_primary);
  font-size: var(--font_size_caption_1);
}

.MYUI-SimpleCell__before {
  padding-right: var(--padding_default);
  color: var(--text_primary);
  font-size: var(--font_size_optimaze);
  font-weight: var(--font_weight_hard);
}

.MYUI-SimpleCell__main {
  width: 100%;
}

.MYUI-SimpleCell__bottom {
  padding-top: var(--padding_default);
}

.MYUI-SimpleCell__description {
  color: var(--text_secondary);
  font-size: var(--font_size_low);
}

.MYUI-SimpleCell__content>:not(:first-child) {
  margin-top: calc(var(--padding_low) / 2);
}

.MYUI-SimpleCell__after {
  white-space: nowrap;
  display: flex;
  padding-left: var(--padding_default);
  color: var(--text_primary);
  font-size: var(--font_size_caption_1);
  font-weight: var(--font_weight_hard);
}

.MYUI-SimpleCell__expandable {
  display: flex;
  justify-content: center;
  padding-left: var(--padding_low);
}



/* ОЖИДАНИЕ */

.MYUI-SimpleCell__separator {
  background: red;
  width: 100%;
  height: 1px;
}