/*****************************************************************************************************
* Banners Module: General CSS
******************************************************************************************************/

/*
Admin
---------------------------------------------------------------------------------------------------- */

.toplevel_page_bub-theme-settings .banners-tax-filter {
  display: none;
}


/*
Common
---------------------------------------------------------------------------------------------------- */

.bub-banners__title {
  font: var(--fn-display-sm1);
  margin: 20px 0 1.3em;
  text-align: center;
}

.bub-banners-item {
  margin: 0 0 30px;
}

.bub-banners-caption {
  font-size: .9rem;
  font-weight: normal;
  line-height: 1.3;
  margin-top: 7px;
  text-align: left;
}

@media screen and (min-width: 1201px) {

  .single .entry .bub-banners {
    display: none
  }
}


/*
Banner Elements
---------------------------------------------------------------------------------------------------- */

/* Product Gallery
--------------------------------------------- */

.bub-banners-prodgal {
  list-style: none;
  padding: 0;
}

.bub-banners-prodgal.bub-masonry {
  margin-bottom: 25px !important;
}

.bub-banners-prodgal__item {
  position: relative;
}

.bub-banners-prodgal__item .text {
  align-items: center;
  background: rgba(0, 0, 0, 0.75);
  /* background: color-mix(in srgb, var(--theme1-background-def) 90%, transparent); */
  color: #fff;
  display: flex;
  font-size: 13.5px;
  justify-content: center;
  line-height: 1.3;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
    inset: 0;
  text-align: center;
  transition: opacity 300ms ease;
}

.bub-banners-prodgal__item:hover .text {
  opacity: 1;
}

