/* ST Single Sticky Banner v1.0.0 */

.st-single-sticky-overlay{
  position: fixed;
  left: 0;
  right: 0;
  bottom: var(--st-banner-gap, 0px);
  z-index: 2147483000;
  background: transparent;
  pointer-events: none;
}

.st-single-sticky-overlay .st-container{
  width: 100%;
  max-width: var(--st-banner-width, 1120px);
  margin: 0 auto;
  position: relative;
  padding: 6px 8px;
  box-sizing: border-box;
}

.st-single-sticky-overlay .st-banner-wrap{
  width: 100%;
  pointer-events: auto;
}

.st-single-sticky-overlay .st-banner{
  display: block;
  width: 100%;
  margin: 0 auto;
}

.st-single-sticky-overlay .st-banner img{
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}

.st-single-sticky-overlay .st-close{
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  background: #d53b37;
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
  pointer-events: auto;
}

@media (max-width: 768px){
  .st-single-sticky-overlay .st-container{
    max-width: 100vw;
    padding: 6px 8px;
  }

  .st-single-sticky-overlay .st-close{
    left: auto;
    right: 8px;
    top: 6px;
    transform: none;
  }
}
