/* :root {
--black: hsl(0, 0%, 5%);
--dark: hsl(0, 0%, 20%);
--darker: hsl(0, 0%, 10%);

--light: hsl(0, 0%, 98%);
--text: hsl(0, 0%, 80%);
--gray: 	hsl(0, 0%, 27%);

--red: hsl(1, 90%, 45%);
--red-light: hsl(1, 74%, 67%);
--red-dark: hsl(1, 90%, 36%);


} */


body { 
  background-color: hsl(0, 0%, 20%);
  color: hsl(0, 0%, 98%); 
  overflow-x: hidden;
}


/* HTML TAGS */
button { border: 0; padding: 0 .5rem; }
.select { 
  cursor: pointer;
  padding: .75rem 1.25rem;
  width: auto; 
}


.select--default {
  background-color: hsl(0, 0%, 10%);
  border: 1px solid hsl(0, 0%, 30%);
  color: hsl(0, 0%, 100%);
  width: 100%;
}

/* .label {
  display: block;
  width: 100%;
} */



.container { 
  max-width: 1140px; 
  padding-left: .95rem; 
  padding-right: .95rem;
  position: relative;
}



.main-header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%; 
}
.main { transform: translateY(12rem); transition: all linear 120ms; }
.home .main { /*transform: translateY(12rem);*/ transform: translateY(14rem); transition: all linear 120ms; }

@media screen and ( min-width: 769px ) {
  .main { transform: translateY(12rem); }
  .home .main { /*transform: translateY(24rem);*/ transform: translateY(18rem);}
}



/* NAVIGATION */

/* Bottom Bar */
.bottom-bar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  width: 100%;
}
.bottom-bar__row {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  width: 100%;
}
.bottom-bar__button {
  height: 3rem; 
  flex: 1 1 auto; 
}
.bottom-bar__dropdown {
  border-top: 2px solid hsl(0, 0%, 100%);
  background-color: hsl(0, 0%, 20%);
  text-align: left;
  width: 100%;
  padding: 0 !important;
}
.bottom-bar__dropdown-button { 
  font-weight: bold;
  text-transform: uppercase;
  width: 100% !important; 
}
.bottom-bar__link {
  border: 2px solid #fff;
  display: block;
  width: 100%; 
  padding: .5rem 1rem !important;

  color: #ffffff;
  -webkit-box-shadow: inset 0px 0px 0px 2px hsl(0, 0, 100%);
  -moz-box-shadow: inset 0px 0px 0px 2px hsl(0, 0, 100%);
  box-shadow: inset 0px 0px 0px 2px hsl(0, 0, 100%);
}
.bottom-bar__dropdown-link { 
  color: hsl(0, 0%, 100%);
  display: block;
  padding: .5rem 1rem !important;
  width: 100%;
}
.bottom-bar__link:visited { color: #ffffff; }
@media screen and ( min-width: 769px ) {
  .bottom-bar { display: none; }
}





.subheader { width: 100%; }

/* Burger */
.burger__nav { 
flex: 0 0 auto; 
height: 3rem;
position: static;
width: 100%;
}
.burger__list { 
  background-color: hsl(0, 0%, 20%);
  border-top: 2px solid hsl(0, 0%, 100%);
  display: none; 
  width: 100%;
  margin: 0;
  max-height: 430px;
  overflow-y:  auto;
  padding: 3rem 3rem;
  
  position: absolute;
  bottom: 100%;
  top: unset;
  left: 0;
  right: 0;
  
  animation-name: iconanim;
  animation-iteration-count: infinite;
  animation-duration: 720ms;

  z-index: 0;
}
.burger__list li { display: block; margin-bottom: 0rem; }
.burger__list li a { 
  color: hsl(0, 0%, 100%);
  display: block; 
  font-size: 1.25rem;
  margin: 0; 
  position: relative;
}
.burger__list li a::before,
.burger__list li a::after {
  content: "";
  background-color: hsl(0, 0%, 25%);
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
}
.burger__list li a::before { top: 0; }
.burger__list li a::after { bottom: 0; }

.burger__list li a:visited {
  color: hsl(0, 0%, 100%);
  text-decoration: none;
}
.burger__list li a:hover { 
  color: hsl(0, 0%, 70%); 
  text-decoration: none;
}
.burger__list li a:hover::before,
.burger__list li a:hover::after { display: block; }
.checkbox-burger { 
  cursor: pointer;
  display: block;
  height: 3rem;
  float: right;
  position: relative;
  z-index: 100;
  width: 3rem;
}
.checkbox-burger {-moz-appearance:initial }
.checkbox-burger::before {
  content:"";
  background-color: hsl(0, 0%, 20%);
  -webkit-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 98%);
  -moz-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 98%);
  box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 98%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; height: 100%;

  background-image: url('../icons/burger.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.checkbox-burger:checked ~ .burger__list { display: block; }
.checkbox-burger:checked::before { background-image: url('../icons/close.svg');}


/* States */
.d\:show { display: none; }
.m\:show { display: block; }

@media screen and ( min-width: 769px ) {
  .d\:show { display: block}
  .m\:show { display: none; }
  .burger__list { 
    background-image: none;
    -webkit-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 98%);
    -moz-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 98%);
    box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 98%);
    max-height: auto;
    overflow-y:  unset;
    bottom: unset; 
    top: 0; 
    left: 0; right: 0;
    padding: 1.5rem 6rem;
  }
}
@media (orientation: landscape) {
  .burger__list { max-height: 240px; }
}


.menu {
  width: 100%;
  padding: 1rem 0;
  transition: all linear 120ms;
}
.menu-list { text-align: center; }
.menu__label { font-weight: 800; }
.menu__link {
  display: block;
  margin-top: 0;
  position: relative;
  padding: .75rem 1rem !important;
  text-align: center;
  transition: all linear 120ms;
  width: 100%;
}
.menu__link:hover { 
  color: hsl(1, 91%, 13%);
  text-decoration: none; 
}

.menu__logo { 
  max-width: 100px;
  transition: all linear 120ms; 
}
.dynamic-menu__icon {
  background-color: hsl(0, 0%, 20%); 
  height: 48px; 
  width: 48px; 
}
.menu__check {
  cursor: pointer;
  height: 3rem;
  opacity: 0;
  width: 100%; 
  position: absolute;
  -moz-appearance: initial;
}
.menu__check--active { background-color: hsl(1, 90%, 32%);}
.menu__check:checked ~ .menu__popup { display: block; }

/* Menu states - Modifiers */
.menu--large,
.menu--small,
.menu--bottom {
  display: flex;
  flex-direction: row;
}
.menu--bottom { 
  display: flex;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  position: fixed;
  z-index: 1000;
}
.menu__child { 
  display: flex; 
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 1;
  max-width: 100%;
  width: 100%;
  /* min-width: 25%; */
}
.menu__child.menu--left,
.menu__child.menu--right { display: none; }
.menu--center { 
  justify-content: center;
  width: 100%; 
}
.menu__popup { display: none; }

.menu--large .menu__label { color: hsl(0, 0%, 20%); }
.menu--large .menu__child {
  flex-direction: column;
  align-items: center;
}
.menu--large .menu--center img { max-width: 240px; }
.menu--large .menu__icon { display: none; }
.menu--large .menu__label { display: block; }
.menu--large .menu__link { 
  background-color: hsl(1, 90%, 45%);
  color: hsl(0, 0%, 100%);
  margin-top: 9px;
}
.menu--large .menu__link:hover { background-color: hsl(1, 90%, 36%);}

