/* site-header */

.site-header {
	background-color: #fff;
	padding: 12px 20px;
	line-height: 1;
	border-bottom: 1px solid #ddd;
}

.site-header--public {
	text-align: center;
}

.site-header__inner {
	display: flex;
	align-items: center;
	margin: 0 auto;
	/* max-width: 1000px; */
}

.site-header__col {
	flex: 1;
	/*background-color: #eee;*/
}

.site-header__col--first {
	text-align: left;
}

.site-header__col--nav {
	display: none;
	text-align: right;
}

.site-header__col--open-nav {
	text-align: right;
	/*background-color: #ccc;*/
}

@media (min-width: 1024px) {
    .site-header {
		padding: 17px 25px;
	}

	.site-header__col--open-nav {
		display: none;
	}

	.site-header__col--nav {
    	display: block;
    	flex: 3;
    }
}

.site-header .open-nav {
	top: 14px;
	right: 12px;
}

/* open-menu */

.open-menu {
	display: inline-block;
	line-height: 1px;
	border: 0 none;
	background: none;
	padding: 5px;
	cursor: pointer;
	position: relative;
	right: -2px;
	/* background: #eee; */
}

.open-menu__icon {
	width: 28px;
}

.open-menu__line {
    height: 2px;
    width: 100%;
    background: #3c6885;
    margin: 3px 0;
    display: inline-block;
    border-radius: 0;
    position: relative;
}


@media (min-width: 1200px) {
	/*
	.open-menu {
		display: none;
	}
	*/
}

/* btn-close */

.btn-close {
	background: none;
	color: #3c6885;
	border: 0 none;
	font-family: 'Times New Roman', serif;
	padding: 5px 6px;
	line-height: 29px;
	font-size: 50px;
	position: absolute;
	top: 0;
	right: 0;
	text-align: center;
	cursor: pointer;
	transition: 0.3s opacity;
}

.btn-close:focus {
	outline: 0 none;
	color: #68707a;
}

.btn-close--contact-modal {
	color: #fff;
	top: 20px;
	right: 20px;
	font-size: 40px;
	opacity: 0.7;
}

@media (min-width: 1400px) {
	.btn-close--contact-modal {
		top: 29px;
		right: 35px;
	}
}


@media (min-width: 600px) {
	.btn-close:hover {
		opacity: 0.9;
	}
}

.btn-close--contact-modal:hover,
.btn-close--contact-modal:focus {
	opacity: 0.9;
}

/* site-menu-xs */ 

.site-menu-xs__wrap {
	position: fixed;
	background: #222;
	background: #fff;
	width: 100%;
	right: 0;
	top: -100%;
	height: 100%;
	z-index: 1000;
	display: none;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	box-shadow: 0 0 40px 0 rgba(27, 58, 89,0.3);
	transition: .5s all;
}

.site-menu-xs__wrap--active {
	top: 0;
}

.logged-in .site-menu-xs__wrap--active {
	top: 46px;
}

@media (min-width: 783px) {
	.logged-in .site-menu-xs__wrap--active {
		top: 32px;
	}
}

.site-menu-xs__inner {
	padding: 105px 30px;
}

.site-menu-xs ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	text-align: center;
}

.site-menu-xs li {
	margin-bottom: 1.2em;
}

.site-menu-xs .sub-menu	{
	padding-left: 0;
	margin-top: 0.5em;
}

.site-menu-xs .sub-menu li {
	margin-bottom: .5em;
}

.site-menu-xs a,
.site-menu-xs a:visited {
	text-decoration: none;
	display: inline-block;
	padding: 6px 10px;
	font-size: 20px;
	color: #007cba;
	transition: 0.5s all;
}

.site-menu-xs .sub-menu a,
.site-menu-xs .sub-menu a:visited {
	font-size: 15px;
	color: #888;
}

.site-menu-xs .current-menu-item a, 
.site-menu-xs .current-menu-item a:visited {
	font-weight: 600;
}

.site-menu-xs .current-menu-item .sub-menu a, 
.site-menu-xs .current-menu-item .sub-menu a:visited {
	font-weight: normal;
}

.site-menu-xs__close-wrap {
	width: 100%;
	height: 55px;
	position: absolute;
	top: 0px;
	left: 0;
	/*background: rgba(255,255,255,0.2);*/
	/* max-width: 800px; */
}

.site-menu-xs__wrap .btn-close {
	top: 20px;
	right: 15px;
}

/* toggle-wpadminbar-btn */

.toggle-wpadminbar-btn {
    display: inline-block;
    font-size: 11px;
    font-family: 'Arial', sans-serif;
    border: 0 none;
    padding: 2px;
    color: #777;
    background: transparent;
    margin-bottom: 18px;
    cursor: pointer;
}

.toggle-wpadminbar-btn:hover {
    color: #000;
}

.toggle-wpadminbar-btn:focus {
    outline: none;
}