
@import url('https://fonts.googleapis.com/css?family=Caladea:400,700&display=swap&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

:root {
	--font-title: 'Caladea', serif;
	--font-text: 'Open Sans', sans-serif;
	--color-theme-red: #DB021B;
}

* {
	font-size: 100%;
}
html, body {
	font-family: var(--font-text);
	font-weight: 400;
	font-size: 16px;
	color: #333;
	line-height: 1;
	height: 100%;
}
html {
	min-height: 100%;
	*height: auto;
}
body {
	background-color: #efefef;
	display: flex;
	flex-direction: column;
}
.container-main {
	flex-grow: 1;
}



input[type="button"]:focus, button:focus{
	outline:none;
}
input[type="button"]::-moz-focus-inner, button::-moz-focus-inner {
	border: 0;
}


h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	margin: 0;
	font-family: var(--font-title);
}

h1, .h1 {
	font-size: 2.5rem;
}
h2, .h2 {
	font-size: 2rem;
}
h3, .h3 {
	font-size: 1.75rem;
}
h4, .h4 {
	font-size: 1.5rem;
}
h5, .h5 {
	font-size: 1.25rem;
}
h6, .h6 {
	font-size: 1rem;
}


a {
	color: #333;
}
a:hover {
	color: #DB021B;
	text-decoration: none;
}


/*
// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { }
*/


.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0px auto;
}
@media (max-width: 767.98px) {
	.img-responsive {
		width: 100%;
	}
}


picture.lazy{
	opacity: 0;
	transition: opacity .3s;
}


@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	} to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
.fadeInDown {
	animation-name: fadeInDown;
}

.is-sticky {
	top: 0;
	left: 0;
	*position: fixed;
	width: 100%;
	z-index: 9;
	background-color: rgba(255, 255, 255, 0.97);
	-webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
	-webkit-animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
	animation: 900ms cubic-bezier(0.2, 1, 0.22, 1) 0s normal none 1 running fadeInDown;
}

@media (max-width: 991.98px) {
	.sticky.is-sticky {
		position: fixed;
	}
}
@media (min-width: 992px) {
	.sticky-lg.is-sticky {
		position: fixed;
	}
	.container-sticky {
		max-width: 1140px;
		margin: 0 auto;
	}
	.is-sticky .container-sticky {
		padding: 0 1rem;
	}
}


.scroll-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	text-align: center;
	cursor: pointer;
	z-index: 999;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	border-radius: 4px;
	background-color: #DB021B;
	-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
	box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.scroll-top.not-visible {
	bottom: -50px;
	visibility: hidden;
	opacity: 0;
}
.scroll-top i {
	line-height: 40px;
	color: #fff;
	font-size: 25px;
}


.gdprChangePreferences_btn {
	display: none;
}


.container-main {
	background-color: #fff;
	padding-bottom: 1.875rem;
}
.wrapper {
	margin: 0 auto;
}



.header {
	position: relative;
}
@media (max-width: 991.98px) {
	.header {
		padding: 1rem 0;
		border-bottom: 1px solid #ddd;
	}
}
@media (min-width: 992px) {
	.header-middle {
		position: relative;
	}
}
.header-middle.is-sticky {
	padding: 0 15px;
	border-bottom: 1px solid #ddd;
}
.header-middle.is-sticky .logo img {
	padding: .5rem;
}
.header-bottom.is-sticky .menu.menu-main {
	border-bottom: 0;
	margin-bottom: 0;
}


.footer {
	background-color: #e3e3e3;
	padding-top: 1.875rem;
	padding-bottom: 1.875rem;
}
.footer .logo {
	width: 90%;
}

