

/* Start:/bitrix/templates/pks/components/bitrix/catalog/package.new/style.css?1759903308853*/
.grid {}

.grid .bx_content_section { margin-bottom: 15px; }

.grid .bx_sidebar { margin-bottom: 15px; }

/* grid2x1 */
.grid2x1 {}

.grid2x1 .bx_content_section {
	float: left;
	width: 66%;
	margin-bottom: 15px;
}

.grid2x1 .bx_sidebar {
	float: right;
	width: 33%;
	margin-bottom: 15px;
	padding-left: 5%;
	box-sizing: border-box;
}

@media (max-width: 960px) {
	.grid2x1 .bx_sidebar { padding-left: 4%; }
}

@media (max-width: 640px) {
	.grid2x1 .bx_content_section,
	.grid2x1 .bx_sidebar {
		width: 100%;
		float: none;
	}

	.grid2x1 .bx_sidebar { padding-left: 3%; }
}

@media (max-width: 479px) {
	.grid2x1 .bx_sidebar { padding-left: 1%; }
}

.catalog-block-header {
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	margin: 5px 0;
	padding: 5px 0;
	border-bottom: 2px solid #d9dee6;
	border-bottom-color: var(--primary);
	color: #000;
}

/* End */


/* Start:/bitrix/templates/pks/components/bitrix/catalog.section/package.new/style.css?17599039141*/


/* End */


/* Start:/bitrix/templates/pks/components/bitrix/catalog.item/package.new/style.css?17627172509418*/
.package-item{
    min-height: 300px;
    aspect-ratio: 1464 / 560;
    background-color: var(--light-grey);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    object-fit: cover;
    margin-bottom: 30px;
}

.package-item::hover{
    
}

.catalog-section-item-buy-btn span{
    display: none;
}

.package-item_img img{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    object-fit: cover;
    height: 100%;
    width: 100%;
    scale: 1;
    transition: all 0.5s ease-out;
    z-index: 100;
}

.package-item_img:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 51%;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 100%);
    transition: opacity .2s ease-in-out;
    z-index: 130;
}

.package-item:hover .package-item_img img{
    scale: 1.1;
}

.package-item_url a{
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 150;
}

.package-item_name{
    /*position: absolute;*/
    display: block;
    left: 0;
    bottom: 40px;
    z-index: 150;
    background-color: var(--blue-color);
    padding: 30px 60px 30px 60px;
    font-size: 1.6rem;
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 900;
    border-bottom-right-radius: calc(30px + 1.6rem / 2);
    border-top-right-radius: calc(30px + 1.6rem / 2);
}

.package-item_name span{
    color: var(--red-color);
}

.package-item_descr{
    display: flex;
    position: absolute;
    left: 0;
    bottom: 40px;
    z-index: 250;
    justify-content: center;
    align-items: center;
}

.package-item_price{
    background-color: var(--white-color);
    padding: 30px;
    padding-right: 40px;
    border-bottom-right-radius: calc(30px + 1.6rem / 2);
    border-top-right-radius: calc(30px + 1.6rem / 2);
    position: relative;
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--red-color);
}

.package-item_price::before{
    position: absolute;
    background-color: var(--white-color);
    content: "";
    width: 40px;
    left: -40px;
    top: 0;
    bottom: 0; 
}

.package-item_cart .btn{
    background-color: var(--red-color);
    font-size: 1.6rem;
    color: var(--white-color);
    aspect-ratio: 1 / 1;
    z-index: 300;
    position: absolute;
    top: 0;
}

.package-item_cart .btn:hover{
    background-color: var(--blue-color);
}


/*region DETAIL POPUP*/
.catalog-section-item-detail-wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 198;
	transition: 180ms linear background;
	background: rgba(0, 0, 0, 0);
}

.catalog-section-item-detail-wrapper.opened {
	top: 0;
	display: flex;
}

.catalog-section-item-detail-cover {
	z-index: 190;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	pointer-events: none;
	background: rgba(0, 0, 0, 0);
	transition: 180ms linear background;
}

.catalog-section-item-detail-wrapper.opened .catalog-section-item-detail-cover {
	background: rgba(0, 0, 0, 0.8);
	pointer-events: auto;
}

.catalog-section-item-detail-container {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	max-width: 615px;
	max-height: 90vh;
	z-index: 200;
	transition: 200ms linear all;
	display: flex;
	align-items: stretch;
	width: 100%;
	flex-direction: column;
}

.catalog-section-item-detail-wrapper.closed .catalog-section-item-detail-container {
	max-height: 0;
	bottom: -20px;
}

@media (min-width: 615px) {
	.catalog-section-item-detail-swipe-btn-container {
		display: none !important;
	}

	.catalog-section-item-detail-container {
		max-width: 400px;
		transition: 200ms linear height, 200ms linear opacity;
		max-height: 80vh;
		opacity: 0;
	}

	.catalog-section-item-detail-wrapper.opened .catalog-section-item-detail-container {
		position: relative;
		transform: none;
		left: 0;
		margin: 0 auto;
		align-self: center;
		opacity: 1;
	}

	.catalog-section-item-detail-offers {
		border-radius: 0 0 12px 12px;
	}
}

