@import url("../bootstrap/bootstrap.min.css");
@import url("../jquery/jquery-ui/jquery-ui.css");
@import url("../owlcarousel/owl.carousel.min.css");
/*
* ----------------------------------------------------------------------------------------
* Fonts
* ----------------------------------------------------------------------------------------
*/
@import url("../fonts/fontawesome-free-5.15.4-web/css/all.min.css");
@import url("../fonts/bootstrap-icons-1.11.3/font/bootstrap-icons.min.css");
/*
* ----------------------------------------------------------------------------------------
* Root
* ----------------------------------------------------------------------------------------
*/
:root {
 --green-color: #179556;
 --light-green-color: #23b827;
 --danger-color: #ee3b3b;
}
/*
* ----------------------------------------------------------------------------------------
* General
* ----------------------------------------------------------------------------------------
*/
*, *::before, *::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-size: 1em;
	font-weight: 400;
	font-family: "Roboto", sans-serif;
	color: var(--bs-dark);
	line-height: 1.3em;
}
html {
	scrollbar-gutter: stable;
	overflow-y: scroll;
}
a {
	color: var(--bs-dark);
	text-transform: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}
a:hover, a :focus {
	text-decoration: none;
	box-shadow: none;
	color: var(--bs-danger);
}
a:focus {
	outline: 0 solid;
}
img {
	max-width: 100%;
	height: auto;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	line-height: 1;
}
ul {
	padding: 0px !important;
	margin: 0px !important;
	list-style: none;
}

