/*
Theme Name: exzited_starter
Theme URI: https://exzited.com
Author: Arthur Grabovsky
Author URI: https://exzited.com
Description: A clean starter theme
Version: 1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: grid, clean
Text Domain: exzited_starter
*/


@font-face {
	font-family: 'artcom-icons';
	src:
	  url('assets/fonts/artcom-icons.ttf?z8i2f6') format('truetype'),
	  url('assets/fonts/artcom-icons.woff?z8i2f6') format('woff'),
	  url('assets/fonts/artcom-icons.svg?z8i2f6#artcom-icons') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
  }
  
  [class^="exz-"], [class*=" exz-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'artcom-icons' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
  
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  

  .exz-film:before {
	content: "\e913";
  }
  .exz-cloud-download:before {
	content: "\e9c2";
  }
  .exz-new-tab:before {
	content: "\ea7e";
  }
  .exz-facebook:before {
	content: "\ea91";
  }
  

  .exz-facebook {
	font-size: 1.75em;
	text-decoration: none;
}


/* Exzited reset */
* {
    margin: 0px;
    padding: 0px;
}

:root {
	--grey-color: #dfdfdf;
	--dark-grey: #BABBC3;
	--darkest-grey: #2a2a2d;
	--pink: #d94f8c;
	--black: #121316;
}

body {
	background-color: var(--black);
}

h2 {
	color: white;
	text-transform: uppercase;
}

/* overrides Bootstrap Reboot p tag*/
p { 
  margin-top: 0;
  margin-bottom: 0;
}

li {
	color: var(--grey-color);
}

/* keeps footer at the bottom flexbox simple fix */
.main-container {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.content {
    /*flex: 1;*/
    padding: 30px 60px 15px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
    justify-items: center;
}



/* Gallery container */

.film-gallery{
    /*flex: 1;*/
    /* padding: 30px 60px 15px 60px; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px 15px;
    justify-items: center;
}


.gallery-box .gallery-image {
	display: grid;
	height: 141px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
}

.gallery-box a:hover {
	border: none;
}

.gallery-box {
	display: grid;
	width: 250px;
}

.gallery-box:hover {
	filter: brightness(85%);
	cursor: pointer;
	background: var(--pink);
}

.gallery-box:hover > a{
	opacity: 0.85;
}


/* End of Gallery container */

/* container padding fix */
.container-fluid {
    padding-left: 0px;
    padding-right: 0px;
}

.header-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 15px 60px 0px 60px;
	height: 460px;
	background-image: url(https://artcom.exzited.com/wp-content/uploads/2019/05/Cyberpunk-047.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.bg-pos-bottom{
	background-position: bottom
}

.bg-pos-top{
	background-position: top;
}

.search {
	justify-self: stretch;
	min-width: 200px;
}

.search > div {
	background: #d94f5c3d;
}

.search input
{
	border: none;
    border-bottom: 1px solid var(--grey-color);
    background-color: transparent;
    color: white;
}

.search div.asl_m .proinput input.orig{
	padding-left: 5px !important;
}

.search input:focus {
	outline: none;
}

.fa-search {
	color: white;
}

.title {
	color: white;
}

.header-film-info {
	grid-column: span 2;
	align-self: end;
	margin-bottom: 50px;
	max-width: 285px;
}

.header-film-info ul {
	list-style: none;
}

a,
.nav-link {
	color: var(--grey-color);
	text-decoration: none;
}

a:hover,
.nav-link:focus, .nav-link:hover {
	color: var(--pink);
	text-decoration: none;
}

button, .btn-main {
	display: inline-block;
	text-align: center;
	padding: 5px;
    text-transform: uppercase;
	border-radius: 3px;
	border-color: transparent;
    background-color: var(--pink);
    color: white;
}

button:hover, .btn-main:hover {
	color: white;
	filter: brightness(85%);
	cursor: pointer;
}

button:active, .btn-main:active {
	color: white;
	outline-color: var(--black);
}

.btn-main{
	border: 2px solid transparent !important;
}

.btn-outline {
	background: transparent;
    border: 1px solid white;
    color: white;
}

.btn-outline a:hover {
	color: var(--grey-color);
	text-decoration: none;
	border-bottom: none;
}

.menu a {
	transition: background-position-x 0.9s linear;
  }

  .menu a {
	font-size: 1.2rem;
	text-decoration: none;
	transition: all 0.45s;
  }


.menu a:hover {
	color: white;
	text-shadow: #FFF 0px 0px 5px, #FFF 0px 0px 10px, #FFF 0px 0px 15px;
  }
  .menu a:hover a {
	color: #d94f5c;
  }
  

  
  @keyframes line {
	0% {
	  background-position-x: 390px;
	}
  }

/*removes border-bootom bug on film box on hover*/
.film-box a:hover {
	border: none;
}

.filmbox-btns{
	transition: 0.2s all ease-out;
	margin-top: 0px;
}

.film-box:hover + .filmbox-btns{
	margin-top: 20px;
}

.film-box a{
	display: flex;
	flex-direction: column;
	height: 100%;
}
/* Film Box*/
.film-box {

	width: 250px;
}

/* .film-box:hover {
	filter: brightness(85%);
	cursor: pointer;
	background: var(--pink);

} */

/* .film-box:hover > a{
	opacity: 0.85;
} */

.image {
	display: grid;
	height: 300px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
}

.film-year {
	align-self: end;
	padding-left: 10px;
	padding-bottom: 10px;
	color: var(--grey-color);
	text-shadow: 2px 0px 1px black, 0 0 5px black;
}

.lower-text {
	background-color: white;
	color: #494C62;
	padding: 15px 10px;
}

.lower-text-genre
{
	color: var(--dark-grey);
	font-size: 12px;
}

.filmbox-btns {
	display: grid;
	grid-template-columns: auto auto;
}

.filmbox-btns .dropdown {
	margin-top: 15px;
}

.filmbox-btns .watch-movie {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	margin-top: 15px;
	width: 125px;
	justify-self: center;
}

.filmbox-btns .download {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;	
}
/* END Film Box*/

.film-description ul{
	margin-top: 15px;
	list-style: none;
}

.patch-description ul{
	margin-top: 15px;
	color: white;
}

footer {
	color: white;
    border-top: 1px solid var(--grey-color);
}

.brand img{
	height: 150px;
}

.fa-facebook-square {
	float: right;
}

#mainNavBar{
	border-bottom: 1px solid var(--grey-color);
}

/* Search & results styles */


.result-subtitles
{
	color: var(--black);
    font-size: 1rem;
}

.result-title
{
	color: var(--black);
	font-size: 1.2rem;
}

div.asl_r .results .item{
	padding: 5px 10px;
	transition: 0.2s all ease-out;
	background: transparent !important;
}

div.asl_r .results .item:hover{
	background: var(--pink);
}

div.asl_r .results .item:hover .result-subtitles,
div.asl_r .results .item:hover .result-title,
div.asl_r .results .item:hover .highlighted
{
	color: white;
	text-shadow: #FFF 0px 0px 5px, #FFF 0px 0px 10px, #FFF 0px 0px 15px;
	background: transparent;
	transition: 0.2s all ease-out;
}

div.asl_r .results .item .asl_image{
	height: 100px;
	width: 100px;
}


div[id*='ajaxsearchliteres'].wpdreams_asl_results div.resdrg span.highlighted{
	font-weight: 500;
    color: var(--pink);
    background-color: transparent;
}

#ajaxsearchliteres1{
	margin: 0;
    padding: 0;
    border-radius: 0 0 12px 12px;
}

.search #ajaxsearchlite1 .probox, div.asl_w .probox{
	border: none;
    border-bottom: none;
    background-color: transparent;
    color: white;
	padding: 10px 10px;
}

