.boats-catalog {
	display: flex;
	flex-flow: row nowrap;
	margin-top: 50px;
	margin-bottom: 50px;
}

.boats-filter {
	min-width: 260px;
	max-width: 260px;
	margin-right: 32px;
	position: relative;
}
	.boats-filter .boat-filter-head {
		display: none;
		position: relative;
		text-align: center;
		font-size: 13px;
		text-transform: uppercase;
		font-weight: bold;
		padding: 16px 0px;
		box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
	}
		.boats-filter .boat-filter-head button {
			border: 0;
			outline: 0;
			font-size: 22px;
			background-color: transparent;
			position: absolute;
			right: 16px;
			top: 50%;
			transform: translateY(-50%);
		}
	.boats-filter form {
		border: solid 1px #B7C3D4;
		padding: 16px;
	}
		.boats-filter .filter-field {
			margin-bottom:16px;
		}
			.boats-filter .filter-field:last-child {
				margin-bottom: 0px;
			}
			.boats-filter .filter-field .filter-title {
				margin-bottom: 8px;
				font-weight: 600;
				font-size: 13px;
				text-transform: uppercase;
				color: #000000;
			}
			.boats-filter .filter-field .filter-line {
				display: flex;
				flex-flow: row nowrap;
				align-items: center;
				justify-content: flex-start;
				gap: 8px;
			}
				.boats-filter .filter-field .filter-line .form-control {
					width: auto;
					flex-grow: 1;
				}
				.boats-filter .filter-field .filter-line .form-control[type=number] {
					width: 64px;
				}
				.boats-filter .filter-field .filter-line label {
					font-size: 14px;
				}
				.boats-filter .filter-field .form-check label, .boats-filter .filter-field .form-control, .boats-filter .filter-field .form-select {
					font-size: 14px;
				}
			.boats-filter .filter-field .input-button {
				position: relative;
			}
				.boats-filter .filter-field .input-button button {
					position: absolute;
					right: 4px;
					top: 4px;
					bottom: 4px;
					border: 0;
					outline: 0;
					background-color: transparent;
					color: #000000;
					opacity: 0.5;
				}
					.boats-filter .filter-field .input-button button:hover {
						opacity: 1;
					}




