.myBar {
   width: 0%;
   height: 30px;
   background-color: #0c8156;
   text-align: center;
   line-height: 30px;
   color: white;
}
 
#myBarSuccess {background-color: #0c8156;}
#myBarDanger {background-color: #c42d3c;}

/* #########################################################*/
/*														 	               */
/*							       LOGIN					               */
/*														                  */
/* #########################################################*/
.btn-login { 
   display: inline-block; 
   *display: inline; 
   *zoom: 1; 
   padding: 4px 10px 4px; 
   margin-bottom: 0; 
   font-size: 13px; 
   line-height: 18px; 
   color: #333333; 
   text-align: center;
   text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); 
   vertical-align: middle; 
   /*background-color: #f5f5f5; */
   /* background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
   background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
   background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
   background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
   background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
   background-image: linear-gradient(top, #ffffff, #e6e6e6);
   background-repeat: repeat-x;
   filter: progid:dximagetransform.microsoft.gradient(startColorstr=#ffffff, endColorstr=#e6e6e6, GradientType=0);
   border-color: #e6e6e6 #e6e6e6 #e6e6e6;
   border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
   border: 1px solid #e6e6e6;
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
   border-radius: 4px; */
   -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); 
   -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); 
   box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); 
   cursor: pointer; 
   *margin-left: .3em; 
}

