:root {
  --color-set1: rgb(48, 141, 66);
  --color-set2: rgb(60, 191, 149);
  --color-set3: rgb(66, 158, 181);
  --color-set4: rgb(47, 52, 118);
  --color-set5: rgb(71, 47, 118);
  --color-set6: rgb(109, 52, 133);
  --color-set7: rgb(119, 46, 92);
  --color-set8: rgb(118, 47, 59);
  --color-set9: rgb(184, 105, 81);
  --color-set10: rgb(168, 140, 63);
  --color-set11: rgb(174, 202, 45);
  --color-set12: rgb(82, 155, 46);
  --default-color: rgb(255, 255, 255);
}

.bb-course-banner-inner {
  padding: 0 !important;
  margin-top: 27px;
}

.journey-banner {
  background-color: var(--box-color, var(--default-color));
  overflow: hidden;
  padding: 0 44px;
}

.bb-course-banner.inner h1.entry-title {
  font-size: 48px;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 15px;
}

.journey-banner-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 1;
}

.journey-banner-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.course-activity {
  color: white;
  font-size: 20px;
  font-weight: 500;
  font-family: "Montserrat";
}

.journey-navigation {
  display: flex;
  margin-bottom: 20px;
}

.journey-navigation a {
  color: white;
  font-weight: 600;
  display: flex;
}

.journey-navigation .navigation-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  width: 28px;
  background-color: white;
  border-radius: 50%;
  margin-right: 10px;
  text-align: center;
  height: 100%;
}

.journey-main-content {
  max-width: 368px;
  margin: 150px auto 0 auto;
}

.course-lesson-view {
  display: flex;
  margin-bottom: 70px;
}

.course-lesson-view.center {
  justify-content: center;
}

.course-lesson-view.right {
  justify-content: flex-end;
}

.course-progress-view #openPopover {
  display: inline-block;
}

.course-lesson-bubble.inactive {
  background-color: #eeeeee;
  border-color: #dddddd;
}

.course-lesson-bubble.inprogress {
  box-shadow: 0px 0px 0px 12px var(--box-color, var(--default-color));
  background-color: var(--box-color, var(--default-color));
  border-color: #a54580;
}

.course-lesson-bubble.admin{
    border-color: var(--box-color, var(--default-color));
}

.course-lesson-bubble {
  display: flex;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  border: 4px solid;
}

.course-lesson-bubble.completed {
  background-color: var(--box-color, var(--default-color));
  border-color: #a54580;
}

.course-lesson-view.inactive .line,
.course-lesson-view.inprogress .line {
  border-top: 4px dashed #eeeeee !important;
}

.course-lesson-bubble.completed > img,
.course-lesson-bubble.inprogress > img {
  filter: brightness(0) invert(1);
}

.course-lesson-view.completed .line img {
  filter: brightness(0) invert(1);
}

.course-lesson-view.completed .line {
  border-top: 4px solid #a54580;
}

.course-lesson-view.inactive .line .arrow-icon,
.course-lesson-view.inprogress .line .arrow-icon {
  background-color: #eeeeee;
  border: 3px solid #ffffff;
}

.course-lesson-view.completed .line .arrow-icon {
  background-color: var(--box-color, var(--default-color));
  border: 3px solid #fff;
}

.course-lesson-bubble img {
  width: 40px;
  max-height: 50px;
}

.course-lesson-view {
  position: relative;
  z-index: 1;
}

.course-lesson-view .arrow-icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: 0 0;
}

.course-lesson-view .arrow-icon img {
  transform: rotate(-120deg);
}

.course-lesson-view .left-side-line,
.course-lesson-view .right-side-line {
  position: absolute;
  z-index: -1;
  transform-origin: 0 0;
}

.progress-container {
  position: relative;
  width: 170px;
  height: 170px;
}

.progress-circle {
  width: 100%;
  height: 100%;
}

.progress-background {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 8;
}

.progress-bar {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke: #ffffff;
  transition: stroke 0.3s;
  transform: rotate(-90deg);
  transform-origin: center;
}

.progress-text {
  font-size: 32px;
  fill: #fff;
  font-weight: bold;
  text-anchor: middle;
  transform: rotate(0deg);
  text-align: center;
}

.banner-content {
  justify-content: space-between;
  align-items: center;
}

.progress-description {
  fill: #fff;
  font-size: 12px;
}

.mfp-wrap {
  height: 100%;
  width: 100vw;
  margin: 0 !important;
  position: fixed;
  top: 0 !important;
  left: 0;
  overflow: hidden auto;
  background-color: #fff
}

