

/* Start:/local/templates/opt/template_styles.css?175075632412750*/
/* Замена цветов по умолчанию */
:root {
	--bs-primary: #2E7D32;
	--bs-primary-rgb: 46, 125, 50;
	--bs-primary-hover: #388E3C;
	--bs-primary-active: #1B5E20;
	--bs-primary-bg-subtle: #E8F5E9;
	--bs-primary-border-subtle: #C8E6C9;
	--bs-primary-text: #1B5E20;

	--bs-links-secondary-color: #fff;

	--bs-border-color: #2E7D32;
	--bs-body-color: black;
	--bs-primary-rgb: 46, 125, 50;
	--bs-secondary: #48dbfb;  /* Заменяем серый secondary на голубой */
	--bs-success: #1dd1a1;    /* Зеленый success */
	--bs-info: #54a0ff;       /* Голубой info */
	--bs-warning: #ff9f43;    /* Оранжевый warning */
	--bs-danger: #ee5253;     /* Красный danger */
	--bs-light: #f8f9fa;      /* Светлый */
	--bs-dark: #222f3e;       /* Темный */
}

/* Buttons */
.btn-primary {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--bs-primary);
	--bs-btn-border-color: var(--bs-primary);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--bs-primary-hover);
	--bs-btn-hover-border-color: var(--bs-primary-hover);
	--bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--bs-primary-active);
	--bs-btn-active-border-color: var(--bs-primary-active);
	--bs-btn-disabled-bg: var(--bs-primary);
	--bs-btn-disabled-border-color: var(--bs-primary);
}