@media (prefers-reduced-motion: no-preference) {
:root {
	scroll-behavior: auto;
}
}
main {
	flex: 1 0 auto;
}
/*
* ----------------------------------------------------------------------------------------
* Flex
* ----------------------------------------------------------------------------------------
*/
.flex {
	display: flex;
	flex-wrap: wrap;
}
.flex-item {
	height: 100%;
	flex: 1;
}
.container {
	position: relative !important;
}
/*
* ----------------------------------------------------------------------------------------
* Owl Carousel
* ----------------------------------------------------------------------------------------
*/
.owl-stage {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.owl-item {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: auto !important;
	padding: 5px;
}
.owl-carousel .owl-prev, .owl-carousel .owl-next {
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 42px !important;
	height: 42px !important;
	border-radius: 50% !important;
	background-color: var(--bs-body-bg) !important;
	border: 1px solid var(--bs-border-color) !important;
	color: var(--bs-body-color) !important;
	box-shadow: var(--bs-box-shadow-sm) !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease-in-out;
	z-index: 100;
}
.owl-carousel .owl-prev {
	left: -50px !important;
}
.owl-carousel .owl-next {
	right: -50px !important;
}
.owl-carousel .owl-prev:hover, .owl-carousel .owl-next:hover {
	background-color: var(--bs-tertiary-bg) !important;
	border-color: var(--bs-border-color-translucent) !important;
	color: var(--green-color) !important;
	box-shadow: var(--bs-box-shadow) !important;
}
.owl-carousel .owl-nav {
	margin: 0 !important;
}
.owl-carousel .owl-nav button:hover {
	background: none !important;
}

@media (max-width: 991.98px) {
.owl-carousel .owl-nav {
	display: none !important;
}
}
/*
* ----------------------------------------------------------------------------------------
* Logo
* ----------------------------------------------------------------------------------------
*/
.navbar-brand img {
	width: 100px;
}
/*
* ----------------------------------------------------------------------------------------
* Menu
* ----------------------------------------------------------------------------------------
*/
.navbar-nav .nav-link {
	font-size: 1.3em;
	font-weight: bolder;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
	color: color-mix(in srgb, var(--bs-danger), transparent 40%) !important;
}
.navbar-toggler {
	color: var(--bs-white);
	background: var(--green-color);
}

@media only screen and (max-width: 991.98px) {
.navbar-brand img {
	width: 75px;
}
.navbar {
	background: var(--bs-light) !important;
}
}
.navbar.sticky {
	position: fixed;
	transition: 0.4s;
	width: 100%;
	top: 0;
	animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
	z-index: 100;
}
.navbar.sticky .navbar-brand img {
	width: 60px;
}
.navbar.sticky .navbar-nav .nav-link {
	font-size: 1em;
}
/*
* ----------------------------------------------------------------------------------------
* Button
* ----------------------------------------------------------------------------------------
*/
.btn-green, .btn-red, .btn-white {
	padding: 10px 25px;
	font-weight: 600;
	text-transform: uppercase;
	border: none;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
	z-index: 2;
	overflow: hidden;
}
.btn-green:after, .btn-red:after, .btn-white:after {
	position: absolute;
	content: " ";
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
}
.btn-green {
	color: var(--bs-white);
	background: var(--green-color);
}
.btn-green:hover {
	color: var(--bs-white);
}
.btn-green:hover:after {
	-webkit-transform: scale(2) rotate(180deg);
	transform: scale(2) rotate(180deg);
	background: var(--danger-color);
	box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.5), inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
}
.btn-red {
	color: var(--bs-white);
	background: var(--danger-color);
}
.btn-red:hover {
	color: var(--bs-white);
}
.btn-red:hover:after {
	-webkit-transform: scale(2) rotate(180deg);
	transform: scale(2) rotate(180deg);
	background: var(--green-color);
	box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.5), inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
}
.btn-white {
	color: var(--danger-color);
	background: var(--bs-white);
}
.btn-white:hover {
	color: var(--bs-white);
}
.btn-white:hover:after {
	-webkit-transform: scale(2) rotate(180deg);
	transform: scale(2) rotate(180deg);
	background: var(--bs-dark);
	box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.5), inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
}
.btn-round {
	width: 40px !important;
	height: 40px !important;
	border-radius: 50%;
	background-color: var(--danger-color);
	color: var(--bs-white);
	border: none;
	font-size: 1.5rem !important;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	outline: none;
	transition: background-color 0.3s;
}
.btn-round:hover {
	background-color: var(--green-color);
}
body[class*="bg-bvi-"] .btn-round {
	border: 2px solid currentColor !important;
	overflow: hidden;
}
/*
* ----------------------------------------------------------------------------------------
* Banner
* ----------------------------------------------------------------------------------------
*/
#banner {
	margin-top: 25px;
}
#banner .container .d-lg-flex .d-lg-flex {
	background-image: url(../../images/medicalcenter.png) !important;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 50% auto;
	width: 75%;
}
#banner .container .d-lg-flex .d-lg-flex div {
	width: 50%;
	height: 100%;
}
#banner .container .d-lg-flex .d-lg-flex div:first-child {
	padding: 12% 0 5%
}
#banner .container .d-lg-flex .d-lg-flex div:last-child {
	background-image: url(../../images/heart.png);
	background-repeat: no-repeat;
	background-position: right top;
	background-size: 50% auto;
}
#banner h4 {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	line-height: 0.8em;
}
#banner h4 i {
	font-size: 1.6em;
	background: linear-gradient(to right, var(--green-color), color-mix(in srgb, var(--green-color), transparent 40%));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	display: inline-block;
}
#banner h5 {
	margin-top: 30px;
	color: var(--bs-white);
	text-align: center;
	text-transform: uppercase;
	padding: 15px 0;
	background: var(--green-color);
}
#banner h6 {
	font-size: 1.3em;
	text-transform: uppercase;
	margin: 30px 0 20px;
}
body.img-gray #banner .container .d-lg-flex .d-lg-flex {
	background-image: url(../../images/medicalcenter-gray.png) !important;
}
body.img-hide #banner .container .d-lg-flex .d-lg-flex {
	background-image: none !important;
}
body.img-gray #banner .container .d-lg-flex .d-lg-flex div:last-child {
	background-image: url(../../images/heart-gray.png) !important;
}
body.img-hide #banner .container .d-lg-flex .d-lg-flex div:last-child {
	background-image: none !important;
}
body[class*="bg-bvi-"] #banner .container .d-lg-flex .d-lg-flex {
	background-image: none !important;
	width: 100%;
}
body[class*="bg-bvi-"] #banner .container .d-lg-flex .d-lg-flex div {
	height: auto;
}
body[class*="bg-bvi-"] #banner .container .d-lg-flex .d-lg-flex div:first-child {
	background: none;
	border: 2px solid currentColor !important;
	padding: 20px !important;
	width: 75%;
	margin: 0 auto;
}
body[class*="bg-bvi-"] #banner .container .d-lg-flex .d-lg-flex div:last-child {
	display: none;
}
body[class*="bg-bvi-"] #banner h5 {
	text-align: left;
	text-transform: none;
	background: none;
	padding: 0;
}
body[class*="bg-bvi-"] #banner h6 {
	text-transform: none;
}