.mfp-content {
  height: 100% !important;
  width: 100% !important;
  background-color: #fff;
  position: relative;
  // overflow: hidden;
}

.mfp-close {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 20px !important;
  left: 20px;
  font-size: 24px;
  cursor: pointer;
  z-index: 9999;
  outline: none;
  padding: 0 !important;
}

.carousel {
  width: 1020px;
  position: relative;
}

.slick-slide img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.slick-prev,
.slick-next {
  width: 50px;
  height: 50px;
  background: transparent !important;
  border: none !important;
  color: var(--box-color, var(--default-color));
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  z-index: 1000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 !important;
  box-shadow: none !important;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  display: none !important;
}

.slick-prev {
  left: -60px;
}

.slick-next {
  right: -60px;
}

.slick-prev:before,
.slick-next:before {
  font-family: "FontAwesome";
  font-size: 24px;
}

.slick-prev:before {
  content: "\f053";
}

.slick-next:before {
  content: "\f054";
}

.slick-dots {
  display: none;
}

.carousel-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

.slick-dots {
  bottom: 10px;
  text-align: center;
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  width: 100%;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots li button {
  font-size: 0;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.slick-dots li button:before {
  content: "" !important;
}

.slick-dots li.slick-active button:before {
  background-color: var(--box-color, var(--default-color)) !important;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
}

.slick-dots li button:before {
  background-color: rgba(238, 238, 238, 1) !important;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
}

.popup-content button, .sample-lesson button {
  padding: 0 !important;
  box-shadow: none !important;
  background: none !important;
}

.image-section {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 40px;
}

.second-popup.community-popup svg path {
  fill: var(--box-color, var(--default-color));
}

.slide2 .image-section .slide3 .image-section {
  width: 100%;
  position: relative;
  height: auto;
  display: block;
}

.first-slide .image-section img {
  border-radius: 16px;
  max-width: 100%;
  width: 414px;
}

.mfp-content {
  max-width: 100%;
  max-height: 100%;
  background: #fff;
 // overflow: auto;
}

.carousel-wrapper .content-section{
  width: 536px;
  height: 280px;
  padding: 35px 35px 80px 35px;
  background-image: url(https://artplay.academy/wp-content/uploads/2024/08/intro-slide-image.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-color: #fff;
  font-size: 24px;
  line-height: 31.5px;
  position: relative
}

.intro-text-wrapper {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 5px;
}
/* width */
.intro-text-wrapper::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.intro-text-wrapper::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
.intro-text-wrapper::-webkit-scrollbar-thumb {
  background: rgb(88,88,88); 
  border-radius: 10px;
}

/* Handle on hover */
.intro-text-wrapper::-webkit-scrollbar-thumb:hover {
  background: #8b8b8b; 
}

.image-section.final .content-section{
	background-image: url(https://artplay.academy/wp-content/uploads/2024/10/final-lesson-intro-slide-image.png);
}

.lesson-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-flow: row wrap;
}

.lesson-buttons a {
  display: flex;
  width: 236px;
  height: 56px;
  font-size: 20px;
  font-weight: 600;
  font-family: "Montserrat";
  vertical-align: middle;
  padding: 10px;
  justify-content: center;
  align-items: center;
}

.lesson-buttons .review-button {
  border: 1px solid var(--box-color, var(--default-color));
  border-radius: 14px;
  color: var(--box-color, var(--default-color));
}

.lesson-buttons .review-button svg {
  margin-right: 10px;
}

.slider-video-button svg path {
  fill: var(--box-color, var(--default-color));
}

.lesson-buttons .review-button svg path {
  fill: var(--box-color, var(--default-color));
}

.lesson-buttons .review-button:hover {
  color: var(--box-color, var(--default-color));
}

.lesson-buttons .complete-button {
  background-color: var(--box-color, var(--default-color));
  border-radius: 14px;
  color: #fff;
}

.lesson-buttons img {
  margin-right: 10px;
  width: 16px;
}

.lesson-buttons .complete-button img {
  width: 24px;
}

.remove-scroll {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}

.carousel {
  position: relative;
}

.slick-prev,
.slick-next {
  position: absolute !important;
  font-size: 0 !important;
  line-height: 0 !important;
  transform: translateY(-50%);
  z-index: 1000;
  top: 45% !important;
}

.slick-prev::before,
.slick-next::before {
  font-size: 30px !important;
  color: var(--box-color, var(--default-color)) !important;
  line-height: 1;
  content: "";
  display: inline-block;
}

.slick-next {
  right: -50px !important;
  left: auto !important;
}

.slick-prev {
  left: -50px !important;
}

.slick-prev::before {
  content: "\f053" !important;
  font-weight: 400 !important;
  left: -50px !important;
}

.slick-next::before {
  content: "\f054" !important;
  font-weight: 400 !important;
}

.slide2 .video-banner,
.slide3 .video-banner {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.slide2,
.slide3 {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 100%;
}

video::-webkit-media-controls {
  width: 100%;
}

.slider-video-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  gap: 15px;
  transform: translatex(-50%) translateY(-50%);
}

.video-content {
  height: 51px;
  width: 51px;
  display: inline-block;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  justify-content: center;
}

.video-content img {
  width: auto !important;
  height: 20px;
}

.warmup-slide-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.warmup-slide-buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: rgba(237, 237, 237, 1);
}

.question-button.active {
  background-color: var(--box-color, var(--default-color));
}

.warmup-slide-buttons a img {
  height: 24px;
  width: auto;
}

.challenge-slider {
  max-width: 100%;
}

.play-slide-img span {
  display: flex;
  height: 200px;
  width: 200px;
  background-color: #f5f5f5;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
}

.play-slide-img span img {
  height: 64px;
  width: auto;
}

.recording-uploading-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-flow: row wrap;
}
.recording-container {
  padding: 20px;
  border: 2px solid #cbcbcb;
  border-radius: 10px;
}

.recording-uploading-buttons button {
  display: flex;
  gap: 10px;
  font-size: 24px;
  font-weight: 600;
  border: 2px dotted var(--box-color, var(--default-color)) !important;
  border-radius: 10px;
  max-height: 100%;
  max-width: 100%;
  height: 70px;
  width: 160px;
  justify-content: center;
  align-items: center;
}

.recording-btn svg path, #postButton svg path {
  fill: var(--box-color, var(--default-color)) !important;
}

