/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
  
}

:root {
  scroll-behavior: smooth;
}

:root {
  /* Pallete A: Primary Brand Colors */
  --cf-green: #00cc00;
  --cf-yellow: #ffcc33;
  --cf-red: #fe0000;

  /* Pallete B: Brand Color Tints */
  --cf-tint-green-a: #ccf4cc;
  --cf-tint-yellow-a: #fffad6;
  --cf-tint-red-a: #ffd7d7;

  --cf-tint-green-b: #f3fff4;
  --cf-tint-yellow-b: #fffde9;
  --cf-tint-red-b: #fffafa;

  /* Pallete C: Neutral Colors */
  --cf-white: #ffffff;
  --cf-dirty-white: #f8f5f5;
  --cf-light-gray: #e8e8e8;
  --cf-gray: #bdbdbd;
  --cf-dark-gray: #767676;
  --cf-black: #2b2a2a;

  /* Body Color */
  --cf-body-color: #fffafa;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fffafa;
  color: #444444;
}

a {
  color: #ffcc33;
  text-decoration: none;
}

a:hover {
  color: #ffbf00;
  text-decoration: none;
}

.text-muted {
  color: #bbb !important;
}

.text-grey {
  color: #ececec !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

::selection {
  background: #ffcc33;
  color: #111111;
}

/*::-webkit-scrollbar {
  display: none;
}
*/
::-webkit-scrollbar-thumb {
  background: #ffcc33;
}

.form-control:focus {
  border: 2px solid #ffc107;
  box-shadow: none;
  outline: 0;
}

.form-check-input:checked {
  background-color: #ffc107;
  border-color: #ffc107;
}

.form-check-input:focus {
  border-color: #ffc107 !important;
  outline: 0;
  box-shadow: none !important;
}

.inter-fonts {
  font-family: 'Bebas Neue', cursive;
  font-family: 'Inter', sans-serif;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 60px;
  padding: 20px 30px;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
}

#loading-overlay:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #ffcc33;
  border-top-color: #fe0000;
  border-bottom-color: #01ba00;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  -webkit-animation: animate-preloader 1s linear infinite,
    glow 1s ease-in-out infinite;
  animation: animate-preloader 1s linear infinite, glow 1s ease-in-out infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes glow {
  0%,
  100% {
    border-color: rgba(254, 0, 0, 0);
  }

  50% {
    border-color: #ffcc33;
    border-top-color: #fe0000;
    border-bottom-color: #01ba00;
  }
}

@keyframes glow {
  0%,
  100% {
    border-color: rgba(254, 0, 0, 0);
  }

  50% {
    border-color: #ffcc33;
    border-top-color: #fe0000;
    border-bottom-color: #01ba00;
  }
}

#loading-overlay .image-loader {
  position: absolute;
  top: 54%;
  left: 50.3%;
  transform: translate(-50%, -50%);
}

.image-loader img {
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

#loading-overlay #progress-counter {
  position: absolute;
  top: 52.89%;
  left: 49.55%;
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 900;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-95 {
  height: 95.5% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

iframe {
  border-radius: 10px;
}

input[placeholder]:not([type="search"]) {
    padding: 10px;
}

.badge.active {
  background: green !important;
  color: white !important;
}

.cursor-pointer {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Section
--------------------------------------------------------------*/
.section-bg {
  background: #edf2f8;
  border-radius: 10px;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
  margin-top: 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Offcanvas
--------------------------------------------------------------*/
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.offcanvas-backdrop.fade {
  opacity: 0;
}

.offcanvas-backdrop.show {
  opacity: 0;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #ececec;
  box-shadow: 1px 1px 3px #ececec;
}

.offcanvas-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 25px;
  font-weight: 900;
}

.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}

.offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
}

.offcanvas-end {
  top: 60px;
  right: 0;
  width: 400px;
  border-left: none;
  box-shadow: 1px 1px 3px #5a5a5a;
  transform: translateX(100%);
}

.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
}

.offcanvas-bottom {
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
}

.offcanvas.show {
  transform: none;
}

/*--------------------------------------------------------------
# Offcanvas: Notification Item
--------------------------------------------------------------*/
.offcanvas-body .notification-item .time-stamp {
  font-size: 15px;
  font-weight: 600;
  color: #979797;
}

.offcanvas-body .notification-item .see-all a {
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 15px;
  color: rgb(59, 59, 59);
}

.offcanvas-body .notification-item .see-all a:hover {
  padding: 5px 10px;
  border-radius: 5px;
  background: #ececec;
  color: rgb(59, 59, 59);
}

.offcanvas-body .notification-item .notification-link .notification-hover-bg {
  padding: 10px;
  border-radius: 7px;
  transition: 0.5s;
}

.offcanvas-body
  .notification-item
  .notification-link
  .notification-hover-bg:hover {
  background: #fff;
  box-shadow: 0 2px 10px #d8d8d8;
}

.offcanvas-body
  .notification-item
  .notification-link
  .notification-hover-bg
  .link-item {
  margin-bottom: -15px;
}

.offcanvas-body .notification-item .notification-link img {
  width: 50px;
}

.offcanvas-body .notification-item .notification-link .figure {
  position: relative;
  top: -20px;
  left: 25px;
  display: grid;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 25px;
  height: 25px;
  border-radius: 100px;
  box-shadow: 0 2px 10px #d8d8d8;
}

.offcanvas-body .notification-item .notification-link .figure img {
  width: 17px;
}

.offcanvas-body .notification-item .notification-link h4 {
  font-size: 15px;
  color: #111;
}

.offcanvas-body .notification-item .notification-link p {
  margin-top: -2%;
  line-height: 18px;
  font-size: 12px;
  color: rgb(170, 170, 170);
}

.offcanvas-body .notification-item .notification-link .time {
  margin-top: -4%;
  color: #012970;
  font-weight: 800;
  font-size: 12px;
}

@media screen and (max-width: 576px) {
  .offcanvas-body .notification-item .notification-link img {
    width: 45px;
  }

  .offcanvas-body .notification-item .notification-link h4 {
    font-size: 15px;
    color: #111;
  }

  .offcanvas-body .notification-item .notification-link p {
    margin-top: -3%;
    line-height: 18px;
    font-size: 11px;
    color: rgb(170, 170, 170);
  }

  .offcanvas-body .notification-item .notification-link .time {
    margin-top: -6%;
    color: #012970;
    font-weight: 800;
    font-size: 10px;
  }
}

/*--------------------------------------------------------------
# Single Page: All Notification
--------------------------------------------------------------*/
.card .card-body .notification-item {
  max-height: 690px;
  overflow-x: hidden !important;
  overflow-y: auto;
  overflow: scroll;
  margin-bottom: 15px;
}

.card .card-body .notification-item .time-stamp {
  font-size: 15px;
  font-weight: 800;
  color: #979797;
}

.card .card-body .notification-item .see-all a {
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 15px;
  color: rgb(59, 59, 59);
}

.card .card-body .notification-item .see-all a:hover {
  padding: 5px 10px;
  border-radius: 5px;
  background: #ececec;
  color: rgb(59, 59, 59);
}

.card .card-body .notification-item .notification-link .notification-hover-bg {
  padding: 20px;
  border-radius: 7px;
  transition: 0.5s;
}

.card
  .card-body
  .notification-item
  .notification-link
  .notification-hover-bg:hover {
  background: #fff;
  box-shadow: 0 2px 10px #d8d8d8;
}

.card
  .card-body
  .notification-item
  .notification-link
  .notification-hover-bg
  .link-item {
  margin-bottom: -15px;
}

.card .card-body .notification-item .notification-link img {
  width: 40px;
}

.card .card-body .notification-item .notification-link h4 {
  margin-top: -3.4%;
  margin-left: 5.8%;
  font-size: 13px;
  color: #111;
}

.card .card-body .notification-item .notification-link p {
  margin-top: -0.8%;
  margin-left: 5.8%;
  line-height: 18px;
  font-size: 12px;
  color: rgb(170, 170, 170);
}

.card .card-body .notification-item .notification-link .time {
  margin-top: -1%;
  color: #012970;
  font-weight: 800;
  font-size: 12px;
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 900;
  color: #111111;
}

.pagetitle p {
  font-weight: 600;
  font-size: 18px;
  color: #111111;
  font-family: "Nunito", sans-serif;
}

@media screen and (max-width: 768px) {
  .pagetitle h1 {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 900;
    color: #111111;
  }

  .pagetitle p {
    font-weight: 600;
    font-size: 15px;
    color: #111111;
    font-family: "Nunito", sans-serif;
  }
}

@media screen and (max-width: 300px) {
  .pagetitle h1 {
    font-size: 15px;
    margin-bottom: 0;
    font-weight: 900;
    color: #111111;
  }

  .pagetitle p {
    font-weight: 600;
    font-size: 12px;
    color: #111111;
    font-family: "Nunito", sans-serif;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  background: #ffcc33;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffbf00;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  -webkit-animation-name: dropdown-animate;
  animation-name: dropdown-animate;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@-webkit-keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/* Light Backgrounds */
.bg-light {
  box-shadow: 1px 1px 3px #dadada;
}

.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Search Filter */
.search-filter {
  display: grid;
  justify-content: end;
  border: 0;
  font-size: 14px;
  color: #111111;
  border-radius: 5px;
  padding: 7px 38px 7px 8px;
  border: 1px solid #ececec;
  margin-bottom: 20px;
  width: 100%;
  transition: 0.3s;
}

.search-filter:hover {
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
}

.search-filter:focus {
  color: #212529;
  background-color: #fff;
  border-color: #ffcc33;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(255 204 51 / 25%);
}

.search-bar button {
  position: relative;
  top: -53px;
  border: 0;
  padding: 0;
  margin-left: 140px;
  background: none;
}

.search-bar button i {
  color: #111111;
}

/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 15px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card .card-header {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.card .card-footer {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.card-img-top {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #111111;
  font-family: "Poppins", sans-serif;
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 0 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(17, 17, 17, 0.7);
}

/* Card Button */
.card-button {
  position: absolute;
  right: 20px;
  top: 17px;
}

.card-button .cf-btn {
  border: 1px solid #ffcc33;
  background: #ffcc33;
  box-shadow: 1px 1px 3px rgb(170, 141, 54);
  color: #111111;
  padding: 5px 10px 5px 10px;
  align-items: center;
  font-weight: 900;
  font-size: 12px;
  border-radius: 3px;
  cursor: pointer;
}

.card-button .cf-btn:hover {
  box-shadow: inset 1px 1px 3px rgb(170, 141, 54);
  color: #333333;
}

.card-button .subscribe-btn {
  border: 1px solid #fe0000;
  background: #fe0000;
  box-shadow: 1px 1px 3px rgb(197, 0, 0);
  color: #111111;
  padding: 5px 10px 5px 10px;
  align-items: center;
  font-weight: 900;
  font-size: 12px;
  border-radius: 3px;
  cursor: pointer;
}

.card-button .subscribe-btn:hover {
  box-shadow: inset 1px 1px 3px rgb(197, 0, 0);
  color: #333333;
}

/* Alerts */
.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 1rem;
}

.alert-heading {
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid transparent;
}

.accordion-header {
  border: 1px solid #ececec;
  border-radius: 10px;
  box-shadow: 1px 2px 15px #ececec;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #333;
  background-color: #fff;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #4154f1;
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  color: #899bbd;
  font-weight: 600;
}

.breadcrumb a {
  color: #899bbd;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

.breadcrumb .active {
  color: #51678f;
  font-weight: 600;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: end;
  padding-left: 0;
  list-style: none;
}

.page-item {
  margin-left: 10px;
}

.page-link {
  position: relative;
  display: block;
  color: #111;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #fff;
  box-shadow: 1px 1px 3px #b8b8b8;
  border-radius: 10px !important;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}

.page-link:hover {
  z-index: 2;
  color: #333;
  background: #fae092 !important;
  box-shadow: inset 1px 1px 3px #b3b3b3 !important;
  border-color: #ffcc33;
}

.page-link:focus {
  z-index: 3;
  color: #333;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(255, 204, 51, 0.25);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}

.page-item.active .page-link {
  z-index: 3;
  color: #000;
  font-weight: 600;
  background: #ffcc33 !important;
  box-shadow: inset 1px 1px 3px #b3b3b3 !important;
  border-color: #ffcc33 !important;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #ffcc33;
}

.nav-tabs-bordered .nav-link.active {
  background-color: transparent;
  color: #111111;
  border-bottom: 2px solid #ffcc33;
}

@media screen and (min-width: 300px) {
  .nav-tabs-bordered .nav-link .second-word {
    -ms-word-break: break-all;
    word-break: break-all;
  }
}

/* Nav Pills */
.nav-pills .nav-link {
  background: none;
  color: #1a2a3d;
  font-weight: 600;
  border: 0;
  border-radius: 0.25rem;
  padding: 10px;
  margin-bottom: 10px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #111111;
  background-color: #f3f3f3;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

/* Progress Bar */
.progress {
  display: flex;
  height: 0.3rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #ffcc33;
  transition: width 0.6s ease;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
@media screen and (max-width: 991px) {
    #header .logo-desktop {
        display: block;
        line-height: 1;
        width: 280px !important;
    }

  #header .logo-mobile {
    display: block !important;
    width: 5px !important;
  }

  #header .logo-mobile img {
    margin-right: 6px;
    width: 50px !important;
  }

  .header .toggle-sidebar-btn {
    font-size: 32px;
    margin-left: 50px !important;
    padding-left: 10px;
    cursor: pointer;
    color: #111111;
  }

  .header .logo-desktop{
      display:none!important;
  }
}

@media screen and (min-width: 992px) {
  #header .logo-desktop {
    display: block;
    line-height: 1;
    width: 280px !important;
  }

  #header .logo-desktop img {
    max-height: 50px;
    margin-right: 6px;
  }

  #header .logo-mobile {
    display: none !important;
  }
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  font-family: "Nunito", sans-serif;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  /* background-color: #ffcc33; */
  background-color: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-left: 20px;
}

.header .toggle-sidebar-btn {
  font-size: 32px;
  margin-left: -100px;
  padding-left: 10px;
  cursor: pointer;
  color: #111111;
}

.header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}

@media (max-width: 991px) {
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: #ffcc33;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
}

.header .search-form {
  width: 100%;
}

.header .search-form input {
  border: 0;
  font-size: 14px;
  color: #111111;
  padding: 7px 38px 7px 8px;
  border: 1px solid #ececec;
  border-radius: 5px;
  transition: 0.3s;
  width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
}

.header .search-bar .search-results {
  margin-top: 0.5% !important;
  max-width: auto;
  max-height: 500px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  overflow-y: auto;
  overflow: scroll;
  overflow-x: hidden;
}

.header .search-bar .search-results li .dropdown-item:hover {
  background: #ffcc33;
}

.header .search-bar .search-results::-webkit-scrollbar {
  display: block;
  background: transparent;
  width: 5px;
}

.header .search-bar .search-results::-webkit-scrollbar-thumb {
  background: #ffcc33;
}

.header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.header .search-form button i {
  color: #111111;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav > ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 20px;
  color: #111111;
}

.header-nav .nav-icon .bi-bell-fill {
  font-size: 20px;
  color: #111111;
}

.header-nav .nav-profile {
  color: #111111;
}

.header-nav .nav-profile img {
  max-height: 36px;
  box-shadow: 0px 2px 5px rgb(179, 179, 179);
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  margin-top: -5px;
  margin-right: -15px !important;
  inset: 4px 6px auto auto;
  font-weight: normal;
  font-size: 11px;
  padding: 3px 6px;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item img {
  margin: 0 20px 0 10px;
  max-width: 45px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #ffcc33;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #ffcc33;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 75px;
  left: 15px;
  bottom: 15px;
  width: 290px;
  z-index: 996;
  transition: all 0.3s;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ffcc33 transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
  z-index: 2;
}

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #ffcc33;
}

@media (min-width: 1200px) {
  #main,
  #footer {
    margin-left: 300px;
  }
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}

@media (min-width: 1200px) {
  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 900;
  color: #333333;
  transition: 0.3;
  padding: 10px 15px;
  border-radius: 8px;
}

.sidebar-nav .nav-link.active {
  display: flex;
  align-items: center;
  font-weight: 900;
  color: #111111;
  transition: 0.3;
  /* background: #ffcc33; */
  padding: 10px 15px;
  border-radius: 8px;
}

.sidebar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: -25px;
  height: 25px;
  background: #ffcc33;
  padding: 10px 15px;
  border-top-left-radius: none;
  border-bottom-left-radius: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: #333333;
}

.sidebar-nav .nav-link.active i {
  font-size: 16px;
  margin-right: 10px;
  color: #333333;
}

.sidebar-nav .nav-link.collapsed {
  color: #111111;
  background: #fff;
}

.sidebar-nav .nav-link.collapsed i {
  color: #111111;
}

.sidebar-nav .nav-link:hover {
  color: #111111;
  background: #ffebb1;
}