.search .asl_w{
	background-color: transparent;	
	box-shadow: none;
	
}

#ajaxsearchlite1 .probox{
	background-color: var(--pink) !important;
}
.search div.asl_w .probox .promagnifier{
	box-shadow: none;
}

.search #ajaxsearchlite1 .probox .proinput input, div.asl_w .probox .proinput input{
	color: white !important;
	font-size: initial;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}
.search #ajaxsearchlite1 .probox .proinput, div.asl_w .probox .proinput{
	margin: 0;
	padding: 0;
}
.search #ajaxsearchlite1 .probox .proinput input::placeholder {
  color: var(--grey-color) !important;
	    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}

div.asl_w .probox div.asl_simple-circle{
	border: 4px solid white !important;
}
.wpdreams_asl_results{
	/* width: 100% !important; */
    max-width: 512px;
    left: auto !important;
    right: 0 !important;
    margin-right: 60px !important;
}


.circle {
	height: 120%;
	width: 450px;
	background: #46002124;
	position: absolute;
	left: -105px;
	border-radius: 50%;
	z-index: -1;
	top: -40px;
    box-shadow: 1px 0px 1px #a05d6f;
}

.menu {
	z-index: 1;
}

/* Top featured images overlay */
.cover {
	background-color: #d94f5c17;
    background-repeat: repeat;
    width: 100%;
    height: 460px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(data:image/png;base64,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);
}

.hide{
	display: none;
}


/* Media Queries*/
@media only screen and (max-width:500px) {
    .search input {
    	width: 100px;
    }
}


.dropdown-item:focus, .dropdown-item:hover {
	background-color: #ffd1ef;
}

.dropdown-item.active, .dropdown-item:active {
	background-color: var(--pink);
}

