/*
Theme Name: Comando Filmes SEO
Description: Visual clássico do Comando Filmes com SEO, segurança e compatibilidade moderna do WordPress.
Author: Comando Filmes
Version: 1.3.0
Text Domain: comandofilmes
*/

/* GERAL */
* {
	font-family: 'Arial', 'Verdana', sans-serif;
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
    height: 320px;
    border-bottom: 10px solid #031826;
    width: 100%;
    background-color: #2e2e2e;
    background: url(img/bgtop.jpg) top center no-repeat, url(img/bg.jpg) repeat;
}
a, a:visited {
	color: #67a70f;
	text-decoration: none;
}
a:hover {
	color: #0c0c0c;
	text-decoration: none;
}
input, textarea, select, option, div, button, a, img {
  -webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
	border: 0;
}
#author, #email, #url, #comment {
    width: 75%;
    background: #fff;
    border: 1px solid #adadad;
    font-size: 14px;
    padding: 14px 16px;
    border-radius: 4px;
    margin: 10px 0 0;
}

#comment {
	width: 100%;
    max-width: 100%;
}

.container {
	margin: 0 auto;
	padding: 0;
}

/* HEADER */
header {
	width: 100%;
	padding: 0;
	margin: 0;
}
header .search {
	width: 587px;
	height: 49px;
	background-image: url(img/search.png);
	position: relative;
	margin: 0 auto;
}
header .search input {
	width: 350px;
	height: 20px;
	background: transparent;
	border-radius: 5px;
	outline: 0;
	border: 0;
	color: #fff;
	font-size: 12px;
	margin: 11px 0 0 108px;
}
header .search button {
	background: rgba(255, 255, 255, 0);
	border-radius: 4px;
	width: 55px;
	height: 25px;
	color: #fff;
	font-size: 11px;
	position: absolute;
	cursor: pointer;
	outline: 0;
	top: 9px;
	right: 60px;
}
header .search button:hover {
	background: rgba(255, 255, 255, 0.2);
}
header .logo {
	width: 100%;
	text-align: center;
	display: inline-block;
	margin: 15px 0;
}
header .logo img {
	margin: 0;
	vertical-align: top;
}
header #menu {
    width: 100%;
    height: auto;
    background-image: url(img/menu.png);
    background-position: top center;
    border-radius: 70px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    z-index: 10;
    border: 1px solid #084573;
    box-shadow: inset 0 0 12px 4px rgb(114, 225, 42);
}
header #menu ul {
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 10;
	list-style: none;
	font-size: 0;
	vertical-align: top;
	display: inline-block;
}
header #menu ul > li {
	display: inline-block;
	vertical-align: top;
	position: relative;
	margin: 0;
}
header #menu a {
	color: #fff;
	display: inline-block;
	vertical-align: top;
	line-height: 70px;
	width: 100%;
	padding: 0 13px;
	font-size: 15px;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.6);
}
header #menu a:before {
	content: '';
	width: 9px;
	height: 9px;
	background: #fff;
	border: 2px solid #66dd12;
	display: inline-block;
	margin: 0 5px 0 0;
	border-radius: 100%;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.4);
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}
header #menu a:hover {
	color: #fff;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.6), 0 0 12px #fff, 0 0 2px #66dd12;
}
header #menu a:hover:before {
	border: 2px solid #b8ff86;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.4), 0 0 12px #fff, 0 0 2px #66dd12;
}
header #menu a[href="#menu"]:before {
	background-color: transparent;
	box-shadow: none;
	background-image: url(img/bars.png);
	width: 16px;
	height: 14px;
	border: 0;
	border-radius: 0;
	margin: 0 1px -2px 0;
}

