/* Resets */

input[type="button"]{
  outline:none!important;
  outline-style: none!important;
  outline:0!important;
}
input[type="button"]::-moz-focus-inner {
  border: 0;
}

select:focus {
  outline:0!important;
}

button:focus, input:focus {
  outline-color:rgba(0, 103, 244, 0)!important;
  outline: 0px auto -webkit-focus-ring-color;
}

.h-half-screen {
  height: 50vh;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  /* Page animation onload */
  animation: fadein .8s;
  -moz-animation: fadein .8s; /* Firefox */
  -webkit-animation: fadein .8s; /* Safari and Chrome */
  -o-animation: fadein .8s; /* Opera */
}

/* Fonts */

.cormorantgaramond {
  font-family: 'cormorantgaramond', sans-serif;
}

/* .brandontext {
  font-family: 'BrandonText', sans-serif;
}

.brandontextBold {
  font-family: 'BrandonTextBold', sans-serif;
} */

.montserrat {
  font-family: 'Montserrat', sans-serif;
}

.montserratBold {
  font-family: 'MontserratBold', sans-serif;
}


#app {
  overflow-x: hidden;
}

.bg_grey {
  background-color: #fafafa;
}

.sText {
  font-size: 0.8em;
}

.home-bg {
  background: url(../../img/historia/background_h.jpg);
  background-size: initial;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-size: cover;
  z-index: -1;
}

/* .login-bg {
  background: url(../../img/historia/background_h.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
 } */


/* Aspect ratios */

.horizontal-aspectRatio {
  width: 100%;
  padding-top: calc(100% / (1.77)); /* 1.77 horizontal aspect ratio (content horizontal) 363x205  */
  position: relative;
}

.vertical-aspectRatio {
  width: 100%;
  padding-top: calc(100% / (0.64)); /* 0.64 vertical image aspect ratio (Content vertical) 400x620  */
  position: relative;
}

.background-cover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.background-contain {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* Common UI elements */

.card {
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  border-radius: 8px;
}

.box-shadow {
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.black-btn {
  background-color: black;
  color: white;
  font-weight: bold;
  border-radius: 2px;
  animation-delay: 2s;
}

.primary-btn {
  color: white;
  font-weight: bold;
  animation-delay: 2s;
  border: 1px solid #ff0000;
  border-radius: 4px;
  background-color: #000;
}

.primary-btn-filled {
  color: white;
  font-weight: bold;
  animation-delay: 2s;
  border: 1px solid #ff0000;
  background-color: #ff0000;
  border-radius: 4px;
}

.white-btn {
  background-color: transparent;
    font-weight: bold;
    border-radius: 4px;
    animation-delay: 2s;
    border: 1px solid #fff;
    color: #fff;
}

.red-text, .red-link {
  color: #ff0000;
}

.red-link-underlined {
  color: #ff0000;
  text-decoration: underline;
}

.link {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}
.border-top {
  border-top: 1px solid #d0d0d06b;
}

.border-bottom {
  border-bottom: 1px solid #d0d0d06b;
}

.border-right {
  border-right: 1px solid #d0d0d06b;
}

.shadow {
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.shadow-bottom {
  box-shadow: 0px 2px rgba(0, 0, 0, 0.02);
}

.shadow-top {
  box-shadow: 0 -2px 0px rgb(0 0 0 / 3%);
}

button.disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.4;
}

.disabled-overlay {
  background: repeating-linear-gradient(45deg, #f7fafc, #f7fafc 10px, #c4ccd6 10px, #c4ccd6 20px);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  opacity: 0.9;
}

/* Transitions utils */

.transition-in-out-8 {
  transition: all .8s ease-in-out;
  -moz-transition: all .8s ease-in-out;
  -o-transition: all .8s ease-in-out;
  -ms-transition: all .8s ease-in-out;
}

.transition-in-out-6 {
  transition: all .6s ease-in-out;
  -moz-transition: all .6s ease-in-out;
  -o-transition: all .6s ease-in-out;
  -ms-transition: all .6s ease-in-out;
}

.transition-in-out-2 {
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
}

.animation-fadein-2 {
  animation: fadein .2s;
  -moz-animation: fadein .2s; /* Firefox */
  -webkit-animation: fadein .2s; /* Safari and Chrome */
  -o-animation: fadein .2s; /* Opera */
}

.animation-fadein-8 {
  animation: fadein .8s;
  -moz-animation: fadein .8s; /* Firefox */
  -webkit-animation: fadein .8s; /* Safari and Chrome */
  -o-animation: fadein .8s; /* Opera */
}

/* Menu */

.menu-logo img {
  height: 46px;
}

@media (max-width: 600px) {
  .menu-logo img {
    height: 38px;
  }
}


@media (max-width: 769px) {
  #menu .primary-btn {
    font-size: smaller;
  }
}

.right-menu {
  position: absolute;
  right: 0;
}

#menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  color: #ffffff;
}

#menu.navBarOnScroll {
  background-color: #000000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

#menu ul#mainMenu li {
  position: relative;
}