.upload-file svg path {
  stroke: var(--box-color, var(--default-color)) !important;
}

.recording-uploading-buttons .text {
  font-size: 24px;
  font-weight: 600;
}
.recording-container button span svg{
    width: 22px;
    height: auto
}

.recording-uploading-buttons .icon {
  height: auto;
  width: 22px;
  display: flex;
}

.slider-text {
  font-size: 24px !important;
  font-weight: 600 !important;
}

.second-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1300000;
  overflow: auto;
  padding: 10px;
}

.popover {
  position: absolute;
  border: 1px solid #ccc;
  display: flex;
  background-color: #000000;
  border-radius: 5px;
  padding: 7px 15px 30px 15px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.play-button button.disabled_btn:before {
  background-repeat: no-repeat;
  content: "";
  background-image: url("https://artplay.academy/wp-content/uploads/2024/07/padlock.png");
  background-size: contain;
  width: 22px;
  height: 22px;
  display: inline-block;
  margin-right: 10px;
}

.play-button button.disabled_btn {
  opacity: 0.8;
  pointer-events: none;
}

.second-popup .popup-content {
  max-width: 100%;
  width: 800px;
  height: 590px;
  background: #fff;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.second-popup close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}

.second-popup .popup-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(222, 222, 222, 1);
  padding: 24px;
}

.second-popup-title svg {
  height: 24px;
  margin-right: 10px;
}

.challenge-popup svg path {
  fill: var(--box-color, var(--default-color));
}

#help-popup svg path{
    fill: var(--box-color, var(--default-color))
    
}

.notes-popup img {
  margin-right: 10px;
}

.second-popup-title {
  display: flex;
  align-items: center;
}

.second-popup .close-btn {
  cursor: pointer;
}

.second-popup .close-btn img {
  height: 12px;
}

.popup-body {
  padding: 24px;
  max-width: 100%;
  width: 490px;
  margin: 10px auto;
  max-height: 500px;
  overflow: hidden auto;
}

.help-bonus .popup-body {
  overflow: hidden auto;
  max-height: 100%;
  height: 480px;
  width: 100% !important;
}

.community-popup .popup-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  margin: 10px auto;
}

.community-popup .popup-body img {
  height: 74px;
}

.community-popup .popup-body h5 {
  text-align: center;
  padding: 0 20px;
  font-weight: 600;
  font-size: 20px;
  text-transform: none;
}