.btn-login:hover, .btn:active, .btn.active, .btn.disabled, .btn[disabled] { background-color: #e6e6e6; }
.btn-large { padding: 9px 14px; font-size: 15px; line-height: normal; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }
.btn:hover { color: #333333; text-decoration: none; background-color: #e6e6e6; background-position: 0 -15px; -webkit-transition: background-position 0.1s linear; -moz-transition: background-position 0.1s linear; -ms-transition: background-position 0.1s linear; -o-transition: background-position 0.1s linear; transition: background-position 0.1s linear; }
.btn-primary, .btn-primary:hover { text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); color: #ffffff; }
.btn-primary.active { color: rgba(255, 255, 255, 0.75); }
.btn-primary { background-color: #4a77d4; background-image: -moz-linear-gradient(top, #6eb6de, #4a77d4); background-image: -ms-linear-gradient(top, #6eb6de, #4a77d4); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#6eb6de), to(#4a77d4)); background-image: -webkit-linear-gradient(top, #6eb6de, #4a77d4); background-image: -o-linear-gradient(top, #6eb6de, #4a77d4); background-image: linear-gradient(top, #6eb6de, #4a77d4); background-repeat: repeat-x; filter: progid:dximagetransform.microsoft.gradient(startColorstr=#6eb6de, endColorstr=#4a77d4, GradientType=0);  border: 1px solid #3762bc; text-shadow: 1px 1px 1px rgba(0,0,0,0.4); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.5); }
.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] { filter: none; background-color: #4a77d4; }
.btn-block { width: 100%; display:block; }

* { -webkit-box-sizing:border-box; -moz-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box; box-sizing:border-box; }

/* html { width: 100%; height:100%; overflow:hidden; } */

.login { 
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -150px 0 0 -150px;
  width:300px;
  height:300px;
}
.login h1 { color: #fff; text-shadow: 0 0 10px rgba(0,0,0,0.3); letter-spacing:1px; text-align:center; }

input { 
  width: 100%; 
  margin-bottom: 10px; 
  background: rgba(0,0,0,0.3);
  border: none;
  outline: none;
  padding: 10px;
  font-size: 13px;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 4px;
  box-shadow: inset 0 -5px 45px rgba(100,100,100,0.2), 0 1px 1px rgba(255,255,255,0.2);
  -webkit-transition: box-shadow .5s ease;
  -moz-transition: box-shadow .5s ease;
  -o-transition: box-shadow .5s ease;
  -ms-transition: box-shadow .5s ease;
  transition: box-shadow .5s ease;
}
input:focus { box-shadow: inset 0 -5px 45px rgba(100,100,100,0.4), 0 1px 1px rgba(255,255,255,0.2); }


/* #########################################################*/
/*														 	               */
/*							      HEADER				               */
/*														                  */
/* #########################################################*/
header.main_header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
	background: var(--header);
	z-index: 2;
}

.main_header_active {
	background: var(--header-scroll) !important; 
	transition: all .3s ease;
}

.navigation {display: flex;}

.navigation li {
	margin: 0 18px;
	transition: all 0.3s ease-in-out;
}

.navigation li a {
	position: relative;
	font-size: 16px;
	font-weight: 700;
	padding-left: 10px;
	line-height: 70px;
	color: var(--gray);
}

.navigation li:hover a {color: var(--color-red);}

.user_profile_user {position: relative;}

.main_header_user_profile:hover .arrow-sort {
	transform: rotate(180deg);
	position: relative;
	top: 5px;
}

.user_profile {
	position: absolute;
	z-index: 1;
	background: #100f0f;
	background: rgba(0,0,0,0.7);
	border-radius: 0 5px 5px 0;
	box-shadow: 0 20px 80px rgba(0,0,0,.28);
	margin-left: -137px;
	top: 70px;
	padding: 20px 10px;
	width: 190px;
	height: 160px;
	transition: all .15s;
	box-shadow: 0 20px 80px rgb(0 0 0 / 28%);
	display: none;
}

.main_header_user_profile:hover .user_profile {
	display: block !important;
}

.user_profile_ul:after {
   content: "";
	position: absolute;
   top: 0;
   left: -10px;
   width: 10px;
   height: 160px;
   background: rgba(0,0,0,0.7);
   transition: all 200ms ease-in-out;
   border-radius: 5px 0 0 5px;
}

/*Animação com barrinha vertical no drop*/
.user_profile_ul li::after{
	content: "";
	position: absolute;
   width: 7px;
   height: 42px;
   background: red;
   left: -7px;
   z-index: 1;
}

.user_profile_ul .li_primary::after  {
	transform: scale(0,1);
	transition: transform 0.3s ease;
}

.user_profile_ul .li_second::after  {
	transform: scale(0,1);
	transition: transform 0.3s ease;
}

.user_profile_ul .li_thild::after  {
	transform: scale(0,1);
	transition: transform 0.3s ease;
}

.user_profile_ul .li_primary:hover::after {
	transform:  scale(1,1);
}

.user_profile_ul .li_second:hover::after {
	transform:  scale(1,1);
}

.user_profile_ul .li_thild:hover::after {
	transform:  scale(1,1);
}

/*seta do drop*/
.user_profile:before {
	content: "";
   position: absolute;
   top: -16px;
   right: 30px;
   margin-left: -10px;
   border: 7px solid transparent;
   border-bottom: 8px solid #fff
}

.main_header_user_profile .avatar {padding-bottom: 50px;}

.user_profile_ul li {display: flex;}

.user_profile a {
	display: block;
  font-weight: normal;
  padding: 5px;
  line-height: 2;
  color: #fff;
  text-align: center;
}

.user_profile a:hover {text-decoration: underline;}

.user_profile a > .fa-user,
.user_profile a > .fa-question-circle,
.user_profile a > .fa-sign-out-alt {
	margin-right: 8px;
}

.banner {
	position: relative;
	width: 100%;
	padding: 0 100px;
	align-items: center;
}

.banner .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit:  cover;
}

.content {
	position:  absolute;
	top: 50%;
   transform: translateY(-50%);
	z-index: 1;
}

.banner_home {min-height: 90vh;}

.banner_home:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: var(--overlay);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner_home .content h1 {
	margin: 30px 0;
	font-size: 80px;
	text-transform: uppercase;
	background: url(../../images/texure.jpg);
    background-repeat: repeat-x;
    background-position: 100% 100%;
    color: transparent;
    -webkit-font-smoothing: antialiased;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub_title .season {
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	background-color: var(--badge);
	padding: 8px;
}

.sub_title .episode {
	margin-left: 16px;
	font-size: 16px;
}

.content p {
	margin: 32px 0;
	width: 75%;
}

.content .buttons {
	font-weight: 300;
	line-height: 1.5em;
}

.content .buttons a {
	background: var(--color-red);
    border: 1px solid var(--color-red);
    color: var(--text);
    transition: color 0.3s ease;
    display: inline-block;
    box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    position: relative;
	padding: 9px 30px;
	transition: all 1s ease;
}

.content .buttons a:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0px;
	height: 44px;
	background:  rgba(0,0,0,0.2);
	transition: all .3s ease;
}

.content .buttons a:hover:before {
	width: 50%;
}

.content .buttons a:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0px;
	height: 44px;
	background:  rgba(0,0,0,0.2);
	transition: all .3s ease;
}

.content .buttons a:hover:after {
	width: 50%;
}

.play {
	position: absolute;
	bottom: 50px;
	right: 100px;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	text-decoration: none;
	letter-spacing: 1px;
	font-size: 1.2em;
	cursor: pointer;
	z-index: 2;
}

.play img {
	margin-right: 10px;
	max-width: 50px;
}

.trailer {
	position: fixed;
	top: 50%;
	left: 50%;
	transform:  translate(-50%, -50%);
	z-index: 100000;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	backdrop-filter:  blur(20px);
	visibility: hidden;
	opacity: 0;
}

.trailer.active {
	visibility: visible;
	opacity: 1;
}

.trailer video {
	max-width: 900px;
	outline: none;
}

.close {
	position: absolute;
	top: 30px;
	right: 30px;
	cursor: pointer;
	filter:  invert(1);
	max-width: 32px;
}

/* #########################################################*/
/*														 						*/
/*				        CONTAINER GALERY HOME							*/
/*														 						*/
/* #########################################################*/
.main_content {
	padding: 40px 100px 0 100px;
	margin-bottom: 40px;
}

.main_content_galley h2 {
   text-transform: uppercase;
	font-size: 22px;
	font-weight: 500;
	margin: 20px 0;
}

.main_content_galley_gr,
.main_content_galley_sr {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
   box-shadow: 0px 0 20px 0 rgb(0 0 0 / 50%);
}

.main_content_galley_content,
.gallery_select_movies,
.gallery_select_series {
   flex-basis: calc(16.5% - 7px);
   margin-right: 11px;
	margin-bottom: 1rem;
	position: relative;
	transition: all .3s ease;
}

.main_content_galley_content:nth-child(6n), 
.main_content_galley_content_most_watched:nth-child(6n),
.gallery_select_series:nth-child(6n) {margin-right: 0;} /*Pega de  em 5 elemento e last-child - pega o último elemento filho*/

.main_content_galley_content img, 
.main_content_galley_content_most_watched img,
.gallery_select_series img {width: 100%;}

.main_content_galley_content:hover,
.main_content_galley_content_most_watched:hover,
.gallery_select_series:hover {
   transform: scale(1.1);
	transition: all .3s ease;
	z-index: 2;
}

.main_content_galley_content_desc,
.main_content_galley_content_desc_most_watched,
.gallery_select_series_desc {
   background: rgba(0, 0, 0, 0.5);
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   display: none;
}

.main_content_galley_content:hover .main_content_galley_content_desc,
.main_content_galley_content_most_watched:hover .main_content_galley_content_desc_most_watched,
.gallery_select_series:hover .gallery_select_series_desc {display: block;}

.main_content_galley_content_desc_dathor,
.main_content_galley_content_desc_dathor_most_watched,
.gallery_select_series_desc_dathor {padding: 30px;}

.main_content_galley_content_desc_dathor h3,
.main_content_galley_content_desc_dathor_most_watched h3,
.gallery_select_series_desc_dathor h3 {
   font-weight: bold;
   font-size: 21px;
   margin-bottom: 1rem;
   color: var(--gray);
}

.main_content_galley_content_desc_dathor_number,
.main_content_galley_content_desc_dathor_number_most_watched,
.gallery_select_series_Desc_dathor_number {
   background-color: rgba(255, 255, 255, 0.2);
   padding: 2px 5px;
   display: inline-block;
   margin-bottom: 1rem;
}

.main_content_galley_content_desc_dathor_heart,
.main_content_galley_content_desc_dathor_number_heart_most_watched,
.gallery_select_series_desc_dathor_heart,
.gallery_select_series_desc_dathor_number_heart {
   background: var(--ice);
	border-radius: 50%;
   border: 3px solid var(--ice);
   padding: 1px;
   text-align: center;
   width: 30px;
   height: 30px;
   display: block;
   cursor: pointer;
}

.main_content_galley_content_desc_dathor_heart .fa-heart,
.main_content_galley_content_desc_dathor_number_heart_most_watched .fa-heart,
.gallery_select_series_desc_dathor_heart .fa-heart,
.gallery_select_series_desc_dathor_number_heart .fa-heart {
   color: #000;
   padding: 4px;
   font-size: 24px;6
}

.main_content_galley_content_desc_dathor_heart .fa-heart:hover,
.main_content_galley_content_desc_dathor_number_heart_most_watched .fa-heart:hover,
.gallery_select_series_desc_dathor_heart .fa-heart:hover,
.gallery_select_series_Desc_dathor_number_heart .fa-heart:hover {color:  var(--color-red);}

.main_content_galley_content_desc a,
.main_content_galley_content_desc_most_watched a,
.gallery_select_series_desc a {
   background-color: var(--color-red);
   padding: 8px 20px;
   position: absolute;
   bottom: 25px;
   left: 30px;
   border: none;
   outline: none;
   color: #fff;
   cursor: pointer;
}

.main_content_galley_content_desc a:hover,
.main_content_galley_content_desc_most_watched a:hover,
.gallery_select_series_desc a:hover {background: var(--black);}

.most_assisted {
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 100000;
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   backdrop-filter: blur(20px);
   visibility: hidden;
   opacity: 0;
}

.most_assisted_close {
   position: absolute;
   top: 30px;
   right: 30px;
   cursor: pointer;
   filter: invert(1);
   max-width: 32px;
   visibility: hidden;
   opacity: 0;
}

/* #########################################################*/
/*														 	               */
/*							    PAGE CANAIS						      */
/*														 	               */
/* #########################################################*/
 .banner_canais {min-height: 42vh;}

.banner_canais:before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   background: var(--banner-before);
   width: 100%;
   height: 100%;
   z-index: 1;
}

