.carousel-image {
  width: 100%;
  display: block;
}
.carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: var(--grandezza-carousel-indicators);
  height: var(--grandezza-carousel-indicators);
  border-radius: var(--border-radius-carousel-indicators);
  padding: 0;
  margin-right: 10px;
  margin-left: 10px;
  text-indent: -999px;
  cursor: pointer;
  background-color: var(--colore-carousel-indicators);
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
.top-wide-carousel{
	margin: 0px 14px 12px 10px;
}
.carousel__max_wide{
	margin:0 12px 12px 12px;
}


.bannerCasino {
  user-select: none;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
@media (hover: none) {
  .bannerCasino {
    display: flex;
    min-height: 150px;
  }
}
.bannerCasino__img {
  z-index: 1;
  display: block;
  min-width: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.bannerCasino__backdrop {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.1) 100%);
}
.bannerCasino__content {
  box-sizing: border-box;
  position: absolute;
  z-index: 3;
  width: 80%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .bannerCasino__content {
    padding: 0 8%;
  }
}
.bannerCasino__content > *:not(:last-child) {
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .bannerCasino__content > *:not(:last-child) {
    margin-bottom: 16px;
  }
}
.bannerCasino__title {
  font-size: 22px;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .bannerCasino__title {
    font-size: 48px;
  }
}
.bannerCasino__text {
  font-size: 16px;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .bannerCasino__text {
    font-size: 24px;
  }
}
.bannerCasino__controls {
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bannerCasino__controls > *:not(:last-child) {
  margin-right: 12px;
}
.bannerCasino__controls__button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  outline: none;
  text-transform: none;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 4px 8px;
  border-radius: 6px;
  margin-top: 4px;
}
@media screen and (min-width: 1024px) {
  .bannerCasino__controls__button {
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 6px;
  }
}
.bannerCasino__controls__button--cta {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(239, 239, 239, 0.6);
  box-shadow: 0px 0px 10px 0px #efefef;
}
.bannerCasino__controls__button--cta:hover {
  -webkit-tap-highlight-color: transparent;
}
@media screen and (min-width: 1024px) {
  .bannerCasino__controls__button--cta {
    border: 2px solid #efefef;
    box-shadow: 0px 0px 10px 0px #efefef;
  }
}
@media (hover: hover) {
  .bannerCasino__controls__button--cta:hover {
    background: #efefef;
    color: #000 !important;
    box-shadow: 0px 0px 15px 0px #efefef;
  }
}