@media only screen and (max-width: 991.98px) {
#banner {
	margin-top: 10px;
}
#banner .container .d-lg-flex .d-lg-flex {
	background-image: url(../../images/clinic.jpg) !important;
	background-size: 100% auto;
	padding-top: 450px;
	width: 100% !important;
}
body[class*="bg-bvi-"] #banner .container .d-lg-flex .d-lg-flex {
	padding-top: 0 !important;
}
#banner .container .d-lg-flex .d-lg-flex div:first-child {
	padding: 5% 0 25%
}
#banner .container .d-lg-flex .d-lg-flex div:last-child {
	display: none;
}
#banner .container .d-lg-flex .d-lg-flex div {
	width: 100% !important;
	padding-bottom: 0px !important;
}
}

@media only screen and (max-width: 782px) {
#banner .container .d-lg-flex .d-lg-flex {
	padding-top: 330px;
}
}
/*
* ----------------------------------------------------------------------------------------
* Welcome
* ----------------------------------------------------------------------------------------
*/
#welcome {
	margin-top: 25px;
}
#welcome span {
	display: block;
	width: 150px;
	height: 150px;
	background-color: var(--bs-light);
	display: grid;
	place-items: center;
	margin: 0 auto;
}
#welcome h1 {
	font-size: 2.3em;
	text-transform: uppercase;
	text-align: center;
	margin: 20px 0;
}
#welcome .text {
	font-size: 1.2em;
	text-align: center;
}
#welcome .text p {
	margin-bottom: 25px;
}
#welcome .row .col-lg-5 {
	background-color: var(--bs-light);
	background-image: url(../../images/therapist.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
body.img-hide #welcome span {
	background-color: inherit !important;
}
body.img-gray #welcome .row .col-lg-5 {
	background-image: url(../../images/therapist-gray.png) !important;
}
body.img-hide #welcome .row .col-lg-5 {
	background-color: inherit !important;
	background-image: none !important;
}
body[class*="bg-bvi-"] #welcome .row .col-lg-7 {
	margin: 0 auto;
	border: 2px solid currentColor !important;
}
body[class*="bg-bvi-"] #welcome .row .col-lg-5 {
	display: none;
}
body[class*="bg-bvi-"] #welcome span {
	display: none;
}

@media only screen and (max-width: 991.98px) {
#welcome span {
	display: none;
}
#welcome h1 {
	font-size: 1.8em;
}
#welcome .text {
	text-align: left;
}
#welcome .row .col-lg-5 {
	display: none;
}
}
/*
* ----------------------------------------------------------------------------------------
* About
* ----------------------------------------------------------------------------------------
*/
#about {
	margin-top: 100px;
}
#about h2 {
	font-size: 2.3em;
	color: var(--light-green-color);
	text-align: center;
}
#about h6 {
	font-size: 1.5em;
	color: var(--light-green-color);
	margin: 20px 0;
}
#about img {
	display: block;
	width: 50px;
	height: 50px;
}
body[class*="bg-bvi-"] #about img {
	display: none;
}