.banner_canais .content {top: 55%;}

.banner_canais .content h1 {
   margin: 10px 0;
   font-size: 4em;
   text-transform: uppercase;
   background: url(../../images/texure.jpg);
   background-repeat: repeat-x;
   background-position: 100% 100%;
   color: transparent;
   -webkit-font-smoothing: antialiased;
   -webkit-background-clip: text;
   -moz-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}

.banner_canais .content h2 {
   font-family: 'Roboto', sans-serif;
   font-size: 1.3em;
   font-weight: 400;
   margin-bottom: 1.5rem;
}

.form_canais input {font-size: 15px;}

.formChannels {display: flex;}
/*
.main_content_galley_select_column .select_category_channels,
.main_content_galley_select_column .select_category_channels_second {
	width:  285px;
	text-transform: uppercase;
	margin: 2px;
	background: var(--footer);
	color: var(--text);
	height: 45px;
	border: none;
	outline: none;
}

.main_content_galley_select_column:nth-child(2) .select_category_channels,
.main_content_galley_select_column:nth-child(2) .select_category_channels_second {
	width: 485px;
	text-transform: inherit;
   text-transform: uppercase;
}

#id_channels {display: none;}

#id_channels .mychannels {
   width: 100%;
   height: 100vh ;
}

#id_channels .channels_description p{
   font-size: 16px;
   line-height: 1.5;
} */