/* MENU LATERAL */
header #categories {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 9090;
	-webkit-filter: opacity(0%);
	filter: opacity(0%);
	visibility: hidden
}
.menuopen header #categories {
	-webkit-filter: opacity(100%);
	filter: opacity(100%);
	visibility: visible;
}
header #categories > ul {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	width: 370px;
	height: 100%;
	background-color: #041b2b;
	border-right: 1px solid #08324a;
	box-shadow: 0 0 30px rgba(0,0,0,0.7);
	overflow-y: auto;
	-webkit-transform: translateX(-120%);
	-moz-transform: translateX(-120%);
	-ms-transform: translateX(-120%);
	-o-transform: translateX(-120%);
	transform: translateX(-120%);
	-webkit-transition: all 180ms cubic-bezier(0.000, 1.285, 0.635, 1.245);
	-moz-transition: all 180ms cubic-bezier(0.000, 1.285, 0.635, 1.245);
	-o-transition: all 180ms cubic-bezier(0.000, 1.285, 0.635, 1.245);
	transition: all 180ms cubic-bezier(0.000, 1.285, 0.635, 1.245);
}
.menuopen header #categories > ul {
	transform: translateX(0%);
	-webkit-transition: all 500ms cubic-bezier(1.000, -0.600, 0.180, 1.635);
	-moz-transition: all 500ms cubic-bezier(1.000, -0.600, 0.180, 1.635);
	-o-transition: all 500ms cubic-bezier(1.000, -0.600, 0.180, 1.635);
	transition: all 500ms cubic-bezier(1.000, -0.600, 0.180, 1.635);
}
header #categories > ul::-webkit-scrollbar {
	width: 6px;
	border: 0;
}
header #categories > ul::-webkit-scrollbar-track {
	background: #08324a;
	border: 0;
}
header #categories > ul::-webkit-scrollbar-thumb {
	border: 0;
	background: #0c4868;
	border-radius: 10px;
}
header #categories ul li {
	width: 100%;
	font-size: 15px;
	display: inline-block;
	vertical-align: top;
	position: relative;
}
header #categories ul li a {
	width: 100%;
	padding: 16px 25px;
	display: inline-block;
	vertical-align: top;
	color: #fff;
	border-bottom: 1px solid #08324a;
	position: relative;
}
header #categories ul li a:hover {
	background: rgba(255, 255, 255, 0.05)
}
header #categories ul li.head {
	padding: 0 20px 10px 20px;
	position: relative;
	border-bottom: 1px solid #08324a;
}
header #categories ul li .logo {
	padding: 0;
	border: 0;
	width: auto;
	float: left;
}
header #categories ul li .logo img {
	max-height: 125px;
	width: auto;
}
header #categories ul li.head .close {
	border-left: 4px solid #6ce828;
	border-top: 4px solid #6ce828;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: 20px;
	border-radius: 3px;
	cursor: pointer;
	-webkit-transform: rotate(-45deg) translateY(-50%);
	-moz-transform: rotate(-45deg) translateY(-50%);
	-ms-transform: rotate(-45deg) translateY(-50%);
	-o-transform: rotate(-45deg) translateY(-50%);
	transform: rotate(-45deg) translateY(-50%);
}
header #categories ul li.head .close:hover {
	filter: brightness(130%);
}
header #categories > .close {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/* Submenu */
header #categories > ul > li.menu-item-has-children > a:after {
	content: '';
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	width: 6px;
	height: 6px;
	position: absolute;
	top: 50%;
	right: 20px;
	border-radius: 3px;
	cursor: pointer;
	-webkit-transform: rotate(-45deg) translateY(-50%);
	-moz-transform: rotate(-45deg) translateY(-50%);
	-ms-transform: rotate(-45deg) translateY(-50%);
	-o-transform: rotate(-45deg) translateY(-50%);
	transform: rotate(45deg) translateY(-50%);
}
header #categories > ul > li.menu-item-has-children.open > a:after {
	border-top: 3px solid #fff;
	border-left: 3px solid #fff;
	border-bottom: 0;
	border-right: 0;
}
header #categories > ul > li.menu-item-has-children > ul {
	background: #020f19;
	max-height: 0px;
	overflow: hidden;
}
header #categories > ul > li.menu-item-has-children.open > ul {
	max-height: 3000px;
}
header #categories > ul > li.menu-item-has-children > ul li {
	font-size: 13px;
}
header #categories > ul > li.menu-item-has-children > ul li a {
	padding: 16px 35px;
}

/* MAIN */
main {
	margin: 0px 0 0 0;
	padding: 90px 60px 20px 60px;
	border-radius: 4px;
	float: left;
	position: relative;
	width: 100%;
	background: #041929;
}
main:before {
	content: '';
	width: 100%;
	height: 86px;
	background-image: url(img/corners.png);
	background-repeat: no-repeat;
	background-position: top 2px left 2px;
	position: absolute;
	top: 0;
	left: 0;
}
main:after {
	content: '';
	width: 100%;
	height: 86px;
	background-image: url(img/corners.png);
	background-repeat: no-repeat;
	background-position: bottom 2px left 2px;
	position: absolute;
	bottom: 0;
	left: 0;
}
main .titleGeral {
	width: 100%;
	display: inline-block;
	margin: 30px 0;
}
main .titleGeral.nomargin {
	margin-top: 0;
}
main .titleGeral h1,
main .titleGeral h2,
main .titleGeral h3,
main .titleGeral h4 {
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	font-style: italic;
	color: #fff;
	margin: 0;
	padding: 0;
	display: inline-block;
	vertical-align: top;
}
main .titleGeral span {
	color: #00a7e8;
}
main .titleGeral a.all {
	border-left: 1px solid #69747c;
	font-style: italic;
	color: #ddd;
	font-size: 14px;
	line-height: 13px;
	padding: 0 0 0 15px;
	margin: 8px 0 0 15px;
	display: inline-block;
}
main .titleGeral a.all.green {
	color: #70e52a;
}
main .titleGeral a.all.blue {
	color: #00a7e8;
}
main .titleGeral a.all:hover {
	color: #fff;
}