/* Inputs */
.form-control:focus,
.form-select:focus {
	border-color: var(--bs-primary);
	box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

.form-check-input:checked {
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
}

.form-check-input:focus {
	box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

/* Custom form switches */
.form-switch .form-check-input:focus {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%232E7D32'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/* Range inputs */
.form-range::-webkit-slider-thumb {
	background-color: var(--bs-primary);
}

.form-range::-moz-range-thumb {
	background-color: var(--bs-primary);
}

.form-range:focus::-webkit-slider-thumb {
	box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

/* Badges */
.bg-primary {
	background-color: var(--bs-primary) !important;
}

/* Alerts */
.alert-primary {
	--bs-alert-color: var(--bs-primary-text);
	--bs-alert-bg: var(--bs-primary-bg-subtle);
	--bs-alert-border-color: var(--bs-primary-border-subtle);
}

/* Links */
a {
	color: var(--bs-primary);
}

a:hover {
	color: var(--bs-primary-active);
}

a.links-secondary {
	color: var(--bs-links-secondary-color);
	text-decoration: none;
	opacity: 0.8;
}
a.links-secondary:hover {
	color: var(--bs-links-secondary-color);
	opacity: 1;
}

/* Pagination */
.page-link {
	color: var(--bs-primary);
}

.page-link:hover {
	color: var(--bs-primary-active);
}

.page-item.active .page-link {
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
}

/* Progress bars */
.progress-bar {
	background-color: var(--bs-primary);
}

/* Dropdowns */
.dropdown-item.active,
.dropdown-item:active {
	background-color: var(--bs-primary);
}

/* Navs & Tabs */
.nav-link.active {
	color: var(--bs-primary);
}

.nav-pills .nav-link.active {
	background-color: var(--bs-primary);
}

/* Tooltips */
.tooltip-inner {
	background-color: var(--bs-primary);
}

/* Popovers */
.popover-header {
	background-color: var(--bs-primary-bg-subtle);
	color: var(--bs-primary-text);
}

/* Breadcrumbs */
.breadcrumb-item.active {
	color: var(--bs-primary-text);
}

/* Accordion */
.accordion-button:not(.collapsed) {
	color: var(--bs-primary-text);
	background-color: var(--bs-primary-bg-subtle);
}

.accordion-button:focus {
	border-color: var(--bs-primary-border-subtle);
	box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

.container-main{
	min-width: 1200px;
	max-width: 1600px;
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	width: 100%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-right: auto;
	margin-left: auto;
}
@media (hover: none) {
    .container-header {
        display: none;
    }
}

.header.fixed .header-row-1{
	position: fixed;
    margin-top: 0;
	min-width: 1176px;
    max-width: 1576px;
    width: calc(100% - var(--bs-gutter-x) * 1);
    background-color: white;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
	z-index: 10;
}
.header.fixed .header-row-2{
	padding-top: 76px !important;
}
.header-logo-block{
	align-items: center;
	justify-content: flex-start;
	margin-right: 38px;
	position: relative;
	width: 212px;
}
.header-menu-button{
	display: flex;
	align-items: center;
	font-size: 16px;
	gap: 12px;
	padding: 12px 14px;
	height: 44px;
}
.header-menu-button-content{
	display: flex;
	height: 24px;
	white-space: nowrap;
	width: 100%;
}
.header-menu-button-icon{
	flex-shrink: 0;
	margin-right: 8px;
	color: var(--bs-btn-color);
	fill: var(--bs-btn-color);
}
.header-menu-button-text{
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 24px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.header-search-block{
	flex-grow: 1;
}
.header-search-block-content{
	background: #fff;
	border-radius: 20px;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}
.header-search-block-form{
	background: var(--bs-primary);
	border-radius: 12px;
	box-sizing: border-box;
	display: flex;
	height: 44px;
	justify-content: flex-start;
	position: relative;
	z-index: 1;
}
.header-search-block-input-block{
	background: #fff;
	border: 2px solid var(--bs-border-color);
	border-radius: 12px;
	display: flex;
	flex-grow: 1;
}
.header-search-block-input{
	width: 100%;
	background: transparent;
	border: none;
	color: var(--bs-primary-text);
	;
}
.header-search-block-button{
	-webkit-touch-callout: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	align-items: center;
	appearance: none;
	background: transparent;
	border-radius: 12px;
	border: none;
	box-sizing: border-box;
	display: inline-flex;
	height: 44px;
	justify-content: center;
	min-width: 44px;
	position: relative;
	white-space: normal;
	width: 72px;
}
.header-search-block-button-icon{
	color: var(--bs-btn-color);
	fill: var(--bs-btn-color);
}
.header-user-block{
	align-items: center;
	gap: 0px;
	justify-content: flex-end;
}
.header-user-block-content{
	position: relative;
}
.header-user-block-a{
	align-items: center;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 44px;
	justify-content: center;
	position: relative;
	text-align: center;
	width: 76px;
	text-decoration: none;
}
.header-user-block-icon-block{
	width: 24px;
	height: 24px;
}
.header-user-block-icon{
	color: var(--bs-primary);
	fill: var(--bs-primary);
}
.header-user-block-text-block{
	cursor: pointer;
	flex-direction: column;
	height: 44px;
	justify-content: center;
	position: relative;
	text-align: center;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	min-height: auto !important;
	word-break: break-all;
}
.header-user-block-text{
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 14px;
}
.header-user-block-count{
	font-weight: 500 !important;
	left: calc(50% + 2px);
	position: absolute;
	top: 0;
	z-index: 2;
	background-color: rgb(241, 17, 126);
	color: rgb(255, 255, 255);
	padding: 0 4px;
	border-radius: 64px;
	font-size: 10px;
}
.header-location-block{
	text-align: center;
	align-items: center;
	justify-content: flex-start;
	margin-right: 38px;
	width: 212px;
}
.header-location-block-a{
	text-decoration: none;
	color: black;
	font-weight: 600;
}
.header-menu2-block{
	gap: 12px;

}
.header-menu2-block-a{
	color: black;
	text-decoration: none;
	font-weight: 600
}

.header-mobile-menu{
	position: sticky;
    top: 0px;
    margin-top: auto;
    z-index: 500;
    background-color: white;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
.header-mobile-menu-line1 .header-location-block{
	width: 100%;
    text-align: left;
    margin: 0px;
    padding: 5px 10px 0px;
}
.header-mobile-menu-line2{
	display: flex;
    flex-direction: row;
	padding: 5px;
}
.header-mobile-menu-menu{
	display: flex;
    width: auto;
    margin-right: 5px;
    align-items: center;
}
.header-mobile-menu-menu svg{
	width: 44px;
	height: 44px;
}
.header-mobile-menu-line2 .header-logo-block{
	width: auto;
    margin-right: 5px;
}
.header-logo-block-img-mobile{
	width: 44px;
	height: 44px;
}
.header-mobile-menu-line2 .header-search-block-content{
	margin-top: 0px !important;
}
.header-mobile-menu-line2 .header-search-block-button{
	width: 50px;
}
.header-mobile-menu-line3{
	display: flex;
    flex-direction: row;
	margin: 5px 10px;
}
.header-mobile-menu-line3 .header-menu2-block{
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}
.header-mobile-menu-line3 .header-menu2-block-a{
	white-space: nowrap;
}

.container-body{
	min-width: 320px;
	max-width: 1600px;
	width: 100%;
}

.footer-block{
	background-color: var(--bs-primary);
}
.footer{
	max-width: 1600px;
	width: 100%;
	min-width: 320px;
	padding-top: 32px;
	padding-bottom: 10px;
	padding-right: 10px;
	padding-left: 10px;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.footer-block{
	display: flex;
	flex-direction: column;
	width: 100%;
}
.footer-menu-block{
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
.footer-menu-list{
	display: flex;
	width: 100%;
	flex-direction: row;
    justify-content: space-between;
    padding-top: 16px;
    margin-right: 32px;
    grid-gap: 32px;
    gap: 32px;
}
.footer-item-list{
	width: 25%;
	display: flex;
    flex-direction: column;
}
.footer-item-title{
	letter-spacing: .2px;
    font-size: 17px;
    font-weight: 600;
    line-height: 22px;
	color: var(--bs-links-secondary-color);
}
.footer-menu-item-title{
	letter-spacing: .2px;
    font-size: 15px;
}
.footer-soc-list{
	display: flex;
	margin-bottom: 12px;
	gap: 15px;
}
.footer-docs-block{
	display: flex;
	width: 100%;
	flex-direction: row;
	justify-content: space-between;
}
.footer-docs-list{
    display: flex;
    margin-bottom: 12px;
    flex-direction: row;
	gap: 15px;
}

.footer-docs-span{
    letter-spacing: .2px;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
}
.footer-fixed-menu{
	position: sticky;
    bottom: 0;
    margin-top: auto;
    z-index: 500;
    display: flex;
	background-color: white;
	box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1);
}
.footer-fixed-menu .header-user-block-content{
	width: 20%;
	margin-top: 10px;
	margin-bottom: 10px;
}
@media (max-width: 1024px) {
	.footer{
		padding-top: 10px;
	}
	.footer-menu-list{
		flex-direction: column;
		grid-gap: 0px;
		gap: 0px;
		margin-right: 0px;
	}
	.footer-item-list{
		width: 100%
	}
	.footer-item-title{
		padding-left: 25px;
		position: relative;
		font-size: 20px;
		line-height: 50px;
        padding-bottom: 0px !important;
	}
	.footer-item-title::before{
		content: "+";
        position: absolute;
        font-size: 25px;
        left: 0px;
        top: -1px;
	}
	.footer-menu-item-link{
		display: none;
	}
	.footer-item-list.open{
		margin-bottom: 10px;
	}
	.footer-item-list.open .footer-menu-item-link{
		display: block;
	}
	.footer-item-list.open .footer-item-title::before{
		content: "-";
		left: 1px;
        font-size: 40px;
        top: -3px;
	}
	.footer-menu-item-link{
		line-height: 35px;
		padding-bottom: 0px !important;
		margin-left: 25px;
	}
	.footer-menu-item-title{
		font-size: 20px;
	}
	.footer-docs-list{
		flex-direction: column;
	}
}
@media (max-width: 768px) {
	.footer-block>hr{
		margin: 0.5rem 0;
	}
	.footer-docs-list{
		gap: 0px;
		margin-bottom: 0px;
	}
	.footer-docs-span{
		font-size: 11px;
	}
}
/* End */
/* /local/templates/opt/template_styles.css?175075632412750 */
