/* Input Placeholder */
input::-webkit-input-placeholder {
	color: #ccc;
}

input::-moz-placeholder {
	color: #ccc;
}

input:-ms-input-placeholder {
	color: #ccc;
}

textarea::-webkit-input-placeholder {
	color: #ccc;
}

textarea::-moz-placeholder {
	color: #ccc;
}

textarea:-ms-input-placeholder {
	color: #ccc;
}

#search-form input::-webkit-input-placeholder {
	color: #fff;
}

#search-form input::-moz-placeholder {
	color: #fff;
}

#search-form input:-ms-input-placeholder {
	color: #fff;
}

/* SELECT Color */
::selection {
	background: var(--color-primary-hover);
	color: #fff;
	text-shadow: none;
}

::-webkit-selection {
	background: var(--color-primary-hover);
	color: #fff;
	text-shadow: none;
}

::-moz-selection {
	background: var(--color-primary-hover);
	color: #fff;
	text-shadow: none;
}





/***	 GO TO TOP 			*/
button#goto_top {
	position: sticky;
	bottom: 45px;
	right: 0;
	margin: 0 0 0 auto;
	z-index: 123456;
	background-color: rgba(0, 0, 0, 0.6);
	border: none;
	color: #fff;
	box-sizing: content-box;
	outline: none;
	width: 18px;
	font-size: 16px;
	opacity: 0;
	text-align: center;
	padding: 12px 15px;
	cursor: pointer;
	transition: color 300ms, background-color 300ms, opacity 300ms;
	-moz-transition: color 300ms, background-color 300ms, opacity 300ms;
	-o-transition: color 300ms, background-color 300ms, opacity 300ms;
	-webkit-transition: color 300ms, background-color 300ms, opacity 300ms;
	display: block;
}

button#goto_top:hover {
	background-color: rgba(0, 0, 0, 0.8);
	;
}

body.do_sticky button#goto_top {
	opacity: 1
}

/***	 GO TO TOP 			*/




/***	 MM 			*/
.mm-wrp {
	display: flex;
	opacity: 0;
	background: rgba(255, 255, 255, 0.6);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 210;
	align-items: center;
	justify-content: center;
	transition-property: opacity, transform;
	transition-duration: 150ms, 0ms;
	transition-delay: 700ms, 850ms;
	transform: translateY(-110vh);
	-webkit-transform: translateY(-110vh);
	-moz-transform: translateY(-110vh);
	-ms-transform: translateY(-110vh);
	-o-transform: translateY(-110vh);
}

#js-open-mm:checked+.mm-wrp {
	opacity: 1;
	transition-property: opacity, transform;
	transition-duration: 150ms, 0s;
	transition-delay: 0ms, 0s;
	transform: translateY(0);
}

.mm-box {
	height: 70vh;
	width: 4px;
	position: relative;
	display: flex;
	transition-property: width, transform;
	transition-duration: 250ms;
	transition-delay: 250ms, 500ms;
	transform: translateY(-100vw);
}

.mm-box-left {
	width: 50%;
	background-color: #000;

}

.mm-box-right {
	width: 50%;
	background-color: rgba(0, 0, 0, 0.75);
	position: relative;
}

.mm-box-content {
	opacity: 0;
	transition-property: opacity;
	transition-duration: 250ms;
	transition-delay: 0ms;
}

#js-open-mm:checked+.mm-wrp .mm-box-content {
	opacity: 1;
	transition-property: opacity;
	transition-duration: 250ms;
	transition-delay: 780ms;
}

.mm-box-content--left {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	position: relative;
}

.mm-box-content--right {
	height: calc(100% - 80px);
	max-width: calc(100% - 80px);
	margin: 40px;
	overflow: auto;
}

#js-open-mm:checked+.mm-wrp .mm-box {
	width: 1050px;
	transition-property: width, transform;
	transition-delay: 500ms, 150ms;
	transition-duration: 250ms, 250ms;
	transform: translateY(0);
}

ul.mob-menu {
	list-style: none;
	min-width: 70%;
	max-height: 100%;
	overflow: auto;
}

ul.mob-menu li a {
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	font-family: 'Raleway', arial, helvetica;
	font-weight: 800;
	color: #fff;
	padding: 3px;
	display: inline-block;
}

label.close-sbare {
	position: ABSOLUTE;
	top: 8px;
	right: 10px;
	line-height: 1;
	cursor: pointer;
}