.sidebar-nav .nav-link:hover::after {
  content: "";
  position: absolute;
  left: -25px;
  height: 25px;
  background: #ffebb1;
  padding: 10px 15px;
  border-top-left-radius: none;
  border-bottom-left-radius: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.sidebar-nav .nav-link:hover i {
  color: #111111;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #ffcc33;
}

.sidebar-nav .nav-content a.active i {
  background-color: #ffcc33;
}

/*.sidebar .sidebar-nav .nav-item .referral-card {
  position: absolute;
  bottom: 2.5%;
  width: 86%;
}
*/
.sidebar .sidebar-nav .nav-item .referral-card img {
  /*position: absolute;*/
  width: 150px;
  /*top: -25%;*/
  /*left: 22%;*/
  z-index: 1;
  align-self:center;
}

.sidebar .sidebar-nav .nav-item .referral-card .card {
  background: var(--cf-white);
  backdrop-filter: blur(10px);
}

.sidebar .sidebar-nav .nav-item .referral-card .card-text {
  /*margin-top: 28%;*/
  font-size: 13px;
  color: #333333;
  font-weight: 600;
}

.sidebar .sidebar-nav .nav-item .referral-card a {
  background: #333;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 5px 15px 5px 15px;
  border: 1px solid #333;
  color: #ffcc33;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}
.sidebar .sidebar-nav .nav-item .referral-card a:hover {
  box-shadow: inset 0px 0 30px rgb(255, 204, 51, 0.1);
}

.sidebar .sidebar-nav .nav-item .legal {
  /*position: absolute;*/
  left: 18%;
  bottom: 2%;
  width: 65%;
  font-size: 15px;
}

    .sidebar .sidebar-nav .nav-item .legal .privacy-policy {
        color: #4e4e4e;
        position: relative;
        font-size: 12px;
        font-weight: 600;
    }

.sidebar .sidebar-nav .nav-item .legal .privacy-policy:hover {
  color: #ffcc33;
}
/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter Tabs */
.dashboard .filter .nav-pills {
    position: relative;
    left: -20px;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 5px;
}

.dashboard .filter .nav-pills .nav-link {
  border: 1px solid #ececec;
  background: none;
  color: #1a2a3d;
  font-size: 12px;
  font-weight: 600;
  border: 0;
  border-radius: 5px;
  padding: 5px 15px;
}

.dashboard .filter .nav-pills .nav-link.active,
.dashboard .filter .nav-pills .show > .nav-link {
  color: #111111;
  background-color: #ececec;
}

/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #ffcc33;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-item:hover {
  background-color: #ffcc33;
}

/* Latest Blogs Block */
.dashboard .cf-latest-blogs a {
  color: #111111;
}

.dashboard .add-post-card .card .card-body {
  display: grid;
  align-items: center;
}

.dashboard .cf-latest-blogs .card {
  margin-bottom: 5%;
  border: 1px solid #ececec;
  border-radius: 10px;
  box-shadow: 0 2px 10px transparent;
  cursor: grab;
}

.dashboard .cf-latest-blogs .card .card-header {
  padding: 5%;
  border: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.dashboard .cf-latest-blogs .card .card-header img {
  border-radius: 5px;
}

.dashboard .cf-latest-blogs .card .card-body {
  padding: 5%;
}

.dashboard .cf-latest-blogs .card .card-body .card-title {
  padding-top: 0px;
  font-size: 16px;
  font-weight: 600;
  color: var(--cf-black);
}

.dashboard .cf-latest-blogs .card:hover .card-body .card-title {
  color: var(--cf-yellow);
}

.dashboard .cf-latest-blogs .card .card-body .card-text {
  margin-top: -10px;
  font-size: 12px;
}

.dashboard .cf-latest-blogs .card .card-body .learn-more-btn {
  color: var(--cf-dark);
  background: var(--cf-yellow);
  box-shadow: 1px 1px 3px var(--cf-gray);
  padding: 5px 15px 5px 15px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s;
}

.dashboard .cf-latest-blogs .card .learn-more-btn:hover {
  box-shadow: inset 1px 1px 3px var(--cf-dark-gray);
}

/* Upcoming Class Block */
.dashboard .cf-upcoming-class .card {
  margin-bottom: 5%;
  border: 1px solid #ececec;
  border-radius: 10px;
  box-shadow: 0 2px 10px transparent;
  cursor: grab;
}

.dashboard .cf-upcoming-class .card .card-body {
  padding: 5%;
}

.dashboard .cf-upcoming-class .card .card-body .subject {
  margin-bottom: 10%;
  font-size: 15px;
  font-weight: 800;
  color: #111111;
}

.dashboard .cf-upcoming-class .card-body .subject code {
  font-size: 12px;
  font-weight: 800;
  color: #727272;
}

.dashboard .cf-upcoming-class .card .card-body .teachers-name {
  font-size: 13px;
  font-weight: 700;
}

.dashboard .cf-upcoming-class .card .card-body .start-time,
.dashboard .cf-upcoming-class .card .card-body .end-time {
  font-size: 13px;
  margin-bottom: 5px;
}

.dashboard .cf-upcoming-class .card .card-body .card-text {
  font-size: 12px;
  text-align: center;
  background: #ececec;
  padding: 2px 3px 2px 3px;
  border-radius: 5px;
}

.dashboard .cf-upcoming-class .card .card-footer {
  font-size: 10px;
  text-align: center;
  background: rgba(236, 236, 236, 0.555);
  padding: 10px;
  border-radius: 5px;
  transition: 0.3s;
}

.dashboard .cf-upcoming-class .card .card-footer .swap-btn,
.dashboard .cf-upcoming-class .card .card-footer .view-material-btn {
  width: 48% !important;
  border-radius: 5px;
  transition: 0.3s;
}

.dashboard .cf-upcoming-class .card .card-footer .swap-btn {
  box-shadow: 1px 1px 3px rgba(17, 17, 17, 0.5);
}

.dashboard .cf-upcoming-class .card .card-footer .swap-btn:hover {
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.dashboard .cf-upcoming-class .card .card-footer .view-material-btn {
  box-shadow: 1px 1px 3px rgb(170, 141, 54);
}

.dashboard .cf-upcoming-class .card .card-footer .view-material-btn:hover {
  box-shadow: inset 1px 1px 3px rgb(170, 141, 54);
}

/* Quiz Leaderboard */
.dashboard .quiz-leaderboard {
  font-size: 14px;
}

.dashboard .quiz-leaderboard .table thead {
  background: #f6f6fe;
}

.dashboard .quiz-leaderboard .table thead th {
  border: 0;
}

.dashboard .quiz-leaderboard .table tbody td {
  vertical-align: middle;
}

.dashboard .quiz-leaderboard .table tbody td img {
  border-radius: 50px;
  max-width: 60px;
}

/* Past Class */
.dashboard .past-class {
  max-height: 375px;
  overflow-x: hidden !important;
  overflow-y: auto;
  overflow: scroll;
}

.dashboard .past-class::-webkit-scrollbar {
  display: none;
  width: 5px;
  background: transparent;
  transition: 1s;
}

.dashboard .past-class:hover::-webkit-scrollbar {
  display: block;
  width: 5px;
  background: transparent;
}

.dashboard .past-class::-webkit-scrollbar-thumb {
  background: #ffcc33;
  border-radius: 10px;
}

.dashboard .past-class .post-item + .post-item {
  margin-top: 15px;
}

.dashboard .past-class img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .past-class h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard .past-class h4 a {
  color: #111111;
  transition: 0.3s;
}

.dashboard .past-class h4 a:hover {
  color: #ffcc33;
}

.dashboard .past-class p {
  font-size: 14px;
  color: #777777;
  margin-left: 95px;
}

/*--------------------------------------------------------------
# General: Swiper Cards
--------------------------------------------------------------*/
.swiper-card .swiper-button-prev,
.swiper-card .swiper-button-next {
  z-index: 1;
}

.swiper-card .swiper-button-prev:after,
.swiper-card .swiper-button-next:after {
  font-size: 10px;
  color: #111111;
  background: #eeeeee;
  padding: 13px 15px 13px 15px;
  border-radius: 15px;
  transition: 0.5s;
}

.swiper-card .swiper-button-prev:hover::after,
.swiper-card .swiper-button-next:hover::after {
  font-size: 10px;
  color: #111111;
  background: #ffcc33;
  padding: 13px 15px 13px 15px;
  border-radius: 15px;
}

@media screen and (min-width: 300px) {
  .swiper-card .swiper-button-prev {
    top: 31px;
    left: 68%;
  }

  .swiper-card .swiper-button-next {
    top: 31px;
    right: 8%;
  }
}

@media screen and (min-width: 576px) {
  .swiper-card .swiper-button-prev {
    top: 31px;
    left: 83%;
  }

  .swiper-card .swiper-button-next {
    top: 31px;
    right: 4%;
  }
}

@media screen and (min-width: 768px) {
  .swiper-card .swiper-button-prev {
    top: 31px;
    left: 87.5%;
  }

  .swiper-card .swiper-button-next {
    top: 31px;
    right: 3%;
  }
}

@media screen and (min-width: 992px) {
  .swiper-card .swiper-button-prev {
    top: 31px;
    left: 86.2%;
  }

  .swiper-card .swiper-button-next {
    top: 31px;
    right: 3%;
  }
}

@media screen and (min-width: 1200px) {
  .swiper-card .swiper-button-prev {
    top: 31px;
    left: 84.5%;
  }

  .swiper-card .swiper-button-next {
    top: 31px;
    right: 3%;
  }
}

@media screen and (min-width: 1400px) {
  .swiper-card .swiper-button-prev {
    top: 31px;
    left: 87%;
  }

  .swiper-card .swiper-button-next {
    top: 31px;
    right: 3%;
  }
}

@media screen and (min-width: 1600px) {
  .swiper-card .swiper-button-prev {
    top: 31px;
    left: 88.5%;
  }

  .swiper-card .swiper-button-next {
    top: 31px;
    right: 3%;
  }
}

@media screen and (min-width: 1920px) {
  .swiper-card .swiper-button-prev {
    top: 31px;
    left: 91.5%;
  }

  .swiper-card .swiper-button-next {
    top: 31px;
    right: 2%;
  }
}

.swiper-card .swiper-card-list {
  padding: 15px 0;
  text-align: left;
}

.swiper-card .swiper-card-list .swiper-wrapper {
  align-items: center;
}

/* No Quiz Text */
.no-quiz {
  color: rgb(153, 153, 153);
}

.no-quiz i {
  font-size: 45px;
}

@media screen and (min-width: 300px) {
  .no-quiz i {
    font-size: 30px;
  }

  .no-quiz h5 {
    font-size: 18px;
  }

  .no-quiz p {
    font-size: 11px;
  }
}

@media screen and (min-width: 576px) {
  .no-quiz i {
    font-size: 30px;
  }

  .no-quiz h5 {
    font-size: 20px;
  }

  .no-quiz p {
    font-size: 15px;
  }
}

@media screen and (min-width: 992px) {
  .no-quiz i {
    font-size: 30px;
  }

  .no-quiz h5 {
    font-size: 20px;
  }

  .no-quiz p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Material: Recorded Lesson
--------------------------------------------------------------*/
.material-card .material .card-img-overlay {
  border-radius: 10px;
}

.material-card .card-text {
  margin-top: -2% !important;
}

.material-card .material .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ffcc33 50%, rgb(255, 204, 51, 0.2) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.material-card .material .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.material-card .material .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgb(255, 204, 51);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.material-card .material .play-btn:hover::after {
  border-left: 15px solid #ffcc33;
  transform: scale(20);
}

.material-card .material .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* Material: Bordered Tabs */
.material-card .nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.material-card .nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: rgba(17, 17, 17, 0.5);
  font-weight: 600;
}

.material-card .nav-tabs-bordered .nav-link:hover,
.material-card .nav-tabs-bordered .nav-link:focus {
  color: rgba(17, 17, 17, 0.8);
}

.material-card .nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #111111;
  font-weight: 600;
  border-bottom: 2px solid #ffcc33;
}

/*--------------------------------------------------------------
# Teacher's Profile Card
--------------------------------------------------------------*/
.teachers-profile-card img {
  max-width: 50px;
}

.teachers-profile-card .teachers-profile h3 {
  font-size: 18px;
  font-weight: 900;
}

.teachers-profile-card .prof-name {
  font-size: 20px;
  color: #111111;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.teachers-profile-card .read-more-btn {
  color: #111111;
  cursor: pointer;
  font-weight: 600;
}

.teachers-profile-card .read-more-text {
  display: none;
}

.teachers-profile-card .read-more-text--show {
  display: inline;
}

/*--------------------------------------------------------------
# Take Quiz
--------------------------------------------------------------*/
.cf-take-quiz .card {
  margin-bottom: 5%;
  border: 1px solid #ececec;
  border-radius: 10px;
  box-shadow: 0 2px 10px transparent;
  cursor: grab;
}

.cf-take-quiz .card .card-body {
  padding: 5%;
}

.cf-take-quiz .card .card-body .subject {
  font-size: 16px;
  font-weight: 800;
  color: #111111;
}

.cf-take-quiz .card-body .subject code {
  font-size: 12px;
  font-weight: 800;
  color: #727272;
}

.cf-take-quiz .card-body .introduction {
  font-size: 12px;
  font-weight: 600;
  color: #111111;
}

.cf-take-quiz .card .card-body .teachers-name {
  font-size: 13px;
  font-weight: 700;
}

.cf-take-quiz .card .card-body .prepared-by {
  font-size: 13px;
  margin-bottom: 5px;
}

.cf-take-quiz .card .card-body .card-text {
  font-size: 12px;
  text-align: center;
  background: #eeeeee;
  padding: 4px 5px 4px 5px;
  border-radius: 5px;
}

.cf-take-quiz .card .card-footer {
  font-size: 10px;
  text-align: center;
  padding: 5%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: 0.3s;
}

.cf-take-quiz .card .card-footer .take-quiz-btn {
  width: 48% !important;
  font-weight: 500;
  box-shadow: 1px 1px 3px rgb(170, 141, 54);
  border-radius: 8px;
  transition: 0.3s;
}

.cf-take-quiz .card .card-footer .take-quiz-btn:hover {
  background: #ffbf00;
  box-shadow: inset 1px 1px 3px rgb(170, 141, 54);
}

.cf-take-quiz .card .card-footer span {
  font-size: 13px;
  color: #111111;
  font-weight: 600;
}

/* Upcomming Quizzes & Completed Quizzes Card */
.uq-cq-card .uq-cq {
  border: 1px solid rgb(238, 238, 238);
  background: rgb(255, 255, 255);
  border-radius: 10px;
  box-shadow: none;
}

.uq-cq-card .uq-cq .uq-cq-body {
  padding-top: -25px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 5px;
}

.uq-cq-card .uq-cq .uq-cq-body .card-title {
  font-size: 15px;
  font-weight: 600;
  color: rgb(77, 77, 77);
}

.uq-cq-card .uq-cq .uq-cq-body .card-text {
  font-size: 15px;
}

.uq-cq-card .uq-cq .uq-cq-body .subject {
  margin-top: -2%;
  font-size: 14px;
  font-weight: 500;
}

.uq-cq-card .uq-cq .uq-cq-body .review-topic-btn {
  padding: 6px 10px 5px 10px;
  font-size: 15px;
  background: #333;
  border: 1px solid #333;
  color: #fff;
  border-radius: 5px;
  box-shadow: 1px 1px 3px rgb(51, 51, 51);
}

.uq-cq-card .uq-cq .uq-cq-body .review-topic-btn:hover {
  box-shadow: inset 1px 1px 3px #000;
}

.uq-cq-card .uq-cq .uq-cq-body .start-quiz-btn {
  padding: 6px 10px 5px 10px;
  font-size: 15px;
  background: #ffcc33;
  border: 1px solid #ffcc33;
  color: #111111;
  border-radius: 5px;
  box-shadow: 1px 1px 3px rgb(170 141 54);
}

.uq-cq-card .uq-cq .uq-cq-body .start-quiz-btn:hover {
  box-shadow: inset 1px 1px 3px rgb(170 141 54);
}

.uq-cq-card .uq-cq .uq-cq-body .deadline {
  font-size: 15px;
  font-weight: 400;
  color: #000000;
}

.uq-cq-card .uq-cq .uq-cq-body .deadline-date {
  margin-top: -2%;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.uq-cq-card .uq-cq .uq-cq-body .row .date-release {
  color: red !important;
}

/* Bordered Tabs: Upcomming Quizzes Card & Completed Quizzes Card */
@media screen and (max-width: 360px) {
  .uq-cq .uq-cq-body .card-title {
    font-size: 18px;
    font-weight: 800;
  }

  .uq-cq .uq-cq-body .subject {
    margin-top: -10%;
    font-size: 11px;
  }

  .uq-cq .uq-cq-body .card-text {
    font-size: 13px;
  }

  .uq-cq .uq-cq-body a {
    font-size: 9.5px;
  }

  .uq-cq .uq-cq-body .date-release {
    margin-top: 10%;
  }

  .uq-cq .uq-cq-body .date-release .deadline {
    font-size: 13px;
  }

  .uq-cq .uq-cq-body .date-release .deadline-date {
    margin-top: -5%;
    font-size: 14px;
  }
}

/* Quiz Page */
.quiz-page .card .card-body center {
  color: #bbbbbb;
}

.quiz-page .card .card-body i {
  font-size: 25px;
}

/* Countdown Timer */
.quiz-timer-card .countdown {
  display: flex;
  text-align: center;
  padding-bottom: -10% !important;
}

.quiz-timer-card .countdown .day,
.quiz-timer-card .countdown .hour,
.quiz-timer-card .countdown .minute,
.quiz-timer-card .countdown .second {
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #111;
  padding: 30px 15px 30px 15px;
  box-shadow: 1px 2px 10px rgb(226, 226, 226);
  border-radius: 10px;
}

@media (max-width: 360px) {
  .quiz-timer-card .countdown .day,
  .quiz-timer-card .countdown .hour,
  .quiz-timer-card .countdown .minute,
  .quiz-timer-card .countdown .second {
    font-size: 15px;
  }
}

.quiz-timer-card .countdown .subtext {
  margin-top: -5px;
  font-size: 10px;
  font-weight: bold;
  padding: 5px 5px 5px 5px;
}

/* Select Answers Card */
.select-answer-card .multiple-choice .option {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ececec;
}

.select-answer-card .multiple-choice .option:hover {
  border: 1px solid transparent;
  box-shadow: 0px 2px 10px #dddddd;
}

.select-answer-card .multiple-choice .option-header .card-img-top {
  border-radius: 5px;
}

.select-answer-card .multiple-choice .option-header .text-part {
  border: 1px solid #ececec;
  padding: 15px;
  border-radius: 5px;
  height: 120px;
}

.select-answer-card .multiple-choice .option .gallery-links .preview-link {
  visibility: hidden;
  margin-top: -55%;
  background: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(5px);
  padding: 10px 15px;
  border-radius: 10px;
  z-index: 2;
}

.select-answer-card
  .multiple-choice
  .option:hover
  .gallery-links
  .preview-link {
  visibility: visible;
  z-index: 3;
}

.select-answer-card .multiple-choice .option .gallery-links .preview-link i {
  color: #fff;
}

.select-answer-card
  .multiple-choice
  .option
  .form-check
  .form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(255, 204, 51, 0.25);
}

.select-answer-card
  .multiple-choice
  .option
  .form-check
  .form-check-input:checked {
  background-color: #ffcc33;
  border-color: #ffcc33;
}

.select-answer-card .multiple-choice .option .form-check .form-check-label {
  text-shadow: 1px 1px 1px #333;
}

/* Quiz List */
.quiz-lists p span {
  color: #818994;
  font-size: 15px;
}

.quiz-lists .nav-pills .nav-link .quiz-counter {
  color: #818994;
  font-weight: 400;
  font-size: 20px;
}

.quiz-lists .nav-pills .nav-link .quiz-counter .activity-badge {
  position: relative;
  left: -67px;
  margin-top: -1.5px;
  z-index: 1;
  font-size: 15px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  background: #fff !important;
  box-shadow: 0px 2px 5px #ddd;
  flex-grow: 0;
}

.quiz-lists .nav-pills .nav-link {
  color: #333333;
  font-weight: 800;
}

.quiz-lists .nav-pills .nav-link.active,
.quiz-lists .nav-pills .nav-item.show .nav-link {
  color: #495057;
  background: #f3f3f3;
  border-radius: 10px;
}

.quiz-lists .nav-pills .nav-link:hover {
  color: #495057;
  background: #f3f3f3;
}

/*--------------------------------------------------------------
# Quiz Result Page
--------------------------------------------------------------*/
.cf-quiz-result .card {
  margin-bottom: 5%;
  border: 1px solid #ececec;
  border-radius: 10px;
  box-shadow: 0 2px 10px transparent;
  cursor: auto;
}

.cf-quiz-result .card .card-body {
  padding: 5%;
}

.cf-quiz-result .card .card-body .subject {
  font-size: 16px;
  font-weight: 800;
  color: #111111;
}

.cf-quiz-result .card-body .category {
  margin-top: -5px;
  font-size: 12px;
  font-weight: 500;
  color: #727272;
}

.cf-quiz-result .card-body .introduction {
  font-size: 12px;
  font-weight: 600;
  color: #111111;
}

.cf-quiz-result .card .card-body .student-score,
.cf-quiz-result .card .card-body .cf-average-score {
  font-size: 13px;
  margin-bottom: 5px;
}

.cf-quiz-result .card .card-body .score-points {
  font-size: 12px;
  text-align: center;
  background: #eeeeee;
  box-shadow: 1px 1px 3px rgb(207, 207, 207);
  padding: 4px 10px 4px 10px;
  border-radius: 5px;
}

.cf-quiz-result .card .card-body .cf-average-score {
  margin-left: -10px;
}

.cf-quiz-result .card .card-body .cf-score-points {
  margin-left: -10px;
  font-size: 12px;
  text-align: center;
  background: #eeeeee;
  box-shadow: 1px 1px 3px rgb(207, 207, 207);
  padding: 4px 10px 4px 10px;
  border-radius: 5px;
}

.cf-quiz-result .card .card-footer {
  margin-top: -12px;
  font-size: 10px;
  text-align: center;
  padding: 5%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: 0.3s;
}

.cf-quiz-result .card .card-footer .take-quiz-btn {
  width: 48% !important;
  font-weight: 500;
  box-shadow: 1px 1px 3px rgb(170, 141, 54);
  border-radius: 8px;
  transition: 0.3s;
}

.cf-quiz-result .card .card-footer .take-quiz-btn:hover {
  background: #ffbf00;
  box-shadow: inset 1px 1px 3px rgb(170, 141, 54);
}

.cf-quiz-result .card .card-footer .date-submitted {
  margin-left: 10px;
  line-height: 18px;
  font-size: 13px;
  color: #5a5a5a;
  font-weight: 600;
}

.cf-quiz-result .card .card-footer span {
  font-size: 13px;
  color: #111111;
  font-weight: 800;
}

/* Quiz Result Report */
.question-answer .content h3 {
  font-weight: 400;
  font-size: 25px;
  color: #333;
}

.question-answer .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.question-answer .content p {
  font-size: 15px;
  color: #848484;
}

.question-answer .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.question-answer .accordion-list ul {
  padding: 0;
  list-style: none;
}

.question-answer .accordion-list li + li {
  margin-top: 15px;
}

.question-answer .accordion-list li {
  padding: 20px;
  background: #f1f1f1;
  border-radius: 4px;
}

.question-answer .accordion-list li .quiz-question {
  font-size: 15px;
  font-weight: 900;
  color: #111;
}

.question-answer .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #111;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.question-answer .accordion-list a span {
  color: #ffcc33;
  text-shadow: 1px 1px 1px #000;
  font-weight: 900;
}

.question-answer .accordion-list span {
  color: #111;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.question-answer .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.question-answer .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.question-answer .accordion-list .icon-show {
  display: none;
}

.question-answer .accordion-list a.collapsed {
  color: #343a40;
}

.question-answer .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.question-answer .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .question-answer .content,
  .question-answer .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .question-answer .img {
    min-height: 400px;
  }

  .question-answer .content {
    padding-top: 30px;
  }

  .question-answer .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .question-answer .img {
    min-height: 200px;
  }
}

