@charset "utf-8";

body {
	font-family: Verdana, sans-serif;
	font-size: 0.9em;
	position: relative;
	color: #6a6a6a;
	overflow-y: scroll;
}

.note {
	font-size: 11px;
}

a:link {
	color: #035ba9;
}

a:visited {
	color: #035ba9;
}

.spacer {
	height: 20px;
	padding: 0;
	margin: 0;
}

.page_header {
	margin-bottom: 30px;
	position: relative;
}

.page {
	width: 920px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

.phone {
	position: absolute;
	top: 17%;
	right: 0px;
}

.phone_img {
	border: 1px solid #95a5b2;
	border-radius: 10px;
}

.page_body {
	border: 1px solid #95a5b2;
	position: relative;
	border-radius: 10px;
	background-color: #0342aa;
	min-height: 345px;
	background-image: url(/i/ct_bg.jpg);
	background-repeat: repeat-x;
}

.banner_img {
	width: 918px;
	border: 1px solid #95a5b2;
	border-radius: 10px;
	margin-top: 30px;
}

.news_block {
	margin-top: 30px;
	border: 1px solid #95a5b2;
	border-radius: 10px;
	padding: 0 20px 20px 20px;
}

.news_block h3 {
	color: #32b34a;
}

.news_block ul {
	list-style-type: none;
	padding-left: 10px;
}

.news_block ul li {
	padding: 2px 0px 10px 0;
	margin: 0;
}

.table_header {
	color: #000;
	padding: 5px 0px 5px 10px;
	font-size: 1.5em;
}

.tname {
	color: #000;
	font-size: 17px;
	color: black;
	padding: 10px 12px 10px 15px;
}

.tname a {
	font-weight: normal;
}

.paragraph_heading {
	font-size: 17px;
	color: black;
	padding: 10px 12px 10px 15px;
}

.tprice {
	font-weight: bold;
}

.tariff_text {
	color: #6a6a6a;
	font-weight: normal;
	font-size: 11px;
}

.brd_green {
	height: 50px;
	border-right: 1px solid #32b34a;
}

.brd_gray {
	height: 50px;
	border-right: 1px solid #95a5b2;
}

.page_content {
	background-color: #FFF;
	margin: 30px;
	border-radius: 10px;
	padding: 30px;
}

table.fixed td {
	overflow: hidden;
	padding-left: 10px;
}


.modal {
	display: grid;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	/* Полупрозрачный чёрный фон */
}

/* Стили для содержимого модального окна */
.modal-windows {
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	width: fit-content;
	margin: auto;
	position: relative;
	animation: fadeIn 0.3s ease-out;
}

.modal-content {
	max-width: 70vw;
	max-height: 80vh;
	overflow-y: auto;
}

/* Кнопка закрытия */
.closeBtn {
	color: #fff;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	right: -25px;
	top: -25px;
	cursor: pointer;
}

.closeBtn:hover,
.closeBtn:focus {
	color: #000;
}