:root {
  --webinar-pink: #D80B8C;
  --webinar-gray: #F1F1F1;
  --webinar-dark: #202020;
  --webinar-border: #E5E5E5;
}

.webinar-subtitle {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}
@media (max-width: 575px) {
  .webinar-subtitle {
    font-size: 16px;
  }
}

.webinar-main-video {
  border-radius: 8px;
  overflow: hidden;
}
.webinar-main-video iframe {
  width: 100%;
  height: 100%;
}

.video-gallery-section h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.video-gallery-section .btn-strip-toggle {
  display: block;
  margin: 20px auto 0;
}

.video-gallery-item {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-gallery-item:hover {
  transform: translateY(-3px);
}
.video-gallery-item:hover .video-thumbnail {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.video-gallery-item:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
@media (max-width: 575px) {
  .video-gallery-item .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.video-thumbnail {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media (max-width: 767px) {
  .play-overlay {
    font-size: 36px;
  }
}

.video-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #202020;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .video-title {
    font-size: 14px;
  }
}

.speakers-section h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.speaker-card {
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E5E5;
}
.speaker-card:last-child {
  border-bottom: none;
}

.speaker-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 3px solid #F1F1F1;
}
@media (max-width: 767px) {
  .speaker-image {
    margin-bottom: 15px;
  }
}

.speaker-name {
  font-size: 18px;
  font-weight: 700;
  color: #202020;
}

.speaker-role {
  font-size: 14px;
  font-weight: 600;
}

.speaker-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.webinar-sidebar {
  position: sticky;
  top: 150px;
  align-self: flex-start;
}
@media (max-width: 991px) {
  .webinar-sidebar {
    position: static;
    margin-top: 30px;
  }
}

.sidebar-box {
  border: 2px solid #E5E5E5;
  border-radius: 8px;
  padding: 25px;
  background: #fff;
}
@media (max-width: 991px) {
  .sidebar-box {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .sidebar-box {
    padding: 20px;
  }
}

.sidebar-box-title {
  font-family: "Trade Gothic LT Std", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  color: #202020;
  margin-bottom: 15px;
}

.signup-box {
  border-color: #E5E5E5;
}
.signup-box .btn.bg-pink {
  background-color: #D80B8C;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}
.signup-box .btn.bg-pink:hover {
  background-color: #b8097a;
}

.signup-title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}

.signup-row {
  padding: 10px 0;
}

.signup-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #D80B8C;
}
@media (max-width: 767px) {
  .signup-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

.signup-text {
  font-size: 16px;
  color: #202020;
}

.social-share {
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #D80B8C;
  color: #D80B8C;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.2s ease;
  background: transparent;
  cursor: pointer;
}
.social-icon:hover {
  background-color: #D80B8C;
  color: #fff;
}
@media (max-width: 767px) {
  .social-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

.share-thoughts {
  border: 2px solid #E5E5E5;
}

.share-link {
  font-size: 16px;
  line-height: 1.4;
  color: #202020;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
}
.share-link:hover {
  color: #D80B8C;
}
.share-link .share-icon {
  width: 37px;
  height: 37px;
  min-width: 37px;
  border-radius: 50%;
  border: 1px solid #D80B8C;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D80B8C;
  font-size: 16px;
}

.dont-want-to-miss {
  background-color: #F1F1F1;
  border-color: #F1F1F1;
}
.dont-want-to-miss p {
  font-size: 16px;
  line-height: 1.5;
  color: #202020;
  margin-bottom: 10px;
}
.dont-want-to-miss p:last-child {
  margin-bottom: 0;
}
.dont-want-to-miss a {
  color: #D80B8C;
  font-weight: 700;
  text-decoration: underline;
}
.dont-want-to-miss a:hover {
  color: #b8097a;
}

.btn-catalog {
  padding: 0;
  border: none;
}
.btn-catalog h6 {
  padding: 15px;
  margin: 0;
}
.btn-catalog img {
  border-radius: 8px;
}

.webinar-content,
.webinar-summary {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.webinar-content h2,
.webinar-content h3,
.webinar-content h4 {
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}
.webinar-content ul,
.webinar-content ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.webinar-content p {
  margin-bottom: 1em;
}

#cboxContent .colorbox {
  width: 100%;
  height: 100%;
  min-height: 400px;
}
#cboxContent .colorbox iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/*# sourceMappingURL=single-webinars.css.map */
