@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
.Video-detailpage-control,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

button,
a {
  cursor: pointer;
}
.btn-lg {
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  padding: 13px 38px;
  cursor: pointer;
}
.btn-reg {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  padding: 10.5px 23px;
  cursor: pointer;
}
.btn-sm {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  padding: 7.5px 15px;
  cursor: pointer;
}

.btn-orange {
  background: #e35d11;
  border: 2px solid #e35d11;
  color: #ffffff;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
.btn-orange:hover,
.btn-orange:focus,
.btn-orange:active {
  background: #ffffff;
  color: #e35d11;
}

.btn-orange-outline {
  background: transparent;
  border: 2px solid #e35d11;
  color: #e35d11;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
.btn-orange-outline:hover,
.btn-orange-outline:focus,
.btn-orange-outline:active {
  background: #e35d11;
  color: #ffffff;
}

.cme-icon {
  background: #ffffff;
  color: #e35d11;
  border: 2px solid #e35d11;
  border-radius: 4px;
  outline: none;
  cursor: default;
  /* transition: all 250ms ease-in-out; */
}

/* Button White Outline */
.btn-white-outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline:active {
  background: #ffffff;
  color: #e35d11;
}
.btn-disabled {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  padding: 10.5px 23px;

  background: #d9d9d9;
  border: 2px solid #d9d9d9;
  color: #888a8b;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
.btn-disabled:hover,
.btn-disabled:focus,
.btn-disabled:active {
  background: #d9d9d9;
  border-color: #d9d9d9;
  color: #888a8b;
  cursor: not-allowed;
}

/* Icon Buttons Style */
.btn-icon {
  background: #f5f5f5;
  border: 2px solid #f5f5f5;
  border-radius: 4px;
  padding: 5px 8px;
  width: 44px;
  height: 44px;
  transition: all 250ms ease-in-out;
  cursor: pointer;
}
.svg-icon {
  display: block;
}
.svg-icon path {
  stroke: #252b42;
}
.btn-icon:hover .svg-icon path {
  stroke: #e35d11;
}

.favorite-icon > path {
  stroke: #252b42;
}
.favorite-icon.active > path {
  stroke: #e35d11;
  fill: #e35d11;
}

.svg-icon.active {
  background: none;
}

/* .svg-icon.active path{
    stroke: #E35D11;
    fill: #E35D11;
} */
/* .btn-icon:hover .svg-icon.active path {
    stroke: #E35D11;
    fill: #E35D11;
} */

/* Input Field with Sedn Icon style */
.input-group {
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.input-group > form {
  flex: 0 0 100%;
  display: flex;
}
.input-group .input-field {
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 20px;
  padding-right: 0;
  height: 100%;
  flex: 1 1 100%;
}
.btn-send svg {
  display: block;
  margin: auto;
}
.btn-send svg path {
  stroke: #e35d11;
}
.btn-send:hover svg path {
  /* fill: #E35D11; */
  transition: all 250ms ease-in-out;
}
.input-group .btn-send {
  background: none;
  border: none;
  outline: none;
  flex: 0 0 auto;
  padding: 10px 20px;
}

.input-group .btn-send .loader {
  display: none;
}
.input-group .btn-send.show-loader .loader {
  display: block;
}
.input-group .btn-send.show-loader > svg {
  display: none;
}

/* loader STyle */
.btn-loader {
}
.btn-loader .loader {
  border: 2px solid #d9d9d9;
  border-top: 2px solid #e35d11;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 0.8s linear infinite;
}

/* disclaimer Text Style */
.disclaimer-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #888a8b;
  margin: 10px 0;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/* ================================= >  Common Style */

.Video-detail-page {
  padding: 30px 80px;
  max-width: 1920px;
  margin: auto;
  margin-top: 70px;
  /* margin-top: 10px; */
}

.Video-detailpage-control {
  display: grid;
  grid-template-columns: calc(100% - 420px) 400px;
  column-gap: 20px;
  align-items: flex-start;
  justify-content: center;
}

.video-btn-wrap {
    /* margin: 90px 0 0; */
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 15px;
    border-radius: 4px 4px 0px 0px;
    border: 1px solid rgba(227, 93, 17, 0.10);
    background: rgba(227, 93, 17, 0.05);
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.06);
}
.video-btn-wrap a {
    color: #252B42;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.video-btn-wrap a.disabled {
    -webkit-appearance: a;
    cursor: not-allowed;
}

/* Video Side Left part Style */
.video-side-left {
}

/* Video Frame Size according to Aspect Ratio Style */
.video-aspect-ratio {
  aspect-ratio: 16 / 9;
}
.video-frame-preview {
  background: #d9d9d9;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  overflow: hidden;
}
.video-frame-preview iframe.video-iframe {
  width: 100%;
  height: 100%;
}

.video-frame-preview > .video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Video Action bar Name and Buttons */
.name-action-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 10px 0;
}
.video-name-duration{
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.video-name {
  flex: 1 1 auto;
  font-size: 16px;
  font-weight: 600;
  color: #252b42;
  line-height: normal;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-duration {
  /* flex: 1 1 auto;
  font-size: 16px;
  font-weight: 500;
  color: #252b42;
  line-height: normal;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; */
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  color: #3a4367;
}
.video-actions {
  flex: 0 0 auto;
}
.video-actions button {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  margin-right: 10px;
}
.video-actions button:last-child {
  margin-right: 0;
}

.video-description p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #3a4367;
  margin: 0;
}
.video-description p > a {
  color: #e35d11;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  margin-left: 4px;
}

/* Assessment Card Style */
.assessment-card {
  background: #ffe8d3;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.assessment-card > p,
.assessment-check > p {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #555555;
  margin: 0;
}

.assessment-check {
  flex: 1 1 auto;
}

.assessment-card > .proceed-link {
  flex: 0 0 auto;
}

.custom-checkbox .checkbox-label {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: #252b42;
  margin: 0;
  /* margin-left: 10px; */
}

/* Customize the label (the container) */
.custom-checkbox {
  display: inline-block;
  position: relative;
  padding-left: 28px;
  margin-bottom: 4px;
  cursor: pointer;
  line-height: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.custom-checkbox input {
  /* position: absolute; */
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  border: 1px solid #3a4367;
  border-radius: 4px;
  width: 18px;
  height: 18px;
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
  background: #f5f5f5;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {
  background: #e35d11;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Video page Tabs Style */
.brbeen-tabs {
  margin-top: 20px;
}
.brbeen-tabs > .nav {
  background: #f5f5f5;
  border: none;
  border-bottom: 2px solid #f5f5f5;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 6px;
  padding-bottom: 0;
}
.brbeen-tabs > .nav li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.brbeen-tabs > .nav li.nav-item a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: #3a4367;
  padding: 11px 20px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  transition: all 250ms ease-in-out;
}
.brbeen-tabs > .nav li.nav-item a:hover {
  background: #ffffff;
}
.brbeen-tabs > .nav li.nav-item a:active,
.brbeen-tabs > .nav li.nav-item a.active {
  color: #e35d11;
  background: #ffffff;
  border: none;
  border-bottom: 2px solid #e35d11;
}

/* drbeen Tabs Content */
.brbeen-tabs .tab-content {
  margin-top: 15px;
  position: relative;
  min-height: 320px;
}

/* Video page Right Side Style */
/* .video-side-right{}
.videos-sidebar{} */
/* Right Videos Tabs */
.filter-tabs > .nav {
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 20px;
  flex-wrap: nowrap;
  overflow: auto;
  white-space: nowrap;
}
.filter-tabs > .nav li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  margin-right: 10px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.filter-tabs > .nav li:last-child {
  margin-right: 0;
}
.filter-tabs > .nav li.nav-item a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: #252b42;
  padding: 5px 10px;
  background: #f5f5f5;
  border: none;
  border-radius: 4px;
  transition: all 250ms ease-in-out;
}
.filter-tabs > .nav li.nav-item a:hover {
  background: #d9d9d9;
}
.filter-tabs > .nav li.nav-item a:active,
.filter-tabs > .nav li.nav-item a.active {
  color: #ffffff;
  background: #252b42;
}

/* Thumbnail Video Styles */
.thumbnail-holder {
  background: transparent;
  border: none;
  border-radius: 4px;
  padding: 7px 8px 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 15px;
  justify-content: flex-start;
  /* align-items: flex-start; */
  /* margin-bottom: 10px; */
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
.thumbnail-holder:last-child {
  margin-bottom: 10px;
}
.thumbnail-holder:hover {
  background: #f5f5f5;
}
.thumbnail-preview {
  background: #f5f5f5;
  border: none;
  border-radius: 4px;
  aspect-ratio: 16 / 9;
  max-width: 150px;
  position: relative;
  overflow: hidden;
}
.thumbnail-preview .thumbnial-time-badge {
  position: absolute;
  right: 5px;
  bottom: 3px;
  /* background: #000000; */
  background: #E35D11;
  border: none;
  border-radius: 4px;
  box-shadow: 0 0 4px rgb(0 0 0 / 25%);
  padding: 4px 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  color: #ffffff;
  letter-spacing: 0.4px;
  margin: 0;
}
.thumbnail-content {
  display: inline-flex;
  flex-direction: column;
}
.thumbnail-content .thumbnail-heading {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #252b42;
  margin: 0;
  margin-top: -4px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.thumbnail-content .thumbnail-view {
  font-size: 14px;
  font-weight: 600;
  line-height: 17.7px;
  color: #3a4367;
  margin: 0;
}
.thumbnail-content .thumbnail-instructor {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  color: #888a8b;
  margin: 0;
  margin-top: auto;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* Comment Tab Style */
.comment-tabcontent {
  position: relative;
}

.write-comment {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 20px;
}
.write-comment .heading-header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 10px;
}
.write-comment .heading-header > h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: #252b42;
  margin: 0;
}
.write-comment .heading-header > h3 {
  font-size: 16px;
  font-weight: bold;
  line-height: normal;
  color: #252b42;
  margin: 0;
}

/* Comments Timeline Style */
/* .comment-timeline{} */
.comment-block {
  background: #ffffff;
  border: 1px solid #c1c1c1;
  border-radius: 4px;
  padding: 20px;
  padding-right: 20px;
  margin-top: 10px;
}
.base-comment {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
}

.base-comment .user-image {
  flex: 0 0 52px;
  background: #ffffff;
  border-radius: 30px;
  /* box-shadow: 0 0 0 #000000; */
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.32));
  overflow: hidden;
  width: 52px;
  height: 52px;
}
.base-comment .user-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* .comment-content{} */
.comment-content {
  flex: 1 1 100%;
}
.comment-header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.comment-name {
  font-size: 15px;
  font-weight: bold;
  line-height: normal;
  color: #252b42;
  margin: 0;
}
.comment-time {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  color: #888a8b;
  margin: 0;
}
.comment-content > p {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #555555;
  margin: 0;
  margin-bottom: 4px;
  word-break: break-word;
}
.reply-btn {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: #3a4367;
  margin: 0;
  cursor: pointer;
}
.reply-btn:hover {
  color: #e35d11;
  transition: all 250ms ease-in-out;
}
.reply-btn > svg {
  display: inline-block;
  vertical-align: text-top;
  margin-right: 4px;
}
.reply-btn > svg > path {
  stroke: #3a4367;
}
.reply-btn:hover > svg > path {
  stroke: #e35d11;
  transition: all 250ms ease-in-out;
}

/* Comment Reply Style */
.comment-reply-wrapper {
  max-width: calc(100% - 67px);
  margin: auto;
  margin-right: 0;
  border-top: 1px solid #dbdbdb;
  padding-top: 10px;
  margin-top: 10px;
}
.comment-reply-block {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
}

.comment-reply-block .user-image {
  flex: 0 0 40px;
  background: #ffffff;
  border-radius: 30px;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.32));
  overflow: hidden;
  width: 40px;
  height: 40px;
}
.comment-reply-block .user-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Write Comment Style */
.comment-write-block {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 10px;
}
.comment-write-block .user-image {
  flex: 0 0 52px;
  background: #ffffff;
  border-radius: 30px;
  /* box-shadow: 0 0 0 #000000; */
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.32));
  overflow: hidden;
  width: 52px;
  height: 52px;
}
.comment-write-block .user-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.comment-write-field {
  flex: 1 1 100%;
}