/*region DETAIL POPUP HEADER*/
.catalog-section-item-detail-header {
	padding: 7px 14px;
}

.catalog-section-item-detail-header-separate {
	flex: 1;
	padding-bottom: 6px;
}

/**/
.catalog-section-item-detail-swipe-btn-container {
	flex: 2;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	align-self: flex-end;
	cursor: pointer;
	padding-top: 15px;
}

.catalog-section-item-detail-swipe-btn {
	width: 52px;
	height: 5px;
	background: #fff;
	opacity: .5;
	border-radius: 2.5px;
}

/**/
.catalog-section-item-detail-close-btn-container {
	flex: 1;
	padding-bottom: 5px;
}

.catalog-section-item-detail-close-btn {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	opacity: .5;
	transition: 180ms linear all;
}

.catalog-section-item-detail-close-btn:hover {
	opacity: 1;
	text-decoration: none;
	border-bottom: none;
	cursor: pointer;
}

.catalog-section-item-detail-close-btn-text,
.catalog-section-item-detail-close-btn-text:hover {
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 21px;
	color: #fff;
}

/*endregion*/

.catalog-section-item-detail-title {
	font-weight: bold;
	font-size: 20px;
	line-height: 23px;
	color: var(--blue-color);
    background-color: #fff;
    text-align: center;
    padding-top: 15px;
}

.catalog-section-item-detail-offers, .catalog-section-item-detail{
    background-color: #fff;
}

.catalog-section-item-detail-offers{
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

.catalog-section-item-detail-offers .btn{
    width: 100%;
}

.catalog-section-item-price{
    color: var(--red-color);
	font-weight: bold;
	font-size: 20px;
    text-align: center;
}


/* RESPONSIVE */

@media (min-width: 1200px) and (max-width: 1599.98px) {
}


@media (min-width: 992px) and (max-width: 1199.98px) {
}

@media (min-width: 768px) and (max-width: 991.98px) {
}


@media (min-width: 576px) and (max-width: 767.98px) {
}

@media (max-width: 575.98px) {
    
    .package-item {
        min-height: inherit;
        aspect-ratio: inherit;
        background-color: transparent;
        border-radius: 0;
        position: relative;
        overflow: hidden;
        object-fit: cover;
        margin-bottom: 0px;
    }
    
    .package-item_img{
        min-height: 260px;
        position: relative;
        object-fit: cover;
        overflow: hidden;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }
    
    .package-item_img img {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        overflow: hidden;
        object-fit: cover;
        height: 100%;
        width: 100%;
        scale: 1;
        transition: all 0.5s ease-out;
        z-index: 100;
    }
    
    .package-item_img:after {
        display: none;
    }

    .package-item_descr{
        display: block;
        position: static;
        left: 0;
        bottom: 40px;
        z-index: 250;
        justify-content: center;
        align-items: center;
    }
    
    .package-item_name {
        display: block;
        left: 0;
        bottom: 40px;
        z-index: 150;
        background-color: var(--blue-color);
        padding: 10px 15px 10px 15px;
        font-size: 1.4rem;
        color: var(--white-color);
        text-transform: uppercase;
        font-weight: 900;
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
        text-align: center;
    }

    .package-item_price {
        background-color: var(--white-color);
        padding: 10px 15px 10px 15px;
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
        position: relative;
        font-size: 1.4rem;
        text-transform: uppercase;
        font-weight: 900;
        color: var(--blue-color);
        background-color: var(--light-grey);
    }
    
    .package-item_price .catalog-section-item-price {
        color: var(--blue-color);
        font-weight: bold;
        font-size: 20px;
        text-align: center;
    }
    
    .package-item_cart .btn {
        background-color: var(--red-color);
        font-size: 1.2rem;
        color: var(--white-color);
        aspect-ratio: inherit;
        z-index: 300;
        position: static;
        top: 0;
        display: block;
        border-radius: 0;
        margin: 0;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }
    
    .package-item_cart .btn i{
        display: none;
    }
    
    .package-item_cart .btn span{
        display: inline;
    }
    
    .package-list-slider_header h4::after {
        position: absolute;
        left: -50vw;
        right: 0;
        top: 0;
        bottom: 0;
        content: "";
        background: var(--blue-color);
        width: auto;
        z-index: -1;
        border-top-right-radius: 60px;
        border-bottom-right-radius: 60px;
        display: none;
    }
    
    .package-list-slider_header h4 span {
        color: var(--blue-color);
    }

    .package-list-slider_header h4 {
        display: block;
        position: relative;
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }
    
    .package-list-slider_header {
        padding-bottom: 0px;
        position: relative;
    }
    
}


/* End */
/* /bitrix/templates/pks/components/bitrix/catalog/package.new/style.css?1759903308853 */
/* /bitrix/templates/pks/components/bitrix/catalog.section/package.new/style.css?17599039141 */
/* /bitrix/templates/pks/components/bitrix/catalog.item/package.new/style.css?17627172509418 */
