.bus-cost {
	max-width: 1400px;
	margin: 0 auto 30px;
	background: #FFF;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0px 3.40416px 3.40416px rgba(0, 0, 0, 0.1);
}
.bus-cost .bus-cost__header {
	padding: 20px;
	background: #F0F0F0;
	text-align: center;
}
.bus-cost .bus-cost__header h1 {
	color: #000;
	font-size: 24px;
	line-height: 28px;
	font-weight: 500;
}
.bus-cost .table-box {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.bus-cost .table-box table {
	width: 100%;
	border-collapse: collapse;
}
.bus-cost .table-box table > thead > tr > th {
	padding: 20px 10px;
	text-align: center;
	font-size: 13px;
	font-weight: 500;
	color: #000;
	background: #fff;
	border-bottom: 1px solid #1AB22B;
	white-space: nowrap;
}
.bus-cost .table-box table > tbody > tr {
	border-bottom: 1px solid #1AB22B;
}
.bus-cost .table-box table > tbody > tr:last-child {
	border: none;
}
.bus-cost .table-box table > tbody > tr:nth-child(odd) {
	background: #F5FBF2;
}
.bus-cost .table-box table > tbody > tr.section {
	background: #f8f8f8;
	font-weight: 500;
}
.bus-cost .table-box table > tbody > tr.section > td {
	font-size: 16px;
}
.bus-cost .table-box table > tbody > tr.section:nth-child(odd) {
	background: #f8f8f8;
}
.bus-cost .table-box table > tbody > tr > td {
	padding: 15px 10px;
	text-align: center;
	font-size: 13px;
	color: #000;
	white-space: nowrap;
}
.bus-cost .table-box table > tbody > tr > td svg {
	width: 32px;
	height: 20px;
	fill: #2196F3;
}
.bus-cost .table-box table > tbody > tr > td button {
	padding: 8px 24px;
	border: 1px solid #1AB22B;
	border-radius: 25px;
	background: transparent;
	color: #1AB22B;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s;
}
.bus-cost .table-box table > tbody > tr > td button:hover {
	background: #1AB22B;
	color: #FFF;
}
.bus {
	width: 240px;
	padding: 10px;
	border: 3px solid #1AB22B;
	border-radius: 30px;
}
.bus .bus__aisle {
	width: 20px;
}
.bus .bus__door {
	width: 121px;
	height: 40px;
	background: #dfdfdf;
	border-top-right-radius: 20px;
}
.bus .bus__driver {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 83px;
	height: 40px;
	background: #dfdfdf;
	border-top-left-radius: 20px;
}
.bus .bus__driver-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
}
.bus .bus__header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 2px solid #7DC61D;
}
.bus .bus__legend {
	display: flex;
	justify-content: space-around;
	margin: 10px 0;
	padding-top: 10px;
	border-top: 2px solid #7DC61D;
	font-size: 12px;
}

.bus .bus__legend-color {
	width: 14px;
	height: 14px;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 4px;
}
.bus .bus__legend-item {
	display: flex;
	align-items: center;
	gap: 3px;
}
.bus .bus__row {
	display: grid;
	align-items: center;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 4px;
}
.bus .bus__seat {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 28px;
	border-radius: 4px;
	font-size: 12px;
	color: #FFF;
	cursor: pointer;
	transition: opacity .2s;
}
.bus .bus__seat--available {
	background: linear-gradient(16.45deg, #1AB22B 6.12%, #7DC61D 93.88%);
}
.bus .bus__seat--booked {
	background: #dfdfdf;
	color: #000;
	cursor: not-allowed;
}
.bus .bus__seat--occupied {
	background: #E93D3D;
}
.bus .bus__seat--selected {
	background: #009EFF;
}
.bus .bus__seat:hover:not(.bus__seat--booked),
.bus .bus__seat:focus:not(.bus__seat--booked) {
	opacity: .8;
}
.bus .bus__seats {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.bus-form  {
	margin: 0 0 30px;
}
.bus-form .bus-form__row {
	display: flex;
	gap: 50px;
}
.bus-form .bus-form__column {
	width: 100%;
}
.bus-form .bus-form__column--right {
	flex-shrink: 0;
	width: auto;
}
.bus-form .bus-form__title {
	margin: 0 0 20px;
	font-size: 20px;
	line-height: 28px;
}
.bus-form .bus-form__subtitle {
	margin: 0 0 10px;
	font-size: 16px;
	line-height: 18px;
	font-weight: 500;
}
.bus-form .bus-form__field {
	margin: 0 0 10px;
}
.bus-form .bus-form__field:last-child {
	margin: 0;
}
.bus-form .bus-form__fields {
	margin: 0 0 20px;
}
.bus-form .bus-form__label {
	margin: 0 0 4px;
	font-size: 14px;
	line-height: 16px;
}
.bus-form .bus-form__tourists {
	margin: 0 0 20px;
	display: flex;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 15px;
}
.bus-form .bus-form__tourist {
	margin: 0 0 8px;
}
.bus-form .bus-form__tourist:last-child {
	margin: 0;
}
.bus-form .bus-form__tourist-controls {
	display: flex;
}
.bus-form .bus-form__control-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: none;
	border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
	background: #E6F7E5;
	color: #1AB22B;
	transition: opacity .2s;
}
.bus-form .bus-form__control-btn--plus {
	border-top-left-radius: 0;
    border-bottom-left-radius: 0;
	border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.bus-form .bus-form__control-btn:hover,
.bus-form .bus-form__control-btn:focus {
	opacity: .8;
}
.bus-form .bus-form__price {
	margin: 0 0 20px;
	font-size: 18px;
	font-weight: 500;
}
.bus-form .bus-form__price-sum {
	font-size: 20px;
	font-weight: 700;
}
.bus-form .form-btn {
	height: 50px;
	padding: 0 50px;
	color: #FFF;
}
.bus-form .bus-layout {
	display: flex;
	align-items: flex-start;
}
.bus-form .bus-layout__row-numbers {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 76px;
}
.bus-form .bus-layout__row-numbers--left {
	margin-right: 10px;
}
.bus-form .bus-layout__row-numbers--right {
	margin-left: 10px;
}
.bus-form .bus-layout__row-number {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 24px;
	font-size: 14px;
	font-weight: 500;
	color: #666;
}
.bus-form .popup-input {
	border-color: #efefef;
}
.bus-form .bus-form__tourists .popup-input {
	max-width: 70px;
	height: 36px;
	padding: 0 10px;
	border-radius: 0;
	border-left: none;
	border-right: none;
}
.bus-form .checkbox {
	margin: 0 0 20px;
}
.bus-form .select2-container--default .select2-selection--single {
	border-color: #dfdfdf;
}
.dev-container {
	padding: 20px;
	margin: 20px 0;
	border-radius: 10px;
	border: 1px dashed green;
}
@media(max-width: 767px) {
	.bus-form .bus-form__row {
		flex-direction: column;
		gap: 0;
	}
	.bus-form .bus-form__column {
		display: contents;
	}
	.bus-form .bus-form__column--right {
		order: 2;
	}
	.bus-form .bus-form__foot {
		order: 1;
	}
	.bus-form .form-btn {
		width: 100%;
	}
	.bus-form .bus-layout {
		margin: 0 0 20px;
		justify-content: center;
	}
}