.boats-list {
	
}
	.boats-sorts {
		display: flex;
		flex-flow: row wrap;
		gap: 32px;
		margin-bottom: 32px;
	}
		.boats-sorts .sort-title {
			font-size: 13px;
			font-weight: bold;
			text-transform: uppercase;
			letter-spacing: 1.3px;
			line-height: 16px;
			color: #07080F;
			display: flex;
			flex-direction: row;
			flex-wrap: nowrap;
			justify-content: flex-start;
			align-items: center;
			height: 18px;
		}
		.boats-sorts .sort-item {
			font-size: 13px;
			font-weight: bold;
			text-transform: uppercase;
			letter-spacing: 1.3px;
			line-height: 16px;
			color: #6B7582;
			display: flex;
			flex-direction: row;
			flex-wrap: nowrap;
			justify-content: flex-start;
			align-items: flex-end;
			height: 18px;
		}
			.boats-sorts .sort-item:hover {
				cursor: pointer;
				text-decoration: underline;
			}
			.boats-sorts .sort-item.active {
				color: #07080F;
				
			}
			.boats-sorts .sort-item.asc {
				
			}
				.boats-sorts .sort-item.asc::after {
					content: "";
					display: inline-block;
					width: 18px;
					height: 18px;
					margin-left: 4px;
					background-image: url(/assets/img/icons/sort.svg);
					background-repeat: no-repeat;
					background-position: center center;
				}
				.boats-sorts .sort-item.desc::after {
					content: "";
					display: inline-block;
					width: 18px;
					height: 18px;
					margin-left: 4px;
					background-image: url(/assets/img/icons/sort.svg);
					background-repeat: no-repeat;
					background-position: center center;
					transform: scale(1, -1);
				}
		.boats-sorts .form-check {
			display: flex;
			min-height: auto;
			margin-bottom: 0;
			padding-left: 0;
		}
			.boats-sorts .form-check input {
				margin: 0;
			}
			.boats-sorts .form-check label {
				color: #000000;
				font-size: 13px;
				text-transform: uppercase;
				font-weight: bold;
				margin-left: 8px;
			}
		
	.boats-list .item {
		position: relative;
		background-color: #ffffff;
		margin: 0px;
		margin-bottom: 50px;
		display: grid;
		grid-template-columns: 500px auto;
		grid-template-rows: auto auto;
		column-gap: 20px;
		grid-template-areas:
			"image head"
			"image info"
			"short_prices short_prices";
	}
		
		.boats-list .item .image {
			position: relative;
			grid-area: image;
		}
			.boats-list .item .image img {
				display: block;
				width: 100%;
			}
			.boats-list .item .image .boat-flags-container {
				position: absolute;
				top: 0px;
				left: 0px;
				right: 0px;
				display: flex;
				flex-flow: row wrap;
				gap: 5px;
			}
			.boats-list .item .image .boat-flag {
				padding: 4px 15px;
				font-size: 13px;
				text-transform: uppercase;
				background-color: #999999;
				color: #ffffff;
				line-height: 1;
				box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
				text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
			}
				.boat-flag-recommended {
					background: linear-gradient(89.99deg, #EB4323 0%, #F49005 100%);
				}
				.boat-flag-our_fleet {
					background: linear-gradient(270.49deg, #6ABC3C 0.42%, #03AE86 99.58%);
				}
				.boat-flag-special {
					background: linear-gradient(270.49deg, #03AE86 0.42%, #014C88 99.58%);
				}
				.boat-flag-new {
					background: linear-gradient(270.49deg, #EA4024 0.42%, #E3286F 99.58%);
				}
		.boats-list .item .boat-head {
			display: flex;
			flex-flow: row nowrap;
			justify-content: flex-start;
			align-items: flex-start;
			grid-area: head;
		}
			.boats-list .item .boat-head .title {
				font-weight: bold;
				font-size: 24px;
				text-transform: uppercase;
				flex-grow: 1;
				line-height: 1;
			}
		.boats-list .item .info {
			display: flex;
			flex-flow: column nowrap;
			align-items: flex-start;
			flex-grow: 1;
			grid-area: info;
		}
			
			.boats-list .item .info .rating {
				width: 48px;
				height: 48px;
				display: flex;
				flex-flow: row nowrap;
				align-items: center;
				justify-content: center;
				border-radius: 50%;
				flex-grow: 0;
			}
				.boats-list .item .info .rating i {
					color: #ffffff;
					font-size: 32px;
					text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
					margin-right: 2px;
				}
					.rating.c10 { background: linear-gradient(90deg, #A20155 0%, #E3286F 100%); }
					.rating.c9 { background: linear-gradient(90deg, #E3286F 0%, #EA4024 100%); }
					.rating.c8 { background: linear-gradient(90deg, #EA4024 0%, #F48E05 100%); }
					.rating.c7 { background: linear-gradient(90deg, #F48E05 0%, #FFCA01 100%); }
					.rating.c6 { background: linear-gradient(90deg, #FFCA01 0%, #FFCA01 100%); }
					.rating.c5 { background: linear-gradient(90deg, #FFCA01 0%, #FBB302 100%); }
					.rating.c4 { background: linear-gradient(90deg, #FBB302 0%, #9AC219 100%); }
					.rating.c3 { background: linear-gradient(90deg, #9AC219 0%, #03AF86 100%); }
					.rating.c2 { background: linear-gradient(90deg, #03AF86 0%, #014C88 100%); }
					.rating.c1 { background: linear-gradient(90deg, #014C88 0%, #01A0DE 100%); }
					.rating.c0 { background: linear-gradient(90deg, #fafafa 0%, #e9e9e9 100%); }
					/*background: linear-gradient(90deg, #A20155 0%, #E3286F 9.07%, #EA4024 18.28%, #F48E05 28.22%, #FFCA01 37.18%, #FBB302 60.92%, #9AC219 70.7%, #03AF86 78.92%, #014C88 90.75%, #01A0DE 100%);*/
				
			.boats-list .item .info .tech {
				display: flex;
				flex-flow: row nowrap;
				justify-content: space-between;
				width: 100%;
				margin-top: 0px;
				margin-bottom: 24px;
			}
				.boats-list .item .info .tech .tech-item {
					
				}
					.boats-list .item .info .tech .tech-item:not(:first-child) {
						
					}
					.boats-list .item .info .tech .t-data {
						line-height: 1;
						font-size: 28px;
						font-weight: 600;
						letter-spacing: 0;
						text-align: center;
					}
						.boats-list .item .info .tech .t-data.t-data-single {
							font-size: 28px;
							letter-spacing: 0;
						}
							.boats-list .item .info .tech .t-data sup {
								position: relative;
								right: -8px;
							}
							.boats-list .item .info .tech .t-data sub {
								position: relative;
								left: -8px;
							}
					.boats-list .item .info .tech .t-info {
						font-size: 8px;
						text-transform: uppercase;
						text-align: center;
					}
			.boats-list .item .info .description {
				color: #6B7582;
			}
			.boats-list .item .info .btn {
				margin-top: auto;
			}
			.boats-list .item .boat-bottom {
				display: flex;
				flex-flow: row nowrap;
				margin-top: auto;
				width: 100%;
				align-items: baseline;
			}
			.boats-list .item .price {
				color: #000000;
				font-size: 20px;
				flex-grow: 1;
				margin-right: 16px;
				line-height: 1;
				max-width: 50%;
			}
				.boats-list .item .price .value {
					font-size: 24px;
					font-weight: bold;
					margin-left: 12px;
			}
			.boats-list .item .btn {
				flex-grow: 1;
				margin-left: auto;
				max-width: 50%;
			}
			
			.boats-list .item .stretched-link {
				opacity: 0;
				line-height: 0;
			}
			
			.boats-list .item .top-features {
				display: flex;
				flex-flow: row nowrap;
				gap: 2px;
				margin-left: auto;
			}
				.boats-list .item .top-features .feature-item {
					border: solid 1px #B7C3D4;
					border-radius: 2px;
					display: flex;
					align-items: center;
					justify-content: center;
					padding: 6px;
					width: 36px;
					height: 36px;
					position: relative;
					z-index: 2;
				}
					.boats-list .item .top-features .feature-item svg {
						max-width: 100%;
						height: auto;
					}
					.boats-list .item .top-features .feature-item:nth-child(1) {
						--color-start: #9D0153;
						--color-stop: #E82A71;
					}
					.boats-list .item .top-features .feature-item:nth-child(2) {
						--color-start: #EB4323;
						--color-stop: #F49005;
					}
					.boats-list .item .top-features .feature-item:nth-child(3) {
						--color-start: #F59005;
						--color-stop: #FFCA01;
					}
					.boats-list .item .top-features .feature-item:nth-child(4) {
						--color-start: #FBB302;
						--color-stop: #6DBD3A;
					}
					.boats-list .item .top-features .feature-item:nth-child(5) {
						--color-start: #6ABC3C;
						--color-stop: #03AE86;
					}
					.boats-list .item .top-features .feature-item:nth-child(6) {
						--color-start: #014E8A;
						--color-stop: #01A0DE;
					}
					.boats-list .item .top-features .feature-item:nth-child(7) {
						--color-start: #8E00BF;
						--color-stop: #0348F8;
					}
		.boats-list .short-prices {
			grid-area: short_prices;
			width: 100%;
			position: relative;
			z-index: 2;
		}
			.boats-list .short-prices .short-price-item {
				background-color: #f4f5f5;
				margin: 2px 0px;
				padding: 8px 16px;
				display: flex;
				flex-flow: row nowrap;
				gap: 24px;
			}
				.boats-list .short-prices .short-price-item .spi-data-main{
					font-size: 14px;
					text-transform: uppercase;
					line-height: 1;
					color: #000000;
				}
				.boats-list .short-prices .short-price-item .spi-data-sub{
					background-color: #BFBFBF;
					color: #ffffff;
					font-size: 12px;
					font-weight: bold;
					padding: 2px;
					line-height: 1;
					white-space: nowrap;
				}
				.boats-list .short-prices .short-price-item .spi-dates {
					min-width: 260px;
				}
				.boats-list .short-prices .short-price-item .spi-price {
					margin-left: auto;
					white-space: nowrap;
				}
				.boats-list .short-prices .short-price-item .spi-buttons {
					
				}
					.boats-list .short-prices .short-price-item .spi-buttons .spi-btn {
						border: solid 1px #000000;
						color: #000000;
						font-size: 14px;
						font-weight: bold;
						text-transform: uppercase;
						text-decoration: none;
						padding: 2px 4px;
						white-space: nowrap;
					}
						.boats-list .short-prices .short-price-item .spi-buttons .spi-btn:hover {
							background-color: #bfbfbf;
						}

.boat-card-small {
	position: relative;
	display: flex;
	flex-flow: column nowrap;
}
	.boat-card-small .image {
		position: relative;
	}
		.boat-card-small .image img {
			display: block;
			max-width: 100%;
			height: auto;
		}
		.boat-card-small .image .boat-flags-container {
			position: absolute;
			top: 0px;
			left: 0px;
			right: 0px;
			display: flex;
			flex-flow: row wrap;
			gap: 5px;
		}
		.boat-card-small .image .boat-flag {
			padding: 4px 15px;
			font-size: 13px;
			text-transform: uppercase;
			background-color: #999999;
			color: #ffffff;
			line-height: 1;
			box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
			text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
		}
		.boat-card-small .image .title {
			position: absolute;
			left: 16px;
			bottom: 16px;
			right: 16px;
			font-size: 24px;
			font-weight: bold;
			text-transform: uppercase;
			color: #ffffff;
			margin: 0px;
			line-height: 1;
			text-shadow: 1px 1px 10px #000000;
		}
	.boat-card-small .info {
		background-color: #F4F5F5;
		padding: 16px;
		flex-grow: 1;
		display: flex;
		flex-flow: column nowrap;
	}
		.boat-card-small .info .tech {
			display: flex;
			flex-flow: row nowrap;
			justify-content: space-between;
			width: 100%;
			color: #000000;
		}
			.boat-card-small .info .tech .tech-item {
				
			}
				.boat-card-small .info .tech .tech-item:not(:first-child) {
					
				}
				.boat-card-small .info .tech .t-data {
					line-height: 1;
					font-size: 28px;
					font-weight: 600;
					letter-spacing: 0;
					text-align: center;
				}
					.boat-card-small .info .tech .t-data.t-data-single {
						font-size: 28px;
						letter-spacing: 0;
					}
						.boat-card-small .info .tech .t-data sup {
							position: relative;
							right: -8px;
						}
						.boat-card-small .info .tech .t-data sub {
							position: relative;
							left: -8px;
						}
				.boat-card-small .info .tech .t-info {
					font-size: 8px;
					text-transform: uppercase;
					text-align: center;
				}
		.boat-card-small .info .description {
			color: #6B7582;
			margin: 16px 0px;
		}
		.boat-card-small .boat-bottom {
			display: flex;
			flex-flow: row nowrap;
			margin-top: auto;
			width: 100%;
			align-items: baseline;
		}
			.boat-card-small .price {
				color: #000000;
				font-size: 20px;
				flex-grow: 1;
				margin-right: 16px;
				line-height: 1;
				max-width: 50%;
			}
				.boat-card-small .price .value {
					font-size: 24px;
					font-weight: bold;
					margin-left: 12px;
				}
			.boat-card-small .top-features {
				display: flex;
				flex-flow: row nowrap;
				gap: 2px;
				margin-left: auto;
			}
				.boat-card-small .top-features .feature-item {
					border: solid 1px #B7C3D4;
					border-radius: 2px;
					display: flex;
					align-items: center;
					justify-content: center;
					padding: 6px;
					width: 36px;
					height: 36px;
					position: relative;
					z-index: 2;
				}
					.boat-card-small .top-features .feature-item svg {
						max-width: 100%;
						height: auto;
					}
					.boat-card-small .top-features .feature-item:nth-child(1) {
						--color-start: #9D0153;
						--color-stop: #E82A71;
					}
					.boat-card-small .top-features .feature-item:nth-child(2) {
						--color-start: #EB4323;
						--color-stop: #F49005;
					}
					.boat-card-small .top-features .feature-item:nth-child(3) {
						--color-start: #F59005;
						--color-stop: #FFCA01;
					}
					.boat-card-small .top-features .feature-item:nth-child(4) {
						--color-start: #FBB302;
						--color-stop: #6DBD3A;
					}
					.boat-card-small .top-features .feature-item:nth-child(5) {
						--color-start: #6ABC3C;
						--color-stop: #03AE86;
					}
					.boat-card-small .top-features .feature-item:nth-child(6) {
						--color-start: #014E8A;
						--color-stop: #01A0DE;
					}
					.boat-card-small .top-features .feature-item:nth-child(7) {
						--color-start: #8E00BF;
						--color-stop: #0348F8;
					}

.boat-gallery {
	display: flex;
	flex-flow: row nowrap;
	height: 548px;
	position: relative;
}
	.boat-gallery .boat-title {
		position: absolute;
		left: 32px;
		bottom: 28px;
		max-width: 762px;
	}
		.boat-gallery .boat-title .title {
			font-size: 87px;
			font-weight: normal;
			color: #ffffff;
			line-height: 1;
			word-break: break-word;
		}
	.boat-gallery .main {
		margin-right: 2px;
	}
		.boat-gallery .main.full {
			margin-right: 0px;
		}
	.boat-gallery .list {
		display: flex;
		flex-flow: row wrap;
		min-width: 549px;
		gap: 2px;
		
	}
		.boat-gallery .list .list-item {
			width: 273px;
			position: relative;
		}
			.boat-gallery .list .list-item > img {
				width: 273px;
			}
		.boat-gallery .list .more {
			position: absolute;	
			left: 0px;
			right: 0px;
			top: 0px;
			bottom: 0px;
			display: flex;
			flex-flow: column;
			align-items: center;
			justify-content: center;
			color: #ffffff;
			font-weight: 700;
			font-size: 20px;
		}
			.boat-gallery .list .more img {
				width: 43px;
				height: 43px;
				filter: drop-shadow(0px 0px 1px #000000);
			}
			.boat-gallery .list .more span {
				text-align: center;
				margin-top: 10px;
				text-shadow: 0px 0px 4px #000000;
			}
	.boat-gallery .lightbox {
		display: none;
	}
	.boat-gallery .lightbox-show {
		cursor: zoom-in;
	}

.boat-navigation {
	background-color: #f4f5f5;
	margin-bottom: 50px;
}
	.boat-navigation ul {
		list-style-type: none;
		margin: 0px;
		padding: 0px;
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
	}
		.boat-navigation ul li {
			flex-grow: 1;
			display: block;
			line-height: 1;
		}
			.boat-navigation ul li a {
				display: flex;
				align-items: center;
				padding: 30px 40px;
				color: #000000;
				font-weight: 700;
				font-size: 13px;
				text-transform: uppercase;
				text-decoration: none;
			}
				.boat-navigation ul li a:hover {
					background-color: #BFBFBF;
				}
				.boat-navigation ul li a img {
					margin-right: 10px;
				}

.boat-parameters {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	margin-bottom: 50px;
}
	.boat-parameters .item {
		display: flex;
		flex-flow: row nowrap;
		
	}
		.boat-parameters .item .value {
			font-weight: 600;
			font-size: 40px;
			color: #000000;
			line-height: 40px;
		}
		.boat-parameters .item .title {
			display: flex;
			flex-flow: column nowrap;
			justify-content: center;
			font-size: 14px;
			text-transform: uppercase;
			line-height: 16px;
			margin-left: 5px;
		}
		
.boat-info {
	display: flex;
	flex-flow: row nowrap;
}
	.boat-info .description {
		flex-grow: 1;
	}
		.boat-info .description h1 {
			font-weight: 600;
			font-style: normal;
			font-size: 45px;
			text-align: left;
			line-height: 1;
			color: #000000;
		}
	.boat-info .top-features {
		min-width: 350px;
		margin-left: 32px;
	}
		.boat-info .top-features .data {
			background-color: #f4f5f5;
			padding: 16px 0px 48px;
		}
			.boat-info .top-features .data  .item {
				padding: 16px 0px 16px 32px;
				display: flex;
				flex-flow: row nowrap;
			}
				.boat-info .top-features .data  .item .icon {
					width: 32px;
					height: 32px;
				}
					.boat-info .top-features .data  .item .icon svg {
						width: 32px;
						height: 32px;
					}
				.boat-info .top-features .data  .item .feature {
					flex-grow: 1;
					margin-left: 10px;
					border-bottom: solid 2px #ffffff;
					display: flex;
					align-items: center;
				}
					.boat-info .top-features .data  .item .title {
						font-weight: bold;
						font-size: 20px;
						text-transform: uppercase;
						flex-grow: 1;
					}
					.boat-info .top-features .data  .item .label {
						font-weight: bold;
						font-size: 13px;
						text-transform: uppercase;
						color: #ffffff;
						background-color: #bfbfbf;
						line-height: 1;
						padding: 2px 4px 0px;
						margin-left: 5px;
						position: relative;
						top: -5px;
						margin-right: 32px;
					}
					.top-features .data .item:nth-child(1) {
						--color-start: #9D0153;
						--color-stop: #E82A71;
					}
					.top-features .data .item:nth-child(2) {
						--color-start: #EB4323;
						--color-stop: #F49005;
					}
					.top-features .data .item:nth-child(3) {
						--color-start: #F59005;
						--color-stop: #FFCA01;
					}
					.top-features .data .item:nth-child(4) {
						--color-start: #FBB302;
						--color-stop: #6DBD3A;
					}
					.top-features .data .item:nth-child(5) {
						--color-start: #6ABC3C;
						--color-stop: #03AE86;
					}
					.top-features .data .item:nth-child(6) {
						--color-start: #014E8A;
						--color-stop: #01A0DE;
					}
					.top-features .data .item:nth-child(7) {
						--color-start: #8E00BF;
						--color-stop: #0348F8;
					}
					

.boat-secondary-features {
	margin: 32px 0px;
	display: flex;
	flex-flow: row wrap;
	gap: 10px;
}
	.boat-secondary-features .item {
		border: solid 1px #f4f5f5;
		padding: 4px 12px;
		font-size: 12px;
		text-transform: uppercase;
		line-height: 1.6;
		transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
		
	}
		.boat-secondary-features .item.info {
			cursor: help;
			position: relative;
			padding-right: 24px;
		}
		.boat-secondary-features a.item {
			border-color: #A2C617;
			color: #A2C617;
			text-decoration: none;
			
		}
			.boat-secondary-features a.item:hover {
				background-color: #A2C617;
				color: #ffffff;
			}
		.boat-secondary-features .item.feature {
			border-color: #EA4686;
			color: #EA4686;
		} 
		.boat-secondary-features .item.toy {
			border-color: #2D9CDB;
			color: #2D9CDB;
		}
			.boat-secondary-features .item .icon {
				position: absolute;
				top: 5px;
				right: 2px;
				font-size: 18px;
				color: #aaaaaa;
			}
			
.boat-prices {
	padding: 64px 32px 32px;
	background: radial-gradient(81.47% 81.47% at 100.73% 99.48%, #164178 0%, #001A3B 100%);
}
	.boat-prices h2 {
		color: #ffffff;
	}
	.boat-prices p {
		color: #ffffff;
	}
	.boat-prices .boat-prices-form {
		width: 100%;
		display: flex;
		flex-flow: row nowrap;
		justify-content: center;
		gap: 32px;
		margin-bottom: 32px;
	}
		.boat-prices .boat-prices-form .form-item {
			display: flex;
			flex-flow: column;
			justify-content: flex-end;
		}
			.boat-prices .boat-prices-form .form-item label {
				display: block;
				color: #ffffff;
				text-transform: uppercase;
				font-size: 13px;
			}
	.boat-prices .item {
		
	}
		.boat-prices .item .tour-info {
			display: flex;
			flex-flow: row wrap;
			background-color: rgba(244, 245, 245, 0.1);
			padding: 24px 16px;
			margin-bottom: 8px;
		}
			.boat-prices .item .tour-info .tour-info-col {
				flex-basis: 15%;
				padding: 0px 16px;
				flex-grow: 1;
			}
				.boat-prices .item .tour-info .tour-info-col:nth-child(1) {
					flex-basis: 23%;
				}
				.boat-prices .item .tour-info .tour-info-col:nth-child(2) {
					flex-basis: 30%;
				}
				.boat-prices .item .tour-info .tour-info-col:nth-child(4) {
					align-self: center;
				}
				.boat-prices .item .tour-info .tour-info-col:nth-child(5) {
					padding: 0px 16px 0px 0px;
					flex-basis: 17%;
				}
				.boat-prices .item .tour-info .tour-info-col .tour-info-title {
					color: #ffffff;
					text-transform: uppercase;
					font-size: 18px;
					line-height: 1.2;
				}
				.boat-prices .item .tour-info .tour-info-col .tour-info-subtitle {
					color: #ffffff;
					font-size: 16px;
					line-height: 1.2;
				}
				.boat-prices .item .tour-info .tour-info-col .tour-show-price {
					color: #44A3F3;
					text-transform: lowercase;
					position: relative;
				}
					.boat-prices .item .tour-info .tour-info-col .tour-show-price::after {
						position: absolute;
						right: -10px;
						top: 2px;
						font-weight: bold;
						font-size: 12px;
						content: ">";
						transform: rotate(90deg);
					}
					.boat-prices .item .tour-info .tour-info-col .tour-show-price:hover {
						text-decoration: none;
					}
				.boat-prices .item .tour-info .tour-info-col .btn {
					padding: 14px 6px 12px;
					color: #ffffff;
					border: solid 1px #ffffff;
					font-size: 12px;
					width: 100%;
				}
					.boat-prices .item .tour-info .tour-info-col .btn:hover {
						background-color: #001A3B;
					}
		.boat-prices .item .price-info {
			margin-bottom: 8px;
			display: none;
		}
			.boat-prices .item .price-info table {
				width: 100%;
				border-collapse: separate;
				border-spacing: 0;
				border-bottom: solid 2px #18304E;
			}
				.boat-prices .item .price-info table th {
					font-size: 13px;
					font-weight: 600;
					text-transform: uppercase;
					color: #777777;
					background-color: #00050C;
					padding: 12px;
					text-align: center;
				}
					.boat-prices .item .price-info table th:first-child {
						text-align: left;
						padding-left: 32px;
					}
				.boat-prices .item .price-info table td {
					padding: 16px 32px;
					text-align: left;
					vertical-align: middle;
					color: #ffffff;
					line-height: 1.2;
					border-left: solid 1px #18304E;
					border-bottom: solid 1px #18304E;
				}
					.boat-prices .item .price-info table tbody tr:first-child td {
						border-top: 0;
					}
					.boat-prices .item .price-info table tr.cabin-item td:first-child {
						border-left: 0;
						vertical-align: top;
						width: 45%;
					}
					.boat-prices .item .price-info table tr.cabin-item:not(:first-child) td {
						border-top: solid 2px #18304E;
					}
					.boat-prices .item .price-info table td small {
						color: #91A7BD;
						font-size: 12px;
						font-weight: 300;
						line-height: 1.2;
					}
					.boat-prices .item .price-info table td .cabin-title a {
						font-size: 13px;
						font-weight: bold;
						text-transform: uppercase;
						color: #ffffff;
					}
						.boat-prices .item .price-info table td .cabin-title a:hover {
							text-decoration: none;
						}
					.boat-prices .item .price-info table td .cabin-bed-type {
						font-size: 14px;
						margin: 20px 0px;
					}
					.boat-prices .item .price-info table td .cabin-description {
						color: #91A7BD;
						font-size: 12px;
						font-weight: 300;
						line-height: 1.2;
					}
					.boat-prices .item .price-info table td .cabin-features {
						display: flex;
						flex-flow: row wrap;
						margin-top: 10px;
					}
						.boat-prices .item .price-info table td .cabin-features span {
							color: #ffffff;
							border: solid 1px #ffffff;
							font-size: 10px;
							text-transform: uppercase;
							font-weight: normal;
							margin-right: 8px;
							margin-bottom: 8px;
							padding: 4px 5px;
						}
					.boat-prices .item .price-info table td input.form-control {
						background-color: #18304E;
						color: #ffffff;
						border: 0;
						outline: 0;
						padding: 8px 4px;
						text-align: center;
					}
					.boat-prices .item .price-info table td.qty {
						max-width: 125px;
					}
					.boat-prices .item .price-info table td.total {
						vertical-align: top;
					}
						.boat-prices .item .price-info table td.total .btn {
							width: 100%;
							padding: 14px 8px 12px;
							text-align:center;
						}
		
.card-boat-main {
	margin-top: 24px;
	display: flex;
	flex-flow: row nowrap;
	gap: 20px;
	justify-content: center;
}
	.card-boat-main .item {
		font-size: 12px;
		color: #6B7582;
		display: flex;
		align-items: center;
	}
		.card-boat-main .item .data {
			margin-left: 5px;
		}
		.card-boat-main .item .icon {
			display: inline-block;
		}

.boat-request {
	text-align: center;
	margin: 32px 0px;
}




.boat-cabin-detail {
	
}
	.boat-cabin-detail h3 {
		font-size: 18px;
		color: #001A3B;
		padding-bottom: 8px;
		margin-bottom: 8px;
		border-bottom: solid 1px #e0e0e0;
	}
	.boat-cabin-detail .main {
		display: flex;
		flex-flow: row nowrap;
		gap: 20px;
		justify-content: space-between;
	}
		.boat-cabin-detail .main .item {
			font-size: 12px;
			color: #6B7582;
		}
			.boat-cabin-detail .main .item .icon {
				display: inline-block;
			}
			
	.boat-cabin-detail .top-features {
		margin: 16px 0px;
		display: flex;
		flex-flow: row wrap;
		gap: 8px;
	}
		.boat-cabin-detail .top-features .item {
			border: solid 1px #000000;
			color: #000000;
			padding: 2px 6px;
			font-size: 10px;
			text-transform: uppercase;
			line-height: 1.6;
			transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
		}
	.boat-cabin-detail .text {
		color: #6B7582;
		margin: 32px 0px;
	}
	.boat-cabin-detail .details dt {
		float: left;
		margin-right: 8px;
		color: #6B7582;
	}
	.boat-cabin-detail .details dd {
		color: #6B7582;
		margin-bottom: 0px;
	}
	.boat-cabin-detail .facilities-title {
		color: #000000;
		font-weight: bold;
		font-size: 18px;
	}
	.boat-cabin-detail ul.facilities {
		list-style-image: url(/assets/img/icon.list.svg);
		padding-left: 18px;
		display: flex;
		flex-flow: row wrap;
	}
		.boat-cabin-detail ul.facilities  li {
			flex-basis: 50%;
			flex-grow: 1;
		}
	.boat-cabin-detail .gallery .current {
		margin-bottom: 2px;
	}
	.boat-cabin-detail .gallery .list {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 2px;
	}
		.boat-cabin-detail .gallery .list > div {
			display: block;
		}
			.boat-cabin-detail .gallery .list img {
				display: block;
				cursor: pointer;
			}
			

@media (max-width: 1199px) {
	.boats-list .item {
		grid-template-columns: 400px auto;
		grid-template-rows: auto auto;
	}
		.boats-list .item .boat-head .title {
			font-size: 20px;
		}
		.boats-list .item .info .tech {
			margin-top: 12px;
			margin-bottom: 12px;
		}
			.boats-list .item .info .tech .t-data {
				font-size: 22px;
			}
}
@media (max-width: 767px) {
	.boats-list .item {
		grid-template-columns: auto;
		grid-template-rows: auto auto auto;
		column-gap: 20px;
		grid-template-areas:
			"head"
			"image"
			"info";
	}
		.boats-list .item .info .tech {
			margin-top: 6px;
			margin-bottom: 6px;
		}
			.boats-list .item .info .tech .t-data, .boats-list .item .info .tech .t-data.t-data-single {
				font-size: 14px;
			}
			.boats-list .item .info .tech .t-info {
				font-size: 6px;
				line-height: 1;
			}
		.boats-list .item .info .description {
			font-size: 14px;
			line-height: 1.2;
		}
		.boats-list .item .info .btn {
			padding: 7px 27px 6px;
		}
		.boats-list .item .price {
			font-size: 16px;
			margin-right: 0px;
			padding-right: 16px;
		}
			.boats-list .item .price .value {
				font-size: 20px;
			}
}
