/*!
Theme Name: denver
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: denver
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

*/

:root {
	--main_color: #2E2E2F;
	--green_color: #00b300;
	--dark_gray: #6A6C6D;
	--blue: #1273EB;
}

html, body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-family: Roboto, Verdana, Geneva, sans-serif;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: 'lnum' 1;
	color: var(--main_color);
}

img {
	border: 0;
	max-width: 100%;
}
iframe {
	max-width: 100%;
	border: 0;
}
*, :before, :after {
	box-sizing: border-box;
	outline: none;
}
input[type="submit"],
input[type="button"],
input[type="reset"],
button {
	cursor: pointer;
}

.ccenter {
	padding: 0 15px;
	margin: 0 auto;
	max-width: 1230px;
}

.flex {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}
.flex.column {
	flex-direction: column;
}
.flex.around {
	justify-content: space-around;
}

.flex.center {
	justify-content: center;
}
.flex.left {
	justify-content: flex-start;
}
.flex.right {
	justify-content: flex-end;
}
.flex.vcenter {
	align-items: center;
}
.flex.vtop {
	align-items: flex-start;
}
.flex.vbottom {
	align-items: flex-end;
}
.flex.wrap {
	flex-wrap: wrap;
}

h1, .h1, h2, .h2, h3, .h3 {
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 1em;
}
h1, .h1 {
	font-size: 43px;
}
h2, .h2 {
	font-size: 35px;
}
h3, .h3 {
	font-size: 24px;
}



/* блок со скроллом для таблиц и прочего */
div.scr {
	overflow: auto;
	padding: 0 0 10px;
}
div.scr::-webkit-scrollbar {
	width: 12px; /* ширина scrollbar */
}
div.scr::-webkit-scrollbar-track {
	background: #eee; /* цвет дорожки */
}
div.scr::-webkit-scrollbar-thumb { /* плашка */
	background-color: #42a327;
	border-radius: 20px;
	border: 3px solid #555;
}

.button_border {
	border: 2px solid var(--green_color);
	color: var(--green_color);
	display: inline-block;
	text-align: center;
	padding: 10px 40px;
	font-size: 24px;
	text-decoration: none;
	font-weight: 600;
}
.wpcf7-form .button_border,
.wpcf7-form-control-wrap input[type=text],
.wpcf7-form-control-wrap input[type=email],
.wpcf7-form-control-wrap textarea {
	width: 300px;
	display: block;
	margin: 0 auto;
}
.wpcf7-form-control-wrap input[type=text],
.wpcf7-form-control-wrap input[type=email],
.wpcf7-form-control-wrap textarea {
	border: 1px solid var(--green_color);
	padding: 10px 15px;
}
.wpcf7-form .button_wrapper {
	position: relative;
	margin: 20px 0 0;
}
.wpcf7-form .button_wrapper .wpcf7-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -12px 0 0 -12px;
}
.wpcf7-form label {
	font-weight: 600;
	margin: 0 0 10px;
	display: block;
}

.modal-open {
	overflow: hidden;
}
.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto;
}
.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999998;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	outline: 0;
	background: rgba(0, 0, 0, 0.5);
}
.fade {
	transition: opacity .15s linear;
}
.fade:not(.show) {
	opacity: 0;
}
.modal-dialog {
	position: relative;
	width: auto;
		margin: 50px auto;
	pointer-events: none;
}
.modal.fade .modal-dialog {
	transition: -webkit-transform .3s ease-out;
	transition: transform .3s ease-out;
	transition: transform .3s ease-out,-webkit-transform .3s ease-out;
	-webkit-transform: translate(0,-50px);
	transform: translate(0,-50px);
}
.modal.show .modal-dialog {
	-webkit-transform: none;
	transform: none;
}
.modal-content {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0,0,0,.2);
	border-radius: 0.3rem;
	outline: 0;
	padding: 20px;
	text-align: center;
}
button.close {
	background-color: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
	top: 10px;
	right: 10px;
	position: absolute;
}
button.close svg {
	display: block;
	height: 30px;
}

label .wpcf7-form-control-wrap {
	display: block;
}


.no-list-style {
	list-style: none;
	margin: 0;
	padding: 0;
}

header {
	padding: 20px 0;
	position: relative;
}
button#menu-toggle {
	display: none;
}
#primary-menu {
	gap: 20px;
}
#primary-menu li a {
	padding-top: 15px;
	border-radius: 3px;
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	display: block;
	padding: 10px 15px;
	transition: .3s ease;
	color: var(--main_color);
	text-decoration: none;
	box-shadow: 0px 0px 15px 8px rgb(34 60 80 / 20%) inset;
}
#primary-menu li a:hover {
	color: var(--green_color);
}


header .site-branding img {
	display: block;
}
header .site-branding a {
	text-decoration: none;
	color: var(--main_color);
	font-size: 18px;
	font-weight: 500;
}

.gap15 {
	gap: 15px;
}

.breadcrumbs__separator {
	margin: 0 5px;
}
.breadcrumbs a {
	color: var(--main_color);
}



@media (max-width: 767px) {
	button#menu-toggle {
		display: block;
		width: 40px;
		height: 40px;
		border: 0 none;
		padding: 10px 5px;
		background: transparent;
	}
	button#menu-toggle span.line {
		display: block;
		height: 2px;
		width: 100%;
		background: var(--main_color);
		margin: 0 0 6px;
	}
	#primary-menu-container {
		position: absolute;
		display: none;
		top: 100%;
		left: 0;
		width: 100%;
		z-index: 10;
		padding: 15px;
		background: #fff;
		box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
	}
	#primary-menu {
		flex-direction: column;
	}
	
	.mobile_table_wrapper {
		overflow: auto;
	}
	.mobile_table_wrapper table.mobile_wrap {
		width: 100%;
	}
	
	#wpadminbar {
		display: none;
	}
	html[lang] {
		margin-top: 0 !important;
	}
	
	/* полосы прокрутки на мобилах*/
	::-webkit-scrollbar {
		-webkit-appearance: none;
	}

	::-webkit-scrollbar:vertical {
		width: 12px;
	}

	::-webkit-scrollbar:horizontal {
		height: 12px;
	}

	::-webkit-scrollbar-thumb {
		background-color: rgba(0, 0, 0, .5);
		border-radius: 10px;
		border: 2px solid #ffffff;
	}

	::-webkit-scrollbar-track {
		border-radius: 10px;
		background-color: #ffffff;
	}
}



@media (min-width: 576px) {
	.modal-dialog {
		max-width: 500px;
		margin: 100px auto;
	}
}