/* POSTAGEM */
main .post {
	    background: #103654;
    margin: 30px 25px 30px 0px;
    padding: 11px;
    position: relative;
    width: 232px;
    height: 440px;
    max-width: 100%;
    float: left;
    border-radius: 5px;
}
main .post:before {
	content: '';
	background: url(img/repeat.png);
	position: absolute;
	z-index: 1;
	border-radius: 5px;
	top: 0;
	left: 0;
}
main .post.green {
	border: 1px solid rgb(128,255,48);
	background: rgb(128,255,48);
	background: -moz-linear-gradient(top, rgba(128,255,48,1) 0%, rgba(64,136,24,1) 100%);
	background: -webkit-linear-gradient(top, rgba(128,255,48,1) 0%,rgba(64,136,24,1) 100%);
	background: linear-gradient(to bottom, rgba(128,255,48,1) 0%,rgba(64,136,24,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80ff30', endColorstr='#408818',GradientType=0 );
}
main .post.blue {
	border: 1px solid rgb(26,169,246);
	background: rgb(26,169,246);
	background: -moz-linear-gradient(top, rgba(26,169,246,1) 0%, rgba(13,86,125,1) 100%);
	background: -webkit-linear-gradient(top, rgba(26,169,246,1) 0%,rgba(13,86,125,1) 100%);
	background: linear-gradient(to bottom, rgba(26,169,246,1) 0%,rgba(13,86,125,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1aa9f6', endColorstr='#0d567d',GradientType=0 );
}
main .post .title {
	    position: absolute;
    margin: 8px 10px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    line-height: 130%;
}
main .post .title a {
	width: 100%;
	padding: 0 5px;
	display: inline-block;
	color: #fff;
	text-overflow: ellipsis;
	overflow: hidden;
}
main .post .title a:hover {
	color: #fff;
	text-shadow: 0 0 10px #fff;
}
main .post .thumb {
	width: 100%;
	height: 290px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 4px;
	position: relative;
	z-index: 2;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
main .post .thumb:hover {
	opacity: 0.9;
	filter: opacity(0.9);
	-webkit-filter: opacity(0.9);
	-moz-filter: opacity(0.9);
}
main .post.last {
	margin: 30px 0 34px 0;
}
main .post .thumb .tag,
main .post .thumb .comments {
	border-radius: 3px;
	color: #fff;
	font-size: 10px;
	background: rgba(0, 0, 0, 0.8);
	position: absolute;
	bottom: 5px;
	left: 5px;
	padding: 5px 7px;
}
main .post .thumb .icon-film {
	width: 10px;
	height: 10px;
	background-image: url(img/film.png);
	background-repeat: no-repeat;
	background-position: center;
	display: inline-block;
	margin: 0 2px -1px 0;
}
main .post .thumb .comments {
	left: initial;
	right: 5px;
}
main .post .thumb .icon-comments {
	width: 12px;
	height: 10px;
	background-image: url(img/comments.png);
	background-repeat: no-repeat;
	background-position: center;
	display: inline-block;
	margin: 0 2px -1px 0;
}

/* SLIDE */
main #slidetop {
	width: 100%;
	margin: 0 0 10px 0;
}
main #slidetop .post {
	margin: 0;
	padding: 8px;
	width: 100%;
}
main #slidetop .post .thumb {
	height: 206px;
}
main #slidetop .owl-dots {
	width: 100%;
	height: 12px;
	text-align: center;
	margin: 20px 0 0 0;
}
main #slidetop .owl-dots .owl-dot {
	width: 12px;
	height: 12px;
	display: inline-block;
	vertical-align: top;
	margin: 0 4px;
	border-radius: 100%;
	border: 1px solid #676767;
	background: rgb(147,147,147);
	background: -moz-linear-gradient(top, rgba(147,147,147,1) 0%, rgba(91,91,91,1) 100%);
	background: -webkit-linear-gradient(top, rgba(147,147,147,1) 0%,rgba(91,91,91,1) 100%);
	background: linear-gradient(to bottom, rgba(147,147,147,1) 0%,rgba(91,91,91,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#939393', endColorstr='#5b5b5b',GradientType=0 );
}
main #slidetop .owl-dots .owl-dot.active {
	border: 1px solid #3a8224;
	background: rgb(128,255,48);
	background: -moz-linear-gradient(top, rgba(128,255,48,1) 0%, rgba(64,136,24,1) 100%);
	background: -webkit-linear-gradient(top, rgba(128,255,48,1) 0%,rgba(64,136,24,1) 100%);
	background: linear-gradient(to bottom, rgba(128,255,48,1) 0%,rgba(64,136,24,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80ff30', endColorstr='#408818',GradientType=0 );
}

/* PAGENAVI */
main .wp-pagenavi {
	width: 100%;
	float: left;
	font-weight: 700;
	text-align: center;
	margin: 20px 0;
	position: relative;
	z-index: 10;
}
main .wp-pagenavi span, main .wp-pagenavi a {
	background-color: #e3e3e3;
	background-position: center;
	color: #2e2e2e;
	margin: 0 3px;
	font-size: 22px;
	width: 50px;
	height: 50px;
	line-height: 48px;
	padding: 0;
	border-radius: 5px;
	display: inline-block;
	vertical-align: top;
}
main .wp-pagenavi a:hover {
	background-color: #aaa;
}
main .wp-pagenavi span.current {
	background-image: url(img/menu.png);
	color: #fff;
}
main .wp-pagenavi span.extend, 
main .wp-pagenavi a.last,
main .wp-pagenavi a.first{
	display: none;
}
main .wp-pagenavi span.pages{
	background: #001d35;
	color: #024e75;
	font-weight: 400;
	width: auto;
	font-size: 15px;
	padding: 0 15px;
}

/* FOOTER */
footer {
	width: 100%;
	float: left;
	background: url(img/bgfooter.jpg);
	margin: 50px 0 -50px 0;
	padding: 0;
	position: relative;
}
footer:after {
	content: '';
	width: 100%;
	height: 100%;
	background: url(img/bgfooter.jpg) top center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	filter: brightness(120%) contrast(140%) opacity(30%);
}
footer .logo {
	float: left;
	position: relative;
	width: 100%;
	text-align: center;
	margin: 50px 0;
	z-index: 5;
}
footer .logo img {
	vertical-align: top;
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	-o-transform: scale(0.9);
	transform: scale(0.9);
}
footer .text {
	float: left;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 5;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 25px 0;
}
footer .text span {
	 color: #7de92f;
}
footer .text a {
	 color: #00a1ff;
}

/* POST SINGLE */
main.single {
	padding: 80px 10px 20px 10px;
}
main.single section {
	width: 865px;
	float: left;
	position: relative;
}
main.single section div.right {
	float: right;
	width: 600px;
}
main.single article {
	float: right;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 20px;
    border: 2px solid #080808;
    box-shadow: inset 0 0 12px 4px rgba(0,0,0,0.88);
    background: #fff;
    border-radius: 10px;
}
main.single article .title {
    width: 100%;
    margin: -5px 0 0 0;
    position: relative;
    border-bottom: 1px dotted #c1c1c1;
    text-align: center;
    padding: 20px;
    border: 1px solid #0c0c0c;
    box-shadow: inset 0 0 12px 4px rgba(0,0,0,0.88);
    background: #fff;
    border-radius: 5px;
}
main.single article .title a,
main.single article .title h1 {
	font-size: 16px;
	font-weight: 800;
	color: #343434;
  padding: 0;
  display: inline;
}
main.single article .title a:hover {
	background: #7cf767;
}
main.single article .title .icon {
	width: 11px;
	height: 12px;
	background: url(img/info.png);
	display: inline-block;
	vertical-align: middle;
	margin: -1px 0 0 1px;
	position: relative;
	cursor: pointer;
}
main.single article .title .icon .infos {
	position: absolute;
	bottom: 20px;
	left: 50%;
	white-space: nowrap;
	font-size: 12px;
	letter-spacing: 0.02em;
	padding: 5px 8px;
	border-radius: 4px;
	color: #d0d0d0;
	background: rgba(0,0,0,0.88);
	transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	visibility: hidden;
	filter: opacity(0%);
	-webkit-filter: opacity(0%);
}
main.single article .title .icon .infos:after {
	content: '';
	width: 0;
	height: 0;
	border-top: 5px solid rgba(0,0,0,0.88);
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	position: absolute;
	bottom: -5px;
	left: 50%;
	margin-left: -5px;
}
main.single article .title .icon:hover .infos {
	visibility: visible;
	filter: opacity(100%);
	-webkit-filter: opacity(100%);
}
main.single article .title .category {
	margin: 12px 0 0 0;
	font-size: 0;
}
main.single article .title .category a {
	font-size: 12px;
	font-weight: 400;
	background: #eaeaea;
	color: #888;
	display: inline-block;
	vertical-align: top;
	width: auto;
	padding: 3px 6px;
	margin: 2px;
	border-radius: 3px;
}
main.single article .title .category a:hover {
	background: #dbdbdb;
	color: #555;
}
main.single article .center {
    width: 100%;
    margin: 20px 0 0 0;
    position: relative;
    border-bottom: 1px dotted #c1c1c1;
    text-align: center;
    padding: 20px;
    border: 1px solid #0c0c0c;
    box-shadow: inset 0 0 12px 4px rgba(0,0,0,0.88);
    background: #fff;
    border-radius: 5px;
}
main.single article , table, td, th {
  border: 2px solid black;
}
main.single article table {
  border-collapse: collapse;
  width: 100%;
}
main.single article .center , table , th {
  padding: 15px;
}
main.single article .content {
	width: 100%;
	padding: 15px 0 0 0;
}
main.single article .content p {
	margin: 0 0 10px 0;
	color: #111;
	line-height: 150%;
	font-size: 14px;
}
main.single article .content p:last-child {
	margin: 0;
}
main.single article .content img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
	border: 0;
}
main.single article .content iframe {
	max-width: 100%;
}

/* RELATED */
main.single .related {
	float: right;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 20px;
    border: 1px solid #0c0c0c;
    box-shadow: inset 0 0 12px 4px rgba(0,0,0,0.88);
    background: #fff;
    border-radius: 10px;
}
main.single .related .title {
	width: 101%;
	width: calc(100% + 2px);
	margin: -1px -1px 0 -1px;
	padding: 14px 12px 14px 12px;
	text-transform: uppercase;
	font-size: 12px;
	position: relative;
	font-weight: 700;
	color: #fff;
	border-radius: 5px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	display: inline-block;
	border: 1px solid rgb(128,255,48);
	-webkit-tfilter: grayscale(100%);
	filter: grayscale(100%);
	background: rgb(128,255,48);
	background: -moz-linear-gradient(top, rgba(128,255,48,1) 0%, rgba(64,136,24,1) 100%);
	background: -webkit-linear-gradient(top, rgba(128,255,48,1) 0%,rgba(64,136,24,1) 100%);
	background: linear-gradient(to bottom, rgba(128,255,48,1) 0%,rgba(64,136,24,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80ff30', endColorstr='#408818',GradientType=0 );
}
main.single .related .title span {
	position: relative;
	z-index: 2;
}
main.single .related .title:before {
	content: '';
	width: 100%;
	height: 100%;
	background: url(img/repeat.png);
	position: absolute;
	z-index: 1;
	border-radius: 5px;
	top: 0;
	left: 0;
}
main.single .related ul {
	margin: 0;
	padding: 3px 16px 12px 16px;
	list-style: none;
}
main.single .related ul li {
	width: 100%;
	display: inline-block;
	vertical-align: top;
}
main.single .related ul li a {
	font-size: 13px;
	color: #000;
	display: inline-block;
	vertical-align: top;
	width: 100%;
	padding: 10px 2px;
	border-bottom: 1px dotted #c1c1c1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
main.single .related ul li a:before {
	content: '';
	border-right: 3px solid #389f30;
	border-bottom: 3px solid #389f30;
	width: 5px;
	height: 5px;
	border-radius: 3px;
	margin: 0 7px 0 0;
	cursor: pointer;
	display: inline-block;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
main.single .related ul li a:hover {
	background: #f3f3f3;
}

/* COMMENTS */
#comments{
    width: 600px;
    margin: 0 0 20px 0;
    display: inline-block;
    position: relative;
    z-index: 10;
    padding: 20px;
    border: 1px solid #0c0c0c;
    box-shadow: inset 0 0 12px 4px rgba(0,0,0,0.88);
    background: #fff;
    border-radius: 10px;
}
#comments h3{
  width: 100%;
  margin: -5px 0 0 0;
  position: relative;
  border-bottom: 1px dotted #c1c1c1;
  text-align: center;
  padding: 0 12px 15px 12px;
	font-size: 16px;
	font-weight: 800;
	color: #343434;
	width: 100%;
}
#comments h3 span{
	color: #1e1e1e;
}
#comments .commentlist{
	font-size: 14px;
	font-weight: 400;
	text-align: left;
}
#comments .comment{
	margin: 20px 0 0 0;
	display: block;
}
#comments .comment .comment-author{
	color: #5c5c5c;
}
#comments .comment .comment-author .comment-edit-link{
	color: #bbb;
}
#comments .comment .awaiting-moderation{
	font-size: 13px;
	font-weight: 400;
	font-style: italic;
	color: #da5f5f;
	margin: 8px 0 4px 0;
}
#comments .comment .comment-body{
	margin: 18px 0 0 0;
	background: #ebebeb;
	padding: 2px 20px;
	font-size: 13px;
	color: #111;
	line-height: 150%;
	position: relative;
	border-radius: 5px;
	border-bottom: 2px solid #c2c2c2;
}
#comments .comment .comment-body:before{
	content: '';
	width: 28px;
	height: 28px;
	background: #ebebeb;
	position: absolute;
	top: -6px;
	left: 12px;
	transform: rotate(45deg);
	z-index: 1;
}
#comments .comment .comment-body p{
	position: relative;
	z-index: 88;
	margin: 15px 0;
}
#comments #respond{
	text-align: left;
	font-size: 14px;
}
#comments #respond h3{
	border: 0;
	margin: 0;
	padding: 0;
	z-index: 30;
	position: relative;
}
#comments #respond .comment, #comments #respond .comment .comment-body{
	margin: 20px 0 25px 0;
	background: #2f2f2f;
	color: #fff;
	border-radius: 5px;
}
#comments #respond .comment, #comments #respond .comment .comment-body p:last-child{
	margin-top: 8px;
}
#comments #respond .comment .comment-body h3{
	color: #fff;
	text-transform: uppercase;
}
#comments #respond .comment .comment-body{
	background: #888;
	padding: 16px 25px;
	border-bottom: 0;
	text-align: center;
}
#comments #respond .comment .comment-body p{
	margin: 0;
	padding: 0;
	font-size: 11px;
}
#comments #respond .comment .comment-body:before{
	top: inherit;
	background: #888;
	bottom: -5px;
}
#comments #respond #commentform{
	margin: 10px 0 2px 0;
}
#comments #respond #commentform input, #comments #respond #commentform textarea, #comments #respond #commentform .autent{
	width: 75%;
	background: #fff;
	border: 1px solid #adadad;
	font-size: 14px;
	padding: 14px 16px;
	border-radius: 4px;
	margin: 10px 0 0 0;
}
#comments #respond #commentform input:focus, #comments #respond #commentform textarea:focus{
	border-color: #444;
	outline: 0;
}
#comments #respond #commentform textarea, #comments #respond #commentform .autent{
	width: 100%;
	max-width: 100%;
}
.commentsubmit{
	background: #46c13b;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	width: auto;
	text-transform: uppercase;
	border-color: #46c13b;
	cursor: pointer;


padding: 14px 16px;
border-radius: 4px;
margin: 10px 0 0;


}
.commentsubmit:hover{
	background: #34942d;
	border-color: #34942d;
}
#comments #respond #commentform .autent p{
	font-weight: 400;
}
#comments #respond #commentform .autent p span{
	text-align: right;
	float: right;
}
#comments .wp-pagenavi{
	background: transparent;
	border: 0;
	padding: 20px 2px 0 2px;
	margin: 0;
}
#comments .wp-pagenavi:after{
	display: none;
}