/* Answers Verification Card */
.question-answer .multiple-choice .answer-verification {
  margin-left: -5px;
}

.question-answer .multiple-choice .answer-verification .correct {
  color: green;
  font-size: 13px;
  font-weight: 600;
}

.question-answer .multiple-choice .answer-verification .wrong {
  color: red;
  font-size: 13px;
  font-weight: 600;
}

.question-answer .multiple-choice .option {
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgb(211, 211, 211);
}

.question-answer .multiple-choice .option:hover {
  border: 1px solid transparent;
  box-shadow: 0px 2px 10px #b3b3b3;
}

.question-answer .multiple-choice .option-header .card-img-top {
  border-radius: 5px;
}

.question-answer .multiple-choice .option .gallery-links .preview-link {
  visibility: hidden;
  text-align: center;
  margin-top: -55%;
  background: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(5px);
  padding: 20px 20px;
  border-radius: 10px;
  z-index: 2;
}

.question-answer .multiple-choice .option:hover .gallery-links .preview-link {
  visibility: visible;
  z-index: 3;
}

.question-answer .multiple-choice .option .gallery-links .preview-link i {
  font-size: 15px;
  color: #fff;
}

.question-answer .multiple-choice .option .form-check .form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(255, 204, 51, 0.25);
}

.question-answer
  .multiple-choice
  .option
  .form-check
  .form-check-input:checked {
  background-color: #ffcc33;
  border-color: #ffcc33;
}

.question-answer .multiple-choice .option .form-check .form-check-label {
  text-shadow: 1px 1px 1px #333;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #e2e2e2;
}

.footer .copyright {
  text-align: center;
  color: #111111;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #111111;
}

/*--------------------------------------------------------------
# Modal: Referral Block
--------------------------------------------------------------*/
.refer-a-friend .modal .modal-content {
  background: transparent !important;
  border: none;
}

.refer-a-friend .modal .modal-content .modal-body .card .card-body h3 {
  font-size: 23px;
  font-weight: 900;
}

.refer-a-friend .modal .modal-content .modal-body .card .card-body p {
  font-size: 15px;
}

.refer-a-friend .modal .modal-content .modal-body .card .card-footer {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.refer-a-friend .modal .modal-content .modal-body .card .card-footer h4 {
  font-size: 20px !important;
}

.refer-a-friend .modal .modal-content .modal-body .card .form-control:focus {
  color: #111111;
  background-color: #fff;
  border-color: #ffcc33;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(255 204 51 / 25%);
}

.refer-a-friend .modal .modal-content .modal-body .card .card-footer .cf-btn {
  background: #ffffff;
  box-shadow: 0 2px 10px #ececec;
  font-size: 13px;
  font-weight: 600;
}

.refer-a-friend .modal .modal-content .modal-body .card .card-footer p {
  font-size: 11px;
}

@media screen and (max-width: 768px) {
  .refer-a-friend .modal .modal-content .modal-body .card .card-body img {
    width: 150px;
  }

  .refer-a-friend .modal .modal-content .modal-body .card .card-body h3 {
    font-size: 18px;
    font-weight: 900;
  }

  .refer-a-friend .modal .modal-content .modal-body .card .card-body p {
    font-size: 12px;
  }

  .refer-a-friend .modal .modal-content .modal-body .card .card-footer h4 {
    font-size: 15px !important;
  }
}

/*--------------------------------------------------------------
# Modal: Signout Confirmation
--------------------------------------------------------------*/
.sign-out-confirmation .modal .modal-content {
  border: none;
}

.sign-out-confirmation .modal-footer .btn-link {
  color: #111111;
}

.sign-out-confirmation .modal-footer .yes-btn:hover {
  background: #ffcc33;
  border-bottom-left-radius: 5px !important;
}

.sign-out-confirmation .modal-footer .no-btn:hover {
  background: #fe0000;
  color: #ffffff;
  border-bottom-right-radius: 5px !important;
}

/*--------------------------------------------------------------
# Modal: Delete Confirmation
--------------------------------------------------------------*/
.delete-confirmation .modal .modal-content {
  border: none;
}

.delete-confirmation .modal .modal-content .modal-body .card-title {
  margin-top: -10px;
}

.delete-confirmation .modal .modal-content .modal-body .card-text {
  margin-bottom: 10px;
  color: #555;
}

.delete-confirmation .modal-footer .btn-link {
  color: #111111;
}

.delete-confirmation .modal-footer .yes-btn:hover {
  background: #fe0000;
  color: #fff;
  border-bottom-left-radius: 5px !important;
}

.delete-confirmation .modal-footer .no-btn:hover {
  background: #ffcc33;
  color: #111;
  border-bottom-right-radius: 5px !important;
}

/*--------------------------------------------------------------
# Modal: Duplicate Confirmation
--------------------------------------------------------------*/
.duplicate-confirmation .modal .modal-content {
  border: none;
}

.duplicate-confirmation .modal .modal-content .modal-body .card-title {
  margin-top: -10px;
}

.duplicate-confirmation .modal .modal-content .modal-body .card-text {
  margin-bottom: 10px;
  color: #555;
}

.duplicate-confirmation .modal-footer .btn-link {
  color: #111111;
}

.duplicate-confirmation .modal-footer .yes-btn:hover {
  background: #ffcc33;
  border-bottom-left-radius: 5px !important;
}

.duplicate-confirmation .modal-footer .no-btn:hover {
  background: #fe0000;
  color: #ffffff;
  border-bottom-right-radius: 5px !important;
}

/*--------------------------------------------------------------
# Modal: Swap Classes
--------------------------------------------------------------*/
.swap-classes-modal .modal .modal-content {
  background: transparent !important;
  border: none;
}

.swap-classes-modal .modal .modal-content .modal-header,
.swap-classes-modal .modal .modal-content .modal-footer {
  display: none;
}

.swap-classes-modal .swap-classes {
  font-size: 14px;
}

.swap-classes-modal .swap-classes .table thead {
  background: #ffcc33;
}

.swap-classes-modal .swap-classes .table thead th {
  border: 0;
}

.swap-classes-modal .swap-classes .table tbody td {
  vertical-align: middle;
}

.swap-classes-modal .swap-classes .table tbody td .select-btn {
  border: 2px solid #333;
  padding: 5px 20px 5px 20px;
  background: #333;
  color: #ffcc33;
  font-weight: 600;
  transition: 0.3s;
}

.swap-classes-modal .swap-classes .table tbody td .select-btn:hover {
  border: 2px solid #111;
  padding: 5px 20px 5px 20px;
  background: #111;
}

.swap-classes-modal .swap-classes .table tbody td img {
  border-radius: 5px;
  max-width: 60px;
}

/*--------------------------------------------------------------
# Modal: Quiz Page
--------------------------------------------------------------*/
.explanation-card-modal .modal .modal-content {
  background: transparent !important;
  border: none;
}

.explanation-card-modal .modal .modal-content .modal-header,
.explanation-card-modal .modal .modal-content .modal-footer {
  display: none;
}

.explanation-card-modal .modal .modal-body .card .card-header {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom: none;
}

.explanation-card-modal .modal .modal-body .card .card-body {
  max-height: 480px !important;
  overflow-x: hidden !important;
  overflow-y: auto;
  overflow: scroll;
}

.explanation-card-modal .modal .modal-body .card {
  padding-bottom: 20px;
}

.explanation-card-modal .modal .modal-body .card .card-body::-webkit-scrollbar {
  display: none;
  width: 5px;
  background: transparent;
  transition: 1s;
}

.explanation-card-modal .modal .modal-body .card .card-body::-webkit-scrollbar {
  display: block;
  width: 5px;
  background: transparent;
}

.explanation-card-modal
  .modal
  .modal-body
  .card
  .card-body::-webkit-scrollbar-thumb {
  background: #ffcc33;
  border-radius: 10px;
}

.explanation-card-modal .modal .modal-body .card .card-body .nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.explanation-card-modal
  .modal
  .modal-body
  .card
  .card-body
  .nav-tabs-bordered
  .nav-link {
  margin-bottom: -2px;
  border: none;
  color: rgba(17, 17, 17, 0.5);
  font-weight: 600;
}

.explanation-card-modal
  .modal
  .modal-body
  .card
  .card-body
  .nav-tabs-bordered
  .nav-link:hover,
.explanation-card-modal
  .modal
  .modal-body
  .card
  .card-body
  .nav-tabs-bordered
  .nav-link:focus {
  color: rgba(17, 17, 17, 0.8);
}

.explanation-card-modal
  .modal
  .modal-body
  .card
  .card-body
  .nav-tabs-bordered
  .nav-link.active {
  background-color: #fff;
  color: #111111;
  font-weight: 600;
  border-bottom: 2px solid #ffcc33;
}

/* Video Explanation */
.explanation-card-modal
  .modal
  .modal-body
  .card
  .card-body
  .tab-content
  .video-box
  .card-img {
  border-radius: 20px !important;
}

.explanation-card-modal
  .modal
  .modal-body
  .card
  .card-body
  .tab-content
  .video-box
  .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ffcc33 50%, rgb(255, 204, 51, 0.2) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.explanation-card-modal
  .modal
  .modal-body
  .card
  .card-body
  .tab-content
  .video-box
  .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.explanation-card-modal
  .modal
  .modal-body
  .card
  .card-body
  .tab-content
  .video-box
  .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgb(255, 204, 51);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.explanation-card-modal
  .modal
  .modal-body
  .card
  .card-body
  .tab-content
  .video-box
  .play-btn:hover::after {
  border-left: 15px solid #ffcc33;
  transform: scale(20);
}

.explanation-card-modal
  .modal
  .modal-body
  .card
  .card-body
  .tab-content
  .video-box
  .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Modal: Quiz Confirmation
--------------------------------------------------------------*/
.quiz-confirmation .modal .modal-dialog .modal-content .modal-body i {
  font-size: 50px;
}

.quiz-confirmation .modal .modal-dialog .modal-content .modal-body h5 {
  font-size: 20px;
  font-weight: 800;
}

.quiz-confirmation .modal .modal-dialog .modal-content .modal-body p {
  font-size: 15px;
  color: rgb(153, 153, 153);
}

.quiz-confirmation .modal .modal-dialog .modal-content .modal-footer .btn-link {
  padding: 10px;
  color: #111;
}

.quiz-confirmation
  .modal
  .modal-dialog
  .modal-content
  .modal-footer
  .yes:hover {
  background: #ffcc33;
  color: #333;
}

.quiz-confirmation .modal .modal-dialog .modal-content .modal-footer .no:hover {
  background: #fe0000;
  color: #fff;
}

/*--------------------------------------------------------------
# Modal: Quiz Mechanics
--------------------------------------------------------------*/
.reward-mechanic .modal .modal-content {
  background: transparent !important;
  border: none;
}

/* Quiz Mechanic: Accordion */
.reward-mechanic .modal .modal-content .card .card-body .accordion-item {
  border: 1px solid #ebeef4;
  margin-bottom: 10px;
}

.reward-mechanic
  .modal
  .modal-content
  .card
  .card-body
  .accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.reward-mechanic
  .modal
  .modal-content
  .card
  .card-body
  .accordion-button:not(.collapsed) {
  color: #111;
  font-weight: 800;
  background-color: #ffcc33;
}

.reward-mechanic
  .modal
  .modal-content
  .card
  .card-body
  .accordion-flush
  .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.reward-mechanic
  .modal
  .modal-content
  .card
  .card-body
  .accordion-flush
  .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #111111;
}

.reward-mechanic
  .modal
  .modal-content
  .card
  .card-body
  .accordion-flush
  .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/*--------------------------------------------------------------
# Modal: Add New Post
--------------------------------------------------------------*/
.add-post-modal .modal .modal-content {
  background: transparent !important;
  border: none;
}

.add-post-modal .modal .modal-content .modal-body .left .upload-image {
  display: grid;
  align-items: center;
  border: 1px solid #cacaca;
}