.footer__contact p {
	display: flex;
	font-size: .8rem;
	line-height: 1.2rem;
	margin-bottom: .5rem;
}
.footer__contact i {
	margin-right: 1rem;
	padding-top: .1rem;
	font-size: .9rem;
}
.footer__contact span {
	display: inline-block;
}
/*@media (max-width: 767.98px) {
	.footer__contact p {
		font-size: .8rem;
		margin-bottom: .5rem;
	}
}*/
.footer__copyright {
	display: inline-block;
	font-size: .8rem;
}
.footer__powered {
	display: inline-block;
	font-size: .8rem;
}



.menu ul {
	display: -ms-flexbox;
	-ms-flex-direction: row;
	display: flex;
	flex-direction: row;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}
.menu input[type="checkbox"],
.menu ul label.drop-icon {
	display: none;
}
.menu .menu-dropdown {
	display: none;
	border-radius: .125rem;
	margin-left: -1.25rem;
	position: absolute;
	top: 3rem;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 10.9375rem;
	z-index: 100;
}
.menu .menu-item:hover .menu-dropdown {
	display: block;
}
.menu .menu-sub {
	flex-direction: column;
	background: #fff;
	border: .0625rem solid #ddd;
	border-radius: .125rem;
	padding: .3rem 1.25rem 1rem;
}
.menu .menu-item {
	padding: 0 .6rem;
}
.menu li:first-child {
	*padding-left: 0;
}
.menu .menu-link {
	display: block;
	position: relative;
	font-size: .84rem;
	color: #111;
	line-height: 1rem;
	text-decoration: none;
	cursor: pointer;
	margin: .5rem 0;
	padding: .5rem 0;
}
.menu .menu-link:hover {
	color:#DB021B;
}
.menu .menu-link .txt {
	font-weight: 600;
}
.menu .menu-sub .menu-item {
	padding:.7rem 0 0 0;
}
.menu .menu-sub .menu-link {
	margin: 0;
	padding: .25rem 0;
}
.menu .hide-txt .txt {
	display: none;
}


.menu.menu-top .menu-link {
	font-size: .76rem;
}
.menu.menu-top li:first-child {
	padding-left: 0;
}


.menu.menu-topright ul {
	justify-content: flex-end;
}


.menu.menu-main {
	border-bottom: 1px solid #ddd;
	position: relative;
	margin-bottom: 1.25rem;
	font-weight: 600;
}
.menu.menu-main li:first-child {
	padding-left: 0;
}
.menu.menu-main .menu-link {
	font-weight: 600;
}
.menu.menu-main .hlight .menu-link {
	background-color: #DB021B;
	padding-left: .4rem;
	padding-right: .4rem;
	color: #fff;
}
.menu.menu-main .hlight:hover .menu-link {
	background-color: #B00317;
}


.menu.menu-footer ul {
	-ms-flex-direction: column;
	flex-direction: column;
}
.menu.menu-footer .menu-link {
	margin: 0;
	padding: 0;
}
.menu.menu-footer li {
	margin-top: .5rem;
	padding-left: 0;
}
.menu.menu-footer li:first-child {
	margin-top: 0;
}







.image_ratio {
	width: 100%;
	*padding-top: 56.25%;
	padding-top: 62.57%;
	overflow: hidden;
	position: relative;
}
.image_ratio img {
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: -100%;
	right: -100%;
	bottom: -100%;
	left: -100%;
}


.image_ratio2 {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
}
.image_ratio2::before {
	display: block;
	content: "";
}
.image_ratio2_16by9 {
	padding-top: 56.25%;
}
.image_ratio2 img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}


.infobox {
	font-size: .76rem;
	height: 100%;

}
.infobox__col {
	padding: 0 4px;
}

.infobox__today {
	line-height: 1.1rem;
}

.infobox__weather {
	line-height: 1.1rem;
	text-align: center;
	*padding: 0 4px;
}
.weather__iconbox {
	margin: 0 auto;
	display: inline-block;
}
.weather__temp {
	font-size: 1.3rem;
	margin-left: .5rem;
}
.weather__summary {
	text-align: center;
}

.infobox__currency {
	text-align: right;
	line-height: 1.1rem;
}


