.course-card {
  position: relative;
  max-width: 390px;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.051);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.051);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  transition: all 0.5s cubic-bezier(0, 0, 0, 1.24);
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0, 1.24);
  margin-bottom: 24px;
}

.course-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-card>figure {
  height: 260px;
  width: 100%;
}

.course-card:hover {
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.151);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.151);
  transform: scale(1.03);
}

.course-card .text {
  padding: 20px 22px 22px;
}

.course-card .text h2 {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.course-card .card-tags {
  margin: 10px 0 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.course-card .card-tags.mb-0 {
  margin-bottom: 0;
}

.card-tags>span {
  font-size: 12px;
  color: var(--violet);
  background-color: rgba(210, 217, 255, 0.8);
  padding: 7px 10px;
  border-radius: 6px;
  margin-bottom: 4px;
  margin-right: 8px;
  max-width: 103px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  z-index: 99;
}

.card-tags>span:last-child {
  margin-right: 0;
}

.tabs-container {
  padding-top: 0;
}

.tabs-container.left .tabs_lst {
  margin: 0;
}

.time-tag {
  position: absolute;
  left: 22px;
  top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--white);
  background-color: var(--purple300);
  border-radius: 8px;
  padding: 12px 13px;
}

.time-tag img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 4px;
}

/* 
.quiz-banner {
  padding: 90px 0 0;
} */

.quiz-banner {
  position: relative;
  padding: 60px 0;
  min-height: 524px;
  background: url(../images_new/competition/competition-banner.jpeg) no-repeat center;
  background-size: cover;
}

.quiz-banner .new_container {
  position: relative;
  z-index: 2;
}

.quiz-banner:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

/* .quiz-banner figure {
  margin-top: 60px;
} */

.quiz-details {
  position: relative;
  padding: 40px 0 60px;
  z-index: 2;
  background-color: #f9f9f9;
}

/* .quiz-details:after {
  content: "";
  position: absolute;
  background: url(../images_new/quiz-bg.jpeg) no-repeat center;
  background-size: cover;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.1;
} */

.social-white {
  color: var(--white);
}

.social-white img {
  -webkit-filter: brightness(10);
  filter: brightness(10);
}

.social-white a {
  -webkit-transition: none;
  transition: none;
}

.social-white a:hover {
  -webkit-filter: brightness(0) saturate(100%) invert(54%) sepia(66%) saturate(1855%) hue-rotate(346deg) brightness(97%) contrast(96%);
  filter: brightness(0) saturate(100%) invert(54%) sepia(66%) saturate(1855%) hue-rotate(346deg) brightness(97%) contrast(96%);
}

#videoContainer {
  width: 100%;
  aspect-ratio: 16/8;
  background-color: #2B2B2B;
  margin: 30px auto;
  border-radius: 5px;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 24px;
  margin-bottom: 40px;
}

#videoContainer.fullScreen {
  width: 100vw !important;
  height: 100vh !important;
}

#videoContainer.small .intensityBar {
  width: 50px !important;
}

#videoContainer.small .playButton {
  margin: 0 !important;
  margin-right: 5px !important;
}

#videoContainer.small .timer {
  display: none !important;
}

#videoContainer.small .playPause,
#videoContainer.small .volume .icon,
#videoContainer.small .scale .icon {
  width: 15px !important;
  height: 15px !important;
}

#videoContainer.small .progressBar {
  height: 6px !important;
}

#videoContainer.small .overlay .button {
  width: 50px !important;
  height: 50px !important;
}

#videoContainer.small .time {
  display: none !important;
}

#videoContainer .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  border-radius: 5px;
}

#videoContainer .overlay .button {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(https://webdevtrick.com/wp-content/uploads/playBTN.svg);
  background-size: 100% 100%;
  -webkit-transform: translate(-50%, calc(-50% - 30px));
  transform: translate(-50%, calc(-50% - 30px));
  cursor: pointer;
  -webkit-transition: width 0.2s, height 0.2s;
  transition: width 0.2s, height 0.2s;
}

#videoContainer .overlay .button:hover {
  width: 90px;
  height: 90px;
}

#videoContainer #video {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 24px;
}

#videoContainer #video video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
  object-fit: contain;
}

#videoContainer #video video::-webkit-media-controls-enclosure {
  display: none !important;
}

#videoContainer #controls {
  height: 90px;
  background: #0000001d;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  z-index: 2147483647;
  right: 24px;
  bottom: 24px;
  left: 24px;
  border-radius: 12px;
  overflow: hidden;
  padding: 10px 20px;
}