@media only screen and (max-width: 991.98px) {
#about {
	margin-top: 20px;
}
#about h2 {
	font-size: 1.8em;
}
#about .item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}
#about .item img {
	display: inline-block;
	width: 35px;
	height: 35px;
}
#about .item h6 {
	margin: 0;
}
}
/*
* ----------------------------------------------------------------------------------------
* Services
* ----------------------------------------------------------------------------------------
*/
#services {
	margin-top: 100px;
}
#services h3 {
	font-size: 2.3em;
	color: var(--light-green-color);
	text-align: center;
}
#services p {
	color: var(--bs-secondary);
	font-size: 1.4em;
	text-align: center;
	margin-top: 20px;
}
#services .flex-item {
	color: var(--bs-white);
	background-color: var(--green-color);
	padding: 20px;
	border-radius: 20px;
}

@media only screen and (max-width: 991.98px) {
#services {
	margin-top: 20px;
}
#services h3 {
	font-size: 1.8em;
}
#services p {
	font-size: 1.2em;
}
}
/*
* ----------------------------------------------------------------------------------------
* Doctors
* ----------------------------------------------------------------------------------------
*/
#doctors {
	margin-top: 100px;
}
#doctors h4 {
	font-size: 2.3em;
	color: var(--light-green-color);
	text-align: center;
}
#doctors p {
	color: var(--bs-secondary);
	font-size: 1.4em;
	text-align: center;
	margin-top: 20px;
}
#doctors .doctors {
	margin-top: 40px;
}
#doctors .card {
	border: none;
}
#doctors .card-title {
	font-size: 1.2em;
}
#doctors .card-text {
	font-size: 1.1em;
	color: var(--bs-secondary);
	margin-bottom: 20px;
}
#doctors .card-body a {
	padding: 5px 15px;
	color: var(--green-color);
	border: var(--green-color) 1px solid;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
	text-decoration: none;
	z-index: 2;
	overflow: hidden;
}
#doctors .card-body a:after {
	position: absolute;
	content: " ";
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
}
#doctors .card-body a:hover {
	color: var(--bs-white);
}
#doctors .card-body a:hover:after {
	-webkit-transform: scale(2) rotate(180deg);
	transform: scale(2) rotate(180deg);
	background: var(--green-color);
	box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.5), inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
}

@media (max-width: 991.98px) {
#doctors {
	margin-top: 50px;
}
#doctors h4 {
	font-size: 1.8em;
}
#doctors p {
	font-size: 1.2em;
}
#doctors .card-body {
	text-align: center;
}
}
/*
* ----------------------------------------------------------------------------------------
* News
* ----------------------------------------------------------------------------------------
*/
#news {
	margin-top: 30px;
}
#news h6 {
	font-size: 2.3em;
	color: var(--light-green-color);
	text-align: center;
}
#news .news {
	margin-top: 40px;
}
#news .card {
	border-color: color-mix(in srgb, var(--bs-secondary), transparent 90%);
}
#news .card-body {
	padding: 40px 25px;
}
#news .card-title {
	color: var(--light-green-color);
	font-size: 1.4em;
	text-transform: uppercase;
	margin-bottom: 20px;
}
#news .card-text {
	font-size: 1.1em;
	color: var(--bs-secondary);
	margin-bottom: 20px;
}
#news .card-body a {
	color: color-mix(in srgb, var(--danger-color), transparent 20%);
	text-decoration: none;
}
#news .card-body a:hover {
	color: color-mix(in srgb, var(--danger-color), transparent 40%);
}
/*
* ----------------------------------------------------------------------------------------
* Contact
* ----------------------------------------------------------------------------------------
*/
#contact {
	margin-top: 40px;
	overflow: hidden;
	position: relative;
}
[class*="ymaps-2-1"][class*="-balloon"] {
	background-color: var(--bs-white) !important;
}
.ymaps-2-1-79-balloon__content {
	background: var(--bs-white) !important;
}

@media (min-width: 992px) {
.position-lg-absolute {
	position: absolute !important;
	left: 50% !important;
	top: 50% !important;
	transform: translate(-50%, -50%) !important;
	width: 100% !important;
	z-index: 10;
}
#map {
	height: 600px !important;
}
#contact .container {
	padding-left: 15px !important;
	padding-right: 15px !important;
}
}