.menu--small .menu__child {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.menu--small .menu--center img { max-width: 120px; width: 100% }
.menu--small .menu__icon { display: block; }
.menu--small .menu__label { display: none; }
.menu--small .menu__link { 
  background-color: transparent;
  color: hsl(1, 90%, 45%);
  margin-top: 9px;
}
.menu--small .menu__link:hover { color:hsl(1, 90%, 36%);}

.menu--bottom .menu__label {
  color: hsl(0, 0%, 100%);
  cursor: pointer;
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 4rem;
}
.menu--bottom .menu__child {
  background-color: hsl(1, 90%, 45%);
  -webkit-box-shadow: inset -1px 0px 0px 0px hsl(1, 90%, 36%);
  -moz-box-shadow: inset -1px 0px 0px 0px hsl(1, 90%, 36%);
  box-shadow: inset -1px 0px 0px 0px hsl(1, 90%, 36%);

  flex-direction: column;
  position: relative;
  text-align: center;
}
.menu--bottom .menu__child:last-of-type { width: 4rem; padding-right: 0; }

.menu--bottom .menu__popup {
  bottom: 100%;
  left: 5px;
  position: absolute;
  width: 100%;
}
.menu--bottom .menu__popup .menu__link {
  background-color: hsl(0, 0%, 20%);
  border-left: 2px solid hsl(0, 0%, 100%);
  border-right: 2px solid hsl(0, 0%, 100%);
  border-top: 2px solid hsl(0, 0%, 100%);
  border-bottom: 2px solid hsl(0, 0%, 100%);
  text-align: left; 
  width: inherit;
}
.menu--bottom .menu__popup .menu__link:first-of-type { border-bottom: 0; }
.menu--bottom .menu__popup .menu__link:nth-last-of-type(2) { border-bottom: 0; }
.menu--bottom .menu__burger { position: static; }
.menu--bottom .checkbox-burger { 
  height: 4rem;
  width: 4rem;
}
.big-logo { display: block; }
.small-logo { display: none; }

@media screen and ( min-width: 769px ) {
  .menu--bottom { display: none; }
  .menu--small .menu--center img { max-width: 220px; width: 100%; }
  .menu__child.menu--left,
  .menu__child.menu--right { display: flex; }
}



/* Widgets bar */
.topbar {
  /* height: 6rem; */
  padding: .15rem 0;
  display: flex;
  align-items: center;
  transition: all linear 120ms;
}
.topbar--relative { position: relative; }
@media screen and ( min-width: 768px ) {
  .topbar { 
    /* height: 3.5rem;  */
    /* padding-top: initial; */
  }
  .bar__item { flex-basis: 33%; width: 33%; }
  
  .bar__item:first-of-type { order: 0; width: 50%; }  /* Search */
  .bar__item:nth-of-type(2) { order: 1; width: 100%; }  /* Social */
  .bar__item:last-of-type { order: 2; width: 50%; } /* Login */
  
  .bar-bottom .bar__item:first-of-type { order: 0; width: 100%;} /* Search */
  .bar-bottom .bar__item:nth-of-type(2) { order: 1; width: 100%; } /* Social */
  .bar-bottom .bar__item:last-of-type { order: 2; width: 100%; } /* Newsletter */
}



/* Login / Registration */
.user-area {
  display: flex;
  justify-content: flex-end;
  position: static;
}
.form-group { position: relative; }
.form-group.has-error { margin-bottom: 0;}
.form-group label { margin-bottom: 0; }
.form-control-feedback {
  background-color: hsla(1, 90%, 45%, .15);
  color: hsl(0, 0%, 10%);
  font-size: .85rem;
  margin-top: 0;
}
.form-control { border-radius: 0;}
.form-control.is-invalid { background-color: hsla(1, 90%, 45%, .15); }
.form-control:focus {
  outline: none;
  border: 1px solid hsl(1, 89%, 41%);
  box-shadow: 0 0 0 .5rem hsla(1, 90%, 45%, .15);
}


.user__box {
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0 1px 1px hsla(0, 0%, 0%, 0.12), 
              0 2px 2px hsla(0, 0%, 0%, 0.12), 
              0 4px 4px hsla(0, 0%, 0%, 0.12);
  color: hsl(0, 0%, 10%);
  display: none;
  padding: 1.5rem;
  position: absolute;
  top: 100%; 
  z-index: 999;
  max-width: 100%;
  min-width: 280px;
  width: auto;
}
.user__box .label { color: hsl(0, 0%, 10%); }
/* .user__label {
  border: 1px solid hsl(1, 90%, 36%);
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 0;
  padding: .5rem 3rem .5rem .75rem;
  position: relative;
  z-index: 1;
  text-align: right;
  width: auto;
  height: 100%;
} */
/* .user__label::after { 
  content: "";
  background-color: hsl(1, 89%, 41%);
  background-image: url('../icons/user.svg');
  background-position: center right 15px;
  background-repeat: no-repeat;
  background-size: 20%;
  position: absolute; 
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
} */

/* .user__button { 
  opacity: 0;
  cursor: pointer;
  position: absolute;
  width: auto;
  height: 100%;
}
.user__button:checked ~ .user__label::after { 
  background-color: hsl(0, 0%, 100%);
  background-image: url('../icons/user-inverted.svg'); 
}
.user__button:checked ~ .user__label { 
  border: 1px solid hsl(0, 0%, 100%);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: hsl(0, 0%, 10%); 
} */
.user__button { 
  opacity: 0;
  cursor: pointer;
  position: absolute;
  width: auto;
  height: 100%;
}
.user__button:checked ~ .btn--user::after { 
  background-color: hsl(0, 0%, 100%);
  background-image: url('../icons/user-inverted.svg'); 
}
.user__button:checked ~ .btn--user { 
  border: 1px solid hsl(0, 0%, 100%);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: hsl(0, 0%, 10%); 
}


.input-group:last-of-type { margin-bottom: 1.5rem; }
.input-group-addon {
  border: 1px solid hsl(0, 0%, 95%);
  display: inline-block; 
  padding: .5rem 1rem; 
}
.login-box {
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 10%);
  padding: 1.5rem;
}
.login__field { margin-bottom: 1.5rem; }
.user__btn {
  display: block;
  margin-bottom: .5rem;
  width: 100%;
}
.user__btn i { 
  margin-right: .5rem;
  width: 1.5rem;
}

.social-auth-links p { color: hsl(0, 0%, 15%); margin: .75rem 0; }
.user__link { font-weight: 400;}

.login__field.is-invalid {
  background-color: hsla(1, 90%, 45%, .25);
  margin-bottom: 0;
}

.form__info {
  font-size: .85rem;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}
.checkbox__privacy {
  cursor: pointer;
  display: inline-block;
  margin-right: .5rem;
  width: auto;
}