.add-post-modal .modal .modal-content .modal-body .upload-image img {
  border-radius: 15px;
}

.add-post-modal
  .modal
  .modal-content
  .modal-body
  .upload-image
  .card-img-overlay {
  display: grid;
  align-items: center;
  background: rgba(17, 17, 17, 0.3);
  border-radius: 15px;
}

.add-post-modal
  .modal
  .modal-content
  .modal-body
  .upload-image
  .card-img-overlay
  .upload-btn-bg {
  background: rgba(17, 17, 17, 0.3);
  backdrop-filter: blur(10px);
  width: 50%;
  margin: auto;
  border-radius: 10px;
  border: 1px solid #666666;
}

.add-post-modal
  .modal
  .modal-content
  .modal-body
  .upload-image
  .card-img-overlay
  input {
  display: none;
}

.add-post-modal
  .modal
  .modal-content
  .modal-body
  .upload-image
  .card-img-overlay
  label {
  display: grid;
  background: none;
  border: none;
  color: var(--cf-white);
  cursor: pointer;
}

.add-post-modal
  .modal
  .modal-content
  .modal-body
  .upload-image
  .card-img-overlay
  label
  i {
  color: var(--cf-white);
}

.add-post-modal
  .modal
  .modal-content
  .modal-body
  .right
  .form-floating
  textarea {
  border-radius: 15px;
}

.add-post-modal
  .modal
  .modal-content
  .modal-body
  .right
  .form-floating
  .form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: var(--cf-yellow);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(255 204 51 / 25%);
}

/*--------------------------------------------------------------
# Modal: Subscription Expired
--------------------------------------------------------------*/
.expired-subscription
  .modal
  .modal-content
  .modal-body
  .input-group
  .form-control:focus,
.expired-subscription .modal .modal-content .modal-body textarea:focus {
  color: #212529;
  background-color: #fff;
  border-color: #ffcc33;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(255, 204, 51, 0.25);
}

.expired-subscription .modal .modal-content .modal-footer .close-btn {
  border: none;
  background: none;
}

/*--------------------------------------------------------------
# Modal: Add events
--------------------------------------------------------------*/
.add-events-modal
  .modal
  .modal-content
  .modal-body
  .card
  .card-body
  .form-label {
  font-size: 13px;
}

/*--------------------------------------------------------------
# Announcement Card
--------------------------------------------------------------*/
.announcement-card {
  border: 1px solid #ececec;
}

.announcement-card .card-body .announcement-id {
  margin-top: 15px;
}

.announcement-card .card-body .access-label {
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .announcement-card .card-body .access-label {
    margin-top: -40px;
  }
}

.announcement-card .card-body .access-label .badge.active {
  background: green !important;
  color: white !important;
}

.announcement-card .card-body .card-title {
  margin-top: -15px;
}

.announcement-card .card-body .education-level {
  background: #ececec;
  border: 1px solid #ececec;
  padding: 15px;
  border-radius: 5px;
}

.announcement-card .card-body .education-level .edu-level {
  position: relative;
  top: -10px;
  display: grid;
  margin: auto;
  background: #fff;
  box-shadow: 1px 1px 3px #000000;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 200px;
}

.announcement-card .card-body .announcement-dates {
  margin-top: 20px;
}

.announcement-card .card-body .announcement-dates .date-range {
  font-size: 13px;
}

.announcement-card .card-body .announcement-dates .date {
  margin-top: -10px;
  background: #ececec;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  font-size: 13px;
}

.announcement-card .card-footer {
  margin-top: -45px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.announcement-card .card-footer .ai-ed {
  margin-bottom: -10px;
}

.announcement-card .card-footer .announcement-interval h5 {
  font-size: 15px;
}

.announcement-card .card-footer .interval {
  margin-top: -10px;
  font-weight: 800;
  font-size: 15px;
  color: #111;
}

.announcement-card .card-footer .announcement-btn {
  background: #fff;
  box-shadow: 1px 1px 3px #dadada;
}

.announcement-card .card-footer .edit-btn:hover {
  background: #ffcc33;
  box-shadow: inset 1px 1px 3px rgb(167, 138, 51);
}

.announcement-card .card-footer .delete-btn:hover {
  background: #dc3545;
  box-shadow: inset 1px 1px 3px rgb(107, 11, 21);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .announcement-card .card-footer .card-bottom .card-buttons {
    margin-top: -50px !important;
  }
}

/*--------------------------------------------------------------
# Modal: Add/Edit Announcement
--------------------------------------------------------------*/
/* Modal */
.add-edit-announcement .modal .modal-content .modal-body .step-instructions {
  background: #f7f7f7;
  padding: 25px;
  border-radius: 10px;
  border: 2px dashed #ddd;
}

.add-edit-announcement
  .modal
  .modal-content
  .modal-body
  .step-instructions
  .circle {
  background: #ffcc33;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  align-items: center;
  justify-content: center;
}

.add-edit-announcement
  .modal
  .modal-content
  .modal-body
  .step-instructions
  .circle
  .span-one {
  font-size: 15px;
  font-weight: 800;
}

.add-edit-announcement
  .modal
  .modal-content
  .modal-body
  .step-instructions
  .circle
  .span-two {
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  margin-top: -15px;
}

/*--------------------------------------------------------------
# Quiz Administration
--------------------------------------------------------------*/
.quiz-card-list .quiz-card .quiz-card-details {
  border: 1px solid #ececec;
  cursor: pointer;
}

.quiz-card-list .quiz-card .quiz-card-details:hover {
  border: 1px solid green;
}

.quiz-card-list .quiz-card .quiz-card-details .card-header .card-title {
  margin-top: -15px;
  padding: 15px 0 0 0;
  font-size: 17px;
}

.quiz-card-list .quiz-card .quiz-card-details .card-header .education-level {
  position: relative;
  top: -10px;
  margin-bottom: -10px;
}

.quiz-card-list .quiz-card .quiz-card-details .card-body {
  background: #fbfbff;
}

.quiz-card-list .quiz-card .quiz-card-details .card-body .chapter {
  font-size: 13px;
  font-weight: 800;
  color: rgb(126, 126, 126);
}

@media screen and (max-width: 575px) {
  .quiz-card-list .quiz-card .quiz-card-details .card-body .status {
    position: relative;
    top: -40px;
  }
}

.quiz-card-list .quiz-card .quiz-card-details .card-body .introduction {
  background: none;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  padding: 10px;
}

@media screen and (max-width: 575px) {
  .quiz-card-list .quiz-card .quiz-card-details .card-body .introduction {
    position: relative;
    top: -35px;
    margin-bottom: -15px;
  }
}

.quiz-card-list .quiz-card .quiz-card-details .card-body .quiz-dates {
  margin-bottom: -45px;
}

.quiz-card-list .quiz-card .quiz-card-details .card-body .quiz-dates .from-date,
.quiz-card-list .quiz-card .quiz-card-details .card-body .quiz-dates .to-date {
  font-size: 13px;
}

.quiz-card-list .quiz-card .quiz-card-details .card-body .quiz-dates .date {
  margin-top: -8px;
  background: #ececec;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
}

.quiz-card-list .quiz-card .quiz-card-details .card-footer .quiz-duration h5 {
  font-size: 12px;
  font-weight: 800;
  color: #333;
}

.quiz-card-list
  .quiz-card
  .quiz-card-details
  .card-footer
  .quiz-duration
  .time {
  margin-top: -8px;
  color: #111;
  font-weight: 900;
}

.quiz-card-list .quiz-card .quiz-card-details .card-footer .card-bottom {
  margin-bottom: -15px;
}

.quiz-card-list .quiz-card .quiz-card-details .card-footer .quiz-admin-btn {
  background: #fff;
  box-shadow: 1px 1px 3px #dadada;
}

.quiz-card-list
  .quiz-card
  .quiz-card-details
  .card-footer
  .duplicate-btn:hover {
  background: #0dcaf0;
  box-shadow: inset 1px 1px 3px rgb(4, 86, 102);
  color: #fff;
}

.quiz-card-list .quiz-card .quiz-card-details .card-footer .edit-btn:hover {
  background: #ffcc33;
  box-shadow: inset 1px 1px 3px rgb(167, 138, 51);
}

.quiz-card-list .quiz-card .quiz-card-details .card-footer .delete-btn:hover {
  background: #dc3545;
  box-shadow: inset 1px 1px 3px rgb(107, 11, 21);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .quiz-card-list
    .quiz-card
    .quiz-card-details
    .card-footer
    .card-bottom
    .card-buttons {
    position: relative;
    top: -53px;
    margin-bottom: -35px;
    text-align: center;
  }
}

@media screen and (max-width: 575px) {
  .quiz-card-list
    .quiz-card
    .quiz-card-details
    .card-footer
    .card-bottom
    .card-buttons {
    position: relative;
    top: -55px;
    margin-bottom: -35px;
  }
}

/* Quiz Creator/Editor */
.quizCreator-editor .modal .modal-content {
  background: transparent !important;
  border: none;
}

.card.hide {
  display: none;
}

/* Wizard Form */
#top-tab-list {
  margin-bottom: 60px;
}

#top-tab-list li a {
  color: #424242;
  background: #ececec;
  display: block;
  padding: 0.938rem;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  -webkit-border-radius: 0.5rem;
  border-radius: 0.5rem;
}

#top-tab-list li.active a {
  background: rgb(165, 196, 165);
  color: #fff;
}

#top-tab-list li.active.done a {
  background: #1aa053;
}

#top-tab-list li.active.done a i {
  color: #1aa053;
}

#top-tab-list li#confirm.active a {
  background: #1aa053;
}

#top-tab-list li#confirm.active a i {
  color: #1aa053;
}

#form-wizard1 fieldset:not(:first-of-type) {
  display: none;
}

@media screen and (max-width: 576px) {
  #top-tab-list {
    margin-bottom: 60px;
  }

  #top-tab-list li a {
    color: #424242;
    background: rgba(58, 87, 232, 0.2);
    display: block;
    padding: 0.938rem;
    text-decoration: none;
    font-size: 13px;
    -webkit-border-radius: 0.5rem;
    border-radius: 0.5rem;
  }

  #top-tab-list li.active a {
    background: #1aa053;
    color: #fff;
  }

  #top-tab-list li.active.done a {
    background: #1aa053;
  }

  #top-tab-list li.active.done a i {
    color: #1aa053;
  }

  #top-tab-list li#confirm.active a {
    background: #1aa053;
  }

  #top-tab-list li#confirm.active a i {
    color: #1aa053;
  }

  #form-wizard1 fieldset:not(:first-of-type) {
    display: none;
  }
}

.steps-counter {
  margin-top: -70px;
}

.create-quiz {
  background: #ececec;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 600;
}

.create-quiz:hover {
  background: #ccc;
  border: 1px solid #bbb;
  border-radius: 5px;
  padding: 5px 10px;
}

.next,
.previous {
  background: #ececec;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 600;
}

.next:hover,
.previous:hover {
  background: #ccc;
  border: 1px solid #bbb;
  border-radius: 5px;
  padding: 5px 10px;
}

/* Add Questions */
.added-questions .content {
  padding: 60px 100px 0 100px;
}

.added-questions .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}

.added-questions .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.added-questions .content p {
  font-size: 15px;
  color: #848484;
}

.added-questions .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.added-questions .accordion-list {
  padding: 0 100px 60px 100px;
}

.added-questions .accordion-list ul {
  padding: 0;
  list-style: none;
}

.added-questions .accordion-list li + li {
  margin-top: 15px;
}

.added-questions .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.added-questions .accordion-list a {
  color: #000;
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 900;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.added-questions .accordion-list span {
  color: #ffcc33;
  text-shadow: 1px 1px 1px #333;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.added-questions .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.added-questions .accordion-list .edit-btn i {
  font-size: 18px;
}

.added-questions .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.added-questions .accordion-list .icon-show {
  display: none;
}

.added-questions .accordion-list a.collapsed {
  color: rgb(68, 68, 68);
}

.added-questions .accordion-list a.collapsed:hover {
  color: #000;
}

.added-questions .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.added-questions .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .added-questions .content,
  .added-questions .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .added-questions .img {
    min-height: 400px;
  }

  .added-questions .content {
    padding-top: 30px;
  }

  .added-questions .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .added-questions .img {
    min-height: 200px;
  }
}

.added-questions .accordion-list .multiple-choice .option {
  border: 1px solid #ececec;
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s;
}

.added-questions .accordion-list .multiple-choice .option:hover {
  transform: scale(1.05);
  box-shadow: 1px 1px 15px #ececec;
}

.added-questions .accordion-list .multiple-choice .option .option-header img {
  max-width: 1200px;
  border-radius: 10px;
}

.added-questions
  .accordion-list
  .multiple-choice
  .option
  .option-body
  .form-switch {
  padding-left: 2.5em;
}

.added-questions
  .accordion-list
  .multiple-choice
  .option
  .option-body
  .form-switch
  .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .added-questions
    .accordion-list
    .multiple-choice
    .option
    .option-body
    .form-switchh
    .form-check-input {
    transition: none;
  }
}

.added-questions
  .accordion-list
  .multiple-choice
  .option
  .option-body
  .form-switch
  .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}

.added-questions
  .accordion-list
  .multiple-choice
  .option
  .option-body
  .form-switch
  .form-check-input:checked {
  background-position: right center;
  background-color: #198754;
  border: 1px solid #198754;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

@media screen and (max-width: 767px) {
  .added-questions
    .accordion-list
    .multiple-choice
    .option
    .option-body
    .answer-verification {
    position: relative;
    top: -27px;
    margin-bottom: -35px;
  }
}

.added-questions
  .accordion-list
  .multiple-choice
  .option
  .option-body
  .answer-verification
  .correct,
.added-questions
  .accordion-list
  .multiple-choice
  .option
  .option-body
  .answer-verification
  .wrong {
  font-size: 14px;
  text-shadow: none;
}

.added-questions
  .accordion-list
  .multiple-choice
  .option
  .option-body
  .answer-verification
  .correct {
  color: #198754 !important;
}

.added-questions
  .accordion-list
  .multiple-choice
  .option
  .option-body
  .answer-verification
  .wrong {
  color: red !important;
}

.added-questions .accordion-list .explanation-area {
  padding: 15px;
  background: transparent;
  border: 1px solid #ececec;
  border-radius: 10px;
}

.added-questions .accordion-list .explanation-area .card-title {
  position: relative;
  top: -25px;
  margin-bottom: -25px;
}

.added-questions .accordion-list .explanation-area .card-title img {
  width: 15px;
}

.added-questions .accordion-list .explanation-area .card-title span {
  color: #5c5c5c;
  font-size: 15px;
  text-shadow: none;
}

.added-questions .accordion-list .explanation-area .explanation-body {
  padding: 30px;
  background: #f1f1f1;
  border-radius: 5px;
}

.added-questions
  .accordion-list
  .explanation-area
  .explanation-body
  .card-text {
  position: relative;
  top: -15px;
  font-size: 15px;
  margin-top: 10px;
  word-spacing: 2.8px;
}

.edit-btn,
.delete-btn {
  background: #f8f9fa;
  box-shadow: 1px 2px 5px #ececec;
  font-size: 13px;
  font-weight: 600;
}

.edit-btn:hover {
  background: var(--cf-yellow);
  box-shadow: inset 1px 2px 3px #cf9b00;
}

.delete-btn:hover {
  background: #fe0000;
  box-shadow: inset 1px 2px 3px rgb(170, 0, 0);
  color: #fff;
}

/* Modal: Upload Questions */
.upload-image .option {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ececec;
}

/* AnswerOne */
.upload-image .option .option-header .answerOne .figure img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 498px;
  height: 283px;
  border-radius: 10px;
}

.upload-image .option .option-header .answerOne input {
  display: none;
}

.upload-image .option .option-header .answerOne label {
  position: absolute;
  padding: 30px;
  top: 150px;
  left: 12%;
  border: 2px dashed #8d8d8d;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  border-radius: 10px;
}

.upload-image .option .option-header .answerOne label img {
  width: 30px;
}

.upload-image .option .option-header .answerOne label h5 {
  font-weight: 800;
}

.upload-image .option .option-header .answerOne label p {
  position: relative;
  top: -8px;
  font-size: 13px;
  color: rgb(116, 116, 116);
  font-weight: 600;
  width: 180px;
  margin-bottom: -10px;
}

/* AnswerTwo */
.upload-image .option .option-header .answerTwo .figure img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 498px;
  height: 283px;
  border-radius: 10px;
}

.upload-image .option .option-header .answerTwo input {
  display: none;
}

.upload-image .option .option-header .answerTwo label {
  position: absolute;
  padding: 30px;
  top: 150px;
  left: 61.5%;
  border: 2px dashed #8d8d8d;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  border-radius: 10px;
}

.upload-image .option .option-header .answerTwo label img {
  width: 30px;
}

.upload-image .option .option-header .answerTwo label h5 {
  font-weight: 800;
}

.upload-image .option .option-header .answerTwo label p {
  position: relative;
  top: -8px;
  font-size: 13px;
  color: rgb(116, 116, 116);
  font-weight: 600;
  width: 180px;
  margin-bottom: -10px;
}

/* AnswerThree */
.upload-image .option .option-header .answerThree .figure img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 498px;
  height: 283px;
  border-radius: 10px;
}

.upload-image .option .option-header .answerThree input {
  display: none;
}

.upload-image .option .option-header .answerThree label {
  position: absolute;
  padding: 30px;
  top: 535px;
  left: 12%;
  border: 2px dashed #8d8d8d;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  border-radius: 10px;
}

.upload-image .option .option-header .answerThree label img {
  width: 30px;
}

