* {
    margin: 0;
    padding: 0;
	outline: none;
}

body {
	font-family: 'Open Sans', sans-serif;
	color: #919191;
	font-size: 14px;
	background: #181818;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

img {
    max-width: 100%;
    max-height: 100%;
	box-shadow: 0 0 10px #1e90ff;
}

a { color: #318bbf; }

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
}

.container-fluid {
	padding-left: 10%;
	padding-right: 10%;
	max-width: 1920px;
	margin: 0 auto;
}

/* HEADER */

.header {
	position: relative;
	padding: 10px 0;
	background: #090909;
}

.header .header-container {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.header .header-container .logo {
	width: 89px;
}

.header .header-container ul.header-left {
	list-style: none;
	margin: 0;
	margin-left: 50px;
}

.header .header-container ul.header-left li {
	display: inline-block;
	margin-right: 30px;
}

.header .header-container ul.header-left li:last-child { margin-right: 0; }

.header .header-container ul.header-left li a {
	color: #fff;
	font-size: 19px;
	font-weight: 300;
}

.header .header-container .header-right {
	text-align: right;
	display: flex;
	margin-left: auto;
	align-items: center;
	flex-wrap: wrap;
}

.header .header-container .header-right ul.user-menu {
	list-style: none;
	margin: 0;
}

.header .header-container .header-right ul.user-menu li {
	display: inline-block;
	margin-left: 20px;
}

.header .header-container .header-right .header-search {
	max-width: 600px;
	margin-left: 20px;
}

.header .header-container .header-right .header-search input[type="search"] {
	border: 1px solid #252525;
	display: block;
	border-radius: 3px;
	color: #999;
	padding: 5px 10px;
	background-color: #181818;
	width: 100%;
}

.header .header-container .header-right a:hover { color: #fff; }

/* SITE CONTAINER */

.site-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 50px auto;
}

/* CONTENT */

.content {
	width: 65%;
}

/* SIDEBAR */

.sidebar {
	width: calc(35% - 30px);
}

/* SECTION */

.section {
	position: relative;
}

/* SECTION HEADING */

.section-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.section-heading h1 {
	font-size: 18px;
	font-weight: 600;
	color: #d5bf8a;
	text-transform: uppercase;
}

.section-heading ul {
	margin: 0;
}

.section-heading ul li {
	text-transform: uppercase;
	display: inline-block;
}

.section-heading ul li a {
	display: block;
	background: #262626;
	color: #bdbdbd;
	font-weight: 600;
	padding: 6px 12px;
}

.section-heading ul li a:hover,
.section-heading ul li a.active {
	background: #1c4b70;
	color: #cbcbcb;
}

/* MAIN */

.main p:last-child { margin: 0; }

/* PANEL */

.panel {
	background: #151515;
}

.panel ul.panel-nav {
	list-style: none;
	margin: 0;
}

.panel ul.panel-nav li {
	display: inline-block;
	text-transform: uppercase;
}

.panel ul.panel-nav li a {
	background: #262626;
	color: #bdbdbd;
    font-weight: 600;
	padding: 6px 12px;
}

.panel ul.panel-nav li a:hover,
.panel ul.panel-nav li a.active {
	background: #1c5f70;
	color: #cbcbcb;
}

/* MOVIES LIST */

.movies-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.movies-list .item {
	width: calc(50% - 10px);
	background: #191919;
	display: flex;
	margin-top: 6px;
	margin-bottom: 6px;
}

.movies-list .item .item-image {
	width: 140px;
}

.movies-list .item .item-desc {
	width: calc(100% - 155px);
	margin-left: 15px;
	padding: 20px 0;
}

.movies-list .item .item-desc h4 {
	color: #b4b4b4;
	display: inline-block;
	font-size: 16px;
}

.movies-list .item .item-desc a:hover h4 { color: #fff; }

.movies-list .item .item-desc p {
	margin: 20px 0;
	color: #8e8e8e;
	font-size: 12px;
}

.movies-list .item .item-desc ul.item-info,
ul.movie-item-info {
	margin: 0;
	list-style: none;
}

.movies-list .item .item-desc ul.item-info li,
ul.movie-item-info li {
	display: inline-block;
	margin-right: 6px;
	background: #1c5f70;
	color: #bdbdbd;
	padding: 2px 6px;
	font-size: 12px;
}

.movies-list .item .item-desc ul.item-info li:last-child,
ul.movie-item-info li:last-child {
	margin-right: 0;
}

.movies-list .item .item-desc ul.item-info li i,
ul.movie-item-info li i {
	color: #e1be14;
	padding-right: 5px;
}

.movies-list .item .item-desc ul.item-info li [class^="flaticon-"]:before,
.movies-list .item .item-desc ul.item-info li [class*=" flaticon-"]:before,
.movies-list .item .item-desc ul.item-info li [class^="flaticon-"]:after,
.movies-list .item .item-desc ul.item-info li [class*=" flaticon-"]:after {
	font-size: 11px !important;
}

/* RANDOM MOVIES */

.random-movies {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.random-movies .item {
	width: calc(50% - 5px);
	margin-bottom: 5px;
}

.random-movies.random-movies-2 .item {
	width: calc(33.3333% - 5px);
}

/* MOVIE SINGLE */

.movie-single {
	background: #151515;
	padding: 20px;
}

.movie-single-heading {
	display: flex;
	flex-wrap: wrap;
}

.movie-single-heading .movie-image {
	width: 100px;
}

.movie-single-heading .movie-desc {
	width: calc(100% - 120px);
	margin-left: 20px;
}

.movie-single-heading .movie-desc h1 {
	color: #d5bf8a;
	font-weight: 600;
	font-size: 28px;
}

.movie-single .movie-single-player {
	min-height: 450px;
	background: #252525;
	margin: 20px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.movie-single .movie-single-player .blocked h2 {
	font-weight: 600px;
	font-size: 28px;
	margin-bottom: 20px;
}

.movie-single .movie-single-player .blocked p {
	font-size: 16px;
}

.movie-single .movie-single-player .blocked a {
	background: #e1be14;
	display: inline-block;
	padding: 6px 12px;
	color: #fff;
	border-radius: 3px;
}

.panel.movie-single-sidebar h4 {
	color: #b4b4b4;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.movie-single-rates {
	display: flex;
	flex-wrap: wrap;
}

.movie-single-rates .stars { margin-right: 20px; }

.movie-single-rates .stars i {
	color: #e1be14;
}

.movie-single-rates p:last-child { margin-left: auto; }

/* MOVIES CATS */

ul.movies-cats {
	list-style: none;
	margin: 0;
}

ul.movies-cats li {
	float: left;
    width: calc(50% - 10px);
    margin: 3px 5px;
}

ul.movies-cats li a {
	display: block;
	background: #282828;
    padding: 5px 10px;
	color: #b4b4b4;
	transition: none;
}

ul.movies-cats li a:hover {
	color: #318bbf;
}

/* MOVIES OPTIONS */

ul.movies-options {
	list-style: none;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}

ul.movies-options li {
	text-align: center;
	width: calc(20% - 6px);
	margin: 0 3px;
	padding: 0;
}

ul.movies-options li a {
	display: block;
	padding: 5px;
	background: #282828;
	color: #b4b4b4;
	font-size: 12px;
}

/* PAYMENT METHODS */

.payment-methods {
	display: flex;
	flex-wrap: wrap;
}

.payment-methods .item {
	width: calc(33.3333% - 10px);
	margin: 5px 5px;
	text-align: center;
	background: #191919;
	padding: 10px;
}

.payment-methods .item .item-image  {
	max-width: 160px;
	margin: 0 auto;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.payment-methods .item p.price {
	margin: 10px 0;
	font-weight: 700;
	color: #318bbf;
}

.payment-methods .item h4 {
	font-size: 18px;
	font-weight: 600;
	color: #b4b4b4;
	margin-bottom: 20px;
}

.payment-methods .item a {
	background: #e1be14;
	padding: 6px 12px;
	display: inline-block;
	border-radius: 3px;
	color: #fff;
}

/* INPUT, TEXTAREA, FORM, TABLES */

.btn {
	border-radius: 5px;
	font-size: 12px;
}

.btn-1 {
	background: #666;
	color: #fff;
	font-weight: 700;
}

input {
	width: 100%;
	display: inline-block;
	background: #342f2a;
	border: 1px solid #423c37;
	padding: 8px 10px;
	color: #fff;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
	font-size: 12px !important;
	margin-left: 0 !important;
}

/* FOOTER */

.footer {
	background: #0f0f0f;
	margin-top: 20px;
	color: #919191;
	padding: 15px 0;
	font-size: 12px;
}

.footer .footer-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.footer .footer-container ul.menu {
	list-style: none;
	font-size: 12px;
}

.footer .footer-container ul.menu li {
	display: inline-block;
	margin-right: 20px;
}

.footer .footer-container ul.menu li:last-child {
	margin-right: 0;
}

.footer .footer-container ul.menu li a {
	color: #919191;
}

.footer .footer-container ul.menu li a:hover { color: #fff; }

.footer p.text {
	color: #919191;
	margin: 0;
	font-size: 11px;
}

.m0 { margin: 0px !important; }
.mt0 { margin-top: 0px !important; }
.mb0 { margin-bottom: 0px !important; }

.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px; }
.mt50 { margin-top: 50px; }
.mt70 { margin-top: 70px; }
.mt80 { margin-top: 80px; }
.mt100 { margin-top: 100px; }
.mt-50 { margin-top: -50px; }
.mt-60 { margin-top: -60px; }
.mt-100 { margin-top: -100px; }

.mb0 { margin-bottom: 0px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb40 { margin-bottom: 40px; }
.mb50 { margin-bottom: 50px; }
.mb70 { margin-bottom: 70px; }
.mb80 { margin-bottom: 80px; }
.mb100 { margin-bottom: 100px; }
.mb150 { margin-bottom: 150px; }
.mb200 { margin-bottom: 200px; }

.ml0 { margin-left: 0 !important; }
.ml10 { margin-left: 10px !important; }
.ml20 { margin-left: 20px !important; }

.mr0 { margin-right: 0 !important; }

.pt20 { padding-top: 20px; }
.pt30 { padding-top: 30px; }
.pt50 { padding-top: 50px; }
.pt75 { padding-top: 75px; }
.pt80 { padding-top: 80px; }
.pt100 { padding-top: 100px; }
.pt150 { padding-top: 150px; }

.pb0 { padding-bottom: 0px; }
.pb20 { padding-bottom: 20px; }
.pb30 { padding-bottom: 30px; }
.pb50 { padding-bottom: 50px; }
.pb75 { padding-bottom: 75px; }
.pb80 { padding-bottom: 80px; }
.pb100 { padding-bottom: 100px; }
.pb150 { padding-bottom: 150px; }

.pr5 { padding-right: 5px; }
.pr10 { padding-right: 10px; }
.pr15 { padding-right: 15px; }
.pr20 { padding-right: 20px; }

.pl5 { padding-left: 5px; }
.pl10 { padding-left: 10px; }

.p30 { padding: 30px; }
.p20 { padding: 20px; }
.p10 { padding: 10px; }

@media (min-width: 0px) and (max-width: 991px) {
	
	.container-fluid {
		padding-left: 3%;
		padding-right: 3%;
	}
	
	.header .header-container .header-right ul.user-menu {
		margin-top: 20px;
	}
	
	.header .header-container .header-right .header-search {
		max-width: 100%;
		width: 100%;
		margin-left: 0px;
		margin-top: 10px;
	}
	
	.content {
		width: 100%;
	}

	.sidebar {
		width: 100%;
	}
	
	.movies-list .item {
		width: 100%;
	}
	
	ul.movies-options li {
		width: calc(33.3333% - 6px);
		margin: 3px 3px;
		padding: 0;
	}
	
	.payment-methods .item {
		width: 100%;
	}
		
	.footer .footer-container ul.menu {
		width: 100%;
	}
	
	.footer .footer-container ul.menu li {
		display: block;
		margin-left: 0;
	}
	
}

@media (min-width: 991px) and (max-width: 1440px) {
	
}