.select_category_channels,
.select_category_channels_second {
   width:  285px;
	text-transform: uppercase;
	margin: 2px;
	background: var(--footer);
	color: var(--text);
	height: 45px;
	border: none;
	outline: none;
   padding: .6em 1.4em .5em .8em;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: var(--footer);
	background-image: url('../../Images/arrow-down.svg');
   background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: 1.65em auto, 100%;
}

.select_category_channels::-ms-expand,
.select_category_channels_second::-ms-expand {
	display: none;
}

.select_category_channels option,
.select_category_channels_second option {
	font-weight:normal;
}

/* Suporte para texto rtl, suporte explícito para árabe e hebraico */
*[dir="rtl"] .select_category_channels, :root:lang(ar) .select_category_channels, :root:lang(iw) .select_category_channels,
*[dir="rtl"] .select_category_channels_second, :root:lang(ar) .select_category_channels_second, :root:lang(iw) .select_category_channels_second {
	background-position: left .7em top 50%, 0 0;
	padding: .6em .8em .5em 1.4em;
}

/* Estilos desativados */
.select_category_channels:disabled, .select_category_channels[aria-disabled=true],
.select_category_channels_second:disabled, .select_category_channels_second[aria-disabled=true] {
	color: var(--badge);
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
}

.select_category_channels:disabled:hover, .select_category_channels[aria-disabled=true],
.select_category_channels_second:disabled:hover, .select_category_channels_second[aria-disabled=true] {
	border-color: none;
}

.main_content_galley_select_column:nth-child(2) .select_category_channels,
.main_content_galley_select_column:nth-child(2) .select_category_channels_second {
	width: 485px;
	text-transform: inherit;
   text-transform: uppercase;
}

#id_channels {display: none;}

#id_channels .mychannels {
   width: 100%;
   height: 100vh ;
}

#id_channels .channels_description p{
   font-size: 16px;
   line-height: 1.5;
} 
/* #########################################################*/
/*														 	               */
/*						       PAGE MOVIES						      */
/*														 	               */
/* #########################################################*/

.banner_movies {min-height: 42vh;}

.banner_movies:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: var(--banner-before);
   width: 100%;
   height: 100%;
   z-index: 1;
}

.banner_movies .content {top: 55%;}

.banner_movies .content h1 {
	margin: 10px 0;
	font-size: 4em;
	text-transform: uppercase;
	background: url(../../images/texure.jpg);
   background-repeat: repeat-x;
   background-position: 100% 100%;
   color: transparent;
   -webkit-font-smoothing: antialiased;
   -webkit-background-clip: text;
   -moz-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}

