body, html, head, a, h1, h2, ul, button, input, div {
	margin: 0;
	font-family: 'Arial', sans-serif;
	text-decoration: none;
}

body {
	background-color: #080609;
	width: 100%;
	height: 100%;
}

.blur   {
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	-moz-filter: blur(5px);
	-webkit-filter: blur(5px);
	filter: blur(5px);
}

#age-overlay {
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background: rgba(0,0,0,.8);
	z-index: 999999;
	display: flex;
	justify-content: center;
	align-items: center;
}

#age-popup {
	color: #fff;
	font-size: 20px;
}

#age-popup a {
	display: inline-block;
    margin: 15px;
    background-color: #f2d225;
    color: #000;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 1px;
}

#age-popup a:hover {
	text-decoration: underline;
}

.row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.column {
	display: flex;
	flex-direction: column;
	align-items: center;
}

p {
	font-size: 14px;
	line-height: 18px;
}

#video-iframe {
	width: 100%;
	height: 440px;
	border: none;
}

@keyframes zoom-in {
	0% {
		opacity: 0;
		transform: scale(0);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

#gifs {
	text-align: center;
}

.gifs-row {
	margin: 0 5px;
	display: inline-block;
	vertical-align: top;
}

.gif {
	display: block;
	width: 270px;
	margin-bottom: 15px;
	animation: zoom-in 0.4s ease;
}

.gif img {
	width: 100%;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.gif .alt {
	color: #fff;
	line-height: 18px;
	font-size: 14px;
	padding: 10px 15px;
	margin-top: -2px;
	background-color: #16181a;
	font-weight: bold;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

#load-more-gifs {
	color: #fff;
	margin: 25px auto 45px;
	border-radius: 4px;
	padding: 10px;
	font-size: 15px;
	width: 110px;
	cursor: pointer;
	display: none;
	text-align: center;
}


#photos {
	text-align: center;
}

.photos-row {
	margin: 0 5px;
	display: inline-block;
	vertical-align: top;
}

.photo {
	display: block;
	width: 270px;
	margin-bottom: 15px;
	animation: zoom-in 0.4s ease;
}

.photo img {
	width: 100%;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.photo .alt {
	color: #fff;
	line-height: 18px;
	font-size: 14px;
	padding: 10px 15px;
	margin-top: -2px;
	background-color: #16181a;
	font-weight: bold;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

#load-more-photos {
	color: #fff;
	margin: 25px auto 45px;
	border-radius: 4px;
	padding: 10px;
	font-size: 15px;
	width: 110px;
	cursor: pointer;
	display: none;
	text-align: center;
}

.top-links {
	max-width: 1300px;
	margin: 0 auto;
	padding: 10px;
	font-size: 13px;
	color: #727272;
}

.top-links a {
	color: #fff;
	opacity: 0.2;
	margin: 0 5px;
}

/* ..... Header ............................................................. */

.header {
	max-width: 1300px;
    justify-content: space-between;
    margin: 0 auto 10px auto;
    color: #fff;
    font-size: 12px;
}

#logo {
	background: url(../logo.png);
	width: 262px;
	height: 84px;
	display: inline-block;
}

.logo a {
	font-family: 'Kanit', sans-serif;
	text-transform: uppercase;
	font-size: 40px;
	color: #fff;
	font-weight: bolder;
}

.logo span {
	font-size: 15px;
	color: #F26;
}

.logo img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-right: 5px;
}

.menu-wrapper {
	background-color: none;
}

.main-menu {
	max-width: 1300px;
	margin: 0 auto;
	text-align: center;
}

#main-menu-select {
	display: none;
	font-size: 20px;
}

.main-menu a {
	background-color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	color: #000;
	font-weight: bold;
	border-radius: 1px;
	padding: 10px;
}

.main-menu a:hover {
	color: #fff;
	background-color: #F26;
}

#search input {
	max-width: 300px;
	padding: 10px;
	font-size: 12px;
	border-radius: 1px;
	border: 1px solid #fff;
	background-color: #fff;
	box-sizing: border-box;
}