/* Language bar styling */
#lang_containter #google_translate_element{
    display: none;
}
#lang_containter{
	display: inline-block;
}
/* 
#lang_containter .menu a{
    padding-left: 0;
    padding-right: 0;
}

#lang_containter .goog-te-gadget-simple{
    border: 2px solid white;
    border-radius: 3px;
    padding: 5px;
} */

.goog-te-banner-frame{
    display: none;
}





/*------------------------------------
- COLOR primary
------------------------------------*/


a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background-color: #cc0060 !important;
}

.border-primary {
    border-color: var(--pink) !important;
}

.btn-primary {
    color: white;
    background-color: var(--pink);
    border-color: var(--pink);
}

.btn-primary:hover {
    color: white;
    background-color: #db0068;
    border-color: #cc0060;
}

.btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 121, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
    color: white;
    background-color: var(--pink);
    border-color: var(--pink);
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    color: white;
    background-color: #cc0060;
    border-color: #bc0059;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 121, 0.5);
}

.btn-outline-primary {
    color: var(--pink);
    background-color: transparent;
    border-color: var(--pink);
}

.btn-outline-primary:hover {
    color: white;
    background-color: var(--pink);
    border-color: var(--pink);
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 121, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: var(--pink);
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
    color: white;
    background-color: var(--pink);
    border-color: var(--pink);
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 121, 0.5);
}

.btn-outline-primary.show{
	background-color: var(--pink);
}

.skiptranslate{
	display: none;
}



.film-box .image {
	visibility: hidden;
	  background-size: cover;
	  background-position: center;
	  background-repeat: no-repeat;
	  width: 100%;
	  height: 300px;
	border-top-left-radius: 12px;
  border-top-right-radius: 12px;
	
  }
  .film-box .image--hover {
	transition: 0.2s all ease-out;
	  background-size: cover;
	  background-position: center;
	  background-repeat: no-repeat;
	  width: 100%;
	position: absolute;
	  height: 300px;
	border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  top: 0;
	
  }
  
  
  .film-box {
	margin-right: 25px;
	transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
	background-color: transparent;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
  }
  .film-box:hover {
	  transform: scale(1.10, 1.10);
	  
  }
  
  .film-box-info {
  z-index: 2;
	background-color: #fff;
	border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
	 padding: 8px 8px 24px 24px;
	 flex: 1;
	}
  
  .film-box-genre {
	font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 500;
  }
  
  .film-box—title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.4rem;
  }
  
  .film-box-year {
	font-size: 1rem;
    font-weight: 500;
  }
  
  .film-box:hover .image--hover {
	  height: 100%;
	  opacity: 0.3;
  }
  
  .film-box:hover .film-box-info {
	  background-color: transparent;
	  position: relative;
	  color: white;
	  text-shadow: #FFF 0px 0px 5px, #FFF 0px 0px 10px, #FFF 0px 0px 15px;
  }
  
  .film-box:hover .film-box-info-hover {
	  opacity: 1;
  }
  

  .diag-anim,
  div.asl_r .results .item{
	transition: 1s all ease;
  }
  .diag-anim::before,
  	div.asl_r .results .item::before{
	background: var(--pink);
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
	transition: all 0.6s ease;
  }
  
  .diag-anim3::before,
  div.asl_r .results .item::before{
	width: 100%;
	height: 0%;
	transform: translate(-50%,-50%) rotate(45deg);
  }
  .diag-anim3:hover::before,
  div.asl_r .results .item:hover::before{
	height: 480%;
  }

  .film-box.diag-anim3:hover::before{
	height: 180%;
  }

  .film-box.diag-anim3::before{
	width: 250%;
  }
  

  

  .btn-fill-bottom {
    border: none;
    outline: none;
    background: none;
    display: flex;
    position: relative;
    overflow: hidden;
    transition: width .5s;
	transition: left .5s;
}

.btn-fill-bottom:before {
	content: "";
    position: absolute;
    z-index: -1;
    height: 250%;
    width: 0%;
	top: 50%;
    left: 50%;
    transition: all .4s;
    transform: translate(-50%,-50%) rotate(-25deg);
}

.btn-fill-bottom:hover {
	color: #fff
}

.btn-fill-bottom:hover:before {
    width: 160%;
}

.btn-fill-bottom--red {
}

.btn-fill-bottom--red:before {
	background: var(--pink);
}


a::before,
a::after {
 content: '';
  position: absolute;
  width: 100%;
  left: 0;
}

a::after {
    content: attr(data-replace);
    transform: translate3d(200%, 0, 0);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
    text-align: center;
}
a:hover::after {
  transform: translate3d(0, 0, 0);
}

a span {
  display: inline-block;
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

a:hover span {
  transform: translate3d(-200%, 0, 0);
}