#videoContainer #controls.is-visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#videoContainer #controls .playButton {
  width: 40px;
  height: 100%;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 20px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-bottom-left-radius: 5px;
}

#videoContainer #controls .playButton:hover {
  background: transparent;
}

#videoContainer #controls .playButton .playPause {
  width: 25px;
  height: 25px;
  background: url(../images_new/quiz/play-icon.svg);
  background-size: 100% 100%;
}

#videoContainer #controls .ProgressContainer {
  color: #fff;
  width: calc(100% - 100px);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
}

#videoContainer #controls .ProgressContainer .progressBar {
  width: 100%;
  height: 8px;
  background: #A9A9A9E5;
  border-radius: 20px;
  cursor: pointer;
  overflow: hidden;
}

#videoContainer #controls .ProgressContainer .progressBar:hover+.time {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#videoContainer #controls .ProgressContainer .progressBar .progress {
  width: 0%;
  height: 100%;
  background: var(--white);
  border-radius: 20px;
}

#videoContainer #controls .ProgressContainer .timer {
  margin: 0 10px;
  font-family: Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 1px;
}

#videoContainer #controls .ProgressContainer .time {
  width: 80px;
  height: 25px;
  background: #2c7a57;
  position: absolute;
  top: -20px;
  left: 0;
  border-radius: 5px;
  color: var(--white);
  font-family: Arial, sans-serif;
  text-align: center;
  line-height: 25px;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

#videoContainer #controls .ProgressContainer .time::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 25px;
  left: 33px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--white);
}

#videoContainer #controls .volume {
  width: 150px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
}

#videoContainer #controls .volume .icon {
  width: 25px;
  height: 25px;
  background: url(../images_new/quiz/volume-icon.svg) no-repeat center;
  background-size: 100% 100%;
  cursor: pointer;
  margin-right: 10px;
}

#videoContainer #controls .volume .intensityBar {
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.46);
  border-radius: 20px;
  max-width: 100px;
  overflow: hidden;
  -webkit-transform-origin: right center;
  transform-origin: right center;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#videoContainer #controls .volume .intensityBar .intensity {
  width: 50%;
  height: 100%;
  background: #fff;
}

#videoContainer #controls .scale {
  width: 70px;
  height: 100%;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 5px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-bottom-right-radius: 5px;
}

#videoContainer #controls .scale .icon {
  width: 25px;
  height: 25px;
  background-size: 100% 100%;
  background: url(../images_new/quiz/fullscreen.svg) no-repeat center;
  background-size: 100% 100%;
}

.bookmark-btn:not(.active) .saved {
  display: none;
}

.bookmark-btn.active .unsaved {
  display: none;
}

.bookmark-btn {
  border: 1px solid var(--white);
  padding: 14px 18px;
  border-radius: 12px;
  background-color: transparent;
}

.bookmark-btn:hover {
  -webkit-box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.138);
  box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.138);
  -webkit-animation: scale .5s linear 1;
  animation: scale .5s linear 1;
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
}

.bookmark-btn:active {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

.iframe-section {
  padding-top: 40px;
}

.iframe-section iframe {
  width: 100%;
  aspect-ratio: 16/6;
  background-color: var(--bgColor300);
  max-height: 6000px;
  height: 83%;
  min-height: 1000px;
  width: 100%;
}

.inner-body {
  max-width: 507px;
  margin: 0 auto;
  padding: 20px 0 40px;
}

.quiz_listBanner {
  background: #fafafa;
}

.quiz_listBanner::after {
  display: none;
}

.quiz_listBanner .new_container {
  margin-bottom: 30px !important;
}

#content-modal .error_message {
  display: block;
}

.whitetxt {
  color: #fff !important;
}

.quiz-details .seprate_block {
  border-bottom: 0 !important;
}

@media screen and (max-width: 1280px) {
  .common_banner {
    padding: 200px 0;
  }
}

@media screen and (max-width: 992px) {
  .training_title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .training_title .d-flex {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 12px 0 18px;
  }

  .training_title .ml-auto {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .common_banner {
    padding: 120px 0;
  }

  .bookmark-btn {
    padding: 11px 18px;
  }

  #videoContainer #controls {
    height: auto;
    right: 8px;
    bottom: 8px;
    left: 8px;
  }

  .course-card .text h2 {
    white-space: unset;
    text-overflow: unset;
    overflow: visible;
  }

  .quiz-banner {
    min-height: 300px;
  }
}

/*# sourceMappingURL=quiz.css.map */