@media (max-width: 991.98px) {
#contact {
	background-color: var(--bs-light);
}
#map {
	height: 350px !important;
}
}
body[class*="bg-bvi-"] #contact .container, body[class*="bg-bvi-"] #contact .row, body[class*="bg-bvi-"] #contact div[class*="col-"] {
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
}
/*
* ----------------------------------------------------------------------------------------
* Footer
* ----------------------------------------------------------------------------------------
*/
footer {
	margin-top: 0px;
	overflow: hidden;
	padding: 60px 0;
}
footer .footer-brand {
	display: inline-block;
	width: 100px;
	height: 100px;
}
footer .footer-brand {
	display: block;
	width: 100px;
	height: 100px;
	background-color: var(--bs-gray-200);
	background-image: url(../../images/logo.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 20px;
}
footer h6 {
	font-size: 1.2em;
}
body.img-gray footer .footer-brand {
	background-image: url(../../images/logo-gray.png) !important;
}
body.img-hide footer .footer-brand {
	background-image: none !important;
	background-color: inherit !important;
}
/*
* ----------------------------------------------------------------------------------------
* Button To Top
* ----------------------------------------------------------------------------------------
*/
#button-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	height: 50px !important;
	width: 50px !important;
	min-width: 50px !important;
	min-height: 50px !important;
	display: none;
	place-items: center;
	border-radius: 50% !important;
	cursor: pointer;
	z-index: 1000;
	letter-spacing: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
}
#button-to-top-progress-value {
	height: 35px !important;
	width: 35px !important;
	background-color: var(--bs-white);
	border-radius: 50% !important;
	display: grid !important;
	place-items: center;
	font-size: 20px !important;
	color: var(--bs-dark);
	line-height: 1 !important;
	letter-spacing: 0 !important;
	text-indent: 0 !important;
}
#button-to-top-progress-value i, #button-to-top-progress-value svg {
	font-size: 20px !important;
	letter-spacing: 0 !important;
	display: block !important;
}
/*
* ----------------------------------------------------------------------------------------
* BVI
* ----------------------------------------------------------------------------------------
*/
/* Сбрасываем размеры */
body[class*="bg-bvi-"] *:not(#offcanvasVision):not(#offcanvasVision *):not(.bi):not(.heading):not([class*="ymaps"]):not([class*="ymaps"] *) {
	font-size: 1em !important;
}
/* Шрифт */
body.bvi-f-small {
	font-size: 18px !important;
}
body.bvi-f-medium {
	font-size: 24px !important;
}
body.bvi-f-large {
	font-size: 32px !important;
}
/* Заголовки */
body[class*="bg-bvi-"] .heading {
	text-transform: none !important;
	font-size: 2.5rem !important;
	display: block !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	margin: 1rem 0 !important;
}

