/* убираем противную рамку вокруг ссылок */
img, a img{outline:none !important;}
a:focus{outline:none !important;}
/* скрываем каптчу гугла */
.grecaptcha-badge {visibility: hidden;}

html, body {
/* Убирает прокрутку по горизонтале, для мобильной версии */
	overflow-x: hidden;
}

:root {
	--color-primary: #4d92fa;
	--color-black: #4f5f6f;
}

body {
	color: var(--color-black) !important;
	font-size: 1rem;
	margin-top: 40px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-weight: 700;
}

p b {
	color: var(--color-black) !important;
	font-weight: 700;
}
p strong {
	color: var(--color-black) !important;
	font-weight: 700;
}
.bg-banner {
  min-height:327px;
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center;
  background-image:url("/assets/img/bg-banner.webp")
}

table tr.unpeblished {
	display: none !important;
}
/*

a:link, a:visited, a:active {
	color: #000000;
	text-decoration: underline;
}

a:hover {
	color: #000000;
	text-decoration: none;
	transition-duration: .3s;
}

*/

/* таблица с ценами на главной */
.my-price-table {
	
}

/* ссылки в футере */
a.my-footer-link:link, a.my-footer-link:visited, a.my-footer-link:active {
	color: #ffffff;
	text-decoration: none;
}
a.my-footer-link:hover {
	color: #ffffff;
	text-decoration: underline;
	transition-duration: .15s;
}

small, .small {
	line-height: 1;
}
/* кнопка наверх */
.tostart {
	width: 3rem;
	height: 3rem;
	background-color: var(--color-primary);
	border-radius: 50%;
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	z-index: 1002;
	display: none;
	opacity: 1;
}
.tostart:hover {
	cursor: pointer;
	opacity: .75;
	transition-duration: .15s;
}
.img-to-top {
	width:2rem;
	margin:0 auto;
	display:block;
	position:absolute;
	left: 8px;
	top: -3px;
}

/* аккордеон */
/* удираем нижний марджинг последнего абзаца */
.accordion-body p:last-child {
	margin-bottom: 0;
}

/* стили кнопок в слайдере */
.my-prev, .my-next {
	position: absolute;
	top: calc(50% - 1.25rem);
	color: var(--color-warning);
	background-color: #fff;
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 50%;
	text-align: center;
	line-height: 2.5;
	z-index: 1000;
	cursor: pointer;
	box-shadow: 0px 8px 16px rgba(78, 80, 85, 0.12);
}
.my-next {
	right: 0px;
}
.my-next >svg {
	height: 1.5rem;
	padding-left: 3px;
}
.my-prev > svg {
	height: 1.5rem;
	padding-right: 3px;
}

/* стили верхнего меню*/
.top-menu { /* общее оформление меню */
	font-size: 1rem;
	z-index: 1000;
	position: relative;
}

.top-menu a:link, .top-menu a:visited, .top-menu a:active {
	color: var(--color-balck);
	text-decoration: none;
}

.top-menu a:hover {
	color: var(--color-black);
	text-decoration: underline;
}

.top-menu ul{
	display: none;
	background-color: white;
	position: absolute;
	top: 100%;
	opacity: 0;
}
.top-menu li:hover ul {
	display: block;
	opacity: 1;
	-webkit-animation: display-none-transition 0.15s both;
	animation: display-none-transition 0.15s both;
}
@-webkit-keyframes display-none-transition {
	0% {
		opacity: 0;
	}
}
@keyframes display-none-transition {
	0% {
		opacity: 0;
	}
}
.top-menu, .top-menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.top-menu li {
	float: left;
	position: relative;
	height: 100%;
	padding: 0 .5rem;
}
.top-menu li a {
	display: block;
	padding: 0px;
	color: #fff;
	text-decoration: none;
	text-align: left;
}
.top-menu ul {
	border: 1px solid var(--color-black);
}
.top-menu ul li {
	float: none;
	white-space: nowrap;
}
.top-menu li:hover {
	background-color: white;
}
.top-menu ul li:hover {
	background-color: white;
}

/* стили mmenu */
.mm-spn--light {
	/* background: #fff; */
}
.mm-spn {
	color: var(--color-primary);
}
.mm-spn a {
	color: var(--color-primary);
}
.mm-spn a:active, .mm-spn a:focus {
	/* color: var(--color-danger);*/
}


/* Устройства X-Small (портретные телефоны, менее 576 пикселей) */
@media (max-width: 575.98px) {

	.bg-banner {
		min-height:100px;
	}
	.tostart {
		width: 2rem;
		height: 2rem;
		right: 1.25rem;
		bottom: 1.25rem;
	}
	.img-to-top {
		width: 1.25rem;
		left: .4rem;
		top: -1px;
	}
	/* мобильная млоденная версия таблицы */
	.my-price-table {
		border: 0;
	}
	.my-price-table thead {
		display: none;
	}

	.my-price-table tr {
		margin-bottom: 1rem;
		display: block;
		border-bottom: 1px solid var(--color-black);
	}

	.my-price-table td {
		display: block;
		text-align: right;
		border-bottom: 1px dotted var(--color-black);
		border-right: 1px solid transparent;
	}
	.my-price-table td:last-child {
		border-bottom: 0;
	}

	.my-price-table td:before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
	}
	.my-table {
		font-size: .8rem;
	}
	.my-table th, .my-table td {
		padding: .25rem;
	}
	
}

/* Устройства Small (телефоны с горизонтальной ориентацией, менее 768 пикселей) */
@media (min-width: 576px) and (max-width: 767.98px) {
	
	.bg-banner {
		min-height:150px;
	}
	.img-to-top {
		width: 1.25rem;
		left: .4rem;
		top: -1px;
	}

}
/* Устройства Medium (планшеты, менее 992 пикселей) */
@media  (min-width: 768px) and (max-width: 991.98px) {
	.bg-banner {
		min-height:150px;
	}
}


/* Устройства Large (настольные компьютеры, менее 1200 пикселей) */
@media  (min-width: 992px) and (max-width: 1199.98px) { 
	.bg-banner {
		min-height:230px;
	}
}

/* Устройства X-Large (большие настольные компьютеры, менее 1400 пикселей) */
@media  (min-width: 1200px) and (max-width: 1399.98px) {

}