.banner_movies .content h2 {
	font-family: 'Roboto', sans-serif;
   font-size: 1.3em;
   font-weight: 400;
   margin-bottom: 1.5rem;
}

.form_search {
	position: relative;
	background: var(--body);
	display: flex;
}

.input_search {
	background: var(--body);
   border: none;
   outline: none;
   padding: 12px 15px;
   font-size: inherit;
}

.input_search::placeholder {color: var(--text);}

.btn_button_search {
	padding: 5px 15px;
    background: transparent;
    color: var(--text);
    border: none;
    outline: none;
}

.btn_button_search .fa-search {font-size: 16px;}

.main_content_galley_select {
	display: flex;
	margin-bottom: 50px;
	position: relative;
}

.main_content_galley_select_column .select_category_movies {
	width:  285px;
	text-transform: uppercase;
	margin: 2px;
	background: var(--footer);
	color: var(--text);
	height: 45px;
	border: none;
	outline: none;
}

.main_content_galley_select_column:nth-child(2) .select_category_movies {
	width: 485px;
	text-transform: inherit;
}

.main_content_galley_content > .load_more {
	display: flex;
    justify-content: center;
    flex-basis: 100%;
    padding-top: 20px;
}

.main_content_galley_content > .load_more  span {
    padding: 7px 15px;
    background-color: #000;
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

/* #########################################################*/
/*														 	               */
/*						       PAGE SÉRIES						      */
/*														 	               */
/* #########################################################*/
.banner_series {min-height: 42vh;}

.banner_series:before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   background: var(--banner-before);
   width: 100%;
   height: 100%;
   z-index: 1;
}

.banner_series .content {top: 55%;}

.banner_series .content h1 {
   margin: 10px 0;
   font-size: 4em;
   text-transform: uppercase;
   background: url(../../images/texure.jpg);
   background-repeat: repeat-x;
   background-position: 100% 100%;
   color: transparent;
   -webkit-font-smoothing: antialiased;
   -webkit-background-clip: text;
   -moz-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}

.banner_series .content h2 {
   font-family: 'Roboto', sans-serif;
   font-size: 1.3em;
   font-weight: 400;
   margin-bottom: 1.5rem;
}

.main_content_search_select_series {
	display: flex;
	margin-bottom: 50px;
	position: relative;
}

.main_content_galley_select_column_series .select_category_series {
	width:  285px;
	text-transform: uppercase;
	margin: 2px;
	background: var(--footer);
	color: var(--text);
	height: 45px;
	border: none;
	outline: none;
}

/* .main_content_galley_select_column_series .select_category_series {
	width: 408px;
	text-transform: inherit;
}  */


/* #########################################################*/
/*														 	               */
/*							   PAGE FAVORITO						      */
/*														 	               */
/* #########################################################*/
.banner_favorite {min-height: 42vh;}

.banner_favorite:before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   background: var(--banner-before);
   width: 100%;
   height: 100%;
   z-index: 1;
}

.banner_favorite .content {top: 60%;}

.banner_favorite .content h1 {
   margin: 10px 0;
   font-size: 4em;
   text-transform: uppercase;
   background: url(../../images/texure.jpg);
   background-repeat: repeat-x;
   background-position: 100% 100%;
   color: transparent;
   -webkit-font-smoothing: antialiased;
   -webkit-background-clip: text;
   -moz-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}

.banner_favorite .content h2 {
   font-family: 'Roboto', sans-serif;
   font-size: 1.3em;
   font-weight: 400;
   margin-bottom: 1.5rem;
}

.main_content_search_select {
	display: flex;
	margin-bottom: 50px;
	position: relative;
}

.main_content_galley_select_column .select_search_favorite {
	width:  285px;
	text-transform: uppercase;
	margin: 2px;
	background: var(--footer);
	color: var(--text);
	height: 45px;
	border: none;
	outline: none;
}

.main_content_galley_select_column .select_search_favorite {
	width: 408px;
	text-transform: inherit;
}

.gallery_favorite {justify-content: center;}

.card-text-info {
   padding: 7px;
   text-align: center;
}

.no-result span {
   margin-right: 10px;
   position: relative;
   top: 2px;
}

/* #########################################################*/
/*														 	               */
/*						    PAGE ID VIDEO SÉRIE						   */
/*														 	               */
/* #########################################################*/
.banner_idvideo {
   min-height: 42vh;
   padding-top: 100px;
}

.d-block {
   width: 78%;
   display: block;
   margin: 0 auto;
}

