.dotted-border-bottom-black{
    border-bottom: 1px dotted #333338;
}

.fit-content{
    max-width: fit-content;
}

.tooltip-text {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.5rem;
    background-color: #333338;
    color: white;
    text-align: center;
    font-size: 13px;
    line-height: 20px;
    padding: 12px;
    border-radius: 8px;
    left: 52%;
    transform: translateX(-50%);
    bottom: calc(100% + 10px);
    z-index: 4;
    width: 200px;
}

.tooltip-text::before {
  content: "";
  width: 8px;
  margin-top: -4px;
  margin-left: -4px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: rotate(45deg);
  background-color: inherit;
  display: block;
  height: 8px;
}

.mainscreen__tabs.overflow_hirizon .regular-text{
  color: var(--tag-slider-color);
}

.gray_colortext{
  color: #767682 !important;
}

.lighttext_colortext{
  color: #969AA5 !important;
}

@media (max-width: 1200px) {
  .mainscreen__tabs.overflow_hirizon .tariffs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .mainscreen__tabs.overflow_hirizon .tariffs {
    display: grid;
    grid-template-columns: repeat(3, 228px);
    overflow-x: auto;
    margin: 0 calc(-1 * 1rem);
    padding: 0 1rem;
    justify-content: start;
    align-items: stretch;
  }

}


