/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.rich[contenteditable="true"] {
  -webkit-user-modify: read-only;
  -moz-user-modify: read-only;
  user-modify: read-only;
}
.region {
  position: relative;
}
.region .tooltip {
  position: absolute;
  top: 66px;
  left: -20px;
  width: 297px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #122E53;
  color: var(--white-color);
  padding: 16px;
  border-radius: var(--radius-12);
}
.region .tooltip:not(.region-selected) .title-default {
  display: none;
}
@media (min-width: 768px) {
  .region .tooltip:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 34px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 10px solid #122E53;
    border-radius: 2px;
  }
}
.region .tooltip.region-selected .action-save {
  display: none;
}
.region .tooltip.region-selected .first-entrance {
  display: none;
}
.region .tooltip.region-selected .actions {
  flex-direction: column;
}
.region .tooltip .actions {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.region .tooltip .actions .action {
  min-width: max-content;
}
.region .tooltip .actions .action:first-child {
  padding-left: 29px;
  padding-right: 29px;
}
.js-region-dependent:not(.is-moscow-region) .region-label--default {
  display: revert;
}
.js-region-dependent:not(.is-moscow-region) .region-label--moscow {
  display: none;
}
.js-region-dependent.is-moscow-region .region-label--default {
  display: none;
}
.js-region-dependent.is-moscow-region .region-label--moscow {
  display: revert;
}