.datepicker.datepicker-dropdown { font-size: 1.25rem; }
.datepicker .table-condensed thead td { padding: .15rem 0; }
.datepicker .table-condensed td { padding: .5rem; }
.datepicker .table-condensed .datepicker-switch { padding: .5rem; }
.datepicker .table-condensed .dow { padding: .5rem; }
.datepicker .table-condensed .clear { background-color: hsl(0, 0%, 95%); padding: .5rem; }
.datepicker .table-condensed .clear:hover { background-color: hsl(0, 0%, 90%) }
.g-recaptcha { margin-bottom: 1.5rem; }

.btn__submit {
  cursor: pointer;
  margin-bottom: .75rem;
  text-align: center;
}
.icon-element {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.icon-element::before { 
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900; 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
}
.toggle-input-visibility { cursor: pointer; -moz-appearance: initial; }
.toggle-input-visibility::before {
  content: "\f06e";
  color: hsl(0, 0%, 40%);
  z-index: 10;
}
.toggle-input-visibility::after { 
  content: "";
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 95%);
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0; 
  z-index: 5;
}
.toggle-input-visibility:checked::before { color: hsl(0, 0%, 15%); }
.toggle-input-visibility:hover::after { background-color: hsl(0, 0%, 95%); }
.toggle-input-visibility:checked::after { background-color: hsl(0, 0%, 95%); }




/* Page */
.page-content img {
  float: left;
  /* width: auto; */
  margin-bottom: 1.5rem;
  margin-right: 1.5rem;
}
/* .page-content a { text-decoration: underline; } */
.page-content a:visited { color:hsl(1, 90%, 45%); text-decoration: none; }
.list {
  padding: .75rem 1rem;
  position: relative;
  border-bottom: 1px solid hsl(0, 0%, 18%);
  margin-bottom: .75rem;
}
.list strong { font-size: 1.5rem; margin-bottom: 1rem; display: block;}
.list a { 
  margin-left: 0;
  margin-top: .5rem;
  padding: 0;
  position: relative; 
  transform: translateY(0);
}
@media screen and ( min-width: 769px ) {
  .list { margin-bottom: 0; }
  .list a { 
    margin-left: 1.5rem;
    padding: initial;
    transform: translateY(.35rem);
  }
}
.buy-on-amazon,
.buy-on-armenia {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  /* margin: .15rem 1rem .15rem 1.5rem; */
  height: 32px;
  width: 120px;
}
.buy-on-amazon { background-image: url('../img/amazon_shop.svg'); }
.buy-on-armenia { background-image: url('../img/armenia_shop.svg'); }



/* Stream */
.main-header-stream { position: relative; }
.topbar__stream {
  padding: 1rem 0;
  position: absolute;
  width: 100%;
  top: .5rem;
}
@media screen and ( min-width: 769px ) {
  .topbar__stream { top: 1.5rem; }
}
.topbar__stream .action-box,
.topbar__stream .user-area,
.topbar__stream .btn--back {
  position: absolute;
  top: 0;
  z-index: 10;
}
.topbar__stream .btn--back {
  left: 1.5rem; 
  height: 2rem;
}
.topbar__stream .action-box {
  display: none;
  max-width: 320px;
  right: 1.5rem;
  top: 100%;
}
/* .topbar__stream .action-box .details__box { padding: .5rem } */
.topbar__stream .action-box .details__content--link { padding: .5rem .75rem }
.topbar__stream .action-box.is-active { display: block; }
.topbar__stream .stream__btn {
  border-radius: 3px;
  padding: .15rem .5rem;
  position: absolute;
  z-index: 10;
}
.topbar__stream .stream__btn--info {
  background-color: hsl(0, 0%, 27%);
  color: hsl(0, 0%, 100%);
  top: 0;
  right: 1.5rem;
  width: 3rem;
  padding-bottom: .15rem;
  padding-top: .15rem;
}
.topbar__stream .stream__btn--info:hover { background-color: hsl(0, 0%, 47%); }
.topbar__stream .stream__btn--lang {
  right: 1.5rem;
  top: 2.5rem;
  width: 3rem;
  height: 1.5rem;
  line-height: 1.25rem;
}
.topbar__stream .stream__btn--lang:last-of-type { top: 4.5rem; }
.topbar__stream .stream__btn--lang{ background-color: hsl(0, 0%, 27%); text-transform: uppercase; font-size: 0.8em; border:0;  }
.topbar__stream .stream__btn--lang.active{background-color: hsl(1, 90%, 45%);}

