@charset "UTF-8";

/* ===========================================================================
 * Ogólne
 * =========================================================================== */

.btn-social-newsletter {
  width: 40px;
  height: 40px;
  --bs-btn-color: var(--bs-gray-800);
  --bs-btn-bg: var(--bs-white);
  --bs-btn-border-color: var(--bs-white);
  --bs-btn-border-radius: 50%;
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: none;
  --bs-btn-active-color: var(--bs-white);
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
}

.newsletter-background-column {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  height: 100%;
}

.newsletter-socials {
  display: flex;
  gap: 10px;
}

.newsletter-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  text-decoration: none;
  background: var(--wtl-panel-color-bg-white);
  border: 1px solid var(--wtl-panel-color-bg-border);
}

.wtl-watching-now {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.newsletter-content {
  overflow-x: auto;
}

.sidebar-image {
  
  height: 200px;
  background-repeat: no-repeat;
  object-fit: cover;
  background-position: center;
  border-radius: 0px;
  
  padding: 0;
  display: none;
}

@media (max-width: 767px) {
  body > .h-100 {
    height: unset !important;
  }
  body > .row {
    flex-direction: column;
  }
  .sidebar-image {
    display: block;
  }

  .newsletter-background-column {
    width: 100%;
    height: 200px;
    margin: 0px 0px 30px 0;
  }

}