.main_content_idvideo > h1 {
   margin: 30px 0 10px 0;
   font-size: 50px;
   text-transform: uppercase;
   background: url(../../images/texure.jpg);
   background-repeat: repeat-x;
   background-position: 100% 100%;
   color: transparent;
   -webkit-font-smoothing: antialiased;
   -webkit-background-clip: text;
   -moz-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}

.main_content_idvideo > h2 {
   font-size: 30px;
   text-transform: uppercase;
   font-weight: 500;
   line-height: 1.2;
   font-family: "Roboto", sans-serif;
   margin-bottom: 30px;
}

.main_content_idvideo p {
   font-weight: 400;
   font-style: normal;
   font-size: 16px;
   line-height: 1.5;
   margin-bottom: 16px;
}

.temporada {
   display: flex;
   font-size: 20px;
   font-weight: 500;
   letter-spacing: 0.7px;
   margin-bottom: 30px;
   align-items: center;
}

.temporada span:nth-child(1) {
   font-size: 20px;
   padding: 1rem;
   background-color: #6c757d;
}

.temporada span:nth-child(2) {
   margin-left: 1rem;
   font-size: 20px;
   font-weight: 500;
   letter-spacing: 0.7px;
}

.temporada span:nth-child(3) {
   position: relative;
   padding-left: 30px;
   font-size: 20px;
   font-weight: 500;
   letter-spacing: 0.7px;
}

.temporada span:nth-child(3):before {
   content: "";
   height: 6px;
   width: 6px;
   background: var(--text);
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   left: 13px;
   border-radius: 50%;
}

.divider {
   padding: 0 0 20px 0;
   border: 1px solid;
   border-image-slice: 1;
   border-width: 0 0 1px 0;
   border-image-source: linear-gradient(to left, rgba(209, 208, 207, 0), rgba(209, 208, 207, 0.6), rgba(209, 208, 207, 0));
}

/* .seasons {
   margin: 40px 0;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   background: var(--footer);
} 

.seasons li {
   padding: 10px 16px 10px 16px;
   position: relative;
}

.seasons li.active {background: var(--gradient);}

.seasons li.active:after {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   width: 0;
   height: 3px;
   background:var(--color-red);
   width: 100%;
}

.seasons li a {
   position: relative;
   overflow: hidden;
   border-radius: 0;
   text-transform: uppercase;
   margin-left: 15px;
   margin-right: 15px;
}

.seasons li a:hover {
   color: var(--color-red-houver);
   transition: all 0.4s linear;
}  */

.seasons .seasons_j_details {
   margin: 40px 0;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   background: var(--footer);
}

.seasons .j_details_nav {
   padding: 10px 16px 10px 16px;
   position: relative;
   cursor: pointer;
}

.seasons .j_details_nav.active {background: var(--gradient);}

.seasons .j_details_nav.active:after {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   width: 0;
   height: 3px;
   background:var(--color-red);
   width: 100%;
}

.seasons .seasons_j_details .j_details_nav {
   position: relative;
   overflow: hidden;
   border-radius: 0;
   text-transform: uppercase;
   margin-left: 15px;
   margin-right: 15px;
}

.seasons .seasons_j_details .j_details_nav:hover {
   color: var(--color-red-houver);
   transition: all 0.4s linear;
} 

.video_normalize {
   display: flex;
   flex-wrap: wrap;
   box-shadow: 0px 0 20px 0 rgb(0 0 0 / 50%);
   position: relative;
}

.article_video_item {
   flex-basis: calc(20.1% - 10px);
   margin-right: 10px;
   position: relative;
   margin-bottom: 10px;
}

.article_video_item:nth-child(5n) { /*Pega de  em 5 elemento e last-child - pega o último elemento filho*/
   margin-right: 0; 
}

.article_video_item_desc {
   background: var(--footer);
   padding: 16px;
}

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

.article_video_item_desc_dathor span:nth-child(2) {color: var(--color-red);}

.article_video_item_desc p {
   margin-top: 5px;
   margin-bottom: 0;
}

.img_play {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   cursor: pointer; 
}

/* #########################################################*/
/*														 						*/
/*				        CONTAINER TEMPORADA							*/
/*														 						*/
/* #########################################################*/

.main_content_season_preview {
   display: flex;
   align-items: center;
   justify-content: space-between;
   /* flex-wrap: wrap; */
}

.main_content_season_preview_img {margin: 20px 0;}

.main_content_season_preview_text_colunm {
   margin: 20px 0;
   align-self: flex-start;
}

.main_content_season_preview_text {
   padding: 0 15px;
    margin-bottom: 60px;
}