.community-popup .popup-body textarea {
  max-width: 100%;
  width: 480px;
  border: 1px solid var(--box-color, var(--default-color));
  font-size: 20px;
  font-weight: 400;
  border-radius: 8px;
  height: 160px;
  font-family: "Montserrat";
  padding: 12px 20px;
  resize: none;
}

.community-popup .popup-body .buttons {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-flow: row wrap;
  justify-content: center;
}

.community-popup .popup-body .buttons button {
  padding: 1rem !important;
  height: 56px;
  border: 1px solid var(--box-color, var(--default-color));
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
}

.community-popup .popup-body .buttons .primary {
  color: var(--box-color, var(--default-color));
}

.community-popup .popup-body .buttons .secondary {
  background-color: var(--box-color, var(--default-color)) !important;
  color: #fff;
}

.popover-content {
  width: 100%;
}

.popover-content .close-btn {
  text-align: right;
}

.popover-content .closePopover:hover {
  box-shadow: none;
}

.closePopover {
  background: none !important;
  color: #fff !important;
  padding: 0 !important;
  border: none !important;
  font-size: 24px !important;
  font-weight: 400 !important;
}

.popover-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.popover-description {
  font-weight: normal;
  margin-bottom: 5px;
}

.play-button button {
  background-color: white !important;
  color: #000 !important;
  padding: 10px 30px !important;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px !important;
  font-weight: 500;
  -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75) !important;
  box-shadow: 0px 5px 7px 0px rgb(0 0 0 / 44%) !important;
  border-radius: 5px !important;
  border: 1px solid green;
  margin-top: 30px;
}

.play-button {
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 480px) {

  .bb-course-banner.inner h1.entry-title {
    font-size: 24px;
  }

  .journey-banner h4 {
    font-size: 14px;
  }

  .banner-content {
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }

  .carousel {
    width: 100%;
    position: relative;
  }
}

@media (min-width: 481px) and (max-width: 767px) {

  .banner-content {
    justify-content: center;
    align-items: center;
  }
}

.journey-banner {
  padding: 0;
}

.mfp-container {
  padding: 0 !important;
}