.search-button {
	padding: 8px 15px;
	background: none;
	margin-left: -47px;
	color: #2b2b2b;
	border: none;
	cursor: pointer;
}

/* ..... Category ............................................................. */

.category {
	max-width: 1230px;
	margin: 0 auto;
	justify-content: space-between;
	padding: 0;
	font-weight: bold;
	flex-wrap: wrap;
}

.category a:hover {
	color: #F26;
}

.category a.background-color:hover {
	color: #fff;
}

.category p {
	color: #fff;
	font-size: 12px;
	margin-bottom: 10px;
	display: none;
}

.rate {
	color: #fff;
	margin: 4px;
	border-radius: 4px;
	display: inline-block;
	padding: 3px 7px;
	margin-bottom: 15px;
}

.rate.plus {
	background-color: green;
}

.rate.minus {
	background-color: red;
}

.button-tag,
.fav {
	color: #161921;
    text-transform: uppercase;
    margin: 1px;
    border-radius: 4px;
    display: inline-block;
    padding: 5px 10px;
}

.fav {
	background-color: green;
	margin-bottom: 15px;
}

.fav.red {
	background-color: red;
}

.fav-button span {
	display: block;
	float: none !important;
	padding-top: 7px;
}

.pagination a {
	border: 1px solid;
}

.sidebar-cats {
	width: 200px;
}

.sidebar-cats h1,
.sidebar-cats .h1 {
	margin: 15px 0;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
}

.sidebar-cats a {
	display: block;
    color: #fff;
    border-radius: 1px;
    text-transform: uppercase;
    background-color: #161921;
    padding: 9px;
    margin: 2px 0;
    border-left: 3px solid;
}

.sidebar-cats a:hover {
	border-left: 6px solid;
	font-weight: bold;
}

.sidebar-cats a span {
	float: right;
	color: #525866;
}

.popular-category {
	flex-wrap: wrap;
	justify-content: center;
}

.popular-category a {
	padding: 5px 10px;
	margin: 5px 1px;
	color: #fff;
	background-color: #16181a;
	font-size: 12px;
	border-radius: 1px;
	line-height: 28px;
}

.all a {
	padding: 5px 10px;
	background-color: #F26;
	color: #fff;
}

.see-all a {
	color: #F26;
}


/* ..... Content ............................................................. */

.banner-top {
	display: flex;
    justify-content: center;
    margin: 0 auto 20px auto;
    padding: 10px;
    background: #161921;
}

.main {
	max-width: 1300px;
	margin: 0px auto;
	padding: 0 10px;
	font-size: 12px;
	color: #fff;
}

.main-left {
	max-width: 100%;
	margin: 0 10px;
	align-self: flex-start;
}

.sidebar-right {
	max-width: 300px;
	align-self: flex-start;
}

.banner {
	margin: 0px 0;
}

.main-top-menu {
	width: 100%;
	margin-bottom: 0;
	justify-content: space-between;
}

h2 {
	font-size: 20px;
	font-weight: bold;
}

select {
	padding: 5px;
	margin: 0 5px;
	border: none;
	font-weight: bold;
	font-size: 12px;
	border-radius: 1px;

}

.main-content {
	flex-wrap: wrap;
	justify-content: center;
}

.content {
	width: 250px;
	border-radius: 1px;
	margin: 2px;
	border: 2px solid #000;
}

.content .img {
	width: 250px;
	height: 200px;
	border-radius: 1px;
	border: 3px solid black;
	background-size: cover;
	position: relative;
}

.content:hover .img {
	border: 3px solid #f2d225;
	outline: 4px solid #000;
    outline-offset: -7px;
    cursor: pointer;
    color: #fff;
}

.content:hover h2 {
	color: #fff;
}

.content .pornstar-img,
.content .category-img {
	width: 192px;
	height: 295px;
	border-radius: 1px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.content .trailer-preview video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	border-radius: 1px;
}

.content .upload-date,
.content .duration {
	position: absolute;
	bottom: 4px;
	border-radius: 1px;
	background: rgba(0, 0, 0, .9);
	display: inline-block;
	padding: 5px;
	color: #fff;
}