.hashtagcloud {
	font-size:.76rem;
	line-height: 1.2;
	font-weight: 600;
}
.hashtagcloud div {
	margin: .125rem;
	padding: .25rem;
	float: left;
	background-color: #efefef;
}
.hashtagcloud a {
	color: #DB021B;
}
.hashtagcloud a:hover {
	color: #333;
}


.postbox a {
	text-decoration: none;
	color: #111;
	transition: all 0.1s ease;
}
.postbox__col a:hover  {
	color: #DB021B;
}
.postbox__boxtitle {}
.postbox__col {}
.postbox__wrap {
	position: relative;
}
.postbox__image {}
.postbox__image img {}
.postbox__image-caption {}
.postbox__content {}
.postbox__content-header {}
.postbox__category {
	font-size: .7rem;
	line-height: 1;
	color: #666666;
	text-transform: uppercase;
}
.postbox__title {
	line-height: 1.2;
	font-family: var(--font-title);
}
.postbox__created {
	color: #999;
	font-size: .7rem;
}
.postbox__intro {
	line-height: 1.6;
	word-wrap: break-word;
}

.postbox__related-title {
	font-family: var(--font-title);
	font-size: 1.5rem;
	line-height: 1.3;
	position: relative;
	padding-bottom: 5px;
}
.postbox__related-title::after {
	background: #DB021B;
	content: "";
	left: -1.3rem;
	position: absolute;
	top: 0;
	width: .0625rem;
	height: 100%;
}


.postbox__gallery {
	position: relative;
}
.postbox__gallery .owl-nav {
	font-size: 3rem;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
}
.postbox__gallery .owl-carousel .owl-nav button.owl-prev,
.postbox__gallery .owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 40%;
	margin: 0;
	border-radius: 0;
}
.postbox__gallery .owl-carousel .owl-nav button.owl-prev {
	left: 2%;
}
.postbox__gallery .owl-carousel .owl-nav button.owl-next {
	right: 2%;
}
.postbox__gallery .owl-theme .owl-nav [class*="owl-"] {
	display: block;
	color: #fff;
	background: transparent;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
	opacity: 0.5;
}
.postbox__gallery .owl-theme .owl-nav [class*="owl-"]:hover {
	color: #DB021B;
}
.postbox__gallery .owl-theme .owl-dots {
	position: absolute;
	bottom: -2rem;
	text-align: center;
	width: 100%;
}
.postbox__gallery .owl-theme .owl-dots .owl-dot span {
	background: #e3e3e3;
}
.postbox__gallery .owl-theme .owl-dots .owl-dot.active span,
.postbox__gallery .owl-theme .owl-dots .owl-dot:hover span {
	background: rgba(198,0,0,0.5);
}



.__h1 .postbox__image.image_ratio2::before {
	padding-top: 37.47%;
}
/*.__h1 .postbox__image {
	width: 100%;
	max-height: 26rem;
	overflow: hidden;
}
.__h1 .postbox__image img {
	width: 100%;
}
@media (max-width: 575.98px) {
	.__h1 .postbox__image img {
		height: 26rem;
		object-fit: cover;
	}
}*/
.__h1 .postbox__content {
	margin-top: -4rem;
	background-color: #fff;
	padding: 1rem;
	min-height: 6rem;
}
.__h1 .postbox__category {
	margin-bottom: .3rem;
	color: #DB021B;
}
.__h1 .postbox__title {
	font-size: 2.5rem;
}
.__h1 .postbox__intro {
	font-size: .86rem;
	margin-top: .44rem;
}

@media (max-width: 767.98px) {
	.__h1 .postbox__content {
		margin-top: -1rem;
		padding: .5rem;
	}
	.__h1 .postbox__intro {
		font-size: .8rem;
		margin-top: .44rem;
	}
	.__h1 .postbox__title {
		font-size: 1.25rem;
	}
}