label.close-sbare svg {
	width: 20px;
	height: auto;
	line-height: 1;
}

.widget-box ul {
	list-style: none;
}

.widget-box ul li {
	margin: 10px 0
}

.menubar-widget ul li a {
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	font-family: 'Raleway', arial, helvetica;
	font-weight: 800;
	color: #fff;
}

/***	 MM 			*/



/***	 MSBARE 					*/
.msbare {
	display: flex;
	background: rgba(255, 255, 255, 0.6);
	position: fixed;
	top: 0;
	right: 0;
	opacity: 0;
	width: 100%;
	height: 100vh;
	z-index: 210;
	transition-property: opacity, transform;
	transition-duration: 250ms, 0ms;
	transition-delay: 250ms, 500ms;
	transform: translateY(-110vh);
	-webkit-transform: translateY(-110vh);
	-moz-transform: translateY(-110vh);
	-ms-transform: translateY(-110vh);
	-o-transform: translateY(-110vh);
}

#js-open-sbare:checked+.msbare {
	transform: translateY(0);
	transition-property: opacity, transform;
	transition-duration: 550ms, 0ms;
	transition-delay: 0ms, 0ms;
	opacity: 1;
}

.msbare-content {
	width: 320px;
	height: 100%;
	margin: 0 0 0 auto;
	background: rgba(0, 0, 0, 0.7);
	transition-property: transform;
	transition-duration: 250ms;
	transition-delay: 0ms;
	transform: translateX(350px);
	padding: 40px 5px 45px 15px;
}

#js-open-sbare:checked+.msbare .msbare-content {
	transition-property: transform;
	transition-duration: 250ms;
	transition-delay: 280ms;
	transform: translateX(0);
}

.b20-widget h2.widgettitle {
	font-size: 18px;
}

.msbare-content__reils {
	max-height: 100%;
	overflow: auto;
	padding-right: 5px;
}

.mm-menu-mobile {
	display: none;
}

.b20-widget {	margin: 40px 0; }
.b20-widget:first-child { margin-top: 0;}
.b20-widget:last-child { margin-bottom: 0;}
form.search.b20s label {
	display: block;
}

form.search.b20s .search-input {
	display: block;
	width: 96%;
	padding: 5px;
	box-sizing: border-box;
}

/***	 end:MSBARE 			*/


/*  TPL IN LOOP */
article.dr_post_item.tpl-inloop {
	padding-bottom: 30px;
	margin: 30px 0 60px;
	position: relative;
	padding-top: 30px;
	padding-left: 30px;
}

.article_box {
	border: solid 1px #666;
	z-index: 1;
	position: relative;
}

.tpl-inloop .thumb {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 400px;
	height: 100%;
	max-height: 100%;
}

.inloo_post_info {
	width: calc(100% - 390px);
	margin: 0 0 0 auto;
	padding: 20px;
}

.tpl-inloop .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

h2.entery_title {
	font-size: 22px;
	color: #000;
	margin-top: 0;
	margin-bottom: 0;
	text-transform: none;
	line-height: 110%;
	margin-top: 10px;
	letter-spacing: 1px;
	text-align: left;
	font-weight: 400;
}

h2.entery_title a {
	text-decoration: none;
	font-size: 22px;
	line-height: 110%;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
}

time.data-in-loop {
	width: 100%;
	float: left;
	margin-top: 0;
	margin-bottom: 10px;
}

a.readmore {
	clear: left;
	font-weight: 600;
	text-decoration: none;
	font-size: 13px;
	text-transform: none;
	letter-spacing: 1px;
	display: block;
	margin-top: 30px;
	margin-bottom: 20px;
	height: 14px;
	width: 90%;
	color: #fff;
	line-height: 1;
}

a.readmore:hover {
	opacity: 0.6;
}

.in-loop-title {
	font-size: 28px;
	text-transform: uppercase;
	margin: 0;
	margin-top: 40px;
	color: #fff;
	font-weight: 800;
	line-height: 120%;
	text-align: center;
}

.exerpt-in-loop a {
	opacity: 0.6;
}
/*  end:TPL IN LOOP */







/**				SINGLE POST     */

.entry-meta.top {
	margin: 20px 0;
}

.post-content {
	font-size: 16px;
	letter-spacing: 0.7px;
}

