@import url('https://fonts.googleapis.com/css?family=Cinzel');

*

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
    vertical-align: baseline;
	font-family: 'Cinzel', serif;
	letter-spacing: 1px;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	background: #a60000;
	line-height: 1;
}
html{
	overflow: scroll;
	overflow-x: hidden;
	height: 100%;
}
ol, ul {
	list-style: none;
}
p{
    padding: 5px;
    color: #fff;
    line-height: 10px;
}
h1{
	color: #fff;
    font-size: 14px;
	text-align: left;
	padding: 5px;
	background: #a60000;
}
h2{

}
::-webkit-scrollbar {
	width: 0px;
}
#pageContainer{
	position: relative;
}
/* ----- HEADER ----- */
.header{
	width: 100%;
	height: 60px;
	background: #7b0000;
	position: relative;
	box-shadow: 0 2px 5px -2px #000;
}
.logoContainer {
	position: relative;
	text-align: center;
}
.logopng{
	padding: 16px 5px;
	width: 250px;
}
/* --- SIDE NAV--- */
.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: #000;
	overflow-x: hidden;
	transition: 0.2s;
	-webkit-box-shadow: 1px 0px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 1px 0px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 1px 0px 5px 0px rgba(0,0,0,0.75);
}  
.sidenav a {
    padding: 5px;
    text-decoration: none;
    font-size: 13px;
    color: #fff;
    display: block;
    transition: 0.2s;
	text-align: left;
    background: #000;
}
.sidenav a:hover {
	background: #7b0000;
}
.sidenav .closebtn {
	font-size: 60px;
	padding: 0;
	color: #000;
	text-align: center!important;
	background: #7b0000;
}
.sidenav .closebtn:hover{
	background: #7b0000;
}
.hamMenu{
	font-size: 30px;
	cursor: pointer;
	color: #000;
	font-weight: bolder;
	position: absolute;
	top: 12%;
	left: 2%;
}
/* Filter bar */
.filters{
	margin: 10px 0px;
	display: flex;
	justify-content: center;
}
select:focus, input:focus{
    outline: none;
}
select{
	background: #000;
	color: #fff;
	border: 1px solid #000;
	font-family: 'Cinzel', serif;
	font-size: 12px;
	outline: none;
	vertical-align: top;
	width: 120px;
	display: none;
}
option{
	outline: none;
}

/* Search */
.search{
	float: right;
}
form.search input[type=text] {
	font-size: 12px;
	border: 1px solid #000;
	float: left;
	width: 100px;
	background: #fff;
	font-family: 'Cinzel', serif;
	font-weight: bold;
	padding-left: 5px;
	color: #000;
}
form.search button {
	float: left;
	width: 20px;
	background: #000;
	color: white;
	font-size: 16px;
	border: 1px solid #000;
	border-left: none;
	cursor: pointer;
	outline: none;
	padding: 3px 0;
}
form.search::after {
	content: "";
	clear: both;
	display: table;
}
::placeholder{
	color: #000;
	font-family: 'Cinzel', serif;
	font-weight: bold;
}
.fa-search{
	font-size: 12px!important;
}

/* ----- MODELS ----- */
#modelContainer{
	text-align: center;
	background: #a60000;
	margin: 10px 0;
}
.model{
    width: calc(50% - 10px);
    display: inline-block;
    text-align: center;
    position: relative;
    margin-bottom: 5px;
    border: 1px solid #000;
}
.modelresize{
	width: calc(90% - 10px);
}
.model img{
    width: 100%;
}
.model-info{
	background: #000;
	color: #fff;
	font-size: 11px;
}
.model-name{
    padding: 3px 0px;
    display: inline-block;
    width: calc(80% - 3px);
    float: left;
    text-align: left;
	padding-left: 3px;
	font-size: 8px;
	overflow: hidden;
}
.model-age{
    padding: 3px 0px;
    display: inline-block;
    float: right;
    text-align: right;
    padding-right: 3px;
	width: calc(20% - 3px);
	font-size: 8px;
}
.model-onlinetime{
    padding: 1px 0px;
    width: 100%;
	display: inline-block;
	font-size: 8px;
}
.fa-video{
	padding-right: 5px;
	color: #a60000;
}
#users-temp{display: none;}