.upload-image .option .option-header .answerThree label h5 {
  font-weight: 800;
}

.upload-image .option .option-header .answerThree label p {
  position: relative;
  top: -8px;
  font-size: 13px;
  color: rgb(116, 116, 116);
  font-weight: 600;
  width: 180px;
  margin-bottom: -10px;
}

/* AnswerFour */
.upload-image .option .option-header .answerFour .figure img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 498px;
  height: 283px;
  border-radius: 10px;
}

.upload-image .option .option-header .answerFour input {
  display: none;
}

.upload-image .option .option-header .answerFour label {
  position: absolute;
  padding: 30px;
  top: 535px;
  left: 61.5%;
  border: 2px dashed #8d8d8d;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  border-radius: 10px;
}

.upload-image .option .option-header .answerFour label img {
  width: 30px;
}

.upload-image .option .option-header .answerFour label h5 {
  font-weight: 800;
}

.upload-image .option .option-header .answerFour label p {
  position: relative;
  top: -8px;
  font-size: 13px;
  color: rgb(116, 116, 116);
  font-weight: 600;
  width: 180px;
  margin-bottom: -10px;
}

@media screen and (min-width: 300px) {
  /* Answer One */
  .upload-image .option .option-header .answerOne label {
    position: absolute;
    padding: 30px;
    top: 95px;
    left: 23%;
    width: 135px;
    height: 50px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerOne label img {
    position: relative;
    top: -13px;
    width: 20px;
  }

  .upload-image .option .option-header .answerOne label h5 span {
    position: relative;
    top: -15px;
    font-size: 13px;
    font-weight: 800;
    display: none;
  }

  .upload-image .option .option-header .answerOne label p {
    display: none;
  }

  /* Answer Two */
  .upload-image .option .option-header .answerTwo label {
    position: absolute;
    padding: 30px;
    top: 283px;
    left: 23%;
    width: 135px;
    height: 50px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerTwo label img {
    position: relative;
    top: -13px;
    width: 20px;
  }

  .upload-image .option .option-header .answerTwo label h5 span {
    position: relative;
    top: -15px;
    font-size: 13px;
    font-weight: 800;
    display: none;
  }

  .upload-image .option .option-header .answerTwo label p {
    display: none;
  }

  /* Answer Three */
  .upload-image .option .option-header .answerThree label {
    position: absolute;
    padding: 30px;
    top: 467px;
    left: 23%;
    width: 135px;
    height: 50px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerThree label img {
    position: relative;
    top: -13px;
    width: 20px;
  }

  .upload-image .option .option-header .answerThree label h5 span {
    position: relative;
    top: -15px;
    font-size: 13px;
    font-weight: 800;
    display: none;
  }

  .upload-image .option .option-header .answerThree label p {
    display: none;
  }

  /* Answer Four */
  .upload-image .option .option-header .answerFour label {
    position: absolute;
    padding: 30px;
    top: 655px;
    left: 23%;
    width: 135px;
    height: 50px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerFour label img {
    position: relative;
    top: -13px;
    width: 20px;
  }

  .upload-image .option .option-header .answerFour label h5 span {
    position: relative;
    top: -15px;
    font-size: 13px;
    font-weight: 800;
    display: none;
  }

  .upload-image .option .option-header .answerFour label p {
    display: none;
  }
}

/* Samsung Galaxy S8+ */
@media screen and (min-width: 360px) {
  /* Answer One */
  .upload-image .option .option-header .answerOne label {
    position: absolute;
    padding: 30px;
    top: 93px;
    left: 18%;
    width: 195px;
    height: 105px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerOne label img {
    position: relative;
    top: -13px;
    width: 30px;
  }

  .upload-image .option .option-header .answerOne label h5 span {
    position: relative;
    top: -15px;
    font-size: 15px;
    font-weight: 800;
    display: block;
  }

  .upload-image .option .option-header .answerOne label p {
    display: none;
  }

  /* Answer Two */
  .upload-image .option .option-header .answerTwo label {
    position: absolute;
    padding: 30px;
    top: 310px;
    left: 18%;
    width: 195px;
    height: 105px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerTwo label img {
    position: relative;
    top: -13px;
    width: 30px;
  }

  .upload-image .option .option-header .answerTwo label h5 span {
    position: relative;
    top: -15px;
    font-size: 15px;
    font-weight: 800;
    display: block;
  }

  .upload-image .option .option-header .answerTwo label p {
    display: none;
  }

  /* Answer Three */
  .upload-image .option .option-header .answerThree label {
    position: absolute;
    padding: 30px;
    top: 530px;
    left: 18%;
    width: 195px;
    height: 105px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerThree label img {
    position: relative;
    top: -13px;
    width: 30px;
  }

  .upload-image .option .option-header .answerThree label h5 span {
    position: relative;
    top: -15px;
    font-size: 15px;
    font-weight: 800;
    display: block;
  }

  .upload-image .option .option-header .answerThree label p {
    display: none;
  }

  /* Answer Four */
  .upload-image .option .option-header .answerFour label {
    position: absolute;
    padding: 30px;
    top: 750px;
    left: 18%;
    width: 195px;
    height: 105px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerFour label img {
    position: relative;
    top: -13px;
    width: 30px;
  }

  .upload-image .option .option-header .answerFour label h5 span {
    position: relative;
    top: -15px;
    font-size: 15px;
    font-weight: 800;
    display: block;
  }

  .upload-image .option .option-header .answerFour label p {
    display: none;
  }
}

/* iPhone 12 Pro */
@media screen and (min-width: 390px) {
  /* Answer One */
  .upload-image .option .option-header .answerOne label {
    position: absolute;
    padding: 30px;
    top: 102px;
    left: 21%;
    width: 195px;
    height: 105px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerOne label img {
    position: relative;
    top: -13px;
    width: 30px;
  }

  .upload-image .option .option-header .answerOne label h5 span {
    position: relative;
    top: -15px;
    font-size: 15px;
    font-weight: 800;
    display: block;
  }

  .upload-image .option .option-header .answerOne label p {
    display: none;
  }

  /* Answer Two */
  .upload-image .option .option-header .answerTwo label {
    position: absolute;
    padding: 30px;
    top: 338px;
    left: 21%;
    width: 195px;
    height: 105px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerTwo label img {
    position: relative;
    top: -13px;
    width: 30px;
  }

  .upload-image .option .option-header .answerTwo label h5 span {
    position: relative;
    top: -15px;
    font-size: 15px;
    font-weight: 800;
    display: block;
  }

  .upload-image .option .option-header .answerTwo label p {
    display: none;
  }

  /* Answer Three */
  .upload-image .option .option-header .answerThree label {
    position: absolute;
    padding: 30px;
    top: 575px;
    left: 21%;
    width: 195px;
    height: 105px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerThree label img {
    position: relative;
    top: -13px;
    width: 30px;
  }

  .upload-image .option .option-header .answerThree label h5 span {
    position: relative;
    top: -15px;
    font-size: 15px;
    font-weight: 800;
    display: block;
  }

  .upload-image .option .option-header .answerThree label p {
    display: none;
  }

  /* Answer Four */
  .upload-image .option .option-header .answerFour label {
    position: absolute;
    padding: 30px;
    top: 810px;
    left: 21%;
    width: 195px;
    height: 105px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerFour label img {
    position: relative;
    top: -13px;
    width: 30px;
  }

  .upload-image .option .option-header .answerFour label h5 span {
    position: relative;
    top: -15px;
    font-size: 15px;
    font-weight: 800;
    display: block;
  }

  .upload-image .option .option-header .answerFour label p {
    display: none;
  }
}

/* Samsung Galaxy S20 Ultra */
@media screen and (min-width: 412px) {
  /* Answer One */
  .upload-image .option .option-header .answerOne label {
    position: absolute;
    padding: 30px;
    top: 108px;
    left: 23%;
    width: 195px;
    height: 105px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerOne label img {
    position: relative;
    top: -13px;
    width: 30px;
  }

  .upload-image .option .option-header .answerOne label h5 span {
    position: relative;
    top: -15px;
    font-size: 15px;
    font-weight: 800;
    display: block;
  }

  .upload-image .option .option-header .answerOne label p {
    display: none;
  }

  /* Answer Two */
  .upload-image .option .option-header .answerTwo label {
    position: absolute;
    padding: 30px;
    top: 355px;
    left: 23%;
    width: 195px;
    height: 105px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerTwo label img {
    position: relative;
    top: -13px;
    width: 30px;
  }

  .upload-image .option .option-header .answerTwo label h5 span {
    position: relative;
    top: -15px;
    font-size: 15px;
    font-weight: 800;
    display: block;
  }

  .upload-image .option .option-header .answerTwo label p {
    display: none;
  }

  /* Answer Three */
  .upload-image .option .option-header .answerThree label {
    position: absolute;
    padding: 30px;
    top: 605px;
    left: 23%;
    width: 195px;
    height: 105px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerThree label img {
    position: relative;
    top: -13px;
    width: 30px;
  }

  .upload-image .option .option-header .answerThree label h5 span {
    position: relative;
    top: -15px;
    font-size: 15px;
    font-weight: 800;
    display: block;
  }

  .upload-image .option .option-header .answerThree label p {
    display: none;
  }

  /* Answer Four */
  .upload-image .option .option-header .answerFour label {
    position: absolute;
    padding: 30px;
    top: 855px;
    left: 23%;
    width: 195px;
    height: 105px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerFour label img {
    position: relative;
    top: -13px;
    width: 30px;
  }

  .upload-image .option .option-header .answerFour label h5 span {
    position: relative;
    top: -15px;
    font-size: 15px;
    font-weight: 800;
    display: block;
  }

  .upload-image .option .option-header .answerFour label p {
    display: none;
  }
}

@media screen and (min-width: 576px) {
  /* Answer One */
  .upload-image .option .option-header .answerOne label {
    position: absolute;
    padding: 30px;
    top: 125px;
    left: 25%;
    width: 235px;
    height: 130px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerOne label img {
    width: 20px;
  }

  .upload-image .option .option-header .answerOne label h5 span {
    position: relative;
    top: -15px;
    font-size: 15px;
    font-weight: 800;
    display: block;
  }

  .upload-image .option .option-header .answerOne label p {
    position: relative;
    top: -15px;
    display: block;
    font-size: 12px;
  }

  /* Answer Two */
  .upload-image .option .option-header .answerTwo label {
    position: absolute;
    padding: 30px;
    top: 435px;
    left: 25%;
    width: 235px;
    height: 130px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerTwo label img {
    width: 20px;
  }

  .upload-image .option .option-header .answerTwo label h5 span {
    position: relative;
    top: -15px;
    font-size: 15px;
    font-weight: 800;
    display: block;
  }

  .upload-image .option .option-header .answerTwo label p {
    position: relative;
    top: -15px;
    display: block;
    font-size: 12px;
  }

  /* Answer Three */
  .upload-image .option .option-header .answerThree label {
    position: absolute;
    padding: 30px;
    top: 738px;
    left: 25%;
    width: 235px;
    height: 130px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerThree label img {
    width: 20px;
  }

  .upload-image .option .option-header .answerThree label h5 span {
    position: relative;
    top: -15px;
    font-size: 15px;
    font-weight: 800;
    display: block;
  }

  .upload-image .option .option-header .answerThree label p {
    position: relative;
    top: -15px;
    display: block;
    font-size: 12px;
  }

  /* Answer Four */
  .upload-image .option .option-header .answerFour label {
    position: absolute;
    padding: 30px;
    top: 1045px;
    left: 25%;
    width: 235px;
    height: 130px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerFour label img {
    width: 20px;
  }

  .upload-image .option .option-header .answerFour label h5 span {
    position: relative;
    top: -15px;
    font-size: 15px;
    font-weight: 800;
    display: block;
  }

  .upload-image .option .option-header .answerFour label p {
    position: relative;
    top: -15px;
    display: block;
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  /* Answer One */
  .upload-image .option .option-header .answerOne label {
    position: absolute;
    padding: 30px;
    top: 92px;
    left: 9.5%;
    width: 150px;
    height: 70px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerOne label img {
    position: relative;
    top: -27px;
    width: 20px;
  }

  .upload-image .option .option-header .answerOne label h5 span {
    position: relative;
    top: -25px;
    font-size: 13px;
    font-weight: 800;
  }

  .upload-image .option .option-header .answerOne label p {
    display: none;
  }

  /* Answer Two */
  .upload-image .option .option-header .answerTwo label {
    position: absolute;
    padding: 30px;
    top: 92px;
    left: 58%;
    width: 150px;
    height: 70px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerTwo label img {
    position: relative;
    top: -27px;
    width: 20px;
  }

  .upload-image .option .option-header .answerTwo label h5 span {
    position: relative;
    top: -25px;
    font-size: 13px;
    font-weight: 800;
  }

  .upload-image .option .option-header .answerTwo label p {
    display: none;
  }

  /* Answer Three */
  .upload-image .option .option-header .answerThree label {
    position: absolute;
    padding: 30px;
    top: 272px;
    left: 9.5%;
    width: 150px;
    height: 70px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerThree label img {
    position: relative;
    top: -27px;
    width: 20px;
  }

  .upload-image .option .option-header .answerThree label h5 span {
    position: relative;
    top: -25px;
    font-size: 13px;
    font-weight: 800;
  }

  .upload-image .option .option-header .answerThree label p {
    display: none;
  }

  /* Answer Four */
  .upload-image .option .option-header .answerFour label {
    position: absolute;
    padding: 30px;
    top: 272px;
    left: 58%;
    width: 150px;
    height: 70px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerFour label img {
    position: relative;
    top: -27px;
    width: 20px;
  }

  .upload-image .option .option-header .answerFour label h5 span {
    position: relative;
    top: -25px;
    font-size: 13px;
    font-weight: 800;
  }

  .upload-image .option .option-header .answerFour label p {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  /* Answer One */
  .upload-image .option .option-header .answerOne label {
    position: absolute;
    padding: 30px;
    top: 115px;
    left: 9.5%;
    width: auto;
    height: 110px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerOne label img {
    position: relative;
    top: -20px;
    width: 30px;
  }

  .upload-image .option .option-header .answerOne label h5 span {
    position: relative;
    top: -25px;
    font-size: 18px;
    font-weight: 800;
  }

  .upload-image .option .option-header .answerOne label p {
    position: relative;
    top: -30px;
    display: block;
  }

  /* Answer Two */
  .upload-image .option .option-header .answerTwo label {
    position: absolute;
    padding: 30px;
    top: 115px;
    left: 58.5%;
    width: auto;
    height: 110px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerTwo label img {
    position: relative;
    top: -20px;
    width: 30px;
  }

  .upload-image .option .option-header .answerTwo label h5 span {
    position: relative;
    top: -25px;
    font-size: 18px;
    font-weight: 800;
  }

  .upload-image .option .option-header .answerTwo label p {
    position: relative;
    top: -30px;
    display: block;
  }

  /* Answer Three */
  .upload-image .option .option-header .answerThree label {
    position: absolute;
    padding: 30px;
    top: 378px;
    left: 9.5%;
    width: auto;
    height: 110px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerThree label img {
    position: relative;
    top: -20px;
    width: 30px;
  }

  .upload-image .option .option-header .answerThree label h5 span {
    position: relative;
    top: -25px;
    font-size: 18px;
    font-weight: 800;
  }

  .upload-image .option .option-header .answerThree label p {
    position: relative;
    top: -30px;
    display: block;
  }

  /* Answer Four */
  .upload-image .option .option-header .answerFour label {
    position: absolute;
    padding: 30px;
    top: 378px;
    left: 56.5%;
    width: auto;
    height: 110px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerFour label img {
    position: relative;
    top: -20px;
    width: 30px;
  }

  .upload-image .option .option-header .answerFour label h5 span {
    position: relative;
    top: -25px;
    font-size: 18px;
    font-weight: 800;
  }

  .upload-image .option .option-header .answerFour label p {
    position: relative;
    top: -30px;
    display: block;
  }
}

@media screen and (min-width: 1200px) {
  /* Answer One */
  .upload-image .option .option-header .answerOne label {
    position: absolute;
    padding: 30px;
    top: 157px;
    left: 13%;
    width: auto;
    height: 110px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerOne label img {
    width: 30px;
  }

  .upload-image .option .option-header .answerOne label h5 span {
    position: relative;
    top: -25px;
    font-size: 18px;
    font-weight: 800;
  }

  .upload-image .option .option-header .answerOne label p {
    position: relative;
    top: -30px;
    display: block;
  }

  /* Answer Two */
  .upload-image .option .option-header .answerTwo label {
    position: absolute;
    padding: 30px;
    top: 157px;
    left: 62.4%;
    width: auto;
    height: 110px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerTwo label img {
    width: 30px;
  }

  .upload-image .option .option-header .answerTwo label h5 span {
    position: relative;
    top: -25px;
    font-size: 18px;
    font-weight: 800;
  }

  .upload-image .option .option-header .answerTwo label p {
    position: relative;
    top: -30px;
    display: block;
  }

  /* Answer Three */
  .upload-image .option .option-header .answerThree label {
    position: absolute;
    padding: 30px;
    top: 523px;
    left: 13%;
    width: auto;
    height: 110px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerThree label img {
    width: 30px;
  }

  .upload-image .option .option-header .answerThree label h5 span {
    position: relative;
    top: -25px;
    font-size: 18px;
    font-weight: 800;
  }

  .upload-image .option .option-header .answerThree label p {
    position: relative;
    top: -30px;
    display: block;
  }

  /* Answer Four */
  .upload-image .option .option-header .answerFour label {
    position: absolute;
    padding: 30px;
    top: 523px;
    left: 62.4%;
    width: auto;
    height: 110px;
    border: 2px dashed #8d8d8d;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
  }

  .upload-image .option .option-header .answerFour label img {
    width: 30px;
  }

  .upload-image .option .option-header .answerFour label h5 span {
    position: relative;
    top: -25px;
    font-size: 18px;
    font-weight: 800;
  }

  .upload-image .option .option-header .answerFour label p {
    position: relative;
    top: -30px;
    display: block;
  }
}

.modal-btn-save {
  box-shadow: 1px 1px 3px rgb(194, 194, 194);
  transition: 0.3s;
}

.modal-btn-save:hover {
  box-shadow: inset 1px 1px 3px rgb(194, 194, 194);
}

/* Review */
.review {
  position: relative;
  left: 37%;
  max-width: 25%;
  margin-bottom: 50px;
}

@media screen and (max-width: 1400px) {
  .review {
    position: relative;
    left: 29%;
    max-width: 40%;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 1200px) {
  .review {
    position: relative;
    left: 26.5%;
    max-width: 45%;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 991px) {
  .review {
    position: relative;
    left: 28.5%;
    max-width: 40%;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  .review {
    position: relative;
    left: 20.5%;
    max-width: 55%;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 576px) {
  .review {
    position: relative;
    left: 15.5%;
    max-width: 70%;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 520px) {
  .review {
    position: relative;
    left: 0%;
    max-width: 100%;
    margin-bottom: 50px;
  }
}

.review .form-switch .form-check-input {
  background-position: left center;
  background-color: #6c757d;
  border: 1px solid #6c757d;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.review .form-switch .form-check-input:checked {
  background-position: right center;
  background-color: #198754;
  border: 1px solid #198754;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:focus {
 /* border: 1px solid #bfbfbf;
  background-image: url("data: image/svg+xml, %3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8' %3e%3ccircle r='3' fill='%23fff' /%3e%3c/svg%3e");*/
}

.review .form-check-input:focus {
  border-color: none;
  outline: 0px;
  box-shadow: none;
}

.review .quiz-card .quiz-card-details {
  border: 1px solid #ececec;
}

.review .quiz-card .quiz-card-details .card-header .card-title {
  margin-top: -15px;
  padding: 15px 0 0 0;
  font-size: 17px;
}

.review .quiz-card-details .card-header .education-level {
  position: relative;
  top: -10px;
  margin-bottom: -10px;
}

.review .quiz-card .quiz-card-details .card-body {
  background: #fbfbff;
}

.review .quiz-card .quiz-card-details .card-body .chapter {
  font-size: 13px;
  font-weight: 800;
  color: rgb(126, 126, 126);
}

@media screen and (max-width: 575px) {
  .review .quiz-card .quiz-card-details .card-body .status {
    position: relative;
    top: -40px;
  }
}

.review .quiz-card .quiz-card-details .card-body .introduction {
  background: none;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  padding: 10px;
}

@media screen and (max-width: 575px) {
  .review .quiz-card .quiz-card-details .card-body .introduction {
    position: relative;
    top: -35px;
    margin-bottom: -15px;
  }
}

.review .quiz-card .quiz-card-details .card-body .quiz-dates {
  margin-bottom: -15px;
}

.review .quiz-card .quiz-card-details .card-body .quiz-dates .from-date,
.review .quiz-card .quiz-card-details .card-body .quiz-dates .to-date {
  font-size: 13px;
}

.review .quiz-card .quiz-card-details .card-body .quiz-dates .date {
  margin-top: -8px;
  background: #ececec;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
}

.review .quiz-card .quiz-card-details .card-footer .quiz-duration h5 {
  font-size: 12px;
  font-weight: 800;
  color: #333;
}

.review .quiz-card .quiz-card-details .card-footer .quiz-duration .time {
  margin-top: -8px;
  color: #111;
  font-weight: 900;
}

.review .quiz-card .quiz-card-details .card-footer .card-bottom {
  margin-bottom: -15px;
}

.review .quiz-card .quiz-card-details .card-footer .quiz-admin-btn {
  background: #fff;
  box-shadow: 1px 1px 3px #dadada;
}

.review .quiz-card .quiz-card-details .card-footer .duplicate-btn:hover {
  background: #0dcaf0;
  box-shadow: inset 1px 1px 3px rgb(4, 86, 102);
  color: #fff;
}

.review .quiz-card .quiz-card-details .card-footer .edit-btn:hover {
  background: #ffcc33;
  box-shadow: inset 1px 1px 3px rgb(167, 138, 51);
}

.review .quiz-card .quiz-card-details .card-footer .delete-btn:hover {
  background: #dc3545;
  box-shadow: inset 1px 1px 3px rgb(107, 11, 21);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .review
    .quiz-card
    .quiz-card-details
    .card-footer
    .card-bottom
    .card-buttons {
    position: relative;
    top: -53px;
    margin-bottom: -35px;
    text-align: center;
  }
}

@media screen and (max-width: 575px) {
  .review
    .quiz-card
    .quiz-card-details
    .card-footer
    .card-bottom
    .card-buttons {
    position: relative;
    top: -55px;
    margin-bottom: -35px;
  }
}

/* Ranking Modal */
.ranking-modal .modal .modal-content {
  background: transparent !important;
  border: none;
}

/*--------------------------------------------------------------
# Prize Administration
--------------------------------------------------------------*/
.prize-card {
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.prize-card:hover {
  transform: translate3d(0, -3px, 0);
}

.prize-card .quantity {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 2;
}

.bottom {
  position: relative;
  bottom: -15px;
}

.bottom .card-text {
  position: relative;
  bottom: -20px;
}

.bottom .points {
  position: relative;
  bottom: -8px;
}

.avatar {
  position: relative;
  display: inline-block;
  height: 2rem;
  width: 2rem;
  border: 3px solid #fff;
  border-radius: 50px;
  box-shadow: 1px 2px 20px #ddd;
  cursor: pointer;
}

.avatar:hover {
  position: relative;
  z-index: 2;
}

.avatar .avatar-name {
  position: absolute;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
}

.avatar .avatar-name > span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.avatar img {
  display: block;
}

.avatar img,
.avatar .avatar-name {
  width: 100%;
  height: 100%;
}

.avatar-group {
  position: relative;
  bottom: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.avatar-group .avatar:not(:first-child) {
  margin-left: -0.8rem;
}

@media screen and (max-width: 646px) {
  .card-bottom .card-text {
    margin-top: 5px;
    font-size: 13px;
  }
}

/* Modal: Add/Edit Rewards */
.reward-image .image-holder {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ececec;
  height: 305px;
  background: #ececec;
}

.reward-image .image-holder .figure {
  display: grid;
  justify-content: center;
}

.reward-image .image-holder .figure img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 444px;
  height: 283px;
  border-radius: 5px;
}

.reward-image .image-holder input {
  display: none;
}

.reward-image .image-holder label {
  position: absolute;
  padding: 30px;
  top: 109px;
  left: 20%;
  width: 290px;
  border: 2px dashed #8d8d8d;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(3px);
  border-radius: 10px;
}

.reward-image .image-holder label img {
  width: 20px;
}

.reward-image .image-holder label h5 {
  font-size: 15px;
  font-weight: 800;
}

.reward-image .image-holder label p {
  position: relative;
  top: -5px;
  font-size: 12px;
  color: rgb(116, 116, 116);
  font-weight: 600;
  width: 200px;
  margin-bottom: -10px;
}

/*--------------------------------------------------------------
# Modal: Add/Edit Template
--------------------------------------------------------------*/
.addEditTemplateModal #regForm {
  /* margin: 100px auto; */
  padding: 40px;
  min-width: 300px;
}

.addEditTemplateModal #regForm .particulars {
  margin-top: -18px;
}

.addEditTemplateModal #regForm .group-label {
  font-size: 13px;
  margin-bottom: -15px;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  border: 1px solid #ffadad;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 5px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50px;
  display: inline-block;
}

/* Mark the active step: */
.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #04aa6d;
}

.addEditTemplateModal .upload-image img {
  border-radius: 10px;
}

.addEditTemplateModal .upload-image input {
  display: none;
}

.addEditTemplateModal .upload-image label {
  position: relative;
  top: -150px;
  background: #fff;
  border: 2px dashed #333;
  border-radius: 5px;
  padding: 15px;
  cursor: pointer;
  transition: 1s;
}

.addEditTemplateModal .upload-image label:hover {
  border: 2px solid transparent;
  box-shadow: 1px 1px 3px #ececec;
}

.addEditTemplateModal .upload-image label img {
  width: 20px;
}

.addEditTemplateModal .upload-image label h5 {
  padding-top: 10px;
  font-size: 15px;
  font-weight: 800;
}

.addEditTemplateModal .upload-image label p {
  font-size: 12px;
}

.addTemplates .card-body .nav-pills .nav-item .nav-link {
  padding: 10px 25px;
  background: #ececec;
  margin-bottom: 25px;
  font-size: 13px;
}

.addTemplates .card-body .nav-pills .nav-item .nav-link.active {
  padding: 10px 25px;
  background: #ffcc33;
}

.addTemplates .card-body .nav-pills .nav-item .addTabs-btn {
  background: green;
  color: #fff;
}

.addTemplates .card-body .nav-pills .nav-item .addTabs-btn.active {
  background: green;
}

.addTemplates .card-body .tab-content #pills-details img {
  border-radius: 10px;
}

.addTemplates .card-body .tab-content #pills-details .formBG,
.addTemplates .card-body .tab-content #pills-classes .formBG,
.addTemplates .card-body .tab-content #pills-addTabs .formBG {
  background: #ececec;
  padding: 15px;
  border-radius: 10px;
}

.addTemplates .card-body .tab-content #pills-details .formBG form,
.addTemplates .card-body .tab-content #pills-classes .formBG form,
.addTemplates .card-body .tab-content #pills-addTabs .formBG form {
  background: #fff;
  padding: 15px;
  border-radius: 5px;
}

/*--------------------------------------------------------------
# User Management: User List
--------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .users-list-type {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .users-card-type {
    display: none;
  }
}

.user {
  border: 1px solid #ececec;
  box-shadow: 1px 1px 3px #ececec;
  padding-top: 25px;
  padding-left: 0px;
  padding-right: 0px;
  margin-bottom: 25px;
  border-radius: 10px;
}

.user .sub-title {
  font-weight: 800;
  font-size: 10px;
}

.user .left {
  padding-left: 0px;
}

.user .right {
  padding-right: 0px;
}

.user #more {
  display: none;
}

.user #seeMore-Btn {
  position: relative;
  top: -25px;
  cursor: pointer;
}

.user .row-one {
  position: relative;
  margin-bottom: 30px;
}

.user .row-one .right {
  position: relative;
  top: -55px !important;
}

.user .row-two {
  position: relative;
  top: -10px;
  border: 1px solid #ececec;
  border-left: none;
  border-right: none;
  padding-top: 10px;
}

.user .row-three {
  position: relative;
  top: -20px;
  border: 1px solid #ececec;
  border-left: none;
  border-right: none;
  padding-top: 10px;
}

.user .row-four {
  position: relative;
  top: -30px;
  border: 1px solid #ececec;
  border-left: none;
  border-right: none;
  padding-top: 10px;
}

.user .row-five {
  position: relative;
  top: -40px;
  border: 1px solid #ececec;
  border-left: none;
  border-right: none;
  padding-top: 10px;
}

.user .row-six {
  position: relative;
  top: -50px;
  border: 1px solid #ececec;
  border-left: none;
  border-right: none;
  padding-top: 10px;
}

.user .row-seven {
  position: relative;
  top: -60px;
  border: 1px solid #ececec;
  border-left: none;
  border-right: none;
  padding-top: 10px;
}

.user .row-eight {
  position: relative;
  top: -70px;
  border: 1px solid #ececec;
  border-left: none;
  border-right: none;
  padding-top: 10px;
}

@media screen and (max-width: 767px) {
  .user .row-one .right {
    position: relative;
    top: -38px;
  }

  .user .row-two .right {
    position: relative;
    top: -58px;
    margin-bottom: -100px;
  }

  .user .row-three .right {
    position: relative;
    top: -58px;
    margin-bottom: -100px;
  }

  .user .row-four .right {
    position: relative;
    top: -58px;
    margin-bottom: -100px;
  }

  .user .row-five .right {
    position: relative;
    top: -58px;
    margin-bottom: -100px;
  }

  .user .row-six .right {
    position: relative;
    top: -58px;
    margin-bottom: -100px;
  }

  .user .row-seven .right {
    position: relative;
    top: -58px;
    margin-bottom: -100px;
  }

  .user .row-eight .right {
    position: relative;
    top: -58px;
    margin-bottom: -100px;
  }
}

@media screen and (max-width: 767px) {
  .user .row-two .left p,
  .user .row-two .right p {
    font-size: 12px;
  }

  .user .row-three .left p,
  .user .row-three .right p {
    font-size: 12px;
  }

  .user .row-four .left p,
  .user .row-four .right p {
    font-size: 12px;
  }

  .user .row-five .left p,
  .user .row-five .right p {
    font-size: 12px;
  }

  .user .row-six .left p,
  .user .row-six .right p {
    font-size: 12px;
  }

  .user .row-seven .left p,
  .user .row-seven .right p {
    font-size: 12px;
  }

  .user .row-eight .left p,
  .user .row-eight .right p {
    font-size: 12px;
  }
}

/*
# Leaderboards
*/

.leaderboards .card-body {
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.leaderboards .card-body .figure img {
  width: 50px;
}

/*--------------------------------------------------------------
# LAB002
--------------------------------------------------------------*/
.modal-title .steps {
  background: #f7f7f7;
  border: 1px solid #ececec;
  padding: 10px;
  border-radius: 50px;
  color: #ffcc33;
  font-weight: 900;
  font-size: 15px;
  text-shadow: 1px 1px 1px #bebebe;
}

.modal-title span {
  font-size: 18px;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Promo Code
--------------------------------------------------------------*/
.coupon-card {
  text-align: center;
  padding: 40px 80px;
  position: relative;
  width: 400px;
}

.coupon-card .discount {
  background: #ececec;
  display: grid;
  align-items: center;
  height: 115.8px;
  width: 70px;
  border-right: 1px dashed #ddd;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.coupon-card .discount .off {
  position: relative;
  top: 5px;
  transform: rotate(-90deg);
  font-weight: 900;
  font-size: 20px;
  color: #111;
}

.coupon-card .promo-code-details {
  background: #ececec;
  height: 35%;
  border-left: 1px dashed #ddd;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.coupon-card .promo-code-details .coupon-code {
  position: relative;
  left: -9px;
}

.coupon-card .promo-code-details .promo-code {
  position: relative;
  top: 10px;
  color: #000;
  font-weight: 900;
}

.coupon-card .promo-code-details .copy-btn {
  position: relative;
  display: grid;
  justify-content: center;
  top: 10px;
  background: #ececec;
  width: 20px;
  border-radius: 3px;
}

.coupon-card .promo-code-details .copy-btn span i {
  color: #000;
}

.coupon-card .promo-code-details .promo-description {
  position: relative;
  top: 15px;
  font-size: 12px;
  text-align: start;
}

.validity {
  text-align: start;
}

.validity .validity-text {
  font-size: 10px;
  color: #000;
}

.validity .validity-date {
  font-size: 10px;
  font-weight: 800;
  color: #000;
}

.circle1,
.circle2 {
  background: #fff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.circle1 {
  top: 35px;
  left: 34.5%;
}

.circle2 {
  top: 160px;
  right: 59.5%;
}

/*--------------------------------------------------------------
# User Management: Cohort
--------------------------------------------------------------*/
.modal-cohort .modal .modal-content .modal-header .nav-pills .nav-item a {
  font-size: 13px;
}

.modal-cohort
  .modal
  .modal-content
  .modal-header
  .nav-pills
  .nav-item
  .btn.active {
  background: green !important;
  color: #fff !important;
  font-size: 13px;
}

/* Sample Popup modal */
.information .modal {
  background: rgba(0, 0, 0, 0.5);
}

/*--------------------------------------------------------------
# MTR001
--------------------------------------------------------------*/
.instructor-name {
  margin-top: -52px;
  padding-left: 65px;
  padding-top: 4px;
  font-weight: 800;
  font-size: 20px;
}

.card-subtitle {
  padding-left: 65px;
}

.material-info {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  box-shadow: 1px 2px 15px #ececec;
  border-radius: 10px;
}

.material-info .material-title {
  margin-top: 10px;
}

/* Tabs Button */
.circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #f3f3f3;
  background-color: #fff;
  box-shadow: 1px 3px 5px #f5f1f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bi-check-lg {
  font-size: 15px;
  color: green;
}

/* Downloadable Items */
.download-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  background-color: transparent;
  border: 1px solid #ececec;
  text-decoration: none;
  border-radius: 5px;
}

/*--------------------------------------------------------------
# Lesson Management
--------------------------------------------------------------*/
/* Classwork/Class Block */
.lm-filter .search-btn:hover {
  color: #fff !important;
}

.lm-filter .nav-pills {
  position: relative;
  left: -20px;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 5px;
}

.lm-filter .nav-pills .nav-link {
  border: 1px solid #ececec;
  background: none;
  color: #1a2a3d;
  font-size: 12px;
  font-weight: 600;
  border: 0;
  border-radius: 5px;
  padding: 5px 15px;
}

.lm-filter .nav-pills .nav-link:hover {
  background: #ececec !important;
}

.lm-filter .nav-pills .nav-link.active,
.lm-filter .nav-pills .show > .nav-link {
  color: #111111;
  background-color: #ffcc33 !important;
}

.lm-topics .card-body .topic-holder {
  max-height: 375px;
  overflow-x: hidden !important;
  overflow-y: auto;
  overflow: scroll;
  margin-bottom: 15px;
}

.lm-topics .card-body .topic-holder::-webkit-scrollbar {
  display: block;
  width: 5px;
  background: transparent;
  transition: 1s;
}

.lm-topics .card-body .topic-holder::-webkit-scrollbar-thumb {
  background: #ececec;
  border-radius: 10px;
}

/* Topic */
.lm-topics .card-body .topic-holder .topic {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
}

.lm-topics .card-body .topic-holder .topic .topic-id {
  font-size: 13px;
}

/* LM MODAL */
.lm-modal .modal .modal-content {
  background: transparent !important;
  border: none;
}

.lm-modal .modal .modal-content .modal-header,
.lm-modal .modal .modal-content .modal-footer {
  display: none;
}

/* Class Cards */
.class-card .class-card-header .education-level .indicator {
  font-size: 13px;
}

.class-card .card-body {
  background: #fff;
}

.class-card .card-body .date {
  font-size: 13px;
}

@media screen and (max-width: 767px) {
  .class-card .card-body .date {
    position: relative;
    top: -24px;
    font-size: 15px;
  }
}

.class-card .card-body .topic-title {
  font-size: 17px;
}

.class-card .card-body .classwork {
  font-size: 11.5px;
}

.class-card .card-body .time-text {
  font-size: 11.5px;
}

.class-card .card-body .time-bg {
  background: #ececec;
  margin-top: -10px;
  border-radius: 5px;
  padding: 3px;
  text-align: center;
}

.class-card .card-body .time-bg .time {
  font-size: 13px;
}

.class-card .card-footer {
  margin-top: -10px;
  display: flex;
  gap: 10px;
  padding: 7px 0 0 0 !important;
  background: #f1f1f1 !important;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  align-items: center;
  justify-content: center;
  border-top: none !important;
}

.class-card .card-footer .btn {
  padding: 10px;
  width: 49%;
  border: none;
  border-radius: 3px;
  background: #ffffff;
  color: #aaa;
  font-weight: 700;
  font-size: 13px;
}

.class-card .card-footer .btn:focus {
  outline: 0;
  box-shadow: none;
}

.class-card .card-footer .edit-btn {
  border-bottom-left-radius: 10px;
}

.class-card .card-footer .edit-btn:hover {
  background: var(--cf-yellow);
  color: #000;
}

.class-card .card-footer .delete-btn {
  border-bottom-right-radius: 10px;
}

.class-card .card-footer .delete-btn:hover {
  background: var(--cf-red);
  color: rgb(255, 255, 255);
}

/* Classwork Cards */
.lm-classwork .card-body {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .lm-classwork .card-body .date {
    position: relative;
    top: -23.6px;
  }
}

.lm-classwork .card-body .classwork-name {
  font-size: 17px;
}

.lm-classwork .card-body .classwork-chapter {
  font-size: 12.5px;
}

.lm-classwork .card-body .release-date label {
  font-size: 14px;
}

.lm-classwork .card-footer {
  margin-top: -10px;
  display: flex;
  gap: 10px;
  padding: 7px 0 0 0 !important;
  background: #f1f1f1 !important;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  align-items: center;
  justify-content: center;
  border-top: none !important;
}

.lm-classwork .card-footer .btn {
  padding: 10px;
  width: 49%;
  border: none;
  border-radius: 3px;
  background: #ffffff;
  color: #aaa;
  font-weight: 700;
  font-size: 13px;
}

.lm-classwork .card-footer .btn:focus {
  outline: 0;
  box-shadow: none;
}

.lm-classwork .card-footer .edit-btn {
  border-bottom-left-radius: 10px;
}

.lm-classwork .card-footer .edit-btn:hover {
  background: var(--cf-yellow);
  color: #000;
}

.lm-classwork .card-footer .delete-btn {
  border-bottom-right-radius: 10px;
}

.lm-classwork .card-footer .delete-btn:hover {
  background: var(--cf-red);
  color: rgb(255, 255, 255);
}

/* MODAL: Add/Edit Classwork */
.lm-modal
  .modal
  .modal-content
  .modal-body
  .tab-content
  .tab-pane
  .previewer
  img {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.lm-modal
  .modal
  .modal-content
  .modal-body
  .addTemplates
  .nav-pills
  .nav-item
  .nav-link:hover {
  background: #ddd;
  color: #333;
}

.lm-modal
  .modal
  .modal-content
  .modal-body
  .addTemplates
  .nav-pills
  .nav-item
  .nav-link:hover
  i {
  color: #333;
}

/*--------------------------------------------------------------
# PHASE II STYLESHEET
--------------------------------------------------------------*/
/* Main */
#main-two {
  margin-top: 60px;
  padding: 20px 30px;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  #main-two {
    padding: 20px;
  }
}

/* Sign In */
.bg-image {
  background-image: url("/assets/img/cf-login-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.field-icon {
  position: relative;
  top: -41px;
  left: 95%;
  cursor: pointer;
}

/* Card */
.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

.intro .card {
  background-image: url("/assets/img/image-student.png");
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 950px;
  position: relative;
  padding: 35px;
  padding-bottom: 0 !important;
}

@media screen and (max-width: 568px) {
  .intro .card {
    padding: 0;
  }
}

.intro .card .card-body .card-title {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #282828;
}

/* @media screen and (min-width: 300px) {
  .intro .card .card-body .card-title {
    font-size: 15px;
  }
} */

.intro .card .card-body .card-title span {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #ffc107;
}

/* @media screen and (min-width:300px) {
  .intro .card .card-body .card-title span {
    font-size: 15px;
  }
} */

.intro .card .card-body .card-text {
  margin-top: -20px;
}

.wave {
  animation-name: wave-animation;
  /* Refers to the name of your @keyframes element below */
  animation-duration: 2.5s;
  /* Change to speed up or slow down */
  animation-iteration-count: infinite;
  /* Never stop waving :) */
  transform-origin: 70% 70%;
  /* Pivot around the bottom-left palm */
  display: inline-block;
}

@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(14deg);
  }

  /* The following five values can be played with to make the waving more or less extreme */
  20% {
    transform: rotate(-8deg);
  }

  30% {
    transform: rotate(14deg);
  }

  40% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(0deg);
  }

  /* Reset for the last half to pause */
  100% {
    transform: rotate(0deg);
  }
}

/* Choices */
.choices .choices__inner {
  border-radius: 0.25rem;
  line-height: 1.5rem !important;
  font-size: 1rem;
  background-size: 16px 12px;
  border: 1px solid #ddd;
  padding: 0.2604166667rem 1rem 0.2604166667rem 1rem;
}

.choices .choices__list--multiple .choices__item {
  padding: 0 8px !important;
  font-size: 0.813rem !important;
  border: 1px solid #ddd;
  background-color: #f3f5f9 !important;
  border-radius: 4px;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  color: #000;
}

.choices .choices__button {
  background-color: transparent !important;
  border-left: #000 !important;
}

.choices[data-type*="select-multiple"] .choices__button,
.choices[data-type*="text"] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  background-color: transparent !important;
  padding-left: 5px !important;
  width: 5px !important;
  background-size: 6px !important;
}

.is-focused .choices__inner,
.is-open .choices__inner {
  border-radius: 0.25rem !important;
  border-color: #ddd !important;
}

/* Modal: Promts */
.prompts .modal .modal-content {
  border: none;
}

.prompts .modal-footer .btn-link {
  color: #111111 !important;
}

.yellow-btn:hover{
  background: #ffcc33 !important;
}

.red-btn:hover {
  background: #fe0000 !important;
  color: #ffffff !important;
}

.prompts .modal-footer .yellow-btn:hover {
  background: #ffcc33 !important;
}

.prompts .modal-footer .red-btn:hover {
  background: #fe0000 !important;
  color: #ffffff !important;
}

.prompts .modal-footer .btn-left {
  border-bottom-left-radius: 10px !important;
}

.prompts .modal-footer .btn-right {
  border-bottom-right-radius: 10px !important;
}

/* Diagnostic Intro */
.diagnostic-test-intro {
  display: grid;
  place-content: center;
  align-items: center;
  width: 50%;
  margin: auto;
  margin-top: 80px;
}

@media screen and (max-width: 1200px) {
  .diagnostic-test-intro {
    width: 100%;
  }
}

.diagnostic-test-intro .greetings {
  font-size: 10px;
}

.diagnostic-test-intro .card-title {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #282828;
}

.diagnostic-test-intro .card-title span {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #ffc107;
}

.diagnostic-test-intro .bg {
  background: #ececec;
  border-radius: 5px;
  color: #9b9b9b;
  font-size: 13px;
}

.diagnostic-test-intro .questions {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

/* Bounce Animation */
.bounce-animation {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

.bounce-animation:hover {
  animation-play-state: paused;
  cursor: grab;
}

.arrow-icon {
  transition: transform 0.2s ease-in-out;
  display: inline-block;
}

.btn:hover .arrow-icon {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Diagnostic Test: Accordion
--------------------------------------------------------------*/
.diagnostic-test-topics {
  padding: 0 100px;
}

.diagnostic-test-topics ul {
  padding: 0;
  list-style: none;
}

.diagnostic-test-topics li + li {
  margin-top: 15px;
}

.diagnostic-test-topics li {
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 15px #ececec;
  border-radius: 5px;
  position: relative;
}

.diagnostic-test-topics a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.diagnostic-test-topics .list-number {
  font-size: 15.5px;
  font-weight: 900;
  position: absolute;
  top: 20.1px;
  right: 0;
  left: 20px;
  color: #ffc107;
}

.diagnostic-test-topics .icon-show,
.diagnostic-test-topics .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.diagnostic-test-topics p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.diagnostic-test-topics .icon-show {
  display: none;
}

.diagnostic-test-topics a.collapsed {
  color: #343a40;
}

.diagnostic-test-topics a.collapsed:hover {
  color: #091724;
}

.diagnostic-test-topics a.collapsed .icon-show {
  display: inline-block;
}

.diagnostic-test-topics a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .diagnostic-test-topics {
    padding: 0;
  }
}

/* Topics & Subtopics */
.sub-topic {
  font-size: 14px;
}

.sub-topic .sub-topic-item .connector {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.sub-topic .sub-topic-item .connector::before {
  content: "";
  position: absolute;
  left: 5.5px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.sub-topic .sub-topic-item .activity-badge {
  position: relative;
  left: -67px;
  margin-top: -1.5px;
  z-index: 1;
  font-size: 15px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  background: #fff;
  box-shadow: 0px 2px 5px #ddd;
  flex-grow: 0;
}

.sub-topic .sub-topic-item .activity-content {
  position: relative;
  left: -80px;
  padding-left: 10px;
  padding-bottom: 20px;
}

.sub-topic .sub-topic-item .activity-content a.active {
  font-weight: 600 !important;
}

.sub-topic .sub-topic-item .activity-content a:hover {
  color: #ffc107 !important;
}

.sub-topic .sub-topic-item:first-child .activite-label::before {
  top: 5px;
}

.sub-topic .sub-topic-item:last-child .activity-content {
  padding-bottom: 0;
}

/*--------------------------------------------------------------
# Popular Lessons
--------------------------------------------------------------*/
.popular-lessons {
  display: grid;
  place-items: center;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

.popular-lessons .card {
  border: 1px solid #ddd;
}

.popular-lessons .page-title {
  color: #000!important;
  font-weight: 900;
}

.popular-lessons .badge {
  background: #E6F8F3;
  color: #00A510;
  padding: 10px;
  font-weight: 500;
}

.popular-lessons .time-duration {
  font-size: 15px;
  font-weight: 600;
}

.popular-lessons .card .card-body .card-text {
  position: relative;
  top: -10px;
}

.popular-lessons .card .card-body .instructor {
  position: relative;
  top: 13px;
}

.popular-lessons .card .card-body .instructor .name {
  margin-left: 64px;
  margin-bottom: 5px;
  padding-top: 5px;
  margin-top: -48px;
  font-size: 15px;
}

.popular-lessons .card .card-body .instructor .profession {
  margin-top: -5px;
  margin-left: 64px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Video Lessons
--------------------------------------------------------------*/
.video-lesson .lesson-title {
  position: relative;
  top: -5px;
  font-size: 25px;
  font-weight: 900;
  color: #000;
}

.video-lesson .instructor {
  position: relative;
  top: 5px;
}

.video-lesson .instructor .name {
  margin-left: 80px;
  margin-bottom: 5px;
  padding-top: 5px;
  margin-top: -57px;
  font-size: 20px;
}

.video-lesson  .instructor .profession {
  margin-top: -5px;
  margin-left: 80px;
  font-size: 15px;
}

/*--------------------------------------------------------------
# Element II: Courses
--------------------------------------------------------------*/
#element-two {
  position: relative;
  top: 50px;
  margin-bottom: 100px;
}

#element-two .page-title {
  font-weight: 900;
}

/* Demo Videos */
.cf-inhouse {
  background: #f5f5f4;
  border-radius: 10px;
}

.cf-inhouse .video-list {
  padding: 0 1px;
}

.cf-inhouse .video-list .title {
  position: relative;
  font-weight: bold;
}

.cf-inhouse .video-list .title::before,
.cf-inhouse .video-list .title::after {
    content: "";
    position: absolute;
    top: 50%;
    border-top: 1px solid black;
    width: 100%;
}

.cf-inhouse .video-list .title::before {
    left: 150%;
    transform: translateY(-50%);
}

.cf-inhouse .video-list .title::after {
     right: 150%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
  .cf-inhouse .video-list  .title::before,
  .cf-inhouse .video-list  .title::after {
    width: 150%;
  }
}

@media (max-width: 576px) {
  .cf-inhouse .video-list  .title::before,
  .cf-inhouse .video-list  .title::after {
    width: 150%;
  }
}

.cf-inhouse .video-list .arrow-down {
  position: relative;
  left: 50%;
}

.cf-inhouse .video-list .arrow-down::after {
  content: "↓";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
}

.cf-inhouse .video-list ul {
  padding: 0;
  list-style: none;
}

.cf-inhouse .video-list li+li {
  margin-top: 15px;
}

.cf-inhouse .video-list li {
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 15px #ececec;
  border-radius: 4px;
  position: relative;
}

.cf-inhouse .video-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.cf-inhouse .video-list .video-number {
  font-size: 14px;
  font-weight: 900;
  position: absolute;
  right: 0;
  left: 20px;
  color: #ffcc33;
}

.cf-inhouse .video-list .icon-show,
.cf-inhouse .video-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.cf-inhouse .video-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.cf-inhouse .video-list .icon-show {
  display: none;
}

.cf-inhouse .video-list a.collapsed {
  color: #343a40;
}

.cf-inhouse .video-list a.collapsed:hover {
  color: #1977cc;
}

.cf-inhouse .video-list a.collapsed .icon-show {
  display: inline-block;
}

.cf-inhouse .video-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .cf-inhouse .video-list {
    padding: 0;
  }
}

/* Lesson Card */
.video-list .collapse .card:hover {
  border: 1px solid #ffcc33!important;
  cursor: pointer;
}

.video-list .collapse .card .card-body .img-fluid {
  position: relative;
}

.video-list .collapse .card .card-body .img-fluid::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
}

.video-list .collapse .card .card-body .img-fluid img {
  position: relative;
}

/* Video Preview */
.video-list .collapse .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ffcc33 50%, rgb(255,204,51,0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
  z-index: 1;
}

.video-list .collapse .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgb(255,204,51,0.7);
  top: -15%;
  left: -15%;
  background: rgb(255,204,51);
}

.video-list .collapse .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.video-list .collapse .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  background: none;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.video-list .collapse .play-btn:hover:after {
  border-left: 15px solid #ffcc33;
  transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.video-list .collapse .card .card-body .card-text {
  position: relative;
  top: -25px;
}

/* Swiper Card Type */
.video-list .collapse .videos-wrap {
  padding-left: 10px;
}

.video-list .collapse .video-item {
  box-sizing: content-box;
  padding: 30px;
  width: 300px;
  margin: 30px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  border-radius: 10px;
}

.video-list .collapse .video-item:hover {
  cursor: grabbing;
}

.video-list .collapse .video-item .img-fluid::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
}

.video-list .collapse .video-item .card-title {
  position: relative;
  top: -15px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.video-list .collapse .video-item .card-text {
  font-size: 14px;
  color: #999;
  margin-top: -40px;
  margin-bottom: 25px;
}

.video-list .collapse .video-item .bullets {
  margin: 10px 0;
}

.video-list .collapse .videos-wrap .video-item .bullets i {
  color: #ddd!important;
  font-size: 20px;
  margin: 0 1px;
  cursor: pointer;
}

.video-list .collapse .videos-wrap .video-item .bullets i.watched {
  color: #ffc107!important;
}

.video-list .collapse .video-item .bullets i:hover {
  color: #FFD042!important;
}

.video-list .collapse .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.video-list .collapse .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 5px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.video-list .collapse .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc107;
}

@media (max-width: 767px) {
  .video-list .collapse .videos-wrap {
    padding-left: 0;
  }

  .video-list .collapse .video-item {
    padding: 30px;
    margin: 15px;
  }

  .video-list .collapse .video-item img {
    position: static;
    left: auto;
  }
}

/* YouTube Videos */
.youtube-videos .youtube-link+.youtube-link {
  margin-top: 15px;
}

.youtube-videos img {
  width: 100px;
  float: left;
  border-radius: 5px;
  box-shadow: 0 2px 15px #ccc;
}

.youtube-videos h4 {
  font-size: 18px;
  margin-left: 125px;
  font-weight: bold;
  margin-bottom: 5px;
}

.youtube-videos h4 a {
  color: #111;
  transition: 0.3s;
}

.youtube-videos h4 a:hover {
  color: #ffcc33;
}

.youtube-videos p {
  font-size: 14px;
  color: #777777;
  margin-left: 125px;
}

/* Modal */
.youtube-video-player-modal .modal .modal-content {
  background: transparent !important;
  border: none;
}

.youtube-video-player-modal .modal .modal-content .modal-header,
.youtube-video-player-modal .modal .modal-content .modal-footer  {
  display: none;
}

.youtube-video-player-modal .modal .modal-content .modal-body .card {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  /* border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec; */
   border: 1px solid #ececec;
}

.youtube-video-player-modal .modal .modal-content .modal-body .card .card-body .ratio iframe {
  box-shadow: 0px 2px 15px #ccc;
}

.social-links {
  position: relative;
  top: 15.5px;
  margin: 0 10px 10px 0;
}

.social-links a {
  padding: 5px;
  background: #fff;
  color: rgba(27, 47, 69, 0.5);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  margin-right: 5px;
}

.social-links a i {
  display: grid;
  justify-items: center;
  font-size: 15px;
}

.social-links .twitter {
  background: #1d9bf0;
  color: #fff;
  transition: 0.3s ease-in-out;
}

.social-links .twitter:hover {
  transform: translate3d(0, -5px, 0);
  box-shadow: 0 2px 15px rgb(29,155,240,0.8);
}

.social-links .facebook {
  background: #0572e6;
  color: #fff;
  transition: 0.3s ease-in-out;
}

.social-links .facebook:hover {
  transform: translate3d(0, -5px, 0);
  box-shadow: 0 2px 15px rgb(5,114,230,0.8);
}

.social-links .instagram {
  background-image: linear-gradient(169deg, #4f5bd5, #962fbf, #d62976, #fa7e1e, #feda75);
  color: #fff;
   transition: 0.3s ease-in-out;
}

.social-links .instagram:hover {
  transform: translate3d(0, -5px, 0);
  box-shadow: 0 2px 15px rgb(222,101,81,0.8);
}

.social-links .linkedin {
  background: #0a66c2;
  color: #fff;
   transition: 0.3s ease-in-out;
}

.social-links .linkedin:hover {
  transform: translate3d(0, -5px, 0);
  box-shadow: 0 2px 15px rgb(10,102,194,0.8);
}

/* Demo Video v1.2 */
.video-screen video {
  border-bottom: 1px solid #ddd!important;
  box-shadow: 0 2px 15px #ececec;
}

.video-container .card .video-list {
  background: #000;
  border-radius: 15px;
}

.video-container .card .video-list .card-title {
  font-size: 13px;
}

.video-container .card .video-list .card-subtitle {
  position: relative;
  top: -20px;
  left: -65px;
  font-weight: 900;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.video-container .card .video-list .chapter-list .chapter {
  position: relative;
  top: -20px;
}

.video-container .card .video-list .chapter-list-wrapper {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 505px;
}

.video-container .card .video-list .chapter-list-wrapper::-webkit-scrollbar {
  display: block;
  width: 5px;
}

.video-container .card .video-list .chapter-list-wrapper::-webkit-scrollbar-thumb {
  display: block;
  width: 5px;
  border-top-left-radius: 10px!important;
  border-bottom-left-radius: 10px!important;
}

.video-container .card .video-list .chapter-list-wrapper::-webkit-scrollbar-track {
  background-color: #fff;
  border-top-left-radius: 10px!important;
  border-bottom-left-radius: 10px!important;
}

/* Video Links */

.video-container .card .video-list .chapter-list .chapter .bullets i.watched {
  color: #ffc107!important;
}

.video-container .card .video-list .chapter-list .chapter .video-link {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.video-container .card .video-list .chapter-list .chapter .video-link:hover {
  padding: 10px;
  background: rgba(255,255,255,0.5);
  border: 1px solid #ddd;
}

.video-container .card .video-list .chapter-list .chapter .video-link .card-title {
  margin-top: -20px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

@media screen and (max-width: 992px) {
  .video-container .card .video-list .chapter-list .chapter .video-link .card-title {
    margin-top: -5px;
  }
}

.video-container .card .video-list .chapter-list .chapter .video-link .progress {
  margin-top: -11px;
}

.video-container .card .video-list .chapter-list .chapter .video-link .bullets {
  margin-top: -20px;
}

.video-container .card .video-list .chapter-list .chapter .video-link .bullets i.watched {
  color: #ffc107!important;
}

/* YouTube Videos */
.youtube-video {
  display: flex;
  margin-bottom: 250px;
}

.youtube-video .section-title {
  padding-bottom: 40px;
}

.youtube-video .section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.youtube-video .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(17,17,17,0.5);
  margin: 4px 10px;
}

.youtube-video .section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: red;
}

.youtube-video .section-title .subscribe-badge {
  position: relative;
  top: -45px;
  left: 330px;
}

.youtube-video .youtube-slider {
  overflow: hidden;
}

.youtube-video .youtube-link {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  background: #fff;
}

.youtube-video .youtube-slider .card img {
  border-top: 15px!important;
}

.youtube-video .youtube-slider .swiper-slide .card .card-img-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.youtube-video .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.youtube-video .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ffc107;
}

.youtube-video .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc107;
}

.youtube-video .youtube-slider .swiper-slide .card {
  box-shadow: none;
  border: 1px solid #ececec;
}

.youtube-video .youtube-slider .swiper-slide .card .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ffcc33 50%, rgb(255, 204, 51, 0.2) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(28% - 47px);
  overflow: hidden;
}

.youtube-video .youtube-slider .swiper-slide .card .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.youtube-video .youtube-slider .swiper-slide .card .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgb(255, 204, 51);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.youtube-video .youtube-slider .swiper-slide .card .play-btn:hover::after {
  border-left: 15px solid #ffcc33;
  transform: scale(20);
}

.youtube-video .youtube-slider .swiper-slide .card .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* Pricing */
.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(var(--bs-white-rgb), 0.5);
}

.pro-bundle-icon-holder {
  background-color: #ffc107!important;
}

.pro-bundle-icon-holder .icon {
  color: #111111!important;
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size)*1.5);
  height: calc(var(--bs-icon-size)*1.5);
}

.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size)*2);
  height: calc(var(--bs-icon-size)*2);
  color: #000!important;
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), 0.2);
}

.basic-bundle-pricing-icon-holder {
  background-color: #ececec!important;
  border: 2px solid #ececec;
}

.basic-bundle-pricing-icon-holder .icon {
  color: #111111!important;
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size)*1.5);
  height: calc(var(--bs-icon-size)*1.5);
}

.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size)*2);
  height: calc(var(--bs-icon-size)*2);
  color: var(--bs-primary);
}

/*Pricing Page - SUB */
/* Desktop Optimized Version */
#pricing {
    display: flex;
    justify-content: end;
    align-items: end;
    font-family: 'Inter', sans-serif;
    background: #f7f3f5;
    border-radius: 20px;
}

    #pricing .text-end {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }

    #pricing .form-check-input {
        width: 45px;
        height: 25px;
        margin-top: 10px;
    }

    #pricing .form-check-label {
        font-size: 20px;
        line-height: 43px;
    }

        #pricing .form-check-label span {
            color: #ffcc33;
            font-weight: 800;
        }

            #pricing .form-check-label span::after {
                content: "";
                display: block;
                position: relative;
                bottom: 5px;
                left: 65px;
                right: -12px;
                width: 140px;
                height: 12px;
                margin: 0 auto;
                background-image: url(/assets/img/line.svg);
                background-repeat: no-repeat;
            }

    #pricing .card {
        padding: 10px 20px;
    }

        #pricing .card .card-body .price {
            margin-top: -15px;
            margin-bottom: 15px;
            font-size: 40px;
            font-weight: 900;
            font-family: 'Inter', sans-serif;
            color: #000;
        }
        #pricing .price {
            margin-top: -15px;
            margin-bottom: 15px;
            font-size: 40px;
            font-weight: 900;
            font-family: 'Inter', sans-serif;
            color: #000;
        }

            #pricing .card .card-body .price .cents {
                position: absolute;
                font-size: 15px;
                margin-top: 7px !important;
            }

            #pricing .card .card-body .price .subscription-type {
                font-size: 15px;
                font-weight: 500;
            }

        #pricing .card .card-body .package-features h5 {
            font-size: 18px;
            font-weight: 600;
        }

        #pricing .card .card-body .package-features ul {
            position: relative;
            margin-left: -35px;
        }

        #pricing .card .card-body .package-features .no-bullet {
            list-style: none;
        }

        #pricing .card .card-body .package-features .features-list i {
            font-size: 20px;
            color: #198754;
        }

        #pricing .card .card-body .package-features .features-list span {
            position: absolute;
            margin-top: 0.8px;
            font-size: 18px;
            color: #888888;
        }

    #pricing .compare-plans {
        position: relative;
        margin-top: 100px !important;
    }

        #pricing .compare-plans h2 {
            font-size: 30px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
        }

        #pricing .compare-plans .form-switch label {
            position: relative;
            font-size: 16px;
            margin-top: 2px;
        }

        #pricing .compare-plans .package-title {
            font-size: 18px;
            font-weight: 500;
            color: #111111;
            font-family: "Poppins", sans-serif;
        }

        #pricing .compare-plans .price {
            margin-bottom: 15px;
            font-size: 30px;
            font-weight: 900;
            font-family: 'Inter', sans-serif;
            color: #000;
        }

            #pricing .compare-plans .price .cents {
                position: absolute;
                font-size: 12px;
                margin-top: 5px;
            }

            #pricing .compare-plans .price .subscription-type {
                font-size: 10px;
                font-weight: 500;
            }

        #pricing .compare-plans .accordion .accordion-item .accordion-header .pro {
            position: relative;
            margin-left: 45px;
        }

        #pricing .compare-plans .accordion .accordion-item .accordion-header .guru {
            position: relative;
            margin-left: 10px;
        }

        #pricing .compare-plans .accordion .accordion-item .accordion-header .business {
            position: relative;
            margin-left: 10px;
        }

        #pricing .compare-plans .accordion .accordion-item .accordion-header .indicators .bi-circle-fill,
        #pricing .compare-plans .accordion .accordion-item .accordion-header .indicators .bi-circle {
            font-size: 8px;
            color: #83C583;
        }

        #pricing .compare-plans .accordion .accordion-item .accordion-collapse .accordion-body .pro {
            position: relative;
            margin-left: 32px;
        }

        #pricing .compare-plans .accordion .accordion-item .accordion-collapse .accordion-body .guru {
            position: relative;
            margin-left: 43px;
        }

        #pricing .compare-plans .accordion .accordion-item .accordion-collapse .accordion-body .business {
            position: relative;
            margin-left: 52px;
        }