.main_content_season_preview_text > p {margin-bottom: 10px;}

.main_content_season_preview_header > h1 {display: none;}

.main_content_season_preview_bt {
   padding: 0 15px;
   display: inline;
}

.main_content_season_preview_bt > span {
   background: transparent;
   border: 1px solid var(--color-red);
   color: var(--text);
   transition: color 0.3s ease;
   display: inline-block;
   box-shadow: 0 0 1px rgb(0 0 0 / 0%);
   position: relative;
   padding: 9px 30px;
   transition: all 0.5s ease;
   text-transform: uppercase;
   font-size: 16px;
   cursor: pointer;
}

.main_content_season_preview_bt > span:hover {
   background: var(--color-red);
   color: var(--white);
}
/* .main_content_season_preview_bt {
   padding: 0 15px;
   display: inline;
}

.main_content_season_preview_bt > a {
   background: transparent;
   border: 1px solid var(--color-red);
   color: var(--text);
   transition: color 0.3s ease;
   display: inline-block;
   box-shadow: 0 0 1px rgb(0 0 0 / 0%);
   position: relative;
   padding: 9px 30px;
   transition: all 0.5s ease;
   text-transform: uppercase;
   cursor: pointer;
}

.main_content_season_preview_bt > a:hover {
   background: var(--color-red);
   color: var(--white);
} */

.main_content_season {
   border-bottom: 5px solid #a30c0c;
   margin-bottom: 4px;
}

.main_content_season_gallery_card {
   /* align-items: center; */
   border-bottom: 1px solid #404040;
   border-radius: .25em;
   cursor: pointer;
   display: flex;
   min-height: 10em;
   overflow: hidden;
   padding: 1em;
   position: relative;
}

.main_content_season_gallery_card_title > p:nth-child(1) {
   font-size: 1.5rem;
   margin-bottom: 10px;
}

.main_content_season_gallery_card_title > p:nth-child(2) {
   margin-bottom: 10px;
   display: flex;
   justify-content: space-between;
}
   
.main_content_season_gallery_card_title {padding: 10px 45px;}

/* #########################################################*/
/*														 	               */
/*							    FOOTER							         */
/*														 	               */
/* #########################################################*/
.main_footer {background:  var(--footer);}
.main_footer_content {padding: 0 100px;}
.ul_footer {padding: 40px 0;}
.ul_footer li {margin-bottom: 10px;}
.ul_footer li a {color: var(--gray);}
.ul_footer li a:hover {color: var(--color-red);}

.copyright {
	background: var(--body);
	box-shadow: rgb(0 0 0 / 50%) 0px 3px 10px;
	padding: 0 100px;
	text-align: center;
	padding: 8px 0;
	font-size: 14px;
	color: var(--gray);
}

/*RETORNO AO TOPO*/
.return_top {
	visibility: hidden;
}

.return_top .top {
	position: fixed;
    bottom: 30px;
    right: 25px;
    background: var(--color-red);
    width: 50px;
    height: 50px;
    font-size: 26px;
    line-height: 50px;
    text-align: center;
    border-radius: 90px;
    cursor: pointer;
}

.return_top .top:hover {
	background: var(--color-red-houver);
}

.return_active {
	visibility: visible;
}


/* #########################################################*/
/*														 	               */
/*						   CUSTOMIZAÇÂO SELECT						   */
/*														 	               */
/* #########################################################*/

/*SELECT*/
.nice-select {
   height: 45px; /* altura do select */
   -webkit-tap-highlight-color: transparent;
   background-color: var(--select);
   clear: both;
   cursor: pointer;
   display: flex;
   float: left;
   font-family: inherit;
   font-size: 16px;
   font-weight: normal;
   outline: none;
   padding: 12px 15px;
   position: relative;
   text-align: left !important;
   -webkit-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
   white-space: nowrap;
   width: auto;
}

.nice-select:after {
   border-bottom: 2px solid var(--text);
   border-right: 2px solid var(--text);
   content: '';
   display: block;
   height: 5px;
   margin-top: -4px;
   pointer-events: none;
   position: absolute;
   right: 12px;
   top: 50%;
   -webkit-transform-origin: 66% 66%;
   -ms-transform-origin: 66% 66%;
   transform-origin: 66% 66%;
   -webkit-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   transform: rotate(45deg);
   -webkit-transition: all 0.15s ease-in-out;
   transition: all 0.15s ease-in-out;
   width: 5px;
}

.nice-select.open:after {
   -webkit-transform: rotate(-135deg);
   -ms-transform: rotate(-135deg);
   transform: rotate(-135deg);
}

