

/* Start:/local/templates/main/components/bitrix/catalog/cruise/bitrix/news.detail/.default/style.css?17724520917146*/
@media screen and (max-width: 991px) {

	#cabinCruises .category-info .modal-cabin-button .btn,
	#cabinCruises .category-info .receive-consultation-wrapper .btn {
		width: 100% !important;
	}

	#cabinCruises .js-cabins-tabs li.pb-sm-0 {
		margin-bottom: 20px;
	}

	#cabinCruises .mobile-w-100 {
		width: 100%;
	}
}

@media screen and (max-width: 460px) {
	#cabinCruises .category-info {
		grid-template-columns: auto;
		margin-top: 10px;
	}

	#cabinCruises .category-info .modal-cabin-button .btn,
	#cabinCruises .category-header .btn,
	#cabinCruises .category-info .receive-consultation-wrapper .btn {
		padding-left: 15px;
		padding-right: 15px;
	}

	#cabinCruises .category-info .tooltip-for-button br {
		display: none;
	}

	#cabinCruises .js-cabins-tabs {
		margin-right: 0 !important;
	}

	#cabinCruises .js-cabins-tabs .js-cabins-list.btn-choose_tab.mr-3 {
		margin-right: 0 !important;
	}

	#cabinCruises .js-cabins-tabs li.pb-sm-0 {
		margin-bottom: 10px;
	}

	#cabinCruises .js-cabins-tabs li .btn-choose_tab {
		padding: 8px 10px 7px;
	}
}

@media screen and (max-width: 399px) {
	#cabinCruises .category-header .btn {
		padding-left: 10px;
		padding-right: 10px;
		font-size: 12px;
	}

	#cabinCruises .btn-choose_tab.popup-search {
		margin-top: 17px;
	}

	#cabinCruises .search-cabins .search-cabins-form div {
		display: flex;
		justify-content: space-between;
	}

	#cabinCruises .search-cabins .search-cabins-form div input {
		height: 25px;
		width: 43px;
	}

	#cabinCruises .search-cabins .search-cabins-form div .children-place-age,
	#cabinCruises .search-cabins .search-cabins-form div .children-without-place-age {
		display: none;
	}
}


/**
 * ItcSlider
 * @version 1.0.1
 * @author https://github.com/itchief
 * @copyright Alexander Maltsev 2020 - 2023
 * @license MIT (https://github.com/itchief/ui-components/blob/master/LICENSE)
 * @tutorial https://itchief.ru/javascript/slider
 */

.itc-slider {
	position: relative;
}

.itc-slider-wrapper {
	overflow: hidden;

}

.itc-slider-items {
	display: flex;
	transition: transform 0.5s ease;
	will-change: transform;
}

.itc-slider-transition-none {
	transition: none;
}

.itc-slider-item {
	flex: 0 0 100%;
	max-width: 100%;
	user-select: none;
	will-change: transform;
}

/* кнопки влево и вправо */
.itc-slider-btn {
	position: absolute;
	top: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 50px;
	color: #fff;
	text-align: center;
	background: rgb(0 0 0 / 20%);
	border: none;
	transform: translateY(-50%);
	cursor: pointer;
}

.itc-slider-btn-hide {
	display: none;
}

.itc-slider-btn-prev {
	left: 0;
}

.itc-slider-btn-next {
	right: 0;
}

.itc-slider-btn:hover,
.itc-slider-btn:focus {
	color: #fff;
	text-decoration: none;
	background: rgb(0 0 0 / 30%);
	outline: 0;
}

.itc-slider-btn::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: transparent no-repeat center center;
	background-size: 100% 100%;
}

.itc-slider-btn-prev::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.itc-slider-btn-next::before {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

/* индикаторы */
.itc-slider-indicators {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 15;
	display: flex;
	justify-content: center;
	margin: 0 15%;
	padding-left: 0;
	list-style: none;
}

.itc-slider-indicator {
	flex: 0 1 auto;
	box-sizing: content-box;
	width: 30px;
	height: 5px;
	margin-right: 3px;
	margin-left: 3px;
	text-indent: -999px;
	background-color: rgb(255 255 255 / 50%);
	background-clip: padding-box;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	cursor: pointer;
}

.itc-slider-indicator-active {
	background-color: rgb(255 255 255 / 90%);
}

.itc-slider {

	margin: 0 auto;
}

.itc-slider-items {
	counter-reset: slide;
	--gap: 0.8455rem;
	gap: var(--gap);
}

.itc-slider-item {
	flex: 0 0 auto;
	width: 100%;
	counter-increment: slide;
	height: 250px;
	position: relative;
}

@media (min-width: 768px) {
	.itc-slider-item {
		width: calc(50% - var(--gap) / 2);
	}
}

@media (min-width: 992px) {
	.itc-slider-item {
		width: calc(33.3333333333% - var(--gap) * 2 / 3);
	}
}

@media (min-width: 992px) {
	.newitc {
		width: calc(50.3333333333% - var(--gap) * 2 / 3);
	}
}



/*#shipsScheme{
    height: 1300px !important;
}*/

.ship_image_on_cruise_page img {
	height: 250px !important;
}

.itc-slider-item {
	height: 350px;
	background-size: cover;
}

@media screen and (max-width: 1650px) {

	.cruise-main-section .ship_image_on_cruise_page div,
	.itc-slider-item {
		height: 240px;
	}
}


.zoom_btn_container {
	display: none;
}

.zoom_btn_minus,
.zoom_btn_plus {
	width: 40%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 24px;
	color: #00B9E7;
	cursor: pointer;

}

.zoom_btn_value {
	opacity: 0;
	width: 1px;
}

#shipsScheme {
	position: relative;
}

@media (max-width: 768px) {
	svg.mw-100 {
		max-width: 300% !important;
		margin: 0 auto;
	}

	.ship-scheme.js-use-new-scheme-algo.js-ship-scheme {
		overflow: scroll;
	}

	.zoom_btn_container {
		display: flex;
		flex-flow: row;
		justify-content: space-between;
		position: absolute;
		z-index: 100;
		top: 86px;
		left: 33px;
		border-radius: 15px;
		border: 2px solid #00B9E7;
		width: 80px;
		height: 30px;
		background: #fff;
		box-shadow: 0 0 2px 0 #0000007a;
	}
}

@media (max-width: 500px) {
	.zoom_btn_container {
		top: 0;
		left: auto;
		right: 0;
	}
}

#schedulePointsNav {
	display: none !important;
}

.js-schedule-points .col-lg-4 {
	display: none !important;
}

.js-schedule-points {
	margin-bottom: 30px;
}


#cabinCruises {
	margin-top: 30px;
}

.col-lg-10>p>strong11::before {
	font-family: "icon" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\E91C";

	font-size: 10px;
	margin-right: 5px;
	left: 0;
	color: #F47A44;
}

.price_incl>p::before {
	font-family: "icon" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\E91C";

	font-size: 10px;
	margin-right: 5px;
	left: 0;
	color: #F47A44;
}

p span strong::before {
    font-family: "icon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\E91C";

    font-size: 10px;
    margin-right: 5px;
    left: 0;
    color: #F47A44;
}

strong img{
    display: none;
}
/* End */
/* /local/templates/main/components/bitrix/catalog/cruise/bitrix/news.detail/.default/style.css?17724520917146 */