/* Flashing */
.model figure:hover img {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
@-webkit-keyframes flash {
	0% {
		opacity: .6;
	}
	100% {
		opacity: 1;
	}
}
@keyframes flash {
	0% {
		opacity: .6;
	}
	100% {
		opacity: 1;
	}
}

/* Load more */
.loadmore{
	width: 100%;
	text-align: center;
	margin: 20px 0;

}
.moreModels{
    background: #000;
    border: 1px solid #000;
    color: #fff;
    font-family: 'Cinzel', serif;
	letter-spacing: 1px;
	outline: none;
	padding: 5px 10px;
	border-radius: 5px;
	font-size: 11px;
}
.fa-eye{
    padding-right: 8px;
	color: #fff;
}
.loadingimage{
	display: none;
	text-align: center;
	background: #000;
}
.loadingimage img{
    width: 300px;
}

/* ----- CHATROOM ----- */
#chatroom {
	width: 100%;
    color: #fff;
	text-align: center;
	background-color: #a60000;
}
#chatroom p{
	font-size: 10px;
	padding: 3px;
}
.chatinfowrap{
	margin: auto;
	margin-top: 10px;
	-webkit-box-shadow: 0 0 2px #000;
	-moz-box-shadow: 0 0 2px #000;
    box-shadow: 0 0 2px #000;
}
.columns{
	display: flex;
	width: 100%;
	background: #000;
	align-items: center;
    justify-content: center;
}
#chatroom .chatinfowrap .columns p{
	font-size: 10px;
}
#chatroom .chatinfowrap .model-about p{
	line-height: 15px;
	text-align: left;
}
.nick{
	position: absolute;
    bottom: 0%;
    background: rgba(0, 0, 0, 0.50);
    width: 100%;
}
.model-about{
	width: 100%;
	background: #000;
	display: block;
	padding: 10px;
}
.model-pic{
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.model-status{
	margin: 50px 0;
}
.col{
	width: 33.33%;
	margin: 10px;
	overflow: hidden;
	position: relative;
}
.model-thumb{
	width: 100%;
}
.txtunderline{
	text-decoration: underline;
}
.sub-content{
	padding:20px;
}
.sub-content p{
	line-height:20px;
}
/* ----- FOOTER ----- */
#footer{
	width: 100%;
	background: #7b0000;
	text-align: center;
	-webkit-box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.75);
}
#footer h1{
	background: #7b0000;
	padding: 5px 0;
	color: #000;
	font-weight: bolder;
	font-size: 11px;
	text-align: center;
}
#footer p{
	padding: 5px 0;
	color: #000;
	font-weight: bolder;
	font-size: 12px;
}

/* Error 404 */
#error404{
    display: table;
    width: 100%;
    height: 100vh;
    text-align: center;
}
.fof{
	  display: table-cell;
	  vertical-align: middle;
}
.fof h1{
	  font-size: 35px;
	  color: #000;
	  display: inline-block;
	  padding-right: 12px;
	  animation: type .5s alternate infinite;
}
@keyframes type{
	  from{box-shadow: inset -3px 0px 0px #000;}
	  to{box-shadow: inset -3px 0px 0px transparent;}
}

/* ----- MEDIA QUERY ----- */

/* MIN */
@media (min-width:320px) {form.search button{width: 25px;}}
@media (min-width:360px) { h1{padding: 7px;} .sidenav a{padding: 7px;}}
@media (min-width:375px) { .hamMenu{top: 13%;} .model{width: calc(33.33% - 10px);} .modelresize{width: calc(50% - 10px);} .model-onlinetime{font-size: 7px;} .sidenav a{font-size: 13px;} .sidenav a{padding: 7px;} h1{padding: 7px;} select{display: block; margin-left: 2px;} form.search button{margin-right: 2px;}}
@media (min-width:410px) { .sidenav a{padding: 8px;} h1{padding: 8px;} .logopng{width: 300px;} }
@media (min-width:481px) { .model{width: calc(33.3333333333% - 10px);} .modelresize{width: calc(50% - 10px);} }
@media (min-width:640px) { .hamMenu{top: 18%;} .model{width: calc(25% - 10px);} .modelresize{width: calc(33.3333333333% - 10px);} } 
@media (min-width:768px) { .model{width: calc(20% - 10px);} .modelresize{width: calc(25% - 10px);} .sidenav a{padding: 10px;} h1{padding: 10px;} h1{padding: 10px 5px;} .sidenav a{padding: 10px 5px;} .model-onlinetime{font-size: 8px;} .hamMenu{top: 12%; left: 1%;} #chatroom .chatinfowrap .columns p{font-size: 12px; line-height: 15px;}}
@media (min-width:823px) { h1{text-align: center;} .sidenav a{text-align: center;} }
@media (min-width:961px) { .model{width: calc(20% - 10px);} .modelresize{width: calc(25% - 10px);} }
@media (min-width:1024px) { form.search button{margin-right: 5px; width: 25px;} select{margin-right: 20px; margin-left: 0px;} #mySidenav{width: 150px; border-right: 1px solid #a60000;} #mainContainer{margin-left: 150px;} .hamMenu{display: none;} #mySidenav .closebtn{display: none;} .model-name{font-size: 10px;} .model-age{font-size: 10px;} .model-onlinetime{font-size: 10px;} h1{text-align: center;} .sidenav a{text-align: center;} .logopng{padding: 16px 14px;} .filters{justify-content: flex-end;}}
@media (min-width:1281px) { .model{width: calc(16.6666666667% - 10px);} form.search input{width: 150px!important;} form.search button{width: 40px;}}
@media (min-width:1520px) { .model{width: calc(14.2857142857% - 10px);} }
@media (min-width:1750px) { .model{width: calc(12.5% - 10px);} }
/* MIN & MAX */
@media screen and (min-width: 318px) and (max-width: 325px) { .model{width: calc(33.33% - 10px);} .modelresize{width: calc(50% - 10px);} .sidenav a{font-size: 12px; padding: 7px 5px;} h1{font-size: 13px; padding: 8px 5px;} .model-onlinetime{font-size: 6px;} .logopng{width: 210px;}}