*,
*::before,
*::after {
	box-sizing: border-box;
}


:root {
	--bg-color: #f1f3f6;
	--sc-bg-color: #f26739; 
	--third-bg-color: #ffae13;
	--first-color: #8f95a3;
	--second-color: #eaeaea;
}


svg {
	max-height: 100%;
	fill: currentColor;
	fill-rule: evenodd;
	stroke: currentColor;
	stroke-width: 0;
}

input:focus, textarea:focus, select:focus {
    border-color: inherit;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
	border-color: var(--first-color)!important;
}


/*
@font-face {
    font-family: 'BPG';
    src: url('../fonts/nino-mtavruli/bpg-nino-mtavruli-webfont.eot');
    src: url('../fonts/nino-mtavruli/bpg-nino-mtavruli-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/nino-mtavruli/bpg-nino-mtavruli-webfont.woff2') format('woff2'),
         url('../fonts/nino-mtavruli/bpg-nino-mtavruli-webfont.woff') format('woff'),
         url('../fonts/nino-mtavruli/bpg-nino-mtavruli-webfont.ttf') format('truetype'),
         url('../fonts/nino-mtavruli/bpg-nino-mtavruli-webfont.svg#bpg_nino_mtavruliregular') format('svg');
}

@font-face {
	font-family: 'CLG';
	src: url('../fonts/3d/calligraphy.ttf') format('TrueType');
}
*/
@font-face {
	font-family: 'BPG';
	src: url('../fonts/bpg_mrgvlovani_caps_2010.ttf') format('TrueType');
}

@font-face {
	font-family: 'ALK Sanet';
	src: url('../fonts/bpg_nino_mtavruli_normal.ttf') format('TrueType');
}
@font-face {
	font-family: 'bpgArial';
	src: url('../fonts/bpg_arial_2009.ttf') format('TrueType');
}

body,
html {
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
	letter-spacing: normal;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.3rem;
	color: #fff;
	text-align: left;
	margin: 0;
	overflow-x: hidden;
	background: var(--bg-color);
}
body,form,input,textarea,select,button {
	font-family: bpgArial;
}
body,form {
	font-size: 14px;
	margin: 0px;
	padding: 0px;
}
body {
	background: #202328;
}
main {
	width: 100%;
	max-width: 1500px;
	margin: auto;
}
input, textarea {
	padding: 2px;
	font-size: 14px;
}
select {
	padding: 2px;
	font-size: 14px;
}
img { vertical-align: middle; }

br {
	clear: both;
}

fieldset {
	border: 1px solid #999;
	border-radius: 7px;
	padding: 2px;
	margin: auto;
}

legend {
	margin-left: 10px;
	color: #000;
}

label {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 5px;
	font-weight: normal;
}

a {
	color: #000;
	text-decoration: none;
}
ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}
button {
	outline: none;
	border: none;
	cursor: pointer;
}
.overlay { position: relative; }
.overlay:after {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 10;
	content: ' ';
}

.logo {

}

.BPG:lang(ge) {
	font-family: BPG;
}
.bpgArial:lang(ge) {
	font-family: bpgArial;
}

.pointer {
	cursor: pointer;
}

