@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

ul {
	margin: 0;
	padding: 0;
}

body {
	font-size: 14px;
	background-color: #fefefe;
    color: #5f7180;
	line-height: 25px;
	font-family: 'Poppins', sans-serif;
	background: #eaeff1 url(/pZALUKAJTVFILITUBENEW/assets/background.jpg) repeat-x;
}

a { color: #000; }
a:hover { color: #000; }

a:active, a:focus {
	outline: 0 !important;
	border: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	line-height: normal;
}

a,
a:hover,
a:focus,
a:active {
	outline: none;
	text-decoration: none;
}

button,
button:focus,
button:active,
button:hover {
	outline: none;
}

p, ul {
	margin: 0;
}

ul { list-style: none; }

/* HEADER */

header {
	position: relative;
	padding: 70px 0 20px 0;
}

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

header .logo {
	width: 180px;
}

header .logo img {
	max-width: 100%;
}

header .header-background {
	position: absolute;
	right: 20px;
	bottom: 0px;
	width: 291px;
	height: 83px;
	background: url(../img/header-bg.png);
	background-repeat: no-repeat;
}

/* MAIN */

.site {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 20px;
	background: #373737;
	border-radius: 8px;
	color: #bfbfbf;
}

main {
	flex: 1;
}

aside {
	width: 27%;
	margin-left: 20px;
}

/* PANEL */

.panel {
	padding: 15px;
	background-color: #454545;
	border-radius: 8px;
	margin-bottom: 20px;
}

.panel:last-child {
	margin-bottom: 0px;
}

.panel .panel-header {
	border-bottom: 1px solid #676767;
	padding-bottom: 10px;
}

.panel .panel-header .title {
	color: #fff;
}

.panel .panel-header .panel-menu ul {
	display: flex;
	align-items: center;
	justify-content: center;
}

.panel .panel-header .panel-menu ul li {
	margin-left: 15px;
}

.panel .panel-header .panel-menu ul li:first-child {
	margin-left: 0px;
}

.panel .panel-header .panel-menu ul li a {
	color: #fff;
	transition: .2s;
}

.panel .panel-header .panel-menu ul li a:hover {
	color: #999;
}

.panel .panel-body {
	padding-top: 15px;
}

/* SEARCH FORM */

.search-form {
	display: flex;
}

.search-form button {
	margin-left: 10px;
	flex: 1;
}

.site-desc {
	margin-top: 20px;
}

h1 {
	color: #bfbfbf;
	font-weight: 700;
	font-size: 28px;
	margin-bottom: 20px;
}

h3 {
	color: #bfbfbf;
	font-weight: 700;
	font-size: 24px;
	margin: 20px 0;
}

.movies {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 20px;
}

.movies .item {
	position: relative;
	text-align: center;
}

.movies .item .item-hidden {
	opacity: 0;
	position: absolute;
	left: 80%;
	top: 50%;
	width: 170%;
	max-width: 270px;
    pointer-events: none;
	transform: translateY(-50%);
	background: #342f2a;
	z-index: 2;
	box-shadow: 0 0 10px rgb(0 0 0 / 10%);
	border-radius: 10px;
	text-align: left;
	padding: 20px;
	font-size: 12px;
	line-height: 16px;
	margin-top: -25px;
}

.movies .item .item-hidden .title {
	font-weight: 500;
	color: #fff;
	font-size: 16px;
}

.movies .item .item-hidden .title .info {
	display: flex;
	align-items: center;
	margin-top: 3px;
	font-weight: 300;
	font-size: 12px;
	color: #bfbfbf;
}

.movies .item .item-hidden .title .info span {
	display: block;
	margin-left: 10px;
}

.movies .item .item-hidden .title .info span:first-child {
	margin-left: 0px;
}

.movies .item .item-hidden .desc {
	margin: 10px 0;
	color: #bfbfbf;
}

.movies .item .item-hidden .cats {
}

.movies .item .item-hidden .cats a {
	color: #fff;
}

.movies .item:hover .item-hidden {
	animation-name: show-movie-window;
	animation-duration: .1s;
	animation-fill-mode: forwards;
}

@keyframes show-movie-window {
	0% {
		opacity: 0;
		transform: scale3d(.3,.3,.3);
	}
	100% {
		opacity: 1;
	}
}

.movies .item .image {
	height: 220px;
	position: relative;
}

.movies .item .image:before {
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #999;
	border-radius: 10px;
	opacity: 0;
}

.movies .item:hover .image:before {
	opacity: .5;
}

.movies .item:hover .image:after {
	position: absolute;
	content: 'GO';
	z-index: 2;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background: rgba(0,0,0,.5);
	border: 2px solid #fff;
	text-align: center;
	color: #2cb025;
	animation-name: show-movie-window;
	animation-duration: .1s;
	animation-fill-mode: forwards;
}

.movies .item .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.movies .item a h3 {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	margin: 10px 0 5px 0;
	padding: 0;
	transition: .2s;
}

.movies .item:hover a h3 {
	color: #999;
}

.movies .item a span {
	font-size: 12px;
	line-height: 12px;
	display: block;
	font-weight: 300;
	color: #999;
}

.movies-2 .item {
	display: flex;
}

.movies-2 .item a {
	color: #fff;
}

.movies-2 .item .image {
	width: 55px;
	border-radius: 4px;
}

.movies-2 .item .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
}

.movies-2 .item .title {
	margin-left: 12px;
	flex: 1;
}

.movies-2 .item .title span {
	color: #bfbfbf;
	font-size: 13px;
	font-weight: 300;
	line-height: 13px;
}

/* MOVIE PLAYER */

.movie-player {
	max-width: 100%;
	background-color: #111;
	height: 550px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-bottom: 30px;
	position: relative;
}

.movie-player .play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.movie-player .play a {
	display: block;
	color: #fff;
	background-color: rgba(0, 0, 0, .5);
    border-radius: 16px;
	padding: 12px 20px;
	transition: .3s;
}

.movie-player:hover .play a {
	background-color: red;
}

/* MOVIE DETAILS */

.movie-details {
	display: flex;
	flex-wrap: wrap;
}

.movie-details .image {
	width: 180px;
	border-radius: 10px;
}

.movie-details .image img {
	width: 100%;
	border-radius: 10px;
}

.movie-details .desc {
	flex: 1;
	margin-left: 20px;
}

.movie-details .desc h1 {
	color: #2cb025;
	font-weight: 300;
}

.movie-details .desc .desc-wrapper {
	max-height: 100px;
	padding-right: 10px;
	overflow-y: auto;
}

.movie-details .details {
	display: flex;
	align-items: center;
	border-top: 1px solid #676767;
	margin-top: 20px;
	padding-top: 10px;
}

.movie-details .details span {
	display: block;
	margin-left: 15px;
	color: #bfbfbf;
    font-size: 13px;
    font-weight: 300;
    line-height: 13px;
}

.movie-details .details span:first-child {
	margin-left: 0px;
}

.nav-tabs {
	border: 0;
	border-bottom: 1px solid #676767;
}

.nav-tabs .nav-link {
	color: #fff;
	padding: 15px 20px;
	position: relative;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	color: #2cb025;
	border-color: transparent;
	background: transparent;
}

.nav-tabs .nav-link.active:before {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: #2cb025;
	border-radius: 4px;
	content: '';
}

.nav-tabs .nav-link.active:after {
	position: absolute;
	content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid transparent;
	border-top-color: #2cb025;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -5px;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
	border-color: transparent;
}

.movie-info {
	padding: 0 20px;
	color: #fff;
	border-radius: 10px;
	background: #454545;
	/*background: url(../images/bg.jpg) no-repeat;*/
	/*background-size: cover;*/
	/*background-position: center center;*/
}

.tab-pane {
	padding: 20px;
}

ul.info-list li {
	margin-bottom: 10px;
}

ul.info-list li:last-child {
	margin-bottom: 0px;
}

ul.info-list li a {
	color: #fff;
}

ul.info-list li.cats a {
	color: #2cb025;
}

/* CATS ASIDE */

.cats-wrapper {
	max-height: 320px;
	overflow-y: auto;
}

.cats li {
	margin-right: 10px;
	margin-bottom: 8px;
}

.cats li:last-child {
	margin-bottom: 0px;
}

.cats li a {
	display: block;
	padding: 9px 15px;
	border-radius: 10px;
	background-color: #342f2a;
	color: #fff;
	font-size: 14px;
	line-height: 14px;
	transition: .3s;
}

.cats li a:hover {
	background-color: #999;
}

p a {
	color: #fff;	
}

/* ACTORS */

ul.actors {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 5px;
	max-height: 450px;
	overflow-y: auto;
}

ul.actors li {
	text-align: center;
}

ul.actors li a {
	display: block;
	color: #fff;
}

ul.actors li figure span {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 100%;
	display: block;
	margin: 0 auto 10px auto;
}

ul.actors li figure span img {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	object-position: center;
	object-fit: cover;
	transition: .3s;
}

ul.actors li:hover figure span img {
	transform: scale(1.1);
}

/* REVIEWS */

.reviews {
	
}

.reviews .item {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.reviews .item .review-header {
	display: flex;
	justify-content: space-between;
}

.reviews .item:last-child {
	margin-bottom: 0px;
}

.reviews .item .author {
	margin-bottom: 2px;
	color: #fff;
}

.reviews .item .author span {
	margin-left: 10px;
	border-left: 1px solid #676767;
	color: #bfbfbf;
    font-size: 13px;
    font-weight: 300;
    line-height: 13px;
	padding-left: 10px;
}

.reviews .item .avatar {
	width: 50px;
	border-radius: 100%;
}

.reviews .item .avatar img {
	border-radius: 100%;
	object-fit: cover;
}

.reviews .item .review-content {
	flex: 1;
	margin-left: 20px;
}

/* FORMS & INPUTS */

.form-input {
	margin-bottom: 15px;
}

.form-input:last-child {
	margin-bottom: 0px;
}

label {
	display: block;
	color: #bfbfbf;
	margin-bottom: 4px;
	font-weight: 300;
}

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

label.label-flex a {
	color: #bfbfbf;
	font-size: 12px;
	font-weight: 500;
}

input {
	display: block;
	width: 100%;
	background-color: #342f2a;
	border-radius: 30px;
	padding: 8px 15px;
	color: #bfbfbf;
	border: 0;
}

.form-register-submit {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.form-register-submit a {
	color: #fff;
}

/* BUTTONS */

.btn-submit {
	border: 0;
	background-color: #2cb025;
	box-shadow: inset 0 -3px 0 rgb(0 0 0 / 20%);
    border-radius: 25px;
	font-weight: 700;
	padding: 9px 20px;
	color: #fff;
	transition: .2s;
}

.btn-submit:hover {
	background-color: #999;
}

/* FOOTER */

footer {
	margin: 20px 0;
	color: rgba(255,255,255,.4);
}

.footer-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 20px;
	background: #373737;
	border-radius: 8px;
	font-size: 12px;
	line-height: 16px;
}

.footer-wrapper .col-left {
	width: 30%;
}

.footer-wrapper .col-left .logo {
	width: 180px;
}

.footer-wrapper .col-left .logo img {
	width: 100%;
}

.footer-wrapper .col-center {
	text-align: center;
	flex: 1;
}

.footer-wrapper .col-center strong {
	color: #bfbfbf;
	font-weight: 600;
}

.footer-wrapper .col-center p {
	margin: 10px 0;
}

.footer-wrapper .col-center ul {
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-wrapper .col-center ul li {
	margin-left: 15px;
}

.footer-wrapper .col-center ul li:first-child {
	margin-left: 0px;
}

.footer-wrapper .col-center ul li a {
	color: #bfbfbf;
}

.footer-wrapper .col-center ul li a:hover {
	color: #fff;
}

.footer-wrapper .col-right {
	display: flex;
	justify-content: flex-end;
	width: 30%;
}

.footer-wrapper ul.socials {
	display: flex;
	align-items: center;
}

.footer-wrapper ul.socials li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	text-align: center;
	background-color: #999;
	border-radius: 100%;
}

.actors::-webkit-scrollbar,
.movie-details .desc .desc-wrapper::-webkit-scrollbar,
.cats-wrapper::-webkit-scrollbar {
	width: 5px;
	border-radius: 4px;
}

.actors::-webkit-scrollbar-track,
.movie-details .desc .desc-wrapper::-webkit-scrollbar-track,
.cats-wrapper::-webkit-scrollbar-track {
	background: #342f2a;
	border-radius: 4px;
}

.actors::-webkit-scrollbar-thumb,
.movie-details .desc .desc-wrapper::-webkit-scrollbar-thumb,
.cats-wrapper::-webkit-scrollbar-thumb {
	background: #f7f7f9;
	border-radius: 4px;
}

.actors::-webkit-scrollbar-thumb,
.movie-details .desc .desc-wrapper::-webkit-scrollbar-thumb,
.cats-wrapper::-webkit-scrollbar-thumb {
	background: #2cb025;
	border-radius: 4px;
}

.actors::-webkit-scrollbar-thumb:hover,
.movie-details .desc .desc-wrapper::-webkit-scrollbar-thumb:hover,
.cats-wrapper::-webkit-scrollbar-thumb:hover {
	background: #2cb025;
}

.actors::-webkit-scrollbar-thumb:active,
.movie-details .desc .desc-wrapper::-webkit-scrollbar-thumb:active,
.cats-wrapper::-webkit-scrollbar-thumb:active {
	background: #2cb025;
}

.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }

@media (min-width: 0px) and (max-width: 991px) {
	
	header {
		padding: 20px 0;
	}
	
	header .header-background {
		display: none;
	}
	
	.movies {
		grid-template-columns: 1fr 1fr;
	}
	
	aside {
		width: 100%;
		margin-left: 0;
		margin-top: 30px;
	}
	
	h1 {
		font-size: 24px;
	}
	
	h3 {
		font-size: 20px;
	}
	
	.movie-player {
		height: 400px;
	}
	
	.movie-info {
		padding: 10px;
	}
	
	ul.actors {
		grid-template-columns: 1fr 1fr;
	}
	
	.reviews .item .author span {
		font-size: 11px;
		line-height: 11px;
	}
	
	.footer-wrapper .col-left,
	.footer-wrapper .col-center,
	.footer-wrapper .col-right {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
	
	.m-mt20 { margin-top: 20px !important; }
	
}

@media (min-width: 991px) and (max-width: 1288px) {
	
	.movies {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
	
	ul.actors {
		grid-template-columns: 1fr 1fr 1fr;
	}
	
}

@media (min-width: 1200px) {
	
    .container {
		max-width: 1280px;
	}
	
}