/* Notes Tab Style */
/* .video-notes-content{
    padding: 0 26px;
} */
.video-notes-content > p {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #555555;
  margin: 0;
  margin-top: 10px;
}
.video-notes-content > p:first-child {
  margin-top: 0;
}

/* Learning Object Tab Style */
.learning-content > p {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #555555;
  margin: 0;
  margin-top: 10px;
}
.learning-content > p:first-child {
  margin-top: 0;
}

/* AI Drbeen Tab Style */
.drbeen-content-box {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 20px;
}
.disclaimer-block {
  border-bottom: 1px solid #dbdbdb;
}
.message-response .response-reply {
  background: #ffffff;
  border: 1px solid #c1c1c1;
  border-radius: 4px;
  padding: 0;
  margin: 0;
  margin-top: 10px;
  width: 100%;
  box-shadow: none;
}
.response-reply .response-ques {
  background: #d9d9d9;
  border-bottom: 1px solid #c1c1c1;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 10px 20px;
}
.response-reply .response-ques > h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  color: #252b42;
  margin: 0;
}
.response-reply .response-ans {
  padding: 10px 20px;
}
.response-reply .response-ans > p {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #555555;
  margin: 0;
}

/* Authors Tab Style */
.authors-list .authors-heading {
  font-size: 16px;
  font-weight: bold;
  line-height: normal;
  color: #252b42;
  margin: 0;
  margin-bottom: 10px;
}
.authors-list > p {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #555555;
  margin: 0;
  margin-bottom: 14px;
}
.authors-list ul {
  margin: 0;
  padding: 0;
}
.authors-list ul li {
  list-style: none;
  display: block;
  padding: 0 0;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: #252b42;
  margin: 0;
  margin-bottom: 14px;
}
.authors-list ul li:last-child {
  margin-bottom: 0;
}

