.letter-with-circle {
  display: inline-block; /* Позволяет задавать размеры и центрировать */
  width: 20px; /* Желаемая ширина */
  height: 20px; /* Желаемая высота */
  line-height: 20px; /* Центрирование текста по вертикали */
  color: white; /* Цвет текста */
  text-align: center; /* Центрирование текста по горизонтали */
  border-radius: 50%; /* Создает круг */
  font-weight: bold; /* Жирный шрифт */
  margin-right: 3px;
}

.letter-green {
  background-color: #3CB371; /* Цвет фона (синий) */
}

.letter-grey {
  background-color: #A9A9A9; /* Цвет фона (синий) */
}

.letter-red {
  background-color: #FF0000; /* Цвет фона (синий) */
}

.tourtable {
	padding-bottom: 30px;
	width: 100%;
	overflow-x: auto;
}
.tourtable table {
	border: none;
	font-size:0.9em;
	width: 100%;
}
.tourtable table td {
	vertical-align: middle;
	padding: 0;
	border: none;
	padding-left: 5px;
	padding-right: 5px;
}
.tourtable table th, td {
  border: none;
  border-collapse: collapse;
  white-space: nowrap;
}
@media (max-width: 700px) {
	.tourtable table th, td {
		height: 40px;
	}
}
.tourtable tr:hover {
      background-color: #f0f0f0 !important; /* Светло-серый фон */
      cursor: pointer; /* Изменяет курсор на "указатель" при наведении */
    }
.tourtable table td img {
	min-width: 35px;
	max-height: 35px;
	width: 35px; 
	height: auto;
	float: right;
	margin-top: 4px;
	margin-bottom: 4px;
}
/* Нечетные строки */
.tourtable table tbody tr:nth-child(odd){
	background: #F7F7F7;
}
/* Четные строки */
.tourtable table tbody tr:nth-child(even){
	background: #fff;
}