@media (max-width: 575px) {
  .course-lesson-bubble {
    height: 70px;
    width: 70px;
  }
  .course-lesson-bubble img {
    width: 25px;
  }
  .journey-main-content {
    max-width: 280px;
  }
}
@media (max-width: 480px) {
  .carousel-wrapper .content-section {
    font-size: 14px;
    line-height: 2;
    height: 150px;
    padding: 15px 25px;
    max-width: 100%;
    width: 280px;
  }
  
  .intro-text-wrapper{
        height: 100px
    }

  .recording-uploading-buttons .text {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .content-section {
    font-size: 14px;
    line-height: 2;
    height: 150px;
    padding: 10px 25px;
    max-width: 100%;
  }

  .image-section {
    justify-content: center;
  }

  .slide2.image-section,
  .slide3.image-section {
    gap: 0;
  }

  .video-banner {
    width: 280px;
  }
}

.video-content {
  max-width: 100%;
}

.videos-content h5 {
  margin: 0 !important;
}

@media (max-width: 480px) {
  .content-section {
    font-size: 14px;
    line-height: 2;
    height: 150px;
    padding: 10px 25px;
    max-width: 100%;
  }

  .first-slide .image-section img {
    width: 250px;
  }

  .image-section {
    justify-content: center;
  }

  .slide2.image-section,
  .slide3.image-section {
    gap: 0;
  }

  .slide2 img,
  .slide3 img {
    width: 250px;
    border-radius: 4px;
  }

  .slick-slide h3,
  .slick-slide h4 {
    margin: 10px;
  }

  .play-slide-img span img {
    height: 50px;
  }

  .play-slide-img span {
    height: 150px;
    width: 150px;
  }

  .recording-uploading-buttons > div {
    margin-bottom: 0;
    height: 60px;
  }

  .recording-uploading-buttons {
    margin-bottom: 20px;
  }

  h3.slider-text {
    font-size: 16px !important;
  }

  .warmup-slide-buttons {
    margin-bottom: 50px;
    justify-content: center;
  }

  .play-slide-img {
    display: flex;
    justify-content: center;
  }
}

@media (min-width: 481px) and (max-width: 1080px) {
  .first-slide .image-section {
    flex-flow: column;
  }

  .first-slide .image-section img {
    width: 360px;
  }

  .carousel-wrapper .content-section {
    width: 376px;
    font-size: 18px;
    height: 200px;
    padding: 10px 30px 40px;
  }

  .slide2 .video-banner,
  .slide3 .video-banner {
    max-width: 100%;
    height: 190px;
    width: auto;
    margin: 0 auto;
  }

  .play-slider {
    padding-left: 20px;
    padding-right: 20px;
  }

  .challenge-slider {
    padding-left: 20px;
    padding-right: 20px;
  }

  .carousel {
    max-width: 90%;
    width: 1000px;
  }

  .first-slide .image-section {
    gap: 20px;
  }

  .play-slide-img span {
    height: 150px;
    width: 150px;
  }

  .play-slide-img span img {
    height: 50px;
  }
  .recording-uploading-buttons > div {
    height: 60px;
  }

  .custom-controls {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }

  input[type="range"] {
    flex: 1;
    margin: 0 10px;
  }

  .warmup-slide-buttons {
    margin-bottom: 50px;
  }

  .slick-dotted.slick-slider {
    margin-bottom: 0 !important;
  }
  
  .intro-text-wrapper{
        height: 150px
    }
}

.slick-slide {
  padding: 50px 10px 50px 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
 // overflow: hidden;
}

.slick-slide h4,
.slick-slide h5 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.slick-slide .slide-content {
  max-height: 100vh;
  box-sizing: border-box;
}

@media (min-width: 768px) and (max-width: 1080px) {
  .slick-next {
    right: -50px !important;
  }

  .slick-prev {
    left: -50px !important;
  }
}
@media (max-width: 1200px) {
  .slick-next {
    right: -30px !important;
  }

  .slick-prev {
    left: -30px !important;
  }
}
@media(min-width:1081px){
    .intro-text-wrapper{
        height: 170px
    }
}
@media (max-width: 1080px) {
  .first-slide .image-section img {
    order: 1;
  }

  .first-slide .image-section .content-section {
    order: 0;
  }
}

.line {
  z-index: -1;
}

.iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@keyframes glow {
  0% {
    box-shadow: 0px 0px 0px 12px rgb(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0px 0px 20px 12px var(--box-color, var(--default-color));
  }
}

.course-lesson-bubble.inprogress {
  animation: glow 1s infinite alternate;
  animation-timing-function: ease-out;
  transform-origin: center;
  -webkit-animation: glow 1s infinite alternate;
  -webkit-animation-timing-function: ease-out;
  -webkit-transform-origin: center;
}

.no-video {
  position: absolute;
  color: white;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.bb-icon-arrow-left::before {
  color: var(--box-color, var(--default-color));
  font-size: 24px;
  vertical-align: middle;
}

.popup-content::-webkit-scrollbar {
  width: 8px;
}

.popup-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.popup-body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.popup-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Firefox styling */
.popup-body {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

.slider-breadcrumb {
  max-width: 100%;
  width: 1000px;
  margin-top: 50px;
}

.bx-pager .bx-pager-item.active {
  background-color: var(--box-color, var(--default-color));
}

.bx-pager .bx-pager-item.active .bx-pager-link {
  color: #fff;
}

.bx-pager {
  display: flex;
  align-items: center;
  height: 60px;
}

.bx-pager .bx-pager-item {
  display: flex;
  align-items: center;
  height: 100%;
  border-top: 1px solid rgba(245, 245, 245, 1);
  border-bottom: 1px solid rgba(245, 245, 245, 1);
  justify-content: flex-end;
  position: relative;
  border-left: 1px solid rgba(245, 245, 245, 1);
  flex: 0 calc(25% - 6px);
  cursor: pointer;
}

.bx-pager .bx-pager-item .arrow {
  border: solid rgba(245, 245, 245, 1);
  display: inline-block;
  padding: 16px;
  border-width: 0 1px 1px 0;
  transform: translateY(16px) rotate(-45deg) skew(0deg, 0deg) translateX(22px);
  background-color: #fff;
  margin-right: -5px;
  width: 40px;
  height: 40px;
}

.bx-pager .bx-pager-item.active .arrow {
  background-color: var(--box-color, var(--default-color));
  border: none;
}

.bx-pager .bx-pager-item .bx-pager-link {
  position: absolute;
  left: 45px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: black;
  font-family: "Montserrat";
  z-index: 5;
}

.bx-pager-item.first {
  z-index: 4;
}

.bx-pager-item.second {
  z-index: 3;
}

.bx-pager-item.third {
  z-index: 2;
}

.bx-pager-item.forth {
  z-index: 1;
}

@media (max-width: 480px) {
  .slider-tab.first {
    flex: 0 22%;
  }

  .slider-tab.second {
    flex: 0 25%;
  }

  .slider-tab.third {
    flex: 0 31%;
  }

  .slider-tab.forth {
    flex: 0 20%;
  }

  .bx-pager .bx-pager-item .bx-pager-link {
    font-size: 11px;
    left: 13px;
  }

  .bx-pager {
    height: 34px;
  }

  .bx-pager .bx-pager-item .arrow {
    border: solid rgba(245, 245, 245, 1);
    padding: 9px;
    border-width: 0 1px 1px 0;
    transform: translateY(15.5px) rotate(-45deg) skew(-15deg, -15deg)
      translateX(18px);
    margin-right: 0;
    width: 0;
    height: 0;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .bx-pager .bx-pager-item .arrow {
    border: solid rgba(245, 245, 245, 1);
    padding: 9px;
    border-width: 0 1px 1px 0;
    transform: translateY(15.5px) rotate(-45deg) skew(-15deg, -15deg)
      translateX(18px);
    margin-right: 0;
    width: 0;
    height: 0;
  }

  .bx-pager .bx-pager-item .bx-pager-link {
    font-size: 14px;
    left: 20px;
  }

  .bx-pager {
    height: 34px;
  }
}

/* Notes popup */

.notes-popup .popup-body {
  max-width: 100%;
  width: 550px !important;
  text-align:center
}

.notes-popup textarea {
  max-width: 100%;
  width: 100%;
  height: 300px;
}

.notes-popup .save-notes-button {
  width: 250px;
  height: 50px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 10px;
  margin-top: 20px;
  background-color: var(--box-color, var(--default-color)) !important;
  color: white;
}

/* Notes popup */

/* Mark Button */

#learndash_mark_complete_button {
  box-shadow: none;
  padding: 0px;
  background-color: transparent;
  color: #fff;
  border: none;
  font-size: 20px;
  font-weight: 600;
}

.sfwd-mark-complete {
  margin-bottom: 0px;
}
/* Mark Button */

/* Disabled Lesson buttons */

.mark-button.disabled, .complete-button.disabled, .mark-review-later.disabled {
  background-color: gray;
  color: #313131;
  border: gray;
  pointer-events: none;
  opacity: 0.75;
}

.mark-button.disabled:hover, .complete-button.disabled:hover, .mark-review-later.disabled:hover {
  color: #313131;
}

.mark-button.disabled svg path, .complete-button.disabled svg path, .mark-review-later.disabled svg path{
  fill: #313131;
}

.mark-button.disabled input, .complete-button.disabled input, .mark-review-later.disabled input{
  color: #313131 !important;
}

.mark-button.disabled img, .complete-button.disabled img, .mark-review-later.disabled img{
  filter: brightness(0.19) saturate(0) contrast(1.1);
}

/* Disabled Lesson buttons */

/* Loader css */

.loader-container,
.save-button-loader-container,
.community-button-loader-container,
.notes-button-loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.loader-container{
    background-color: rgba(255, 255, 255);
}
#generator-behavior-title,
#show-loading-screen {
  display: none !important;
}

.generation-loader-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.song-seed-generator-wrapper {
  position: relative;
  padding-bottom: 20px;
}

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #313131;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}
.button-loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #313131;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Loader css */

/* review later bubble */

.course-lesson-bubble.review-later {
  position: relative;
  background-color: var(--box-color, var(--default-color));
}

.course-lesson-bubble.review-later img {
  filter: brightness(0) invert(1);
}

.course-lesson-bubble.review-later::before {
  content: "";
  position: absolute;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  border-radius: 50%;
  border: 8px solid var(--box-color, var(--default-color));
  background-color: transparent;
}

.course-lesson-bubble.review-later::after {
  content: "";
  position: absolute;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  border-radius: 50%;
  border: 8px solid #dddddd;
  background-color: transparent;
  clip-path: inset(0 50% 0 0);
}

.course-lesson-view.review-later .arrow-icon {
  background-color: var(--box-color, var(--default-color));
}

.course-lesson-view.review-later .line {
  border-top: 4px dashed #eeeeee !important;
}
.course-lesson-view.review-later .line .arrow-icon {
  border: 4px solid #fff;
}

/* review later bubble */

.lesson-forced-timer {
  display: block;
  color: var(--box-color, var(--default-color));
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 23px;
}

/* Song Seeder Generator */

.play-slider h4,
#show-chords,
#show-right-chords,
#show-left-notes,
#show-notes {
  font-family: "Montserrat" !important;
  font-size: 26px !important;
  font-weight: 600;
  margin-bottom: 15px;
}
#right-card-content,
#left-card-content {
  padding: 0;
}
#show-left-instruction,
#show-instruction,
#technique-left-container,
#show-technique,
#rhythm-right-container,
#rhythm-left-container {
  font-family: "Montserrat";
}
.play-slider .card {
  box-shadow: none;
}