.content .upload-date {
	left: 4px;
}

.content .duration {
	right: 4px;
}

.content h2,
.content h3 {
	color: #fff;
	font-size: 14px;
	margin: 5px;
	font-weight: normal;
}

.actress a {
	display: none;
	margin: 0 15px;
	font-size: 12px;
	color: #fff;
	font-style: italic;
	font-weight: bold;
}

.content-details {
	display: none;
	margin: 10px 15px;
	color: #fff;
	justify-content: space-between;
}

.content-details i {
	margin-right: 5px;
}

.article-row-1 h2,
.article-row-1 h3 {
	color: #525866;
    text-decoration: none;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    font-size: 15px;
    height: 36px;
    overflow: hidden;
}

.article-row-1 img {
	width: 25px;
	height: auto;
	margin-right: 5px;
}

.pornstars,
.categories {
	max-width: 1220px;
	margin: 25px auto;
}

.pornstars .content,
.categories .content {
	width: 192px;
}

.pornstars .article-row-1,
.categories .article-row-1 h2 {
	height: 20px;
	margin-bottom: 0;
}

.pornstars .article-row-1,
.categories .article-row-1 span {
	color: #fff;
	text-decoration: none;
	font-size: 13px;
}

.article-row-1 {
	text-align: center;
}

.pornstar-table {
	max-width: 480px;
	font-size: 14px;
	line-height: 18px;
}

.pornstar-table th {
	font-weight: bold;
	text-align: left;
	width: 150px;
}

.pornstar-table td,
.pornstar-table th {
	padding: 0.75rem;
	border-bottom: 1px solid #343434;
}

.pagination {
	margin: 30px auto;
	justify-content: center;
}

.pagination a {
	padding: 10px 15px;
	border-radius: 1px;
	font-weight: bold;
	border: 3px solid #F26;
	color: #F26;
	margin: 5px;
	font-size: 15px;
}

.pagination a.active {
	background-color: #F26;
	color: #fff;
}

.pagination a:hover {
	background-color: #F26;
	color: #fff!important;
}

.info {
	max-width: 1230px;
	color: #fff;
	padding: 10px;
	margin: 50px auto;
}

.image-content img {
	display: relative;
}

.time {
	display: absolute;
}

/* ..... Populars Tags ............................................................. */

.tags {
	display: none;
	max-width: 1240px;
	margin: 0px auto;
}

.tags ul {
	flex-wrap: wrap;
	justify-content: center;
}

.tags p {
	color: #fff;
	font-size: 14px!important;
	margin-bottom: 10px;
	font-weight: bold;
}

.tags i {
	color: #F26;
}

.tags a {
	padding: 5px 10px;
	margin: 5px 0px;
	color: #fff;
	font-size: 14px!important;
	text-transform: capitalize;
	line-height: 24px;
}

.see-all-tags a {
	color: #F26;
}

/* ..... First-Footer ............................................................. */

.first-footer {
	margin: 5px auto;
}

/* ..... Second-Footer ............................................................. */

.second-footer-background {
	display: none;
}

.second-footer {
	max-width: 1200px;
	text-align: center;
	margin: 5px auto;
}

.second-footer h3 {
	color: #F26;
	line-height: 30px;
	font-weight: bold;
	text-transform: uppercase;
}

.second-footer a {
	color: #525866;
	font-weight: bold;
	text-decoration: none;
	line-height: 20px;
	font-size: 14px;
}

.column1 {
	width: 75%;
	text-align: left;
}

.column2 {
	width: 25%;
	justify-content: space-around;
	text-align: left;
}

.second-footer a:hover {
	color: #F26;
	text-decoration: underline;
}

.second-footer p {
	color: #525866;
	margin: 0 auto;
	font-size: 14px;
}

/* ..... Third-Footer ............................................................. */

.third-footer-background {
	width: 100%;
	background-color: #161921;
}