.accordion-button::after {
    display: none;
}

#pricing .compare-plans .additional-features .plan-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
}

#pricing .compare-plans .additional-features .pro {
    position: relative;
    margin-left: 43px;
}

#pricing .compare-plans .additional-features .guru {
    position: relative;
    margin-left: 42px;
}

#pricing .compare-plans .additional-features .business {
    position: relative;
    margin-left: 41px;
}

#pricing .compare-plans .additional-features .plan-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #000;
}

#pricing .custom-plan {
    margin-top: 150px;
}

    #pricing .custom-plan h2 {
        font-family: 'Inter', sans-serif;
    }

    #pricing .custom-plan .contact-us {
        padding: 20px 50px;
        font-size: 16px;
        font-weight: 600;
    }

/* Tablet Optimized Version */
@media only screen and (min-width: 1024px) {
    #pricing {
        background: none;
    }

        #pricing h1 {
            font-size: 24px;
            color: #000;
            font-family: 'Inter', sans-serif;
        }

        #pricing .mobile-version {
            display: none;
        }

        #pricing .form-check-input {
            width: 45px;
            height: 25px;
            margin-top: 1.5px;
        }

        #pricing .form-check-label {
            font-size: 16px;
            line-height: 43px;
            margin-top: -7px;
        }

            #pricing .form-check-label span {
                color: #ffcc33;
                font-weight: 800;
            }

                #pricing .form-check-label span::after {
                    content: "";
                    display: block;
                    position: relative;
                    bottom: 10px;
                    left: 65px;
                    right: -12px;
                    width: 140px;
                    height: 12px;
                    margin: 0 auto;
                    background-image: url(/assets/img/line.svg);
                    background-repeat: no-repeat;
                }

        #pricing .card .card-body .package-features h5 {
            font-size: 16px;
            font-family: 'Inter', sans-serif;
        }

        #pricing .card .card-body .package-features .features-list .feature span {
            font-size: 16px;
            margin-top: 3px;
        }

        #pricing .card .card-body .package-features p {
            font-size: 0.875em;
        }

        #pricing .desktop-version h2 {
            font-size: 24px;
            color: #000;
            font-family: 'Inter', sans-serif;
        }

        #pricing .desktop-version .form-check-input {
            width: 45px;
            height: 25px;
            margin-top: 10px;
        }

        #pricing .desktop-version .form-check-label {
            font-size: 16px;
            line-height: 43px;
            margin-top: -7px;
        }

        #pricing .desktop-version a {
            width: 65% !important;
        }

        #pricing .desktop-version .accordion .accordion-item .accordion-header {
            font-size: 16px;
            width: 100%;
            margin: auto;
        }

        #pricing .desktop-version .accordion .accordion-item .accordion-button-title {
            font-size: 14px !important;
        }

        #pricing .desktop-version .accordion .accordion-item .accordion-collapse .accordion-body p {
            font-size: 14px;
        }

        #pricing .desktop-version .accordion .accordion-item .accordion-collapse .accordion-body .pro {
            position: relative;
            margin-left: 38px;
        }
}