#regenerate-data {
  display: flex;
  gap: 10px;
  font-size: 24px;
  font-weight: 600;
  border: 2px dotted var(--box-color, var(--default-color)) !important;
  border-radius: 16px;
  max-height: 100%;
  max-width: 100%;
  height: 70px;
  width: 280px;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  border-radius: 10px !important;
}
.song-seed-button {
  display: flex;
  justify-content: center;
}
#general-card-container {
  padding: 20px !important;
}

#show-left-rhythm span,
#show-right-rhythm span {
  font-family: "Montserrat";
  font-size: 22px !important;
}
#stopButton {
  display: none;
}
#stopButton img{
    height: 25px;
    width: auto
}
.audio-src {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
#timer_num {
  background: var(--box-color, var(--default-color));
  color: #fff;
  padding: 3px 6px;
  border-radius: 3px;
  width: fit-content;
  min-width: 74px;
  text-align: center;
  margin-left: 10px;
}
#show-left-rhythm,
#show-right-rhythm {
  font-size: 22px !important;
}

.uploading-button.disabled {
  border-color: #c8cbcf !important;
}
.uploading-button.disabled svg path {
  stroke: #c8cbcf !important;
}
.recording-btn.disabled svg path {
  fill: #c8cbcf !important;
}
.uploading-button.disabled {
  border-color: #c8cbcf !important;
}
.uploading-button.disabled svg path {
  stroke: #c8cbcf !important;
}
.uploading-button.disabled:hover {
  color: #c8cbcf;
}
/* Song Seeder Generator */