@media (max-width: 576.98px) {
	.__h1 .postbox__content {
		margin-top: -2rem;
	}
	.__h1 .postbox__image.image_ratio2::before {
		padding-top: 62.57%;
	}
}

.__h1 .owl-theme .owl-nav {
	margin:0;
	*position: relative;
	width: 100%;
	font-size: 3rem;
}
.__h1 .owl-carousel .owl-nav button.owl-prev,
.__h1 .owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 40%;
	margin: 0;
	border-radius: 0;
}

@media (max-width: 767.98px) {
	.__h1 .owl-theme .owl-nav {
		font-size: 1.5rem;
	}
	.__h1 .owl-carousel .owl-nav button.owl-prev,
	.__h1 .owl-carousel .owl-nav button.owl-next {
		top: 20%;
	}
}

@media (max-width: 576.98px) {
	.__h1 .owl-carousel .owl-nav button.owl-prev, 
	.__h1 .owl-carousel .owl-nav button.owl-next {
		top: 35%;
	}
}

.__h1 .owl-carousel .owl-nav button.owl-prev span,
.__h1 .owl-carousel .owl-nav button.owl-next span {
	display: block;
}
.__h1 .owl-carousel .owl-nav button.owl-prev {
	left: 2%;
}
.__h1 .owl-carousel .owl-nav button.owl-next {
	right: 2%;
}
.__h1 .owl-carousel .owl-nav button.owl-prev span {
	padding-left: 3rem;
	padding-right: 1.5rem;
}
.__h1 .owl-carousel .owl-nav button.owl-next span {
	padding-right: 3rem;
	padding-left: 1.5rem;
}
.__h1 .owl-theme .owl-nav [class*="owl-"] {
	background-color: transparent;
	color: #fff;
	opacity: .7;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.__h1 .owl-theme .owl-nav [class*="owl-"]:hover {
	opacity: 1;
}



.postbox.__h2 {}

.__h2 .postbox__boxtitle {
	position: relative;
	margin-top: 1.875rem;
}
.__h2 .postbox__boxtitle span {
	display: inline-block;
	line-height: 1;
	border-top: .25rem solid #DB021B;
	padding-top: .5rem;
}

.__h2 .postbox__col {
	margin-top: 1.875rem;
}
.__h2 .postbox__wrap {
	height: 100%;
	display: -ms-flexbox;
	-ms-flex-direction: column;
	display: flex;
	flex-direction: column;
	border: .0625rem solid #ddd;
	border-radius: .125rem;
}
.__h2 .postbox__image img {
	border-radius: .125rem;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.__h2 .postbox__content {
	background-color: #fff;
	padding: 1.25rem 1.25rem 1.25rem 3rem;
	height: 100%;
}
.__h2 .postbox__content-header {
	position: relative;
}
.__h2 .postbox__content-header::after {
	background: #DB021B;
	content: "";
	left: -1.3rem;
	position: absolute;
	top: 0;
	width: .0625rem;
	height: 100%;
}
.__h2 .postbox__category {
	margin-bottom: .3rem;
	color: #DB021B;
}
.__h2 .postbox__title {
	*color: #111;
	font-size: 1.25rem;
	line-height: 1.3;
}
.__h2 .postbox__intro {
	color: #333;
	font-size: .8rem;
	margin-top: .8rem;
	line-height: 1.6;
	margin-bottom: 0;
	padding-right: .6rem;
}
@media (max-width: 767.98px) {
	.__h2 .postbox__col {
		margin-top: 1rem;
	}
	.__h2 .postbox__wrap {
		border: 0;
	}
	.__h2 .postbox__image img {
		border-radius: 0;
	}
	.__h2 .postbox__content {
		padding: 1rem 1rem 1rem 2rem;
	}
	.__h2 .postbox__content-header::after {
		left: -.8rem;
	}
}



.__posts .postbox__col {
	margin-top: 1.875rem;
}
.__posts .postbox__wrap {
}
.__posts .postbox__image img {
	border-radius: .125rem;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.__posts .postbox__content {
	background-color: #fff;
	padding: 1.25rem 1.25rem 1.25rem 3rem;
	height: 100%;
}
.__posts .postbox__content-header {
	position: relative;
}
.__posts .postbox__content-header::after {
	background: #DB021B;
	content: "";
	left: -1.3rem;
	position: absolute;
	top: 0;
	width: .0625rem;
	height: 100%;
}
.__posts .postbox__category {
	margin-bottom: .3rem;
	color: #DB021B;
}
.__posts .postbox__title {
	*color: #111;
	font-size: 1.25rem;
	line-height: 1.3;
}
.__posts .postbox__created {
	margin-top: .25rem;
}
.__posts .postbox__intro {
	color: #333;
	font-size: .8rem;
	margin-top: .8rem;
	line-height: 1.6;
	margin-bottom: 0;
	padding-right: .6rem;
}
.__posts .have-result,
.__posts .no-result {
	padding-top: .25rem;
	font-size: .85rem;
	color: #777;
	margin-top: 1rem;
}
@media (max-width: 767.98px) {
	.__posts .postbox__content {
		padding: .5rem 0;
	}
	.__posts .postbox__content-header::after {
		left: -.8rem;
	}
	.__posts .postbox__title {
		font-size: 1rem;
		line-height: 1.1;
	}
}
@media (max-width: 991.98px) {
	.__posts .postbox__image img {
		border-radius: 0;
	}
	.__posts .postbox__image.image_ratio {
		padding-top: 100%;
	}
	.__posts .have-result,
	.__posts .no-result {
		padding-top: 1rem;
	}
}



.posts__pagination {
	margin-top: 1.875rem;
}
.posts__pagination .pagination {
	margin: 0;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.posts__pagination .page-item {
	margin-right: .5rem;
	margin-bottom: .5rem;
}
.posts__pagination .page-item:last-child {
	margin-right: 0;
}
.posts__pagination .page-item:first-child .page-link,
.posts__pagination .page-item:last-child .page-link {
	border-radius: 0;
}
.posts__pagination .page-link {
	position: relative;
	display: block;
	padding: .5rem .75rem;
	margin: 0;
	line-height: 1.25;
	border: 1px solid #ddd;
	background-color: #fff;
	color: #666666;
}
.posts__pagination .page-link:hover {
	border: 1px solid #bababa;
	color: #DB021B;
}
.posts__pagination .page-item.disabled .page-link {

}
.posts__pagination .page-item.active .page-link {
	border-color: #ddd;
	background-color: #fff;
	color: #DB021B;
}



.__post.postbox {
	margin-top: 1.875rem;
}
.__post .postbox__category {
	margin-bottom: .3rem;
	color: #DB021B;
}
.__post .postbox__content-header {
    position: relative;
}
.__post .postbox__content-header::after {
	background: #DB021B;
	content: "";
	left: -1.3rem;
	position: absolute;
	top: 0;
	width: .0625rem;
	height: 100%;
}
@media (max-width: 767.98px) {
	.__post .postbox__content-header::after {
		background: none;
		left: 0;
		top: 0;
		width: 0;
		height: 0;
	}
	.postbox__title {
		font-size: 2rem;
		line-height: 1.1;
	}
}
.__post .postbox__created {
	margin-top: .25rem;
}
.__post .postbox__image {
	font-size: .75rem;
	line-height: 1.2;
	color: #666666;
	margin-top: 1.875rem;
}
.__post .postbox__image-caption {
	font-size: .7rem;
	line-height: 1;
	color: #666666;
	margin-top: .7rem;
}
.__post .postbox__intro {
	font-weight: 700;
	margin-top: 1.875rem;
}
.__post .postbox__content-content {
	margin-top: 1.875rem;
	line-height: 1.6;
	text-align: left;
}
.__post .postbox__content-content a {
	color: #DB021B;
}
.__post .postbox__content-content a:hover {
	text-decoration: underline;
}
.__post .embed-responsive {
	margin: 2rem 0;
}
.__post .postbox__gallery {
	margin: 2rem 0;
}


.search__layer {
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	overflow: hidden;
	width: 100%;
	height:0;
	transition: .2s ease;
	z-index: 5;
	background-color: #fff;
	border: 0;
}
.search__layer.active {
	bottom: 0;
	height: 100%;
}
@media (min-width: 992px) {
	.search__layer.active {
		border-top: 1px solid #ddd;
		border-bottom: 1px solid #ddd;
	}
}
.search__form {
	height: 100%;
	width: 100%;
}
.search__form form {
	width: 100%;
}
.search__inputbox {
	padding: .25rem;
}
.search__input {
	background-color: #fff;
	border: 1px solid #ddd;
	flex:1 1 100%;
}
.search__input input{
	width: 100%;
	height: 2.25rem;
	background-color: transparent;
	border: 0;
	padding: .25rem .5rem;
	font-size: .9rem;
	font-weight: 600;
}
.search__button {
	flex:1 10 100%;
}
.search__button button {
	width: 100%;
	height: 100%;
	text-align: center;
	padding: 0;
	border: 0;
	background-color: transparent;
}
.searchOpenBtn,
.searchCloseBtn {
	cursor: pointer;
}

@media (max-width: 991.98px) {
	.is-sticky .searchCloseBtn .search__button-close {
		padding-right: 15px;
	}
	.search__input input{
		height: 2rem;
	}
}
@media (max-width: 767.98px) {
	.search__input input{
		height: 1.75rem;
	}
	.search__button {
		flex: 1 7 100%;
	}
	.is-sticky .search__layer.active ~ .logobox {
		height: 4.5rem;
		
	}
}
@media (max-width: 575.98px) {
	.search__input input{
		height: 1.5rem;
	}
	.search__button {
		flex: 1 5 100%;
	}
	.is-sticky .search__layer.active ~ .logobox {
		height: 4rem;
	}
	
}
.search__button-close {
	display: inline-block;
	font-size: 2rem;
	font-weight: 400;
	cursor: pointer;
}
.search__type {
	padding: .25rem;
	padding-left: .5rem;
	font-size: .80rem;
}
.search__type label {
	cursor: pointer;
	margin: 0;
	margin-right: 1rem;
}
.search__type input[type="radio"] {
	display: none;
}
.search__type input[type="radio"] + label > span.inp {
	position: relative;
	display: inline-block;
	margin: 0;
	width: .9rem;
	height: .9rem;
	background-color: #fff;
	border: 1px solid #333;
	border-radius: 50%;
	margin-right: .5rem;
	cursor: pointer;
}
.search__type input[type="radio"]:checked + label > span.inp::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	border: 2px solid #fff;
	border-radius: 50%;
	background-color: var(--color-theme-red);
}



.left_panel {
	position: fixed;
	top: 0;
	bottom: 0;
	*width: 70%;
	height: 100%;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	/*transform: translate3d(-100%,0,0);*/
	left:-100%;
	overflow-x: hidden;
	overflow-y: scroll;
	z-index: 3000;
	background-color: #333;
}
.left_panel__btnOpen {
	cursor: pointer;
}
.left_panel.open {
	left:0;
}
@media (max-width: 575.98px) { 
	.left_panel {
		width: 70%;
	}
}
@media (min-width: 576px) and (max-width: 767.98px) {
	.left_panel {
		width: 60%;
	}
}
@media (min-width: 768px) and (max-width: 991.98px) {
	.left_panel {
		width: 50%;
	}
}
.left_panel__open{
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
}
.left_panel__wrap {
	position: relative;
	width: 100%;
	padding: 1.25rem;
}
.left_panel__overlay {
	background-color: rgba(0, 0, 0, 0.4);
	cursor: pointer;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	transition: visibility .5s linear,opacity .4s ease-in-out;
	z-index: 2000;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.left_panel__open .left_panel__overlay {
	visibility: visible;
	opacity: 1;
}


.container-main, 
.footer {
	position: relative;
	left: 0;
	-webkit-transition: left .4s ease-in-out;
	transition: left .4s ease-in-out;
}
.left_panel__open .container-main, 
.left_panel__open .footer {
	-webkit-filter: blur(3px);
	filter: blur(3px);
	left: 50%;
}


.left_panel .infobox {
	color: #fff;
	font-size: .8rem;
	font-weight: 600;
	line-height: 1.1;
	padding: 0 0 1.25rem .5rem;
	display: flex;
}
.left_panel .infobox a {
	color: #fff;
}
.left_panel .infobox__today {
	display: inline-block;
	width: 50%;
}
.left_panel .infobox__social {
	display: inline-block;
	width: 50%;
	text-align: right;
	font-size: 1.2rem;
}



.mmenu {
	font-size: .84rem;
	font-weight: 600;
	line-height: 1.1rem;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.mmenu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mmenu input[type="checkbox"] {
	display: none;
}
.mmenu li, 
.mmenu a {
	position: relative;
	display: block;
	*text-shadow: 1px 1px 0 rgba(0, 0, 0, .125);
}
.mmenu .menu-main li {
	border-bottom: 1px solid #454545;
}
.mmenu .menu-sub li {
	border-bottom: 0;
}
.mmenu .menu-dropdown {
	display: none;
	top: 100%;
	z-index: 100;
}
.mmenu input[type="checkbox"]:checked ~ .menu-dropdown {
	display: block;
}
.mmenu li label.drop-icon {
	position: absolute;
	right: 0;
	top: 0;
}
.mmenu a {
	padding: .5rem;
	width: 80%;
	float: left;
}
.mmenu label {
	margin: 0;
	color: #fff;
	cursor: pointer;
	width: 20%;
	float: left;
}
.mmenu label.drop-icon {
	padding: .5rem;
	font-size: .6em;
	text-align: right;
}
.mmenu label.drop-icon ._up{
	display: none;
}
.mmenu  input[type="checkbox"]:checked ~ .clearfix .drop-icon ._up {
	display: inline-block;
}
.mmenu  input[type="checkbox"]:checked ~ .clearfix .drop-icon ._down {
	display: none;
}
.mmenu .menu-sub {
	*flex-direction: column;
	*background: #fff;
	*border: .0625rem solid #ddd;
	*border-radius: .125rem;
	padding: .3rem 0 .3rem 1rem;
}
/*.Xmenu-item {
	padding: 0 .6rem;
}
.Xmenu li:first-child {
	*padding-left: 0;
}*/
.mmenu .menu-link {
	color: #fff;
	cursor: pointer;
}
.mmenu .menu-link:hover {
	color: #DB021B;
}
/*.Xmenu-link {
	display: block;
	position: relative;
	font-size: .84rem;
	color: #111;
	line-height: 1rem;
	text-decoration: none;
	cursor: pointer;
	margin: .5rem 0;
	padding: .5rem 0;
}
.Xmenu-link .txt {
	font-weight: 600;
}
.Xmenu-sub .menu-item {
	padding:.7rem 0 0 0;
}
.Xmenu-sub .menu-link {
	margin: 0;
	padding: .25rem 0;
}*/
.mmenu .m-hide-txt .txt {
	display: none;
}
.mmenu .m-hide-icon i {
	display: none;
}



.banner {
	margin-top: 1.875rem;
}
@media (max-width: 767.98px) {
	.banner {
		margin-top: 1rem;
	}
}
.banner img {
	display: block;
	width: 100%;
	height: auto;
}
.postbox.__post .banner {
	margin-top: 0;
	margin-bottom: 1.875rem;
}