#menu ul li.sub ul.subMenu {
  background-color: white;
  width: auto;
  position: absolute;
  top: 25px;
  right: 0;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
}

#profileMenu .subMenu {
  background-color: #000;
  display: none;
  position: absolute;
  top: 25px;
  right: 0;
  border: 1px solid #fff;
  color: #fff;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
}

#menu ul li.sub:hover > ul.subMenu,
#menu ul li.sub ul.subMenu:hover {
  opacity: 1;
  background-color:#000;
  border-radius: 2px;
}

#menu ul.subMenu img, .footer-channels img {
  width: 75px;
  max-height: 40px;
}

#menu ul li.sub ul.subMenu {
  display: flex;
  max-height: 420px;
  overflow: auto;
  flex-wrap: wrap;
  right: -265%;
}

#menu ul li.sub ul.subMenu .subMenuItem {
  width: auto;
  display: flex;
  clear: none;
  min-width: 145px;
}

#menu ul li.sub ul.subMenu.channelMenu .subMenuItem {
  width: auto;
  min-width: auto;
  justify-content: center;
}

.innerMenu::-webkit-scrollbar {
  display: none;
}


/* Profile Menu */

#profileMenu {
  animation-delay: 1s;
}

.profileMenuItems {
  border-radius: 2px;
}

#profileMenu:hover ul.subMenu {
  min-width: 140px;
}

@media (min-width: 769px) {
  #profileMenu:hover ul.subMenu {
    background-color:#000;
    border-radius: 2px;
    visibility: visible;
    display: block;
    width: auto;
  }
  #menu ul li.sub ul.subMenu.channelMenu {
    right: -274%;
  } 
  #menu ul li.sub ul.subMenu {
    opacity: 0;
    visibility: hidden;
  }
  #menu ul li.sub:hover ul.subMenu {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 768px) {
  #profileMenu .profileMenuItems {
    display: none;
  }
  #profileMenu .subMenu.display-profile-menu {
    display: block;
  }
  .sub {
    border-top: 1px solid #d0d0d06b;
  }
  .subMenu {
    border-bottom: 1px solid #d0d0d06b;
  }
  #main .menuIcon {
    display: flex;
  }
  #menu ul li ul#mainMenu {
    display: block;
  }
  #menu ul li ul#mainMenu {
    background: white;
    min-width: 5rem;
    position: absolute;
    transition: all .8s;
    margin-top: 1rem;
    top: 52px;
    left: 0;
  }
  #menu ul#mainmenu li.sub ul.subMenu, #menu ul#mainmenu li.sub ul.subMenu, #menu ul li.sub ul.subMenu {
    position: static;
  }
  #menu ul li.sub ul.subMenu {
    display: flex;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0);
    min-width: inherit;
  }
  #menu ul li.sub ul.subMenu.channelMenu {
    position: relative;
    max-height: fit-content;
    width: inherit;
    max-width: inherit;
    right: 0;
    top: 0;
    left: 0;
    margin-top: 0;
  }
  #menu ul.subMenu img {
    width: 65px;
  }
  .innerMenu {
    position: fixed;
    display: block;
    top: 55px;
    left: -280px;
    bottom: 0;
    width: 250px;
    overflow-y: scroll;
    background-color: #fff;
    box-shadow: 8px 8px rgba(0, 0, 0, 0.02);
    transition: 0.5s;
  }  
  .innerMenu.display-menu {
    transition: 0.5s;
    left:0;
  }
  #menu .sub i {
    display: none;
  }
  #menu li.main {
    width: inherit;
  }

  #menu #main ul.subMenu {
    width: 100%;
  }
  #menu ul li.sub ul.subMenu .subMenuItem {
    width: 100%;
    border-bottom: 1px solid transparent;
    border-right: 1px solid transparent;
  }
  #menu ul li.sub ul.subMenu.channelMenu .subMenuItem {
    width: auto;
    min-width: auto;
    justify-content: center;
    border-bottom: 1px solid transparent;
    border-right: 1px solid transparent;
    padding: 14px 4px;
  }
}

/* Platforms & Channels */

.channelItem {
  width: fit-content;
}

.platforms .platformItem {
  margin: 2%;
  width: 21%; /* 4 items for column */
  width: 46%;  /* 2 items for column */
  min-height: 65px;
  max-width: 125px;
}

.platformItem img {
  max-height: inherit;
  width: 100%;
}