.bold {
	font-weight: bold;
}

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap }
.items-center { align-items: center; }
.flex-around {  justify-content: space-around; }
.flex-between {  justify-content: space-between; }
.flex-column { flex-direction: column; }
.flex110 { flex: 1 1 0; }
.c-white { color: #fff; }
.br5 { border-radius: 5px; }
.hide-overflow { overflow: hidden; }

.relative { position: relative; }
.absolute { position: absolute; }

.left { text-align: left; }
.right { text-align: right; }

.block { display: block; }
.visible { visibility: visible!important; }


.loader {
	position: fixed;
	width: 60px;
	height: 60px;
	left: calc(50% - 30px);
	top: calc(50% - 130px);
	z-index: 101;
}
.loader:after {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 40px; left: 50%;
	margin-left: -40px;
    width: 80px;
    height: 80px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation2 1s linear infinite;
	content: ' ';
	z-index: 101;
}

@keyframes rotation2 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
header {
	width: 100%;
	position: fixed;
	padding: 4px 0;
	z-index: 3;
	transition: all ease-out 0.3s;
}
header.header-bg {
	background: #202328;
}
.inner-header {
	width: 100%;
	max-width: 1500px;
	margin: auto;
}
.inner-header .col-logo {
	flex: 0 0 auto;
	width: 140px;
}
.inner-header .col-menu {
	flex: 1;
}
.inner-header .col-lang {
	flex: 0 0 auto;
	width: 95px;
}


.languages {
	float: right;
}
.languages li {
	display: inline-block;
	margin-left: 10px;
}
.languages li a {
	color: var(--first-color);
	font-size: 18px;
}
.languages li a.selected {
	color: #64b5f6;
}


.film-wrapper .film-col {
	flex: 0 0 14.28%;
	max-width: 14.28%;
    padding: 8px;
}.film-wrapper .film-col a {
	overflow: hidden;
	height: auto;
}
.film-wrapper .film-col a:hover .poster-cover {
    opacity: 1;
}
.film-wrapper .poster {
	left: 0;
	top: 0;
	z-index: 1;
}
.film-wrapper .film-loading {
	padding-top: 50%;
	z-index: 0;
}
.film-wrapper .film-loading .fa {
	font-size: 30px;
}
.film-filter .filters-col {
	flex: 0 0 57.12%;
	max-width: 57.12%;
}
.film-filter .search-col {
	flex: 0 0 42.88%;
	max-width: 42.88%;
    padding: 8px;
}
.filter-form .f-col {
	flex: 0 0 25%;
	max-width: 25%;
    padding: 8px;
}
.filter-form .f-col select {
    padding: 9px;
    border: none;
    border-radius: 5px;
}
.filter-form .f-col select option {
    font-size: 15px;
}
@media (max-width:1200px) and (min-width:992px) {
    .film-wrapper .film-col {
        flex: 0 0 16.6%;
        max-width: 16.6%;
    }
    .film-filter .filters-col {
        flex: 0 0 66%;
	    max-width: 66%;
    }
    .film-filter .search-col {
        flex: 0 0 34%;
        max-width: 34%;
    }
}
@media (max-width:992px) and (min-width:768px) {
    .film-wrapper .film-col {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .film-filter .filters-col {
        flex: 0 0 60%;
        max-width: 60%;
    }
    .film-filter .search-col {
        flex: 0 0 40;
        max-width: 40%;
    }
}
@media (max-width:768px) {
    .film-wrapper .film-col {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .film-filter .filters-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .film-filter .search-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (max-width:576px) {
    .film-wrapper .film-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .filter-form .f-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.search-form {
	bottom: 10px;
	z-index: 2;
}
.search-bar {
	max-width: 1500px;
	margin: auto;
	border-radius: 5px;
	border: 1px solid #1683c6;
	background: #fff;
}
.search-bar input {
	width: calc(100% - 40px);
	background: none;
	border: none;
}
.search-bar button {
	margin-top: 2px;
	float: right;
	background: none;
	color: #202328;
}

.autocomplete-search {
	position: relative;
}
.autocomplete-search .search-result {
	width: calc(100%);
	position: absolute;
	z-index: 999;
	margin-top: 5px;
	left: 0;
	top: 100%;
	border-radius: 5px;
	background: #f8f8f8;
}
.autocomplete-search .item {
	cursor: pointer;
	padding: 8px 8px;
}
.autocomplete-search .item.selected ,.autocomplete-search .item:hover {
	background: #dbdada;
	border-radius: 5px;
}
.autocomplete-search .item .img {
	width: 80px;
}

.open-search {
	margin-right: 10px;
	background: none;
	color: #fff;
}
.slider-title {
	line-height: 32px;
}
.film-title {
	line-height: 32px;
}
@media (max-width:992px) {
	main {
		padding: 0 5px;
	}
	header {
		margin-top: 0!important;
	}
	.inner-header {
		padding: 6px 0;
	}
	.inner-header .col-logo svg {
		margin-top: 2px;
		height: 35px;
	}
	.inner-header .col-logo {
		flex: 1;
		order: 2;
		text-align: center;
	}
	.inner-header .col-menu {
		width: 80px;
		flex: 0 0 auto;
		order: 1;
	}
	.inner-header .col-lang {
		flex: 0 0 auto;
		width: 100px;
		order: 3;
	}
	.languages {
		float: left;
	}
	/*
	.search-form {
		top: 2px;
		z-index: 4;
		bottom: auto;
		width: calc(100% - 35px);
		height: auto;
	}
	.search-bar input {
		width: 100%;
	}
	.search-form.open {
		display: block!important;
	}
	.search-form .search-btn {
		position: absolute;
		left: 5px; top: 2px;
		color: #202328;
	}
	.autocomplete-search .search-result {
		width: 100%;
	}*/
}
@media (max-width:768px) {
	.slider-title {
		font-size: 22px;
		line-height: 24px;
	}
	.film-title {
		font-size: 22px;
		line-height: 24px;
	}
}

.favorite-movies {
	
}

.poster-cover {
    height: 100%;
    opacity: 0;
    z-index: 2;
    transition: all 0.3s;
}
.poster-cover:before {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: #000;
    opacity: 0.8;
    border-radius: 5px; 
    content: ' ';
}
.poster-cover .play-container {
    left: calc(50% - 37px);
    top: calc(50% - 40px);
    border: 3px solid #fff;
    border-radius: 50%;
    padding: 14px 0 0 22px;
    width: 70px;
    height: 70px;
}
.poster-cover .play-container i {
    font-size: 36px;
}
.lang-panel {
	z-index: 2;
    border-top: 1px solid #474847;
    bottom: 0;
}
.lang-panel>div {
    border-right: 1px solid #474847;
    flex: 0 0 33.333333%;
    text-align: center;
    padding: 5px 0;
    color: #474847;
}
.lang-panel>div.is-lang {
	position: relative;
	color: #fff;
	background: rgba(0, 0, 0, .7);
	transition: all 0.3s;
}
.film-wrapper .film-col a .year {
	color: #fff;
	background: rgba(0, 0, 0, .7);
	border: 1px solid #474847;
	border-radius: 2px;
	padding: 4px 8px;
	left: 5px; top: 5px;
	z-index: 2;
	transition: all 0.3s;
}
.lang-panel>div:last-child {
    border-right: none;
}
.film-wrapper .film-col a:hover .lang-panel>div.is-lang {
	background: rgba(0, 0, 0, 0);
}
.film-wrapper .film-col a:hover .year {
	background: rgba(0, 0, 0, .0);
}


.bg-1 {
	background: url(../images/section-blur.jpg) repeat;
	padding: 25px 15px 15px;
	border-radius: 10px;
}
.turkish {
	background: url(../images/section-turkish.jpg) repeat!important;
}


.film .poster {
	width: 100%;
    max-width: 280px;
}
.film .title {
    margin: 0;
}
.film .param {
    margin : 2px 0;
}
.film .param .label {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    display: inline-block;
}
.film .param .content {
    font-size: 14px;
    text-align: left;
    line-height: 20px;
    display: inline-block;
	color: #64b5f6;
}
.film .param .content a {
	color: #64b5f6;
}

footer {
	padding-top: 3rem;
}
.footer-menu>ul>li {
	float: left;
	margin-bottom: 0.5rem;
}
.footer-menu>ul>li>a {
	font-family: 'BPG';
}
.footer-menu>ul>li a {
	color: #fff;
}
.footer-menu>ul>li>ul {
	margin-top: 6px;
}


.copy {
	color: var(--first-color)
}

.pagination {
	text-align: center;
	clear: both;
	padding: 20px 0 20px 0;
	font-size: 12px;
}
.pagination a {
	color: #000;
	margin: 0 2px;
	font-size: 12px;
	text-decoration: none;
	border-radius: 3px;
	background: #f7f7f7;
	padding: 10px 14px;
}
.pagination a:hover {
	background: #eaeaea;
}
.pagination span {
	margin: 0 2px;
	color: #ccc;
	border-radius: 3px;
	background: #fbfbfb;
	padding: 10px 14px;
}
.pagination b {
	margin: 0 2px;
	color: #000;
	border-radius: 3px;
	background: #5facdb;
	padding: 10px 14px;
}