.topbar__stream .user-area { right: 5rem; }
.stream {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
.stream__content { 
  /* margin-bottom: 1.5rem; */
  flex: 1; 
  position: relative; 
}
.stream__video { height: 100vh; }
.stream__content iframe {
  border: 0;	
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}
.stream__details .details{ margin-bottom: 0; }
@media screen and ( min-width: 769px ) {
  /* .stream__content iframe { height: 80vh !important; } */
  /* .stream__content { height: 80vh; } */
}

.stream__details h3 { margin: 0; }
.stream__action,
.coming-soon {
  background-color: hsl(0, 0%, 22%);
  border: 1px solid hsl(0, 0%, 18%);
  /* margin: 1.5rem 0; */
  padding: 1rem;
}
.coming-soon__icon { padding-left: 4.5rem; position: relative; }
.coming-soon__icon::before {
  border: 1px solid hsl(1, 90%, 45%);
  border-radius: 9999px;
  height: 48px;
  width: 48px;
  content: "\f03d";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-size: 1.25rem;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900; 
  text-align: center;
  line-height: 46px;
  margin-right: 1rem;
  position: absolute;
  top: 50%; left: 1rem;
  transform: translateY(-50%);
}
.code__block {
  background-color: hsl(0, 0%, 22%);
  margin: 1.5rem 0;
  padding: 1.5rem;
}
.code__block label {
  margin-bottom: .75rem;
  width: 100%;
}
.code__block .form-control { border: 1px solid hsl(0, 0%, 18%); }



.details {
  border: 1px solid hsl(0, 0%, 13%);
  margin-bottom: 1.5rem;
}
.details__box {
  background-color: hsl(0, 0%, 18%);
  /* border-bottom: 1px solid hsl(0, 0%, 10%); */
  display: flex;
  flex-direction: row;
  padding: .75rem 1rem;
}
.details div[class*="col-"]:first-of-type .details__box { background-color: hsl(0, 0%, 14%); }
.details div[class*="col-"]:last-of-type .details__box { border-bottom: 0 }
.details__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.details__content h3 { margin: 0; }
@media screen and ( min-width: 769px ) { 
  .details__box { 
    border-bottom: none;
    padding: .75rem 1.5rem; 
  } 
}
.details__label {
  color: hsl(0, 0%, 76%);
  display: block;
  font-size: .85rem;
  width: 100%;
}
.details__text {
  font-size: 1.25rem;
  font-weight: bolder;
}
.social-share {
  margin: 0 .2rem;
  max-width: 200px;
}
.rrssb-buttons.small-format li {
  height: 2.5rem;
  /* margin-right: .5rem; */
}
/* .rrssb-buttons.small-format li:last-of-type { margin-right: 0;} */
.rrssb-buttons.small-format li a .rrssb-icon svg { margin-top: .30rem;}



/* Filter */
.filter-box {
  border-bottom: 1px solid hsl(0, 0%, 15%);
  border-top: 1px solid hsl(0, 0%, 15%);
  margin-bottom: 1.5rem;
  padding: .75rem .25rem;
}
.results { 
  border-bottom: 1px solid hsl(0, 0%, 15%);
  margin-bottom: 1.5rem;
  padding: .75rem 0 0 0; 
}



/* IMAGES|VIDEOS - Aspect ratios */
.responsive-img { max-width: 100% !important; }
.preview { 
  overflow: hidden;
  position: relative;
  /* max-height: 9rem; */
  /* width: 100%;  */
  text-align: center;
}
.image--absolute {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
}
.plyr {
  --plyr-color-main: hsl(1, 90%, 45%);
  margin: 1.5rem 0;
}



/* Aspect ratios */
.ratio-4\:3 { padding-top: 75%; }
.ratio-16\:9 { padding-top: 56.25%; }



/* carousel */
.flickity-viewport {
  margin-bottom: 1rem;
  position: relative;
}
.flickity-viewport::after {
  content: "";
  background: rgb(51,51,51);
  background: -moz-linear-gradient(270deg, rgba(51,51,51,1) 0%, rgba(51,51,51,0) 100%);
  background: -webkit-linear-gradient(270deg, rgba(51,51,51,1) 0%, rgba(51,51,51,0) 100%);
  background: linear-gradient(270deg, rgba(51,51,51,1) 0%, rgba(51,51,51,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#333333",endColorstr="#333333",GradientType=1);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 20%;
}
.carousel-cell { 
  margin-right: 1.5rem; 
  padding: 0;
  transition: all linear 80ms;
}
.carousel-cell:last-of-type { margin-right: 0; }
/* .carousel-cell.is-selected { 
  -webkit-box-shadow: 0px 0px 3px 0px hsl(0, 0%, 20%);
  -moz-box-shadow: 0px 0px 3px 0px hsl(0, 0%, 20%);
  box-shadow: 0px 0px 3px 0px hsl(0, 0%, 20%);
} */
.flickity-prev-next-button {
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 10%);
  border-radius: 0;
  height: 48px;
  width: 48px;
  top: 30%;
}
.flickity-button-icon {
  height: 30%;
  width: 30%;
}
.flickity-prev-next-button.next { right: 0;}
.flickity-prev-next-button.previous { left: 0;}



/* position dots in carousel */
.flickity-page-dots { 
  bottom: -1.5rem;
  left: 0;
  text-align: left;
  width: auto; 
}
/* white circles */
.flickity-page-dots .dot {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: transparent;
  border: 2px solid hsl(0, 0%, 10%);
}
.flickity-page-dots .dot:first-of-type { margin-left: 0;}
.flickity-page-dots .dot:last-of-type { margin-right: 0;}

/* fill-in selected dot */
.flickity-page-dots .dot.is-selected { background: hsl(0, 0%, 10%); }



/* Accordion */
.accordion__header {
  background-color: #2e2e2e;
  border: 0;
  border-bottom: 1px solid #1a1a1a;
  cursor: pointer;
  /* padding: .75rem 1rem; */
  padding: .75rem 1rem .75rem 1.5rem;
  width: 100%;
  text-align: left;
  margin: 0;
  margin-bottom: 1.5rem;
  transition: all linear 120ms;
}
.accordion__header:hover { background-color: transparent; }
.accordion__panel { padding: 0 1rem 1rem 1rem; }

.accordion-biglietti-0,
.accordion-biglietti-1,
.accordion-biglietti-2,
.accordion-biglietti-3,
.accordion-biglietti-4 {
  background-position: center left 1rem;
  background-repeat: no-repeat;
  background-size: 3rem;
}
.accordion-biglietti-0 { background-image: url('../icons/accordion/singolo.svg'); }
.accordion-biglietti-1 { background-image: url('../icons/accordion/level-up.svg'); }
.accordion-biglietti-2 { background-image: url('../icons/accordion/convenzioni-sconti.svg'); }
.accordion-biglietti-3 { background-image: url('../icons/accordion/singolo.svg'); }
.accordion-biglietti-4 { background-image: url('../icons/accordion/singolo.svg'); }



/* CARD */
.postcard {
  /* background-color: transparent; */
  background-color: hsl(0, 0%, 22%);
  border: 0;
  border-radius: 0;
  margin-bottom: 1.5rem;
  padding: 1rem;
  min-height: 500px;
}
.postcard:hover { background-color: hsl(0, 0%, 15%); }
.postcard__tags { 
  margin-bottom: .15rem;
  min-height: 25px; 
}
.postcard__tags span{ 
  font-size: .85rem;
  margin-right: .25rem; 
}
.postcard__tags span:last-of-type{ margin-right: 0; }
.card__span-tags { margin-bottom: .5em; }
.card__span-tags > span {
  margin-right: .75em;
  font-size: .85rem;
  white-space: nowrap;
}

.postcard__header {
  margin-bottom: .15rem;
  min-height: auto;
}
.postcard__body { 
  padding: .15rem 0; 
  margin-bottom: .15rem; 
  /* min-height: auto; */
}

.card__btn {
  display: block;
  background-color: transparent;
  cursor: pointer;
  margin: 0;
  -moz-appearance: initial;
  width: 100%; 
  height: 3rem;
  position: relative;
  z-index: 5; 
}
@media screen and ( min-width: 769px ) { .card__btn { height: 2rem; } }
.card__btn::after {
  /* content: attr(data-label); */
  content: "";
  color: hsl(0, 0%, 100%);
  background-color:  hsl(0, 0%, 20%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  border: 1px solid hsl(0, 0%, 25%);
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  width: 100%; height: 100%;
  text-align: right;
  z-index: 15; 
}
.card__btn:hover::after { background-color: hsl(0, 0%, 15%); }
.card__btn:checked::after,
.card__btn:focus { background-color: hsl(0, 0%, 10%); }
.card__btn:checked ~ .social-list { display: flex; }
.card__btn .svg { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
}
.card__image { margin-bottom: 1rem; }
.card__tags { 
  display: flex; 
  flex-wrap: wrap;
  margin-bottom: 1rem; 
}
.card__tags span { margin-right: .5rem; font-size: .85rem; }
.card__tags span:first-of-type { 
  border-bottom: 1px solid hsl(0, 0%, 20%);
  margin-bottom: .15rem;
  width: 100%;
}
.card__tags span:first-of-type::before {
  content: '';
  display: inline-block;
  background-image: url('../icons/calendar.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: .5rem;

  height: 1rem;
  position: relative;
  transform: translateY(2px);
  width: 1rem;
}
.card__tags span:nth-of-type(2)::before {
  content: '';
  display: inline-block;
  background-image: url('../icons/start_time.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: .5rem;

  height: 1rem;
  position: relative;
  transform: translateY(2px);
  width: 1rem;
}
.card__tags span:nth-of-type(2)::after {
  background-color: hsl(0, 0%, 18%);
  border-radius: 100%;
  content:"";
  display: inline-block;
  height: 4px;
  position: relative;
  transform: translate(5px, -3px);
  width: 4px;
}

.card__hashtag { color: hsl(1, 90%, 45%); }

@media screen and (min-width: 769px ) {
  .postcard__header { min-height: 50px; }
  /* .postcard__body { min-height: 77px; } */
}
.card__link { color: hsl(0, 0%, 100%); }
.card__link:visited { color:  hsl(0, 0%, 100%); }
.card__link:hover { 
  color: hsl(1, 90%, 45%);
  text-decoration: none; 
}

.card-title,
.card__title {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__abstract,
.card-text {
  color: hsl(0, 0%, 80%);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}






/* Timeline */
.timeline,
#timeline {
  position: relative;
  margin-bottom: 1.5rem;
}
.timeline::before,
#timeline::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 4.25rem;
  height: 100%;
  width: 1px;
  background-color: hsl(0, 0%, 35%)
}
.timeline__item {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
  width: 100%;
}
.timeline__item:last-of-type { margin-bottom: 0; }
.timeline__tags span { font-size: .85rem; margin-right: 1rem;}
.timeline__tags span:first-of-type::before {
  content: "";
  background-image: url('../icons/calendar.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: .5rem;
  height: 1rem;
  position: relative;
  transform: translateY(3px);
  width: 1rem;
}
.timeline__tags span:nth-of-type(2)::before {
  content: "";
  background-image: url('../icons/start_time.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: .5rem;
  height: 1rem;
  position: relative;
  transform: translateY(3px);
  width: 1rem;
}
.timeline__content { width: 80%; }
.timeline__preview {
  border-radius: 9999px;
  background-color: hsl(0, 0%, 100%);
  background-image: url("../img/lucca-changes-card-placeholder.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
  border: 3px solid hsl(1, 90%, 45%);
  height: 90px;
  width: 90px;
  min-width: 90px;
  margin-right: 1.5rem;
  overflow: hidden;
  position: relative;
}
.timeline__image { height: 100%; }
.timeline__hashtag { color: hsl(1, 90%, 45%); }
.timeline__btn-box {
  float: left;
  width: auto;
}
.timeline__action {
  display: flex;
  position: relative
}
.timeline__action .social-list { max-width: 200px; }
.timeline__btn {
  display: block;
  background-color: transparent;
  color: hsl(0, 0%, 100%);
  cursor: pointer;
  margin: 0;
  margin-right: .5rem;
  -moz-appearance: initial;
  width: 2rem; 
  height: 2rem;
  position: relative;
  z-index: 5; 
}
.timeline__btn:hover { background-color:  hsl(0, 0%, 30%); }
.timeline__btn-after::after {
  content: "";
  color: hsl(0, 0%, 100%);
  background-color:  hsl(0, 0%, 20%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  width: 100%; height: 100%;
  text-align: right;
  z-index: 15; 
}
.btn--favorite:hover::after,
.btn--share:hover::after { background-color:  hsl(0, 0%, 30%); }
.btn--favorite:checked::after,
.btn--share:checked::after { background-color:  hsl(0, 0%, 10%); }

.is-live {
  background-color: hsl(0, 0%, 15%);
  padding: .15rem .5rem .15rem 1.25rem;
  /* margin-left: 1rem; */
  position: relative;
}
.is-live::after {
  content: "";
  background-color: greenyellow;
  box-shadow: 0 0 6px 1px greenyellow;
  border-radius: 999px;
  height: .5rem;
  width: .5rem;
  position: absolute;
  top: 5px;
  left: .35rem;
}

@media screen and ( min-width: 769px ) {
  .timeline__preview { margin-right: 2rem; }
  .timeline::before, #timeline::before { left: 3.75rem; }
}



/* Tooltip */
.has-tooltip { position: relative; }
.has-tooltip::before {
  content: attr('data-tooltip');
  display: none;
  position: absolute;
  top: 0;
}
.has-tooltip:hover::before { display: block; }
.tippy-box[data-theme~='lcg'] {
  background-color: hsl(0, 0%, 0%);
  color: hsl(0, 0%, 100%);
}
.tippy-box[data-theme~='tomato'][data-placement^='bottom'] > .tippy-arrow::before {
  border-top-color: hsl(0, 0%, 0%);
}

.tooltip-inner {
  border-radius: 0;
  background-color: hsl(0, 0%, 10%);
}


.lcg-search-form {
  display: flex;
  max-width: 380px;
}
.lcg-form-group {
  margin-bottom: 0 !important;
  margin-right: .5rem;
}



/* Masonry */
.masonry-item {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 225px;
  position: relative;
}
.lb-container,
.lb-outerContainer,
.lb-dataContainer { border-radius: 0; position: relative; }
.lb-dataContainer { background-color: hsl(0, 0%, 15%); }
.lb-data { padding: 0; }
.lb-data .lb-details { width: 100%; }
.lb-data .lb-caption {
  display: block;
  color: hsl(0, 0%, 100%);
  font-size: 16px; 
  font-weight: 400;
  padding: 1.5rem 1rem;
  width: 100%;
}
.lb-data .lb-caption a { 
  color: hsl(1, 90%, 45%); 
  font-weight: 800;
}
.lb-data .lb-number { display: none !important;}
.lb-data .lb-close {
  background-color: hsl(1, 90%, 45%);
  background-position: center;
  margin-right: .5rem;
  padding: .5rem;
  position: absolute;
  top: -20px;
  right: 0;
  opacity: 1;
  width: 48px; 
  height: 48px;
  z-index: 10;
}
.lb-data .lb-close:hover { background-color: hsl(1, 90%, 32%);}
.masonry-link {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.load-more {
  background-color: transparent;
  color: hsl(0, 0%, 100%);
  cursor: pointer;
  -webkit-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 100%);
  -moz-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 100%);
  box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 100%);
  padding: .75rem 1rem;
}
.load-more:hover{
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 10%);
}
@media screen and ( min-width: 769px ) {
  .masonry-item{ height: 360px; }
}



/* Maps */
.maps {
  height: 420px;
  width: 100%;
  margin-bottom: 3rem;
}



/* FOOTER */
footer { padding: 1.5rem 0; }
footer a,
footer a:visited { color: hsl(0, 0%, 5%); text-decoration: none; }
.footer-extra {
  padding: 1.5rem 0;
  text-align: center;
  width: 100%;
}
.footer-extra a {
  color: hsl(0, 0%, 98%);
  margin-right: .5rem;
  position: relative;
}
.footer_list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}



/* SOCIAL */
.sharing { 
  align-items: center;
  display: flex;
  flex-direction: row;
  position: absolute;
  bottom: 1em;
  left: 1em;
  right: 1em;
}
.sharing__col { width: 100%; flex: 1; }
.social-list {
  display: none;
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  /* height: 100%; */
  z-index: 0;
}
.social { 
  margin: 0;
  padding: 0;
  text-align: center; 
}
.dropdown__social { 
  background-color:  hsl(0, 0%, 10%);
  padding: .5rem .15rem !important;
  min-width: 200px; 
}
.social > li { 
  display: inline-block;
  list-style-type: none;
  vertical-align: middle; 
}
.social__link { display: block; }
.social-item { 
  display: inline-block;
  margin: 0;
  flex: 1;
  width: auto; 
  /* height: 48px; */
  /* line-height: 24px; */
  text-align: center;
}
.social-item.facebook { background-color: hsl(221, 40%, 47%)}
.social-item.facebook:hover { background-color: hsl(221, 40%, 27%)}
.social-item.twitter { background-color: hsl(203, 89%, 53%); }
.social-item.twitter:hover { background-color: hsl(203, 89%, 33%); }
.social-item.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.social-item.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.social-item.whatsapp { background-color: hsl(151, 100%, 45%); }
.social-item.whatsapp:hover { background-color: hsl(151, 100%, 25%); }
.social-item.telegram { background-color: hsl(199, 73%, 50%); }
.social-item.telegram:hover { background-color: hsl(199, 73%, 30%); }



/* BUTTONS */
.dropdown-flex { display: flex; }
.dropdown-flex--end { justify-content: flex-end; }
.floating-menus {
  display: none;
  flex-direction: row;
  justify-content: flex-end;
  padding: 0 .6rem;
  position: absolute;
  top: 100%; 
  right: 0;
  left: 0;
  width: 100%;
}
.dropdown-custom { 
  border: 0;
  outline: none;
  background-color: hsl(0, 0%, 20%);
  padding: .75rem 0;
  -webkit-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 98%);
  -moz-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 98%);
  box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 98%);
}
.dropdown-menu { border-radius: 0; padding: 1rem; }
.dropdown-menu a { padding: .37rem; margin: 0;}

.dropdown-menu--custom { 
  background-color: hsl(0, 0%, 27%); 
  padding: 0;
  width: 100%; 
}
.dropdown-menu--custom .menu__link {
  color: hsl(0, 0%, 98%);
  -webkit-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 98%);
  -moz-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 98%);
  box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 98%);
  padding: .75rem 0;
  width: 100%; 
}
.floating-menus .dropdown-area { order: 0;}
.floating-menus .d\:burger { order: 1;}
.floating-menus .dropdown-area .dropdown-custom { 
  font-weight: bold;
  text-transform: uppercase;
  padding: .75rem 1rem; 
  width: 100%; 
}