/* Play Slide Recording */

.fas.fa-pause,
.fas.fa-share {
  color: var(--box-color, var(--default-color));
}

.post-button.disabled,
.pause-button.disabled,
.save-to-profile.disabled,
.post-button.disabled, .recording-btn.disabled {
  border-color: #c8cbcf !important;
  color: #c8cbcf !important;
}

.unsub_recorder_link:hover{
    color: black !important
}

.post-button.disabled .fas.fa-share,
.pause-button.disabled .fas.fa-pause, 
.recording-btn.disabled {
  color: #c8cbcf;
}
.audio-src h3 {
  margin: 0;
}

.media-items {
  text-align: center;
}
.media-items audio {
  max-width: 100%;
  width: 500px;
}

.media-items {
  display: flex;
  justify-content: center;
  align-items: center;
}
#downloadButton a {
  border: 1px dotted var(--box-color, var(--default-color));
  padding: 5px;
  border-radius: 4px;
  color: black;
}
#downloadButton a.disabled {
  cursor: none;
  pointer-events: none;
}

#downloadButton {
  margin-left: 15px;
}

.icon.profile-icon path.cls-1 {
  fill: var(--box-color, var(--default-color));
}
.save-to-profile.disabled path.cls-1 {
  fill: #c8cbcf !important;
}

/* Play Slide Recording */

/* confirmation Modal */

#confirmationModal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1300000;
    overflow: auto;
    padding: 10px;
    }
#modalTitle {
  font-family: "Montserrat" !important;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
}

.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.confirm-button,
.cancel-button {
  padding: 10px 20px;
  margin: 5px;
}
#modalTitle {
  font-family: "Montserrat" !important;
  font-size: 26px;
}
#confirmationModal .confirm-button,
#confirmationModal .cancel-button {
  padding: 10px !important;
  border-radius: 6px;
  font-weight: 500;
}
#confirmationModal .confirm-button {
  background-color: var(--box-color, var(--default-color)) !important;
  color: white;
}

/* confirmation Modal */

.media-items {
  margin-top: 20px;
}

.button-loader-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  border-radius: 9px;
}

#save-to-profile-button,
#save-to-forum,
.save-notes-button {
  position: relative;
}

#save-to-forum.disabled{
    background-color: #cbcbcb !important;
    border-color: #cbcbcb
}