.third-footer {
	max-width: 1300px;
    margin: 0px auto;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.third-footer p {
	color: #fff;
	font-size: 14px;
}

.social-icon ul {
	display: flex;
	flex-direction: row;
}

.social-icon a {
	margin: 0 5px;
	color: #fff;
	font-size: 14px;
}

.social-icon a:hover {
	text-shadow: none;
}

.br {
	clear: both;
	margin: 25px 0;
	border-top: 1px solid #383838;
}

.tag-key {
	color: #8a8a8a;
	font-size: 200%;
	font-weight: bold;
	float: left;
	width: 45px;
}

.tag-wrap {
	margin-left: 45px;
}

.tag {
	color: #fff;
	margin: 5px 0;
	display: inline-block;
	width: 235px;
	text-transform: capitalize;
}

.tag:hover {
	text-decoration: underline;
}

#search-open,
#menu-open {
	display: none;
	padding: 15px;
	position: absolute;
	top: 0;
	background-color: #080609;
	z-index: 5;
}

#search-open {
	left: 0;
}

#menu-open {
	right: 0;
}

#menu a {
	display: block;
	padding: 12px 10px;
	color: #fff;
}

.slideout-menu {
	position: fixed;
	top: 0;
	bottom: 0;
	width: 256px;
	min-height: 100vh;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	z-index: 0;
	display: none;
}

.slideout-menu-left {
	left: 0;
}

.slideout-menu-right {
	right: 0;
}

.slideout-panel {
	position: relative;
	z-index: 1;
	will-change: transform;
	background-color: #080609; /* A background-color is required */
	min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden;
}

.slideout-open .slideout-menu {
  display: block;
}

.large-footer {
	display: flex;
    justify-content: center;
}

#fluid_video_wrapper_video-iframe {
	width: 100%!important;
	height: auto!important;
}

.content .trailer-preview video {
	display: none;
}

@media (max-width: 1335px) {
	
	.sidebar-cats {
		display: none;
	}
}

@media (max-width: 950px) {

	.logo {
		margin: 50px 0 20px 0;
	}

	.main-menu,
	#main-menu-select {
		display: block !important;
		width: 100%;
		margin: 0 auto;
	}
	
	.main-menu a {
		display: none !important;
	}

	#search-open,
	#menu-open {
		display: inline-block;
	}

	#search {
		display: none;
		position: fixed;
		top: 0;
		right: auto;
		left: 52px;
		width: 100%;
		background-color: #080609;
		padding: 11px 0;
	}

	#search #q {
		width: 65%;
		max-width: 65%;
	}

	#search button {
		display: none;
	}

	.main-top-menu {
		display: block;
		margin: 0;
		float: right;
	}

	.sidebar-right,
	.banner-top {
		display: none;
	}

	.header {
	flex-direction: column;
	align-items: center;
	}

	.content {
	width: 320px;
	}

	.content .img {
	width: 320px;
	}

	.banner-top-background {
		margin: 0 auto;
	}
}

@media (max-width: 500px) {

	.content {
		width: 100%;
	}

	.content .img {
		width: 100%;
   		height: 250px;
    	background-position: center;
	}

	.tags {
		display: none;
	}

	.article-row-1 h2, .article-row-1 h3 {
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    font-size: 15px;
	}

	.AVAST_PAM_nonloginform {
		display: none;
	}

	.second-footer p {
		margin: 0;
	}

	h1 {
		margin: 15px 0;
	}

	.third-footer-background {
		margin-top: 15px;
	}

	.main-left {
		width: 100%;
	}

	.fluid_html_on_pause iframe {
		display: none;
	}

}

      /* Example: */
      .exo-native-widget-outer-container {
        visibility: visible;
        height: 230px;
      }
      .exo-native-widget-item {
        background-color: transparent;
        border-radius: 1px;
      }
      .exo-native-widget-item-image {
        border-radius: 1px;
      }
      .exo-native-widget-item-title {
        text-shadow: 0 0 transparent;
        text-transform: uppercase!important;
      }
      .exo-native-widget-item-text {
        border: 0px none transparent;
      }
      .exo-native-widget-header, .exo-native-widget-header-bottom {
      	display: none;
      }