@media screen and ( min-width: 769px ) {
  .floating-menus { 
    display: flex; }
}


/* .btn */
.btn {
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  font-weight: 700;
  margin: 0;
}
.btn:focus { outline: 1px solid hsl(1, 90%, 45%); }

.btn-default { color: hsl(0, 0%, 98%); background-color: hsl(1, 90%, 45%); }
.btn-default:hover,
.btn-default:focus { color: hsl(0, 0%, 98%); background-color: hsl(1, 90%, 36%); }
.btn--none { padding: 0; }
.btn--none:hover { text-decoration: underline; }
.btn-border--red {
  -webkit-box-shadow: inset 0px 0px 0px 1px hsl(1, 74%, 67%);
  -moz-box-shadow: inset 0px 0px 0px 1px hsl(1, 74%, 67%);
  box-shadow: inset 0px 0px 0px 1px hsl(1, 74%, 67%);
}
.btn--default { background-color: hsl(1, 90%, 45%); color: hsl(0, 0%, 98%); border: 1px solid hsl(1, 90%, 30%)}
.btn--default:hover,
.btn--default:focus { background-color: hsl(1, 90%, 36%); color: hsl(0, 0%, 98%); }
.btn--default:visited { color: hsl(0, 0%, 98%); }
.btn--google { background-color: hsl(7, 71%, 55%); }
.btn--google:hover { background-color: hsl(7, 71%, 45%); color: hsl(0, 0%, 100%) }
.btn--facebook { background-color: hsl(214, 89%, 52%); }
.btn--facebook:hover { background-color: hsl(214, 82%, 49%); color: hsl(0, 0%, 100%)}
.btn--google,
.btn--facebook { text-align: left; }
.btn--default-darker {
  background-color: hsl(1, 90%, 40%);
  border: 1px solid hsl(1, 90%, 36%);
  color: hsl(0, 0%, 98%);
}
.btn--default-darker:hover { background-color: hsl(1, 90%, 32%); color: hsl(0, 0%, 98%); }
.btn--default-darker:visited { color: hsl(0, 0%, 98%); }
.btn--neutral:hover { text-decoration: underline; }
.btn__header {
  border-radius: 3px;
  margin: 0;
  padding-bottom: .5rem;
  padding-top: .5rem;
  position: relative;
  z-index: 1;
}
.btn__header--small { padding-top: .15rem; padding-bottom: .15rem; }
.btn__header--left { padding-left: 3rem; padding-right: .75rem;}
.btn__header--left::after { background-position: center left 15px; }
.btn__header--right { padding-right: 3rem; padding-left: .75rem;}
.btn__header--right::after { background-position: center right 15px; }