#response-messages,
#response-message {
  color: green;
  font-weight: 500;
}
#response-message {
  text-align: center;
}
#response-message a:hover,
#response-messages a:hover {
  color: rgb(1, 58, 0);
}
#content {
  background-position: center -180px;
}
.elementor-472 .elementor-element.elementor-element-8103232 {
  margin-top: 0;
}

@media (max-width: 575px) {

  .recording-container button .icon {
    width: 30px;
    height: auto;
  }
  .media-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  #video-media,
  #video {
    max-width: 100%;
    height: auto !important;
  }
  .recording-container {
    padding: 20px 10px;
  }
  .recording-uploading-buttons {
    gap: 10px;
  }
    #confirmationModal .confirm-button, #confirmationModal .cancel-button{
        width: 230px
    }
}

#confirmationModal .confirm-button, #confirmationModal .cancel-button{
        width: 260px
    }
.confirmation-modal-buttons{
    display: flex;
    flex-flow: row wrap
}
@media(max-width:480px){
    #replyForm{
        margin-bottom: 0
    }
    #replyForm .buttons button{
        width: 250px;
        font-size: 16px
    }
}
#replyForm{
	max-width: 100%
}
.modal-content{
    max-width: 600px
}
.save-to-profile path.c1, .save-to-profile path.c2{
    fill: var(--box-color, var(--default-color));
}
.save-to-profile.disabled path.c1, .save-to-profile.disabled path.c2, #pauseButton.disabled svg path, #postButton.disabled svg path{
    fill: #c8cbcf !important
}

@media(min-width:480px) and (max-width:575px) {
.journey-banner-container{
    display: flex;
    justify-content: center;
    align-items: center
}
}
@media(min-width:481px) and (max-width:575px) {
    #content{
        background-position: center -320px
    }
}
@media(max-width:767px){
  #general-card-container {
    display: flex;
    flex-direction: column;
  }
  #general-card-container #right-hand-container{
    padding: 0 !important;
    margin-bottom: 80px;
    position: relative;
    width: 100%;
    max-width: 100%
}
#general-card-container #right-hand-container::after{
    position: absolute;
    content: "";
    display: block;
    width: 300px;
    max-width: 100%;
    height: 1px; 
    background-color: black;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%)
}
  }
  @media(min-width:576px) and (max-width:767px){
    .bb-course-banner.inner h1.entry-title{
        font-size: 26px
    }
}

.final-lesson-text{
    text-align: center;
    margin-top: 15px;
}

#left-card-content, #right-card-content{
    font-size: 16px !important
}

.scroll-arrow .arrow-icon, .final-intro-scroll-arrow .arrow-icon {
    width: 16px;
    height: 16px;
  }
  .hide-arrow{
    opacity: 0 !important;
    pointer-events: none;
  }

.scroll-arrow, .final-intro-scroll-arrow {
  position: absolute;
  bottom: 25px;
  right: 10px;
  cursor: pointer;
  opacity: 1;
  animation: bounce 1s infinite;
  transform: translateZ(0);
}
@media(min-width: 481px){
    .scroll-arrow, .final-intro-scroll-arrow{
        bottom: 30px;
        right: 15px
    }
}

@keyframes bounce {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@media(min-width:768px){
	.scroll-arrow, .final-intro-scroll-arrow{
    	display:none
    }
}

.bb-onscreen-notification-enable .bb-onscreen-notification{
    z-index: 13000001
}
.gamipress_notifyjs-corner{
    z-index: 13000002
}
.recording-features .subscription-link:hover{
    color: #000
}
.site-content{
    background-repeat: no-repeat
}
#downloadLink svg{
    width: 12px;
    height: auto;
    margin-right: 5px
}
#downloadLink{
    display: flex;
    align-items: center;
    justify-content: center
}
#stopButton span svg{
 width: 30px   
}
#stopButton .icon{
    width: 30px 
}
.pause-button svg path{
    fill: var(--box-color, var(--default-color)) !important;
}

.bb-course-banner-info{
    display: flex;
    align-items: center;
    justify-content: center
    }
.banner-content{
    flex: 1
}
@media(max-width:480px){
    .bb-course-banner-info{
        height: 380px
    }
    
.course-activity{
    margin-bottom: 20px
}
}
@media(min-width:481px) {
    .bb-course-banner.inner h1.entry-title{
        font-size: 28px
    }
    .bb-course-banner-info{
        height: 240px
    }
    .banner-content{
        column-gap: 20px
    }
}
.bb-course-banner.inner{
    flex: 1
}
button:hover, button:focus, button:active{
    color: black
}