

/* Start:/bitrix/templates/aspro_max/components/bitrix/news.detail/tariff_detail/style.css?17497382167162*/
.rassrochka-detail {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: 30px;
}
.rassrochka-detail__img {
	/*height: 300px;*/
}
.rassrochka-detail__img img{
	height: auto;
	width: auto;
	margin: 0;
}
.rassrochka-detail__content {
}
.rassrochka-detail__content .description{
	text-align: justify;
}

@media (max-width: 1470px) {
	.rassrochka-detail__content .description{
		padding-right: 35px;
	}
}
@media (max-width: 992px) {
	.rassrochka-detail__img {
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		box-sizing: border-box;
	}
}
@media (max-width: 600px) {
	.rassrochka-detail__content .description {
		padding-right: 0;
	}
}
@media (max-width: 470px) {
	.rassrochka-detail {
		flex-direction: column;
		align-items: center;
	}
	.rassrochka-detail__img {
		/*height: 200px;*/
	}
	.rassrochka-detail {
		margin-bottom: 0;
	}
}







.podstrahova-tariff-box {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 30px;
}
.podstrahova-tariff-item {
	flex: 0 0 calc(25% - 15px);
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	box-sizing: border-box;
	min-height: 100%;
	align-items: stretch;
	overflow: hidden;
	text-transform: uppercase;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.podstrahova-tariff-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.podstrahova-tariff-item__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	padding: 30px 10px;
	height: 115px;
	color: white;
	background: var(--tariff-color);
}
.podstrahova-tariff-item__title span {
	font-size: 16px;
	text-align: center;
}
.tariff-price {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;

}
.tariff-price span:first-child {
	font-size: 36px;
}
.tariff-price span:last-child {
	padding-top: 4px;
	font-size: 20px;
	font-weight: 400;
}
.podstrahova-tariff-item__body {
	flex-grow: 1;
	padding: 20px;
	display: flex;
	gap: 15px;
	flex-direction: column;
}
.podstrahova-tariff-item__body-serv {
	display: flex;
	gap: 15px;
	justify-content: flex-start;
	align-items: center;
}
.podstrahova-tariff-item__body-serv img {
	width: 45px;
	height: 45px;
	margin: 0;
}
.podstrahova-tariff-item__body-serv span {
	font-size: 11px;
	font-weight: 600;
	line-height: normal;
}
.podstrahova-tariff-item__body-infinite {
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	gap: 8px;
	padding: 10px 10px 15px;
}
.infinite-col1 {
	display: flex;
	align-items: center;
	flex-direction: column;
}
.infinite-col1 svg {
	width: 60px;
	height: auto;
}
.infinite-col1 span {
	font-size: 9px;
	line-height: normal;
}
.infinite-col2 {
	font-size: 20px;
}
.podstrahova-tariff-item__btns {
	display: flex;
	gap: 5px;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding: 0 10px 15px 10px;
}
.podstrahova-tariff-item__btns a, .podstrahova-tariff-item__btns button {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 10px 0;
	border-radius: 8px;
	text-decoration: none;
	white-space: nowrap;
	box-sizing: border-box;
	font-size: 12px;
	font-weight: 600;
}
.podstrahova-tariff-item__btns .podstrahova-tariff-item__btns-border {
	border: 3px solid var(--tariff-color);
	color: var(--tariff-color);
	background: none;
}
.podstrahova-tariff-item__btns .podstrahova-tariff-item__btns-fill {
	background: var(--tariff-color);
	color: #fff;
}
.podstrahova-tariff-item__btns .btns-box-dev {
	flex: 1 1 100%;
	padding: 8px 16px;
	background: #979598;
	border-radius: 8px;
	color: white;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
}
.tariff-modal {
	display: none;
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 10000;
	justify-content: center;
	align-items: center;
}
.tariff-modal__dialog {
	background: #fff;
	border-radius: 10px;
	width: 90%;
	max-width: 600px;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	animation: modalFadeIn 0.3s ease;
}
.tariff-modal__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid #eee;
	background-color: #f6f6f6;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.tariff-modal__title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}
.tariff-modal__close {
	font-size: 24px;
	font-weight: bold;
	color: #999;
	cursor: pointer;
	transition: color 0.2s ease;
}
.tariff-modal__close:hover {
	color: #333;
}
.tariff-modal__body {
	padding: 20px;
	font-size: 15px;
	color: #444;
	line-height: 1.6;
}
@keyframes modalFadeIn {
	from { opacity: 0; transform: scale(0.96); }
	to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1350px) {
	.podstrahova-tariff-item__btns a {
		font-size: 10px;
	}
}
@media (max-width: 1200px) {
	.podstrahova-tariff-item {
		flex: 0 0 calc(50% - 10px);
	}
	.podstrahova-tariff-item__btns a {
		font-size: 12px;
	}
}
@media (max-width: 500px) {
	.podstrahova-tariff-item__title {
		height: auto;
	}
	.podstrahova-tariff-item {
		flex: 0 0 100%;
	}
}


  .offer-container {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .offer-box {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 15px 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .offer-box:hover {
        border-color: var(--tariff-color);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .offer-icon {
        width: 90px;
        height: 90px;
        color: var(--tariff-color);
        flex-shrink: 0;
    }
    
    .offer-title {
        font-weight: 600;
        font-size: 16px;
        color: #333;
    }
     .size-file {
        font-weight: 400;
        font-size: 14px;
        color: #7d7d7d;
    }
    
    
     /* Стили для модального окна */
    .modal { 
        display: none;
        position: fixed;
        z-index: 1000; 
        left: 0; 
        top: 0; 
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.7); 
        
    }
    .modal-content {
        background-color: #fefefe; 
        margin: 5% auto; 
        padding: 20px; 
        border-radius: 8px; 
        width: 80%; 
        max-width: 900px; 
        position: relative;
        }
    .modal-close { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; }
    .modal-close:hover { color: #333; }
    
       /* Стили для кнопки скачивания */
    .modal-actions { margin-bottom: 15px; text-align: right; }
    .download-btn {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 8px 12px;
        background-color: var(--tariff-color);
        color: white;
        border-radius: 4px;
        text-decoration: none;
        font-size: 14px;
        transition: background-color 0.3s;
    }
    .download-btn:hover {
        background-color: #0056b3;
    }
/* End */
/* /bitrix/templates/aspro_max/components/bitrix/news.detail/tariff_detail/style.css?17497382167162 */