.btn--user::after { 
  content: "";
  background-image: url('../icons/user.svg');
  background-repeat: no-repeat;
  background-size: 20%;
  position: absolute; 
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}
.btn--pass::after {
  content: "";
  background-image: url('../icons/pass.svg');
  background-repeat: no-repeat;
  background-size: 15%;
  position: absolute; 
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}
.btn--back::after {
  content: "";
  background-image: url('../icons/back-arrow.svg');
  background-position: center left 15px;
  background-repeat: no-repeat;
  background-size: 20%;
  position: absolute; 
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}
.btn__login {
  color: #fff;
  margin-bottom: .5rem;
}
.btn__login .fa-google { border-right: 1px solid hsl(7, 58%, 44%);  }
.btn__login .fa-facebook-f { border-right: 1px solid hsl(214, 82%, 42%); }

.btn__login:hover { background-color: hsl(1, 90%, 32%); }



.inner_menu { border-bottom: 1px solid hsl(0, 0%, 44%); }
.btn--default.inner_menu__btn { 
  border: 2px solid transparent; 
  background-color: transparent;
  color: hsl(0, 0%, 70%); 
}
.btn--default.inner_menu__btn.active,
.btn--default.inner_menu__btn:hover { 
  background-color: hsl(0, 0%, 44%); 
  border: 2px solid hsl(0, 0%, 44%);
  color: hsl(0, 0%, 100%);
}
.btn--default.inner_menu__btn.active:hover { background-color: hsl(0, 0%, 48%); border-color: hsl(0, 0%, 48%); }



.label__filter {
  border-radius: 5rem;
  display: inline-block;
  margin-bottom: .75rem;
  margin-right: .5rem;
  padding: .25rem 1rem;
  position: relative;
}
.btn__filter {
  opacity: 0;
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
}
.btn__filter:last-of-type { margin-right: 0; }
.btn__filter::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.label__filter--default {
  -webkit-box-shadow: inset 0px 0px 0px 2px  hsl(0, 0%, 95%);
  -moz-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 95%);
  box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 95%);
}
.label__filter--default.is-active,
.label__filter--default:hover {
  background-color: hsl(0, 0%, 100%);
  -webkit-box-shadow: inset 0px 0px 0px 4px  hsl(0, 0%, 100%);
  -moz-box-shadow: inset 0px 0px 0px 4px  hsl(0, 0%, 100%);
  box-shadow: inset 0px 0px 0px 4px  hsl(0, 0%, 100%);
  color: hsl(0, 0%, 0%);
}

.label__filter--lucca-changes { 
  -webkit-box-shadow: inset 0px 0px 0px 2px  hsl(1, 90%, 45%);
  -moz-box-shadow: inset 0px 0px 0px 2px  hsl(1, 90%, 45%);
  box-shadow: inset 0px 0px 0px 2px  hsl(1, 90%, 45%);
  color:hsl(1, 90%, 45%); 
}
.label__filter--lucca-changes.is-active,
.label__filter--lucca-changes:hover { 
  background-color: hsl(1, 90%, 45%);
  -webkit-box-shadow: inset 0px 0px 0px 4px  hsl(1, 90%, 45%);
  -moz-box-shadow: inset 0px 0px 0px 4px  hsl(1, 90%, 45%);
  box-shadow: inset 0px 0px 0px 4px  hsl(1, 90%, 45%);
  color:hsl(1, 74%, 84%); 
}

