.map-title-cell {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 10px;
  padding-inline: 10px;
}

.trace-select-container {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 2px;

  span {
    padding-right: 30px;
    font-size: 12px;
    color: rgb(71, 71, 71);
  }
}

.trace-select {
  width: 100%;
  height: 100%;
  border: none;
  background-color: var(--title-bg);
  color: var(--title-clr);
  outline: none;
  font-size: 20px;
  cursor: pointer;
  padding-right: .5em;
  text-align: end;
}

.phone-svg {
  width: 40px;
  height: 40px;

}

.phone-svg_90 {
  transform: rotate(90deg);
}

.phone-svg.selected {
  fill: var(--selected-bg);
}

.ru-en-switch{
  position: absolute;
  right: 5px;
  display: flex;
  gap: 5px;

  span {
    padding: 5px;
    border: 3px solid black;
    border-radius: 5px;
    
  }
}
.baseLang {
  .ru-switch {
    background-color: var(--selected-bg);;
  }
}
.otherLang {
  .en-switch {
    background-color: var(--selected-bg);;
  }
}

/*  */
.speed {
  position: relative;
  height: 50px;

  display: flex;
  gap: 3px;
  padding-inline: 10px;
  border-radius: 5px;
  min-width: 120px;
  font-size: 10px;
}

.speed__title {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  /* text-transform: uppercase; */
}

.speed__slow {
  position: absolute;
  bottom: 0;
  left: 2px;
}

.speed__fast {
  position: absolute;
  bottom: 0;
  right: 2px;
}

.speed__val {
  display: inline-block;
  width: 16px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid darkgoldenrod;
}

.speed__val.selected {
  background-color: var(--selected-bg);
}

.playCommand {
  position: relative;
  height: 46px;
  min-width: 200px;
  padding-inline: 10px;
  padding-block: 2px;
  border-radius: 5px;

  display: flex;
  align-items: center;
  gap: 5px;
}

.play__item {
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  transition: background-color var(--transition-time);

  &:not(.disabled):hover {
    background-color: var(--selected-bg);
  }

  &.disabled {
    /* opacity: 0.6; */
    cursor: not-allowed;

    svg {
      filter: contrast(10%);
    }
  }
}

/*  */
.help {
  margin-left: auto;
  margin-right: 10px;
  font-size: var(--title-font-size);
}