/* No Permission Lock Style */
.no-permission-lock .lock-overlay {
  min-height: 300px;
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 1;
}
.free-trial-locks-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}
.free-trial-locks-icon > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.free-trial-locks-body > h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #ffffff;
  margin: 0;
  margin-bottom: 4px;
}
.free-trial-locks-body > button,
.free-trial-locks-body > a {
  margin: 0;
  margin-top: 3px;
}
.free-trial-locks-body > a {
  display: inline-block;
}
.free-trial-locks-body > p {
  font-size: 12px;
  font-weight: 300;
  line-height: normal;
  color: #ffffff;
  margin: 0;
  margin-top: 4px;
}

/* Mobile View Style */
.video-list-backdrop.show {
  display: block;
}
.video-list-backdrop {
  display: none;
  width: 100%;
  height: 100vh;
  background: rgb(0 0 0 / 60%);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 71;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
}
.mobile-toggle {
  display: none;
}
.btn-mobile-toggle-arrow {
  background: #f5f5f5;
  border-radius: 16px 16px 0px 0px;
  border: none;
  outline: none;
  display: block;
  width: 100%;
  padding: 3px;
}
.btn-mobile-toggle-arrow > svg > path {
  stroke: #888a8b;
  transition: all 250ms ease-in-out;
}
.btn-mobile-toggle-arrow:hover > svg > path {
  stroke: #e35d11;
}