.label__filter--rainbow:nth-of-type(2) { box-shadow: inset 0px 0px 0px 2px  hsl(181, 100%, 37%); color:hsl(181, 100%, 37%); }
.label__filter--rainbow:nth-of-type(2).is-active { background-color: hsl(181, 100%, 37%); color:hsl(181, 100%, 11%); }
.label__filter--rainbow:nth-of-type(2):hover { background-color: hsl(181, 100%, 26%); color:hsl(181, 58%, 81%); }

.label__filter--rainbow:nth-of-type(3) { box-shadow: inset 0px 0px 0px 2px  hsl(38, 100%, 50%); color:hsl(38, 100%, 50%); }
.label__filter--rainbow:nth-of-type(3).is-active { background-color: hsl(38, 100%, 50%); color: hsl(39, 100%, 15%); }
.label__filter--rainbow:nth-of-type(3):hover { background-color: hsl(38, 100%, 35%); color: hsl(38, 100%, 85%); }

.label__filter--rainbow:nth-of-type(4) { box-shadow: inset 0px 0px 0px 2px  hsl(69, 82%, 31%); color:hsl(69, 82%, 31%); }
.label__filter--rainbow:nth-of-type(4).is-active { background-color: hsl(69, 82%, 31%); color: hsl(69, 83%, 9%); }
.label__filter--rainbow:nth-of-type(4):hover { background-color: hsl(69, 82%, 22%); color: hsl(69, 37%, 79%); }

.label__filter--rainbow:nth-of-type(5) { box-shadow: inset 0px 0px 0px 2px hsl(300, 100%, 78%); color:	hsl(300, 100%, 78%); }
.label__filter--rainbow:nth-of-type(5).is-active { background-color:hsl(300, 100%, 78%); color:hsl(300, 28%, 23%); }
.label__filter--rainbow:nth-of-type(5):hover { background-color: hsl(300, 34%, 55%); color: hsl(300, 100%, 93%); }

.label__filter--rainbow:nth-of-type(6) { box-shadow: inset 0px 0px 0px 2px hsl(268, 100%, 75%); color:hsl(268, 100%, 75%); }
.label__filter--rainbow:nth-of-type(6).is-active { background-color:hsl(268, 100%, 75%); color:hsl(268, 33%, 22%); }
.label__filter--rainbow:nth-of-type(6):hover { background-color: hsl(268, 37%, 53%); color: hsl(268, 100%, 93%); }

.label__filter--rainbow:nth-of-type(7) { box-shadow: inset 0px 0px 0px 2px  hsl(300, 100%, 78%); color:hsl(300, 100%, 78%); }
.label__filter--rainbow:nth-of-type(7).is-active { background-color: hsl(300, 100%, 78%); color: hsl(300, 28%, 23%); }
.label__filter--rainbow:nth-of-type(7):hover { background-color: hsl(300, 34%, 55%); color: hsl(300, 100%, 94%); }

.label__filter--rainbow:nth-of-type(8) { box-shadow: inset 0px 0px 0px 2px hsl(268, 85%, 61%); color:hsl(268, 85%, 61%); }
.label__filter--rainbow:nth-of-type(8).is-active { background-color: hsl(268, 85%, 61%); color: hsl(269, 53%, 18%); }
.label__filter--rainbow:nth-of-type(8):hover { background-color: hsl(268, 53%, 43%); color: hsl(268, 86%, 88%); }

.label__filter--rainbow:nth-of-type(9) { box-shadow: inset 0px 0px 0px 2px hsl(16, 92%, 57%); color:hsl(16, 92%, 57%); }
.label__filter--rainbow:nth-of-type(9).is-active { background-color:hsl(16, 92%, 57%); color:hsl(16, 70%, 17%); }
.label__filter--rainbow:nth-of-type(9):hover { background-color:hsl(16, 69%, 40%); color: hsl(16, 91%, 87%); }

.label__filter--rainbow:nth-of-type(n+10) { box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 0%); color:hsl(0, 0%, 70%); }
.label__filter--rainbow:nth-of-type(n+10).is-active { background-color:hsl(0, 0%, 0%); color: hsl(0, 0%, 100%); }
.label__filter--rainbow:nth-of-type(n+10):hover { background-color:	hsl(0, 0%, 10%); color:hsl(0, 0%, 70%); }



.btn__load-more {
  background-color: transparent;
  -webkit-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 80%);
  -moz-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 80%);
  box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 80%);
  color: hsl(0, 0%, 100%);
  cursor: pointer;
  display: none;

  padding: .75rem 1rem;
}
.btn__load-more:hover {
  background-color: hsl(0, 0%, 80%);
  color: hsl(0, 0%, 10%);
}

.btn--info {
  color: hsl(0, 0%, 80%);
  display: block;
  font-size: .85rem;
  font-weight: 400;
  border-radius: 1rem;
  max-width: 200px;
  padding-left: 2.5rem !important;
  position: relative;
  -webkit-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 80%);
  -moz-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 80%);
  box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 80%);
}
.btn--info:hover,
.btn--info:visited { 
  color: hsl(0, 0%, 70%);
  -webkit-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 70%);
  -moz-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 70%);
  box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 70%); 
}
.btn--info > .icon-info { 
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
}


.btn--share::after { background-image: url('../icons/share.svg'); }
.btn--share:checked ~ .social-list { display: flex; }
.btn--favorite::after { background-image: url('../icons/favorite.svg'); }


.btn--menu {
  background-color: hsl(1, 90%, 45%);
  color: hsl(0, 0%, 98%);
  font-weight: bold;
  margin-top: 0;
  height: 3rem;
  line-height: 3rem;
  position: relative;
  width: 100%;
}
.btn--menu[aria-expanded="true"]{ background-color: hsl(1, 90%, 36%); }
.btn--menu:first-of-type::before {
  background-color: hsl(1, 74%, 67%);
  content:"";
  display: block;
  height: 100%; 
  position: absolute;
  width: 1px;
  top: 0; right: 0;
}



/* Page action */
.page-action { display: flex; }
.btn__action { margin-right: .5rem;}
.btn__more {
  /* order: 1; */
  background-color: transparent;
  color: hsl(0, 0%, 100%);
  cursor: pointer;
  -webkit-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 100%);
  -moz-box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 100%);
  box-shadow: inset 0px 0px 0px 2px hsl(0, 0%, 100%);
  padding: .75rem 1rem;
}
.btn__more:hover{ background-color: hsl(0, 0%, 100%); color: hsl(0, 0%, 10%); }
.btn__to-top {
  /* order: 0; */
  background-color: hsl(0, 0%, 0%);
  border: 2px solid hsl(0, 0%, 0%);
  cursor: pointer;
  color: hsl(0, 0%, 70%);
  padding: .75rem 1rem;
  position: fixed;
  bottom: 5rem;
  right: 0;
  z-index: 200;
  transform: translateY(-15px);
  opacity: 0;
}
.btn__to-top:hover { background-color: hsl(0, 0%, 10%);}
@media screen and ( min-width: 769px ) {
  /* .btn__more { order: 0; } */
  .btn__to-top {
    bottom: 2rem;
    right: 2rem;
  }
}