@media (min-width: 1024px) {  /* Ipad Landscape (1024px) and above */
  .platforms .platformItem {
    width: 29.3%; /* 3 items for column */
  }
}
@media (max-width: 768px) {  /* Ipad Portrait (768px) and above */
  .platforms .platformItem {
    width: 46%;  /* 2 items for column */
  }
}
@media (max-width: 414px) { /* Iphone 6-7 + (414px) 5,5'' */
  .platforms .platformItem {
    width: 29.3%;  /* 3 items for column */
  }
}
@media (max-width: 320px) { /* Iphone 5 */
   .platforms .platformItem {
    width: 46%;  /* 2 items for column */
  }
}

/* Actions */
.checkboxes i.checkbox_checked {
  display: none;
}

.checkboxes .checked i.checkbox_checked  {
 display: flex;
}

.checkboxes .checked i.checkbox_not_checked  {
  display: none;
}

.checkboxes .checked.positive i.checkbox_checked.positive  {
  display: flex;
}

.checkboxes .checked.negative i.checkbox_checked.positive  {
  display: none;
}

.checkboxes .checked.positive i.checkbox_checked.negative  {
  display: none;
}

.checkboxes .checked.negative i.checkbox_checked.negative  {
  display: flex;
}

.content_actions button {
  color: #718096;
}

.content_actions button.checked {
  color: #000;
}
.content_actions button .rating-menu  {
  color: #718096;
  padding: 0px 9px;
}

.content_actions button.checked.positive .rating-menu .checked-positive {
  color: #000;
}
.content_actions button.checked.negative .rating-menu .checked-negative {
  color: #000;
}

.content_actions button .rating-menu .checked-positive:hover , .content_actions button .rating-menu .checked-negative:hover {
  color: #000;
}

.content img {
  border-radius: 2px;
}

.checkboxes .platformItem, .checkboxes .filterItem {
  box-shadow: 0 2px 8px rgba(0,0,0,.02);
  box-shadow: 0 2px 8px rgb(0 0 0 / 2%);
  opacity: 0.5;
}

.checkboxes .platformItem:hover {
  opacity: 1;
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
}

.checkboxes .platformItem.checked {
  box-shadow: 0 0px 10px rgba(0, 0, 0, 20%);
  opacity: 1;
} 

.checkboxes .filterItem {
  opacity: 0.2;
  box-shadow: inset 0 0 15px #cececef0;
}

.checkboxes .filterItem.checked:hover {
  opacity: 1;
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
}

.checkboxes .filterItem.checked {
  background-color: #fff;
  opacity: 1;
  box-shadow: 0 0px 8px rgb(0, 0, 0,20%);
}

.chip {
  background-color: #ACB8C7;
  color: white;
  cursor: pointer;
}

.chip-selected {
  background-color: black;
}

/* Footer */
footer {
  box-shadow: 0 -2px 40px rgba(0, 0, 0, 0.04);
  background-color: #000000;
}

.footer-menu a {
  color: #da2c42;
  font-weight: 700;
}

.footer-menu li{
  min-width: fit-content;
}

.footer-channels {
  display: flex;
  flex-wrap: wrap;
}


.footer-channels li {
  display: flex;
  padding: 0.8rem;
}

.social {
  border-top: 1px solid #e8e8e8;
}


/* Modal */

.modal-bg {
  background-color: #00000069;
  max-height: 100%;
}

.modal-content {
  max-width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal-content-m {
  max-width: 90%;
  width: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}

@media (max-width: 320px) { /* Iphone 5 */
  .modal-content-m {
    max-width: 95%;
  }
}

/* Scrolls */

.leftBlur {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2.5em;
  background: rgb(244, 244, 244);
  background: linear-gradient(90deg, rgb(247, 250, 252) 0%, rgba(247, 250, 252,0%) 100%);
}

.rightBlur {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 2.5em;
  background:rgb(244, 244, 244);
  background: linear-gradient(90deg, rgba(247, 250, 252, 80%) 0%, rgba(247, 250, 252, 100%) 100%);
}

.rightBlur button span, .leftBlur button span {
  font-size: 2em;
}

.offset-0 button {
  display: none;
}

/* Expandables */

.expandable p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.expandable.expanded p {
  -webkit-line-clamp: inherit;
  overflow: visible;
}

.expandable .open {
  display: flex;
}
.expandable.expanded .open {
  display: none;
}
.expandable .close {
  display: none;
}
.expandable.expanded .close {
  display: flex;
}

/* Season picker */


#seasonsSelect input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: none;
}

#seasonsSelect label {
  border-radius: 4px;
  padding: 6px 15px;
  color: #888;
}

#seasonsSelect input:checked + div>label {
  background: #fff;
  color: #000;
}


/* Loaders */

.loader-circle {
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #ddd;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 0.8s linear infinite; /* Safari */
  animation: spin 0.8s linear infinite;
}

.loading-line {
  position:relative;
  width: 99%;
  height: 4px;
  overflow-x: hidden;
}

