/* live */
.lb-live-item {
  width:100%;
  height:auto;
  background:black;
}
.lb-live-item.enabled .lb-live-click {
	height: 100% !important;
}
.lb-live-item-container{
  position: relative;
}
.lb-live-thumb {
  width:100%;
  height:auto;
}
.lb-live-click {
  position:absolute;
  display:flex;
  top:0px;
  left:0px;
  height: 0px;
  width: 100%;
  background: rgba(0,0,0,0);
  cursor:pointer;
}
.lb-live-title {
  position:absolute;
  display:flex;
  bottom: -1px;
  height: 40px;
  width: 100%;
  background: rgba(0,0,0,0.7);
  color: #ffffff;
  padding: 0px 10px;
  align-items: center;
}
.lb-live-title span {
	white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}
/* ondemand */
.lb-ondemand-item {
  width:100%;
  height:auto;
  background:black;
}
.lb-ondemand-item-container{
  position: relative;
}
.lb-ondemand-thumb {
  width:100%;
  height:auto;
}
.lb-ondemand-click {
  position:absolute;
  display:flex;
  top:0px;
  left:0px;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0);
  cursor:pointer;
}
.lb-ondemand-title {
  position:absolute;
  display:flex;
  bottom:0px;
  height: 40px;
  width: 100%;
  background: rgba(0,0,0,0.7);
  color: #ffffff;
  padding: 0px 10px;
  align-items: center;
}
.lb-ondemand-title span {
	white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

/* accordion */
.lb-category {
	color: white;
}

.lb-category-ondemand h1::before {
    height: 15px;
    width: 15px;
    content: "";
    position: absolute;
    right: 15px;
    top: 0px;
    transition: 0.5s all;
    transform: rotate(45deg);
    border-right: 2px solid;
    border-bottom: 2px solid ;
}
.accordion__item__header_alwaysOpen::before {
	display: none;
	cursor: default;
}
.lb-category-ondemand {
	position: relative;
}
.lb-category-ondemand h1.active {
    background-color: transparent;
    transition: 0.4s;
}
.accordion__item__header {
	cursor: pointer;
}
.accordion__item__header_alwaysOpen {
	cursor:default !important;
}
.lb-category-ondemand h1.active::before {
    transform: rotate(-135deg);
    top: 12px;
}
.accordion__item__content {
    padding: 0;
    display: none;
}

/* barre di scorrimento orizzontali */

.glider-slide {
	margin: 5px 5px 5px 5px;
	justify-content: normal !important;
}
.scrollbutton {
	width: calc(3% + 30px) !important;
	height: 100% !important;
    top: 0 !important;
}
.glider-prev {
	left: calc(-1 * calc(3% + 30px)) !important;
}
.glider-next {
	right:  calc(-1 * calc(3% + 30px)) !important;
}
.glider-prev i {
	font-size: 40px;
}

.glider-next i {
	font-size: 40px;
}