#posterImpiantoFlgDownload {
  float: left;
  width: auto;
  position: relative;
  top: 3px;
  margin-right: .5rem;
}


.headline-box {
  display: flex;
  align-items: flex-end;
  margin-bottom: .75rem;
  width: 100%;
}
.headline-box h2 { margin-bottom: 0; margin-right: 1rem; }
.headline-box span {
  margin-bottom: .65rem;
}
.headline-box a { 
  font-size: .85rem;
  font-weight: 600 !important; 
  margin: 0;
}
.headline-box i {
  transform: translateY(1px);
  position: relative;
}
.title__link {
  color: #fff;
  font-weight: 800;
  position: relative;
}

.title__link:hover,
.title__link:visited {
  color: hsl(0, 0%, 100%);
  text-decoration: none;
}
.title__link:hover .i-arrow { transform: translateX(5px); }



/* MAPS */
.gm-style .gm-style-iw-c { 
  border-radius: 0;
  max-height: 340px;
  padding: 1rem;
}
.gm-ui-hover-effect {
  background-color: hsl(0, 0%, 95%);
  padding: 1rem;
}
.infowindow h3 {
  color: hsl(0, 0%, 10%);
  margin-top: 0;
  margin-bottom: .75rem;
}
.infowindow p { color: hsl(0, 0%, 10%); }
.infowindow a:visited { color: hsl(0, 0%, 100%); }
#legend {
  background-color: hsl(0, 0%, 100%);
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
  color: hsl(0, 0%, 0%);
  padding: .5rem .75rem;
  position: absolute;
  right: .5rem !important;
  top: .5rem;
  bottom: unset !important;
  height: auto;
}
.legend__details { 
  align-items: center;
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: .35rem 0;
}
.legend__details:first-of-type { border-bottom: 1px solid hsl(0, 0%, 95%);}
.legend__details img {
  float: none;
  margin: 0;
  margin-right: .75rem;
}



/* Lightbox */
.featherlight .featherlight-close-icon {
  background-color: hsl(1, 90%, 45%);
  color: hsl(0, 0%, 100%);
  width: 48px;
  height: 48px
}

.grid { width: 100%; }






/* UTILITY */
.fixed { position: fixed }
.fixed-lt { left: 0; top: 0; }



/* Icons */
[class*="icon-"] {
  background-color: transparent;
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  display: inline-block;
  height: 48px;
  width: 48px;
  position: relative;
  vertical-align: middle;
  transition: all linear 80ms;
}
.icon-facebook { background-image: url('../icons/social/facebook.svg'); }
.icon-youtube { background-image: url('../icons/social/youtube.svg'); }
.icon-twitter { background-image: url('../icons/social/twitter.svg'); }
.icon-instagram { background-image: url('../icons/social/instagram.svg'); }
.icon-whatsapp { background-image: url('../icons/social/whatsapp.svg'); }
.icon-telegram { background-image: url('../icons/social/telegram.svg'); }
.icon-spotify { background-image: url('../icons/social/spotify.svg'); }
.icon-twitch { background-image: url('../icons/social/twitch.svg'); }
.icon-google { background-image: url('../icons/google.svg'); }
.icon-login-user { background-image: url('../icons/login-user.svg'); }
.icon-arrow { background-image: url('../icons/arrow.svg'); }
.icon-arrows { background-image: url('../icons/arrows.svg'); }
.icon-info { background-image: url('../icons/information.svg'); }
.icon-online { background-image: url('../icons/online.svg'); }
.icon-campfire { background-image: url('../icons/campfire.svg'); }
.icon-plus { background-image: url('../icons/plus.svg'); }
.icon-share { background-image: url('../icons/share.svg'); }
.icon-scroll { background-image: url('../icons/scroll.svg'); }
.icon-shop { background-image: url('../icons/shop.svg'); }
.icon-start_time { background-image: url('../icons/start_time.svg'); }
.icon-end_time { background-image: url('../icons/end_time.svg'); }
.icon-calendar { background-image: url('../icons/calendar.svg'); }

.icon-facebook--red { background-image: url('../icons/social/facebook-rosso.svg'); }
.icon-youtube--red { background-image: url('../icons/social/youtube-rosso.svg'); }
.icon-twitter--red { background-image: url('../icons/social/twitter-rosso.svg'); }
.icon-instagram--red { background-image: url('../icons/social/instagram-rosso.svg'); }
.icon-spotify--red { background-image: url('../icons/social/spotify-rosso.svg'); }
.icon-twitch--red { background-image: url('../icons/social/twitch-rosso.svg'); }

/* Element */
/* .i-title { top: 2px } */
/* .i-accordion { position: relative; top: 5px; } */


/* Modifiers */
.icon--small { height: 16px; width: 16px }
.icon--medium { height: 24px; width: 24px }
.icon--mediumlarge { height: 30px; width: 30px }
.icon--large { height: 48px; width: 48px }
.icon--xtralarge { height: 72px; width: 72px }
.icon--bg--right { background-position: right; }


[data-status="saved"] .btn--favorite::after { 
  background-color:hsl(0, 0%, 5%); 
}
[data-status="unsaved"] a { background-color: initial; }



/* Animations */
@keyframes iconanim {
  0% { background-position: bottom 1rem right 1rem;}
  50% { background-position: bottom 1.5rem right 1rem;}
  100% { background-position: bottom 1rem right 1rem;}
}



/* Backgrounds */
.red-bg { background-color: hsl(1, 90%, 45%); }
.gray-bg { background-color: hsl(0, 0%, 27%); }
.white-bg { background-color: hsl(0, 0%, 100%); }


.d\:red-bg { background-color: transparent; }
.m\:red-bg { background-color: hsl(1, 90%, 45%); }

@media screen and ( min-width: 769px ) {
  .d\:red-bg { background-color: hsl(1, 90%, 45%); }
  .m\:red-bg { background-color: transparent; }
}



/* Colors */
.color--dark { color: hsl(0, 0%, 20%); }
.color--white { color: hsl(0, 0%, 98%); }
.color--gray { color: hsl(0, 0%, 70%); }



/* Padding */
.m\:p--lr0 { padding-left: 0; padding-right: 0; }
@media screen and ( min-width: 768px ) {
  .m\:p--lr0 { padding-left: .95rem; padding-right: .95rem; }
}



/* Spacer */
[class*="spacer-"] { 
  display: block; 
  width: 100%; 
}
.spacer-1x { height: 1.5rem; } 
.spacer-2x { height: 3rem; }
.spacer-3x { height: 4.5rem; }
.spacer-4x { height: 6rem; }
.spacer--header { height: 22.5rem }
.separator { margin-top: 1rem; margin-bottom: .75rem;}


.loader-container>.overlay, 
.overlay-wrapper>.overlay, 
.loader-container>.loading-img, 
.overlay-wrapper>.loading-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.visibility-hidden {
  position: absolute !important;
  height: 1px; width: 1px; 
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}



/* ad banner responsivity */
.ad-banner-responsive img{
	max-width:100%;
	height:auto;
}