.line{
  position:absolute;
  opacity: 0.4;
  background:#ddd;
  width:150%;
  height:5px;
}

.subline{
  position:absolute;
  background:#ddd;
  height:5px; 
}
.inc{
  animation: increase 2s infinite;
}
.dec{
  animation: decrease 2s 0.5s infinite;
}

.vjs-title-bar, .vjs-dock-text {
  display: none;
}

/* Keyframes */

/* Loading line */
@keyframes increase {
  from { left: -5%; width: 5%; }
  to { left: 130%; width: 100%;}
 }
 @keyframes decrease {
  from { left: -80%; width: 80%; }
  to { left: 110%; width: 10%;}
 }
 

/* Loading circle */
@keyframes spin {
  0% { transform: rotate(0deg); 
    -webkit-transform: rotate(0deg); 
  }
  100% { transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

/* Skeleton */
@-webkit-keyframes shimmer { 
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes shimmer {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

/* Onloads */
@keyframes fadein {
  from {
      opacity:0;
  }
  to {
      opacity:1;
  }
}
@-moz-keyframes fadein { /* Firefox */
  from {
      opacity:0;
  }
  to {
      opacity:1;
  }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
  from {
      opacity:0;
  }
  to {
      opacity:1;
  }
}
@-o-keyframes fadein { /* Opera */
  from {
      opacity:0;
  }
  to {
      opacity: 1;
  }
}

.block-content img {
  max-height: -webkit-fill-available;
}


#form select {
  border: 2px solid #e2e8f0;
}

button#diplomaBtn.disabled {
  background-color: #acb8c7;
}

.diplomaHint {
  background-color: #d9e0e74f;
  border-radius: 4px;
  color: #4c5156;
  max-width: 243px;
}

@media (max-width: 640px) {
  #diplomaHint, .diplomaHint {
    max-width: 100%;
  }

}

.accordion {
  cursor: pointer;
}

.accordion .accordion-content {
  display: block;
  padding: 0 18px;
  background-color: white;
  overflow: hidden;
}
.accordion.closed .accordion-content {
  display: none;
}

.accordion.closed .accordion-icon-up {
  display: none;
}
.accordion.closed .accordion-icon-down {
  display: flex;
}
.accordion .accordion-icon-down {
  display: none;
}
.accordion .accordion-icon-up {
  display: flex;
}


.accordion-header {
  min-height: 100px;
}

.alkiplayer {
  width: 100%;
}

ol.list, ul.list {
  list-style: auto!important;
  margin-left: 20px!important;
}

ol.list li, ul.list li {
  padding: 4px 0px;
}


/* Loading dots */
.loading-dots { 
  display: none;
  position: relative;
}

.loading button span, .loading a span  {
  display: none;
}

.loading {
  pointer-events: none;
  opacity: 0.8;
}

.loading .loading-dots {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 10px;
}
.loading-dots div {
  position: absolute;
  top: 0px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loading-dots div:nth-child(1) {
  left: 8px;
  animation: loading-dots1 0.6s infinite;
}
.loading-dots div:nth-child(2) {
  left: 8px;
  animation: loading-dots2 0.6s infinite;
}
.loading-dots div:nth-child(3) {
  left: 32px;
  animation: loading-dots2 0.6s infinite;
}
.loading-dots div:nth-child(4) {
  left: 56px;
  animation: loading-dots3 0.6s infinite;
}

@keyframes loading-dots1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes loading-dots3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes loading-dots2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

/* Loading spinner (radar) */

.spin {
  -webkit-animation-name: spin;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spin;
  -moz-animation-duration: 1000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: spin;
  -ms-animation-duration: 1000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-transition: rotate(360deg);
}

@-moz-keyframes spin {
  from { -moz-transform: rotate(0deg); }
  to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  from { -webkit-transform: rotate(0deg); }
  to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  from {transform:rotate(0deg);}
  to {transform:rotate(360deg);}
}

@media (max-width: 768px) {
  .right-menu-mobile {
     position: absolute;
     right: calc(50% - 130px) !important;
     top: 65px !important;
  } 
}

/* isNew label */

.content_new {
  background-color: #B40404;
}

/* Rating / Target labels */

.rating_TP, .rating_ESPECIAL_INFANCIA {
  background-color: #75BC51;
}

.rating_7, .rating_6  {
  background-color: #4ABBF8;
}

.rating_12, .rating_14 {
  background-color: #FCD54D;
}

.rating_16 {
  background-color: #F8BC4C;
}
.rating_18 {
  background-color: #B40404;
}

.rating_X {
  background-color: #952984;
}

/* Price buttons */

.priceButtonNotSelected {
  opacity: 0.5;
}

/* OneTrust Cookie floating icon */
.ot-sdk-btn-floating{
  display:none;
}