.nice-select.open .list {
   opacity: 1;
   pointer-events: auto;
   -webkit-transform: scale(1) translateY(0);
   -ms-transform: scale(1) translateY(0);
   transform: scale(1) translateY(0);
}

.nice-select.disabled {
   border-color: #000;
   color: #999;
   pointer-events: none;
}

.nice-select.disabled:after {
   border-color: #000;
}

.nice-select.wide {
   width: 100%;
}

.nice-select.wide .list {
   left: 0 !important;
   right: 0 !important;
}

.nice-select.right {
   float: right;
}

.nice-select.right .list {
   left: auto;
   right: 0;
}

.nice-select.small {
   font-size: 12px;
   height: 36px;
   line-height: 34px;
}

.nice-select.small:after {
   height: 4px;
   width: 4px;
}
.nice-select.small .option {
   line-height: 34px;
   min-height: 34px;
}

.nice-select .list {
   width: 100%;
   height: 295px;
   overflow-y: auto !important;
   text-transform: uppercase;
   background-color: var(--select);
   box-shadow: 0 0 0 1px var(--select); /* cor da borda dos options em RGB */
   margin-top: 4px;
   opacity: 0;
   overflow: hidden;
   padding: 0;
   pointer-events: none;
   position: absolute;
   top: 100%;
   left: 0;
   -webkit-transform-origin: 50% 0;
   -ms-transform-origin: 50% 0;
   transform-origin: 50% 0;
   -webkit-transform: scale(0.75) translateY(-21px);
   -ms-transform: scale(0.75) translateY(-21px);
   transform: scale(0.75) translateY(-21px);
   -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
   transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
   z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
   background-color: transparent !important;
}

.nice-select .option {
   cursor: pointer;
   font-weight: 400;
   line-height: 22px; /* altura das options */
   min-height: 22px; /* este valor deve ser o mesmo do acima */
   list-style: none;
   outline: none;
   padding: 10px;
   text-align: left;
   -webkit-transition: all 0.2s;
   transition: all 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
   background-color: var(--color-red); /* corde fundo da option selecionada e ao passar o mouse */
   color: var(--text); /* cor da option ao passar o mouse e do item selecionado*/
}

.nice-select .option.selected {
   font-weight: bold;
}

.nice-select .option.disabled {
   background-color: transparent;
   color: #999;
   cursor: default;
}

.no-csspointerevents .nice-select .list {
   display: none;
}

.no-csspointerevents .nice-select.open .list {
   display: block;
}


/*BARRA DE ROLAGEM - SCROLBAR*/
::-webkit-scrollbar-track {
   background-color: var(--body);
}
::-webkit-scrollbar {
   width: 6px;
   background-color: var(--select);
}
::-webkit-scrollbar-thumb {
   background-color: var(--color-red);
}




/* #########################################################*/
/*														 	               */
/*							    MEDIA QUERIES							   */
/*														 	               */
/* #########################################################*/
/*1366*/
@media (max-width: 86em) {
   .d-block {
      width: 100% !important;
   }

   .main_content_galley_content {
      flex-basis: calc(20% - 8px);
      margin-right: 10px;
   }

   .main_content_galley_content:nth-child(5n) {margin-right: 0;} 
}

/*992*/
@media (max-width: 62em) {
   .main_content_season_preview {
      justify-content: center;
      flex-wrap: wrap;
   }

   .main_content_season_preview_bt > a {margin-bottom: 10px;}
   .main_content_season_gallery_card_img {align-self: center;}
}

/*768*/
@media (max-width: 48em) {
   .main_content_season_preview_bt {display: grid;}
   
   .main_content_season_preview_bt > a {
      display: flex;
      justify-content: center;
   }
   
   .main_content_season_gallery_card_img {width: 100%;}
   .main_content_season_gallery_card_title > p:nth-child(1) {font-size: 20px;}
   .main_content_season_gallery_card_title > p:nth-child(2) {font-size: 14px;}
   .main_content_season_gallery_card_title > p:nth-child(3) {font-size: 14px;}
}

/* 640px */
@media (max-width: 40em) {
   .main_content {padding: 55px 40px 0 40px !important;}
   .main_content_season_gallery_card {flex-wrap: wrap;}
   .main_content_season_gallery_card_img {text-align: center;}
   .main_content_season_gallery_card_img > img {width: 40%;}
   .main_content_season_gallery_card_title {padding: 0;}
}

/* 560px */
/* @media (max-width: 35em) {
   .main_content_season_gallery_card {flex-wrap: wrap;}
   .main_content_season_gallery_card_img {text-align: center;}
} */