/* Modal Style START */
.modal-backdrop {
  display: none;
  position: fixed;
  z-index: 101;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal-md {
  max-width: 525px;
  margin: auto;
}
.modal-backdrop .custom-modal {
  height: 100%;
  display: flex;
}
.custom-modal .modal-footer > a {
  display: block;
  width: auto;
  margin: auto;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px 7px;
  background: rgb(58 67 103 / 10%);
  border: none;
  border-radius: 30px;
  width: 40px;
  height: 40px;
  opacity: 1;
  margin: 0;
}

/* Modal Style END */

.video-module-name {
  color: 252B42;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0px;
  width: 90%;
}

td,
th {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  text-align: left;
  padding: 8px;
}
.table-th {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: normal;
  color: #252b42;
}

.table-td {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: #252b42;
}

.instructor-col{
  width: 30%;
}

.table-instructor {
  font-family: "Montserrat", sans-serif;
  border-collapse: collapse;
  width: 100%;
}

/* Mobile Responsive Style For Quries */
@media only screen and (max-width: 1440px) {
  .Video-detail-page {
    padding: 30px 30px;
  }
  .Video-detailpage-control {
    grid-template-columns: calc(100% - 380px) 360px;
  }
}

@media only screen and (max-width: 1200px) {
  /* .Video-detail-page{
        margin-top: 130px;
    } */
  .Video-detailpage-control {
    grid-template-columns: calc(100% - 320px) 300px;
  }
  .assessment-card {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .brbeen-tabs > .nav li.nav-item a {
    padding: 11px 16px;
  }
  .filter-tabs > .nav li.nav-item a {
    font-size: 13px;
  }
  .thumbnail-preview {
    max-width: 120px;
  }
  .thumbnail-content .thumbnail-heading {
    font-size: 13px;
    line-height: 16px;
  }
  .thumbnail-content .thumbnail-view {
    font-size: 12px;
  }
  .thumbnail-content .thumbnail-instructor {
    font-size: 11px;
  }
}

@media only screen and (max-width: 991px) {
  .Video-detail-page {
    /* margin-top: 130px; */
    position: relative;
  }
  .Video-detailpage-control {
    display: block;
  }
  .video-side-left {
    /* padding-bottom: 164px; */
    padding-bottom: 20px;
  }
  .video-side-right {
    background: #ffffff;
    box-shadow: 0px -2px 12px 1px rgba(0, 0, 0, 0.25);
    border-radius: 16px 16px 0px 0px;
    margin: 0 -15px;
    margin-bottom: -20px;
    position: sticky;
    /* position: fixed; */
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 73;
    /* max-height: 668px; */
    transition: all 300ms ease-in-out;
  }
  .filter-tabs {
    padding: 20px 15px;
  }
  .mobile-toggle {
    display: block;
  }
  .mobile-toggle.open > .btn-mobile-toggle-arrow > svg {
    transform: rotateX(180deg);
    transition: all 250ms ease-in-out;
  }
  .filter-tabs > .nav {
    display: none;
  }
  .video-side-right.show > .filter-tabs > .nav {
    display: block;
  }
  .videos-sidebar {
    max-height: 84px;
    overflow: hidden;
    transition: all 300ms ease-in-out;
  }
  .videos-sidebar.open {
    max-height: calc(100vh - 350px);
    overflow: hidden;
    overflow-y: auto;
  }
  .thumbnail-holder {
    padding: 0;
  }
  .thumbnail-preview {
    max-width: 150px;
  }
  .thumbnail-holder:hover {
    background: transparent;
  }
  /* When List is Open  */
}

@media only screen and (max-width: 767px) {
  .Video-detail-page {
    padding: 20px 15px;
  }
  .name-action-bar {
    flex-direction: column;
    gap: 10px;
  }
  .brbeen-tabs > .nav {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: auto;
  }
  .brbeen-tabs > .nav::-webkit-scrollbar {
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
  }
  .thumbnail-content .thumbnail-heading {
    margin-top: 0;
  }
  /* input Style */
  .input-group .btn-send {
    padding: 10px 10px;
  }
  /* Comment Style */
  .base-comment .user-image {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
  }
  .comment-write-block .user-image {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
  }
  .comment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 5px;
  }
  .comment-reply-wrapper {
    max-width: 100%;
  }
}

@media only screen and (max-width: 525px) {
  .video-frame-preview .no-permission-lock .lock-overlay {
    min-height: 100%;
  }
  .video-frame-preview .free-trial-locks-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }
  .video-frame-preview .free-trial-locks-body > button,
  .video-frame-preview .free-trial-locks-body > a {
    margin: 0;
    margin-top: 5px;
  }
}