.post-content p {
	margin: 1em 0;
}

.post-content p a { opacity: 0.6; }
.post-content p a:hover { opacity: 1; }

.post-content p:first-child {
	text-indent: 20px;
}

.post-content twitter-widget {
	display: block;
	margin: 2em auto;
	max-width: 100%;
}

.post-content .twitch_iframe_wrp {
	width: 100%;
	margin: 2em auto;
	max-width: 851px;
	position: relative;
	padding-top: 56.25%;
}

.post-content .twitch_iframe_wrp iframe.twitch_iframe {
	position: ABSOLUTE;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	margin: 0;
	padding: 0;
}

.post-content iframe {
	display: block;
	margin: 2em auto;
	max-width: 100%;
}

.post-content ul, .post-content ol {
	margin: 2em 0;
	padding-left: 45px;
}

.post-content .wp-video {
	margin: 2em auto;
}

.post-content blockquote {
	padding: 20px;
	margin: 2em auto;
	font-size: 20px;
	position: relative;
	border-left: 4px solid #414141;
}

.post-content p img {
	margin: 2em auto 0;
	display: block;
	height: auto;
}

.post-content .wp-audio-shortcode, .post-content .mejs-audio {
	margin: 2em 0;
}


.post-footer {
	margin: 3em 0 2em;
}

p.pst-footer__item {
	margin-top: 1em;
}

p.pst-footer__item > span {
	line-height: 1;
	vertical-align: middle;
}

span.pst-footer__item--ico {
	margin-right: 15px;
	display: inline-block;
	width: 10px;
}

/**	 end: SINGLE POST     */


.article-post-content  > div.wpcf7, .post-content > div.wpcf7 { margin: 30px auto; }
.article-post-content  form.wpcf7-form, .post-content form.wpcf7-form {display: flex;flex-direction: column;align-items: center;max-width: 350px;margin: auto;}
.article-post-content  .wpcf7-form-control-wrap, .post-content .wpcf7-form-control-wrap {display: block;width: 100%;margin-bottom: 15px;}
.article-post-content  .wpcf7-form-control, .post-content .wpcf7-form-control {display: block;width: 100%;padding: 7px 15px;}
.article-post-content  .wpcf7-not-valid-tip, .post-content .wpcf7-not-valid-tip {font-size: 0.9em;}
.article-post-content  .wpcf7-form-control.wpcf7-submit, .post-content .wpcf7-form-control.wpcf7-submit {background-color: var(--color-primary);border: none;color: #000;}
.article-post-content  .wpcf7-form-control.wpcf7-submit:hover, .post-content .wpcf7-form-control.wpcf7-submit:hover { opacity: 0.8; }


























/***	 F O O T E R    	*/
footer#theme_footer {
	padding: 10px 0;
	background-color: #010101;
	margin-top: 40px;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 200;
}

.copyright {
	color: #fff;
	padding: 0px 0;
	text-align: center;
	font-size: 14px;
	text-transform: uppercase;
}

.copyright a {
	color: #fff;
	cursor: pointer;
}

.copyright a:hover {
	color: #a0a0a0;
}


.prev-and-next-btns {
	position: fixed;
	top: auto;
	left: auto;
	right: 0;
	bottom: 0;
	width: 162px;
	height: 45px;
	display: flex;
	align-items: center;
}

a.pagi-btn {
	background: #212121;
	display: inline-block;
	height: 100%;
	width: 80px;
	position: relative;
}

a.pagi-btn.next {
    margin-left: auto;
}

a.pagi-btn:hover {
	opacity: 0.7;
}

a.pagi-btn:before {
    content: '';
    height: 16px;
    width: 16px;
    display: block;
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    margin: 14px auto 0;
}

a.pagi-btn.prev:before {
    transform: rotate(135deg);
}

/***	 F O O T E R    	*/


/***	 4 0 4    	*/
.posts_in_loop.b20_404 {
	display: block;
}

.last_posts_404 {
	display: flex;
	flex-wrap: wrap;
}

.info-404 {
	text-align: center;
}

.info-404>h1 {
	font-size: 100px;
	margin: 0;
	line-height: 1.4;
}

.info-404>h2 {
	font-size: 2rem;
	line-height: 1;
}

.info-404>p {
	margin: 30px 0;
}

.form-404 {
	margin: 30px auto;
	max-width: 320px;
}

/***	 4 0 4    	*/