/* LINK EDIT POST */
#editPost{
	position: fixed;
	top: 0;
	left: 0;
	padding: 8px 12px;
	background: #eee;
	color: #999;
	font-size: 12px;
	text-transform: uppercase;
	border-radius: 0 0 5px 0;
}
#editPost:hover{
	padding: 18px 12px;
}

/* SIDEBAR */
aside {
	width: 250px;
	margin: 0;
	float: right;
	position: relative;
	z-index: 10;
}
aside .widget {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 0;
    color: #222;
    position: relative;
    float: right;
}
aside .cont {
    background: #fff;
    border: 1px solid #0c0c0c;
    box-shadow: inset 0 0 12px 4px rgba(0,0,0,0.88);
    padding: 10px 15px 15px 15px;
    border-radius: 0 0 5px 5px;
    margin: 0;
}
aside .widget h3 {
	background: url(img/aside.png);
    height: 49px;
    border-radius: 5px 5px 0 0;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    text-align: center;
    padding: 11px 0 0 0;
    width: 100%;
    position: relative;
}
aside .widget h3 span {
	position: relative;
	z-index: 2;
}
aside .widget h3:before {
	content: '';
	width: 100%;
	height: 100%;
	background: url(img/repeat.png);
	position: absolute;
	z-index: 1;
	border-radius: 5px;
	top: 0;
	left: 0;
}
aside .widget .textwidget, 
aside .widget form,
aside .widget .wpp-list {
	font-size: 15px;
	padding: 9px;
}
aside .widget img{
	vertical-align: middle;
	border: 0;
}
aside .widget ul{
	margin: 0 0 -5px 0;
	padding: 0;
	list-style: none;
	display: inline-block;
	width: 100%;
}
aside .widget ul li{
	font-size: 13px;
    color: #000;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    border-bottom: 1px dotted #c1c1c1;
    overflow: hidden;
    text-overflow: ellipsis;
	float: left;
	text-transform: capitalize;
}
aside .widget ul li:hover{
    background: #f3f3f3;
}
aside .widget ul li a::before {
    content: '';
    border-right: 3px solid #389f30;
    border-bottom: 3px solid #389f30;
    width: 5px;
    height: 5px;
    border-radius: 3px;
    margin: 0 7px 0 0;
    cursor: pointer;
    display: inline-block;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
aside .widget select{
	width: 100%;
	border: 1px solid #dfdfdf;
	height: 44px;
	padding: 0 10px;
	outline: 0;
	box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
aside .widget select:focus{
	box-shadow: 0 0 5px rgba(0,0,0,0.35);	
}
aside .widget select option{
	padding: 5px 0;
}
aside .widget .wpp-list li {
	width: 100%;
	position: relative;
	display: table;
}
aside .widget .wpp-list li img {
	width: 100%;
	height: auto;
	display: inline-block;
}
aside .widget .wpp-list li .wpp-post-title {
    position: absolute;
	top: 50%;
	left: 0;
	padding: 0 20px;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	color: #041929;
    vertical-align: middle;
    filter: opacity(0%);
    -webkit-filter: opacity(0%);
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
aside .widget .wpp-list li:hover .wpp-post-title {
	filter: opacity(100%);
	-webkit-filter: opacity(100%);
}
aside .widget .wpp-list li:hover img {
	filter: opacity(15%);
	-webkit-filter: opacity(15%);
}
aside .widget .menu {
	padding: 5px 10px 14px 10px;
}
aside .widget .menu li {
	width: 100%;
	border-bottom: 1px dotted #c1c1c1;
	vertical-align: top;
	display: inline-block;
	margin: 0;
}
aside .widget .menu li a{
	display: inline-block;
	vertical-align: top;
	width: 100%;
	padding: 6px 2px;
	color: #000;
	background: #fff;
}
aside .widget .menu li a:hover {
	padding-left: 8px;
	background: #f5f5f5;
}
aside .widget .menu li a:before {
	content: '';
	width: 4px;
	height: 4px;
	border-right: 1px solid #389f30;
	border-top: 1px solid #389f30;
	display: inline-block;
	vertical-align: middle;
	margin: -1px 6px 0 0;
	transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
section aside.left {
	float: left;
}
section aside.right {
	float: right;
}
aside label.screen-reader-text {
	display: none;
}

/* ERROR 404 */
.erro404 {
	width: 100%;
	padding: 20px;
	background: #ca3f3f;
	color: #fff;
	float: left;
	overflow: hidden;
	border-bottom: 2px solid #7b2b2b;
	position: relative;
	z-index: 1;
  -webkit-transition: all 100ms linear;
	-moz-transition: all 100ms linear;
	-ms-transition: all 100ms linear;
	transition: all 100ms linear;
}
.erro404 .container {
	position: relative;
}
.erro404 i {
	font-size: 50px;
	float: left;
	margin: -4px 15px 0 0;
}
.erro404 h2 {
	margin: 0;
	padding: 0;
	display: inline-block;
	line-height: 20px;
	font-size: 22px;
}
.erro404 p {
	font-size: 16px;
	margin: 0;
	padding: 0;
}
.erro404 .close {
	font-family: "Droid Sans Mono", "Andale Mono", Consolas, "Courier New", "Liberation Mono", monospace, "Roboto";
	position: absolute;
	right: 0;
	top: 8px;
	font-size: 30px;
	line-height: 20px;
	font-weight: 900;
	cursor: pointer;
}
.erro404 .close:hover {
	text-shadow: 0 0 20px #fff;
}
.erro404.close {
	max-height: 0px;
	padding: 0;
	border: 0;
}

/* WORDPRESS */
.alignnone{margin: 5px 10px 10px 0;}
.aligncenter, div.aligncenter{display:block;margin:1px auto;}
.alignright{float:right;margin:2px 0 10px 10px;}
.alignleft{float:left;margin:2px 10px 10px 0;}
a img.alignright{float:right;margin:2px 0 10px 10px;}
a img.alignnone{margin:2px 15px 15px 0;}
a img.alignleft{float:left;margin: 2px 10px 10px 0;}
a img.aligncenter{display:block;margin-left: auto;margin-right: auto;}
.wp-caption{background: #fff;border: 1px solid #f0f0f0;max-width: 96%;padding: 5px 3px 10px;text-align: center;}
.wp-caption.alignnone{margin:2px 10px 10px 0;}
.wp-caption.alignleft{margin:2px 10px 10px 0;}
.wp-caption.alignright{margin:2px 0 10px 10px;}
.wp-caption img{border: 0 none;height:auto;margin:0;max-width:98%;padding:0;width:auto;}
.wp-caption p.wp-caption-text{font-size:11px;line-height:17px;margin:0;padding:0 4px 5px;}

/* BUTTON */
a.customButton {
	background: #5cb85c;
	font-size: 16px;
	line-height: 14px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	padding: 16px 30px 15px 30px;
	margin: 10px auto;
	border-radius: 4px;
}
a.customButton:after {
	content: '';
	width: 18px;
	height: 16px;
	display: inline-block;
	background-image: url(img/magnetic.png);
	margin: 0 0 -2px 5px;
}
a.customButton:hover {
		animation-name: animate-button;
    animation-duration: .3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes animate-button{
	to{transform:scale(1.1)}
}


/* ---------------------------------------------------------
	/ CSS GEORGE /
--------------------------------------------------------- */

/* BASE CLASSIF */
.i-classif {padding-top: 3px;display: inline-block;margin:-6px 0 0 0;}
.i-classif .ic-idade {float: left;padding-top: 5px;width: 38px;height: 38px;text-align: center;color: #fff;font: bold 25px arial,verdana,tahoma;margin-right: 4px;text-transform: uppercase;border-radius: 2px;-moz-border-radius: 2px;-webkit-border-radius: 2px;}
.i-classif .ic-texto {float: left;width: 160px;height: 38px;padding: 7px 9px 0;border: 1px solid #fff;font: 12px arial,verdana,tahoma;line-height: 105%;border-radius: 2px;-moz-border-radius: 2px;-webkit-border-radius: 2px;}
/* END CLASSIF BASE */

/* CLASSIF 12 */
.i-classif.ici-12 .ic-idade {background-color: #ffcc01;}
.i-classif.ici-12 .ic-texto {color: #000000;border-color: #ffcc01;}
/* FIM 12 */

/* CLASSIF 14 */
.i-classif.ici-14 .ic-idade {background-color: #f58220;}
.i-classif.ici-14 .ic-texto {color: #000000;border-color: #000000;}
/* FIM 14 */

/* CLASSIF LIVRE */
.i-classif.ici-l .ic-idade {background-color: #00af52;}
.i-classif.ici-l .ic-texto {color: #000000;border-color: #000000;}
/* FIM LIVRE */

/* CLASSIF 16 */
.i-classif.ici-16 .ic-idade {background-color: #fe0002;}
.i-classif.ici-16 .ic-texto {color: #000000;border-color: #000000;}
/* FIM 16 */

/* CLASSIF 10 */
.i-classif.ici-10 .ic-idade {background-color: #019ee1;}
.i-classif.ici-10 .ic-texto {color: #000000;border-color: #000000;}
/* FIM 10 */

/* CLASSIF 18 */
.i-classif.ici-18 .ic-idade {background-color: #000000;}
.i-classif.ici-18 .ic-texto {color: #000000;border-color: #000000;}
/* FIM 18 */

/* ---------------------------------------------------------
	/   BARRA DE ROLAGEM   /
--------------------------------------------------------- */
*{
scrollbar-face-color:#FF69B4;
scrollbar-highlight-color:#FF69B4;
scrollbar-3dlight-color:#343434;
scrollbar-darkshadow-color:#343434;
scrollbar-shadow-color:#FF69B4;
scrollbar-arrow-color:#343434;
scrollbar-track-color:#343434;
}
::-webkit-scrollbar {width: 9px; height: 4px; background: #fff; } /*Fundo da Barrinha*/
::-webkit-scrollbar-thumb { background: #0357c7; } /*barrinha que irá Rolar*/