/* Mobile Optimized Version */
@media (max-width: 767px) {
    #pricing {
        width: auto;
        background: none;
    }

        #pricing .desktop-version {
            display: none;
        }

        #pricing .mobile-version {
            display: block;
        }

            #pricing .mobile-version h2 {
                font-size: 24px;
                color: #000;
                font-family: 'Inter', sans-serif;
            }

            #pricing .mobile-version .nav-pills {
                padding: 10px 10px 0px;
                border-radius: 50px;
                background: rgba(255, 193, 7, 0.1);
                justify-content: space-between;
            }

                #pricing .mobile-version .nav-pills .nav-item {
                    position: relative;
                    text-align: center;
                }

                    #pricing .mobile-version .nav-pills .nav-item button {
                        border-radius: 50px;
                        background: transparent;
                        color: #aaa;
                        font-weight: 500;
                        width: 160px;
                        transition: 0.3s;
                    }

                    #pricing .mobile-version .nav-pills .nav-item .nav-link.active {
                        background: #fff;
                        color: #FFC107;
                        box-shadow: 0.5px 1px 15px rgba(255, 193, 7, 0.3);
                    }

            #pricing .mobile-version .tab-content .tab-pane .accordion .accordion-item .accordion-header .accordion-button-title {
                font-size: 12px;
                font-weight: 600;
            }

            #pricing .mobile-version .tab-content .tab-pane .accordion .accordion-item .accordion-header .pro {
                position: relative;
                margin-left: 345px;
            }

            #pricing .mobile-version .tab-content .tab-pane .accordion .accordion-item .accordion-collapse .accordion-body .pro {
                position: relative;
                margin-left: 418.7px;
                margin-top: -39.8px;
            }

            #pricing .mobile-version .tab-content .tab-pane .features-list {
                position: relative;
                justify-content: space-between;
            }

                #pricing .mobile-version .tab-content .tab-pane .features-list .feature-item .main-feature {
                    font-weight: 600;
                    text-align: start;
                }

                #pricing .mobile-version .tab-content .tab-pane .features-list .feature-item {
                    background: #fff;
                    box-shadow: 1px 2px 15px #ddd;
                    padding: 20px;
                    border-radius: 10px;
                }

                    #pricing .mobile-version .tab-content .tab-pane .features-list .feature-item .feature-indicators {
                        display: flex;
                        position: relative;
                        justify-content: end;
                        margin-top: -16px;
                        font-size: 10px;
                        color: #83C583;
                    }

                    #pricing .mobile-version .tab-content .tab-pane .features-list .feature-item .sub-feature {
                        font-size: 14px;
                    }

                    #pricing .mobile-version .tab-content .tab-pane .features-list .feature-item .sub-feature-value {
                        display: flex;
                        position: relative;
                        justify-content: end;
                        margin-top: -22px;
                        font-size: 14px;
                    }

                #pricing .mobile-version .tab-content .tab-pane .features-list .additional-features {
                    background: #fff;
                    box-shadow: 1px 2px 15px #ddd;
                    padding: 20px;
                    border-radius: 10px;
                }

                    #pricing .mobile-version .tab-content .tab-pane .features-list .additional-features .additional-features-amount {
                        position: relative;
                        font-size: 16px;
                        color: #000;
                        font-weight: 700;
                    }

                    #pricing .mobile-version .tab-content .tab-pane .features-list .additional-features .additional-features-details .badge-secondary {
                        position: relative;
                        margin-left: 5px;
                        color: #000;
                        background: rgba(0, 0, 0, 0.1);
                    }

                    #pricing .mobile-version .tab-content .tab-pane .features-list .additional-features .additional-features-details .badge-warning {
                        position: relative;
                        margin-left: 5px;
                        color: #000;
                        background: rgb(255,193,7,0.3);
                    }
}


.card-img,
.card-img-bottom,
.card-img-top {
    width: 100%!important;
}

#chat {
    font-family: monospace;
    white-space: pre-wrap;
    border: 1px solid #ccc;
    padding: 10px;
    width: 100%;
    min-height: 50px;
}

.cursor {
    display: inline-block;
    width: 8px;
    background-color: black;
    animation: blink 1s step-start infinite;
    vertical-align: bottom;
}

@keyframes blink {
    50% {
        background-color: transparent;
    }
}
#chatbox-btn {
   height: 0;
}