@media (max-width: 768px) {
body.bvi-f-small {
	font-size: 16px !important;
}
body.bvi-f-medium {
	font-size: 20px !important;
}
body.bvi-f-large {
	font-size: 24px !important;
}
body[class*="bg-bvi-"] .heading {
	font-size: 1.8rem !important;
}
}
body[class*="bg-bvi-"] h1, body[class*="bg-bvi-"] h2, body[class*="bg-bvi-"] h3, body[class*="bg-bvi-"] h4, body[class*="bg-bvi-"] h5, body[class*="bg-bvi-"] h6 {
	font-weight: 800 !important;
	color: inherit !important;
	text-shadow: none !important;
	background: none !important;
	-webkit-text-fill-color: initial !important;
	display: block !important;
	line-height: 1.2 !important;
	margin-bottom: 0.5rem !important;
	margin-top: 1rem !important;
}
body[class*="bg-bvi-"] h1 {
	font-size: 2.5rem !important;
}
body[class*="bg-bvi-"] h2 {
	font-size: 2.2rem !important;
}
body[class*="bg-bvi-"] h3 {
	font-size: 1.8rem !important;
}
body[class*="bg-bvi-"] h4 {
	font-size: 1.5rem !important;
}
body[class*="bg-bvi-"] h5 {
	font-size: 1.3rem !important;
}
body[class*="bg-bvi-"] h6 {
	font-size: 1.1rem !important;
}
body[class*="bg-bvi-"] h1::before, body[class*="bg-bvi-"] h1::after, body[class*="bg-bvi-"] h2::before, body[class*="bg-bvi-"] h2::after, body[class*="bg-bvi-"] h3::before, body[class*="bg-bvi-"] h3::after, body[class*="bg-bvi-"] h4::before, body[class*="bg-bvi-"] h4::after {
	display: none !important;
	content: none !important;
	background: none !important;
}
body[class*="bg-bvi-"] h1 i, body[class*="bg-bvi-"] h1 span, body[class*="bg-bvi-"] h2 i, body[class*="bg-bvi-"] h2 span, body[class*="bg-bvi-"] h3 i, body[class*="bg-bvi-"] h3 span, body[class*="bg-bvi-"] h4 i, body[class*="bg-bvi-"] h4 span, body[class*="bg-bvi-"] h1 [class^="bi-"], body[class*="bg-bvi-"] h1 [class^="fa-"] {
	display: none !important;
	content: none !important;
	visibility: hidden !important;
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

@media (max-width: 768px) {
body[class*="bg-bvi-"] h1 {
	font-size: 1.8rem !important;
}
body[class*="bg-bvi-"] h2 {
	font-size: 1.6rem !important;
}
body[class*="bg-bvi-"] h3 {
	font-size: 1.4rem !important;
}
}
/* Интервалы */
body.ls-normal *:not(#offcanvasVision):not(#offcanvasVision *):not(#button-to-top):not(#button-to-top *):not([class*="ymaps"]):not([class*="ymaps"] *):not(.btn-round):not(.btn-round *) {
	letter-spacing: normal !important;
}
body.ls-medium *:not(#offcanvasVision):not(#offcanvasVision *):not(#button-to-top):not(#button-to-top *):not([class*="ymaps"]):not([class*="ymaps"] *):not(.btn-round):not(.btn-round *) {
	letter-spacing: 2px !important;
}
body.ls-large *:not(#offcanvasVision):not(#offcanvasVision *):not(#button-to-top):not(#button-to-top *):not([class*="ymaps"]):not([class*="ymaps"] *):not(.btn-round):not(.btn-round *) {
	letter-spacing: 5px !important;
}
#offcanvasVision, #offcanvasVision *, [class*="ymaps"] {
	letter-spacing: normal !important;
}
/* Синяя тема */
body.bg-bvi-blue, body.bg-bvi-blue *:not(#offcanvasVision):not(#offcanvasVision *):not(#button-to-top):not(#button-to-top *):not([class*="ymaps"]):not([class*="ymaps"] *):not(.position-lg-absolute):not(.position-lg-absolute .row):not(.position-lg-absolute [class*="col-"]) {
	background-color: #E3F2FD !important;
	color: #002654 !important;
	border-color: #002654 !important;
}
/* Черно-белая тема */
body.bg-bvi-bw, body.bg-bvi-bw *:not(#offcanvasVision):not(#offcanvasVision *):not(#button-to-top):not(#button-to-top *):not([class*="ymaps"]):not([class*="ymaps"] *):not(.position-lg-absolute):not(.position-lg-absolute .row):not(.position-lg-absolute [class*="col-"]) {
	font-family: Arial, Verdana, sans-serif !important;
	background-color: #ffffff !important;
	color: #000000 !important;
	border-color: #000000 !important;
}
/* Инверсия тема */
body.bg-bvi-invert, body.bg-bvi-invert *:not(#offcanvasVision):not(#offcanvasVision *):not(#button-to-top):not(#button-to-top *):not([class*="ymaps"]):not([class*="ymaps"] *):not(.position-lg-absolute):not(.position-lg-absolute .row):not(.position-lg-absolute [class*="col-"]) {
	font-family: Arial, Verdana, sans-serif !important;
	background-color: #000000 !important;
	color: #ffffff !important;
	border-color: #ffffff !important;
}
body.bg-bvi-invert-green, body.bg-bvi-invert-green *:not(#offcanvasVision):not(#offcanvasVision *):not(#button-to-top):not(#button-to-top *):not([class*="ymaps"]):not([class*="ymaps"] *):not(.position-lg-absolute):not(.position-lg-absolute .row):not(.position-lg-absolute [class*="col-"]) {
	font-family: Arial, Verdana, sans-serif !important;
	background-color: #000000 !important;
	color: #00ff00 !important;
	border-color: #ffffff !important;
}
/* Желтая тема */
body.bg-bvi-yellow, body.bg-bvi-yellow *:not(#offcanvasVision):not(#offcanvasVision *):not(#button-to-top):not(#button-to-top *):not([class*="ymaps"]):not([class*="ymaps"] *):not(.position-lg-absolute):not(.position-lg-absolute .row):not(.position-lg-absolute [class*="col-"]) {
	font-family: Arial, Verdana, sans-serif !important;
	background-color: #ffff00 !important;
	color: #000000 !important;
	border-color: #000000 !important;
}
/* Кнопки */
body[class*="bg-bvi-"] a:not(.btn) {
	color: inherit !important;
	text-decoration: underline !important;
	text-transform: none !important;
	position: relative !important;
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
}
body[class*="bg-bvi-"] a:not(.nav-link) {
	padding: 0 !important;
}
body[class*="bg-bvi-"] a:not(.btn)::before, body[class*="bg-bvi-"] a:not(.btn)::after {
	display: none !important;
	content: none !important;
	width: 0 !important;
	height: 0 !important;
}
/* Ссылки */
body[class*="bg-bvi-"] a:not(.btn):hover, body[class*="bg-bvi-"] a:not(.btn):focus {
	background-color: currentColor !important;
	color: #000000 !important;
	text-decoration: none !important;
	outline: none !important;
	border-radius: 2px !important;
}
/* Карточки, Секции, Поля ввода */
body[class*="bg-bvi-"] .card, body[class*="bg-bvi-"] .flex-item, body[class*="bg-bvi-"] .block, body[class*="bg-bvi-"] input, body[class*="bg-bvi-"] textarea {
	border: 2px solid currentColor !important;
	padding: 20px !important;
	margin-bottom: 30px !important;
	box-shadow: none !important;
	background-color: transparent !important;
}
/* Линия */
body[class*="bg-bvi-"] hr {
	height: 2px !important;
	background-color: currentColor !important;
	opacity: 1 !important;
}
/* Убираем скругления */
body[class*="bg-bvi-"] *, body[class*="bg-bvi-"] *::before, body[class*="bg-bvi-"] *::after {
	border-radius: 0 !important;
 --bs-border-radius: 0 !important;
 --bs-border-radius-sm: 0 !important;
 --bs-border-radius-lg: 0 !important;
 --bs-border-radius-xl: 0 !important;
 --bs-border-radius-2xl: 0 !important;
 --bs-border-radius-pill: 0 !important;
}
body[class*="bg-bvi-"] .offcanvas, body[class*="bg-bvi-"] .modal-content, body[class*="bg-bvi-"] .card, body[class*="bg-bvi-"] .btn, body[class*="bg-bvi-"] input, body[class*="bg-bvi-"] select, body[class*="bg-bvi-"] .dropdown-menu {
	border-radius: 0 !important;
}
/* Offcanvas */
#offcanvasVision, #offcanvasVision .offcanvas-header, #offcanvasVision .offcanvas-body {
	background-color: #ffffff !important;
	color: #212529 !important;
	letter-spacing: normal !important;
}
#offcanvasVision legend.lv-legend {
	font-size: 0.75rem !important;
	line-height: 1.2 !important;
	margin-bottom: 10px !important;
	float: none !important;
	display: block !important;
	color: #6c757d !important;
	width: 100% !important;
	border: none !important;
}
#offcanvasVision fieldset {
	border: none !important;
	padding: 0 !important;
	margin-bottom: 1.5rem !important;
}
#offcanvasVision .btn.bvi-fixed-btn {
	border: 2px solid #dee2e6 !important;
	background-color: #f8f9fa !important;
	color: #212529 !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	flex: 1 1 0 !important;
	height: 48px !important;
}
#offcanvasVision .btn.btn-bvi-bw {
	background-color: #ffffff !important;
	color: #000 !important;
}
#offcanvasVision .btn.btn-bvi-blue {
	background-color: #E3F2FD !important;
	color: #002654 !important;
}
#offcanvasVision .btn.btn-bvi-yellow {
	background-color: #ffff00 !important;
	color: #000 !important;
}
#offcanvasVision .btn.btn-bvi-invert {
	background-color: #000000 !important;
	color: #fff !important;
}
#offcanvasVision .btn.btn-bvi-invert-green {
	background-color: #000000 !important;
	color: #00ff00 !important;
}
#offcanvasVision .btn.bvi-fixed-btn.active {
	border-color: #dc3545 !important;
	border-width: 3px !important;
	z-index: 5;
	position: relative;
}
#offcanvasVision .btn-danger.lv-undo {
	background-color: #dc3545 !important;
	color: #fff !important;
	border: none !important;
	font-weight: bold !important;
	font-size: 14px !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
}
#offcanvasVision .btn-close {
	width: 1rem !important;
	height: 1rem !important;
	font-size: 1rem !important;
	opacity: 0.8;
}
#offcanvasVision .bvi-f-small {
	font-size: 14px !important;
}
#offcanvasVision .bvi-f-medium {
	font-size: 20px !important;
}
#offcanvasVision .bvi-f-large {
	font-size: 26px !important;
}
/* Изображения */
body.img-gray img:not(#offcanvasVision img) {
	filter: grayscale(100%) contrast(120%) !important;
}
body.img-hide img:not(#offcanvasVision img) {
	visibility: hidden !important;
	opacity: 0 !important;
}
body.img-hide .img-wrapper, body.img-hide picture {
	background: rgba(128, 128, 128, 0.1);
	border: 1px dashed #666;
}
/* Яндекс-карта */
[class*="ymaps-2-1-"][class*="-map"], [class*="ymaps-2-1-"][class*="-inner-container"], [class*="ymaps-2-1-"][class*="-container"], [class*="ymaps-2-1-"][class*="-ground-pane"], ymaps {
	background-color: transparent !important;
}
body.bg-bvi-invert #map, body.bg-bvi-invert-green #map {
	filter: brightness(0.9) contrast(1.2) invert(100%) hue-rotate(180deg) !important;
}
body.bg-bvi-bw #map, body.bg-bvi-yellow #map, body.bg-bvi-blue #map {
	filter: grayscale(1) brightness(0.8) contrast(1.6) !important;
}
body[class*="bg-bvi-"] [class*="ymaps-2-1-"][class*="-marker"] {
	filter: grayscale(0) invert(0) hue-rotate(0) !important;
}
body[class*="bg-bvi-"] [class*="ymaps-2-1-"][class*="-controls-pane"] {
	filter: grayscale(0) !important;
}
/* Звук */
#toggle-sound.active {
	background-color: transparent !important;
	border: 2px solid #dc3545 !important;
	color: #dc3545 !important;
}
#toggle-sound i {
	font-size: 1.2rem;
}
.bvi-audio-trigger {
	display: none;
	align-items: center;
	justify-content: center;
	position: absolute !important;
	top: 10px !important;
	right: 10px !important;
	width: 50px;
	height: 50px;
	background-color: #000;
	border: 3px solid #fff;
	border-radius: 50%;
	color: #fff;
	z-index: 10;
	cursor: pointer;
	transition: transform 0.2s ease;
}
.bvi-audio-trigger i {
	font-size: 1.8rem;
	line-height: 1;
}
.bvi-audio-trigger.show {
	display: flex !important;
}
.bvi-audio-trigger:hover {
	background-color: #dc3545;
	transform: scale(1.1);
}
.bvi-audio-trigger.playing {
	background-color: #28a745 !important;
	border-color: #fff !important;
}
.bvi-audio-trigger.playing i::before {
	content: "\F590" !important;
}