@media only screen and (max-width: 374px) {
  .write-comment {
    padding: 10px;
  }
  .write-comment .heading-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  .comment-block {
    padding: 10px;
    padding-right: 10px;
  }
  .comment-content > p {
    line-height: 20px;
  }
  .input-group .input-field {
    padding: 10px;
  }
  .comment-write-field {
    max-width: calc(100% - 53px);
  }
}


/* New CSS for Instructor Tab on video page */


.instructor-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.instructor-img {
  width: 100%;
  max-width: 250px;
  height: 100%;
  max-height: 250px;
  margin-right: 32px;
}

.instructor-name {
  color: #E35D11;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  /* line-height: 34px; */
  font-size: 18px;
  margin-bottom: 7px;
}

.instructor-desc{
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  /* line-height: 34px; */
  font-size: 15px;
  color: #555555;
  width: 100%;
  max-width: 650px;
}

.instructor-status{
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  /* line-height: 34px; */
  font-size: 15px;
  margin-bottom: 10px;
  color: #555555;
  width: 100%;
  max-width: 600px;
}

#instructors h2{
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  /* line-height: 34px; */
  font-size: 20px;
  color: #252B42;
}

#instructors{
  margin-top: 20px;
}


.progress-container{
  background-color: rgb(227 227 227);
}

.progress-bar{
  height: 6px;
  background-color: rgb(224, 94, 8);
  margin-bottom: 15px;
}

@media(max-width:600px){
  .instructor-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .instructor-name{
    margin-top: 13px;
  }

  #instructors {
    padding-left: 15px;
}
}

@media (min-width:600px) and (max-width: 1100px) {
  .brbeen-tabs > .nav {
      flex-wrap: nowrap;
      white-space: nowrap;
      overflow: auto;
  }
}
