@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");

@font-face {
    font-family: "Summernote";
    src: url("../fonts/summernote.woff2") format("woff2");
}

:root {
    --primary-color: #4cb3b7;
    --secondary-color: #fb5735;
    --color-star: #fdb547;
    --background-btn: #2994ae;
    --true-red: red;
    --true-green: green;
    --body-color: #f6f6f6;
    --bg-white: #ffffff;
    --b-color: #ddd;
    --text-dgray: #000000;
    --heading-text: #1c1c1c;
    --btn-board: #83899f;
    --weight-m: 500;
    --weight-sb: 600;
    --weight-b: 700;
    --font-family: "Mulish", sans-serif;
    --upper-font-family: "Merriweather", serif;
}
::-webkit-scrollbar {
    height: 8px;

    width: 8px;
}

::-webkit-scrollbar-track {
    background: #4cb3b738;
}

::-webkit-scrollbar-thumb {
    background: var(---body-color);
}

::-webkit-scrollbar-thumb:hover {
    background: #4cb3b7;
}
html {
    height: 100%;
}

.dropdown-menu {
    transform: translate3d(2px, 30.5px, 0px) !important;
}

body {
    font-family: var(--font-family);
    /* min-height: 100%; */
    color: var(--text-dgray);
    background-color: var(--body-color);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    height: auto;
}

a {
    color: var(--bg-white);
    text-decoration: none;
}

ul,
li {
    margin: 0;
    padding: 0;
}

i {
    font-weight: var(--weight-sb);
}

/* headings */

.dashboardHeading h1 {
    color: var(--text-dgray);
    font-family: var(--upper-font-family);
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.customHeading h2 {
    color: var(--text-dgray);
    font-family: var(--upper-font-family);
    font-size: 34px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: 42px;
    letter-spacing: -0.68px;
}

.customLessonCard h3 {
    color: var(--bg-white);
    font-family: var(--font-family);
    font-size: 24px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: 24px;
    letter-spacing: -0.48px;
}

.lessonInfo h4 {
    color: var(--heading-text);
    font-family: var(--font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: var(--weight-m);
    line-height: 120%;
}

.courseCardDetail h5 {
    color: var(--text-dgray);
    text-align: center;
    font-family: var(--upper-font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: 150%;
}

.dashboardHeading h6 {
    color: var(--heading-text);
    font-family: var(--font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: var(--weight-m);
    line-height: 24px;
    letter-spacing: -0.36px;
}

p {
    color: var(--heading-text);
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

i {
    color: var(--primary-color);
    font-size: 20px;
}

/* buttons */

.ABIPrimaryBtn {
    color: var(--bg-white);
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--weight-b);
    background: var(--background-btn);
    padding: 12px 50px;
    border-radius: 10px;
    text-decoration: none;
    margin: auto;
    display: flex;
    width: max-content;
    border: unset;
}

.ABIPrimaryBtn:hover {
    background: #2994aeb3;
    color: var(--text-dgray);
}

.ABIPrimaryBtn:hover a {
    color: var(--text-dgray);
}

.ABIBackBtn:hover {
    color: var(--primary-color);
}

.ABIBackBtn {
    border-radius: 10px;
    border: 1px solid var(--btn-board);
    background: var(--bg-white);
    color: var(--btn-board);
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: normal;
    padding: 12px 20px;
}

.ABICancelBtn a {
    color: var(--secondary-color);
}

.ABIPrimaryBtn:hover,
.ABICancelBtn a:hover {
    color: var(--text-dgray);
}

.ABICancelBtn {
    border-radius: 10px;
    border: 1px solid var(--secondary-color);
    background: var(--bg-white);
    color: var(--secondary-color);
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: normal;
    padding: 12px 30px;
}

.paraUndoBtn .gameQuizBar {
    justify-content: end;
    margin-bottom: 10px;
}

.paraUndoBtn .gameQuizBar button i {
    margin-right: 5px;
}

/* Form field*/
input {
    outline: none;
    border: unset;
}

.formfield {
    padding: 15px;
    background: transparent;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--btn-board);
    display: flex;
}

.formfield input {
    color: var(--heading-text);
    font-family: var(--font-family);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    border: unset;
    margin-left: 10px;
    background: transparent;
    width: 100%;
}

/* Login form start*/

section.learningCenterForm {
    height: 100%;
    margin-top: 100px;
}

.check-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.check-wrap label {
    color: var(--heading-text);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.check-wrap a {
    color: var(--heading-text);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-decoration: none;
}

form.login {
    margin: 20px 0;
}

.hr-lines {
    position: relative;
    color: var(--btn-board);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.hr-lines:before {
    content: " ";
    display: block;
    height: 2px;
    width: 30px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--b-color);
}

.hr-lines:after {
    content: " ";
    height: 2px;
    width: 30px;
    background: var(--b-color);
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
}

.hr-lines a {
    color: var(--primary-color);
    margin-left: 5px;
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.socialfield img {
    width: auto;
}

.FormImageCol {
    background: url(../images/Loginbackground.png);
    background-repeat: no-repeat;
    display: flex;
    background-size: 100% 100%;
}

.socialfield {
    padding: 15px;
    border: 1px solid var(--b-color);
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.socialfield span {
    color: var(--heading-text);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: 10px;
}

.lmsForm {
    background: var(--bg-white);
    box-shadow: 0px 0px 20px 10px rgba(113, 113, 113, 0.17);
    width: 100%;
    position: relative;
    border-radius: 10px;
}

.lmsForm:before {
    content: " ";
    height: 100px;
    width: 100px;
    background: url(../images/formbeforeimg.png);
    display: block;
    position: absolute;
    top: -40px;
    background-repeat: no-repeat;
    left: -40px;
    z-index: -1;
}

.lmsForm:after {
    content: " ";
    height: 100px;
    width: 100px;
    background: url(../images/formafterimg.png);
    display: block;
    position: absolute;
    bottom: -80px;
    background-repeat: no-repeat;
    right: -60px;
    z-index: -1;
}

.FormImageCol img {
    height: 100%;
    object-fit: contain;
    max-height: 550px;
    align-items: center;
    justify-content: center;
    display: flex;
    margin: auto;
    padding: 40px;
}

.FormCol {
    align-items: center;
    margin: auto;
    max-width: 400px;
    padding: 40px 0;
}

.login .getyourcodedigit {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.login .getyourcodedigit input {
    width: 64px;
    height: 64px;
    padding: 15px;
    background: transparent;
    border-radius: 10px;
    border: unset;
    border: 1px solid var(--btn-board);
}

input.logininput:focus-visible {
    outline: unset;
}

.formfield:focus-within,
.getyourcodedigit input:focus-within {
    outline: 1px solid var(--background-btn);
}

/* login form end */

/* Dashboard Css start*/

/* Dashboard Page sidebar */
.sidebar {
    width: 220px;
    position: fixed;
    left: 0;
    top: 0;
    background-color: var(--bg-white);
    height: 100vh;
    transition: 0.5s ease-in-out;
    z-index: 2;
}

.sidbar-logo {
    width: 100%;
    max-width: 100px;
    margin: 0 auto;
    padding: 15px 0;
    overflow: hidden;
    transition: 0.5s ease-in-out;
}

.navigation-menu {
    white-space: nowrap;
}

.navigation-menu ul > li > a {
    color: var(--text-gray);
    font-weight: var(--weight-m);
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    display: flex;
    align-items: center;
}

.navigation-menu ul > li > a .nav-icon {
    width: 25px;
    margin-right: 10px;
}

.navigation-menu ul > li.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.navigation-menu .active i {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.main-content {
    margin-left: 220px;
    width: calc(100% - 220px);
    transition: 0.5s ease-in-out;
    background: var(--body-color);
}

.header {
    width: 100%;
    height: 80px;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-content: space-between;
    padding: 0px 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
        rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    position: sticky;
    top: 0;
    z-index: 1;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: none !important;
    transition: var(--transition);
}

.lmsFooterImage {
    position: fixed;
    bottom: 0;
    left: 2%;
}

.lmsFooterImage img {
    width: 100%;
    max-width: 200px;
    transition: 0.5s ease-in-out;
    display: none;
}

.opensidebar .lmsFooterImage img {
    display: none;
}

.open-submenu ul.submenu-list li {
    margin-top: 0px;
    padding: 10px;
    list-style-type: none;
    z-index: 1;
}

.opensidebar .open-submenu ul.submenu-list li {
    padding: 5px;
}

.submenu-list {
    display: none;
}

.open-submenu .submenu-list {
    display: block;
    margin-top: 10px;
}

.opensidebar .lmsFooterImage {
    left: 0;
}

.opensidebar .sidebar {
    width: 100px;
}

.opensidebar .main-content {
    margin-left: 100px;
    width: calc(100% - 100px);
}

.navigation-menu ul > li {
    position: relative;
    padding: 13px 20px;
    color: var(--btn-board);
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: 150%;
    background-color: var(--bg-white);
}

.opensidebar .navigation-menu ul > li > a .nav-icon {
    margin-right: 0px;
}

.opensidebar .navigation-menu ul > li > a {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 16px;
    padding: 5px;
    align-items: center;
}

.opensidebar li.lessondropdown:after {
    right: 5px;
    top: 10px;
}

.opensidebar .navigation-menu ul.submenu-list > li:first-child {
    padding: unset;
    margin-top: 5px;
}

.opensidebar ul.list-inline i {
    align-items: center;
    justify-content: center;
    display: flex;
}

.opensidebar .navigation-menu ul.list-inline.list-inlinefirst > li:first-child,
.opensidebar .navigation-menu ul.list-inline.list-inlinesecond > li:first-child,
.opensidebar .navigation-menu ul.list-inline.list-inlinethird > li:first-child {
    display: none;
}

.opensidebar.navigation-menu ul > li {
    padding: 10px;
}

.opensidebar .sidbar-logo {
    width: 42%;
    border-bottom: 1px solid var(--b-color);
}

.opensidebar .navigation-menu ul > li span {
    display: none;
}

.navigation-menu ul.list-inline {
    margin-top: 30px;
}

.opensidebar ul.list-inline.list-inlinefirst {
    position: relative;
    margin-top: 70px;
}

.opensidebar ul.list-inline.list-inlinefirst:after {
    position: absolute;
    content: "GS";
    top: -30px;
    display: flex;
    color: var(--btn-board);
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: 150%;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.opensidebar ul.list-inline.list-inlinesecond {
    position: relative;
    margin-top: 60px;
}

.opensidebar ul.list-inline.list-inlinesecond:after {
    position: absolute;
    content: "LH";
    top: -30px;
    display: flex;
    color: var(--btn-board);
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: 150%;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.opensidebar ul.list-inline.list-inlinethird {
    position: relative;
    margin-top: 60px;
}

.opensidebar ul.list-inline.list-inlinethird:after {
    position: absolute;
    content: "MH";
    top: -30px;
    display: flex;
    color: var(--btn-board);
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: 150%;
    align-items: center;
    justify-content: center;
    width: 100%;
}

ul.list-inline i {
    max-width: 35px;
    min-width: 35px;
    color: #4f4f4f;
    width: 100%;
}

.navigation-menu ul > li span {
    color: var(--text-dgray);
    font-weight: var(--weight-sb);
}

.navigation-menu ul > li.active span {
    color: var(--bg-white);
    font-weight: var(--weight-b);
}

.header .searchBar {
    padding: 10px;
    margin-left: 20px;
    border-radius: 10px;
    border: 1px solid var(--btn-board);
    background: rgba(255, 255, 255, 0.8);
}

.header .searchBar button {
    background: transparent;
    border: none;
}

.fa-stack[data-count]:after {
    position: absolute;
    right: 0%;
    top: 1%;
    content: attr(data-count);
    font-size: 30%;
    padding: 0.6em;
    border-radius: 999px;
    line-height: 0.75em;
    color: var(--bg-white);
    background: var(--true-red);
    text-align: center;
    min-width: 2em;
    font-weight: bold;
}

li.lessondropdown {
    position: relative;
}

li.lessondropdown:after {
    position: absolute;
    content: "\f078";
    display: block;
    font-family: "Font Awesome 6 Free";
    right: 20px;
    top: 10px;
}

a.searchBar button {
    color: var(--primary-color);
}

/* Notification */

.rightlogoutbtnbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    list-style-type: none;
}

.lmsdashboardmainloginbutton {
    padding: 5px 10px;
    border: 1px solid var(--btn-board);
    border-radius: 10px;
}

.lmsdashboardmainloginbutton img {
    width: 32px;
    margin: 0 10px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

span.name,
ul.dropdown-menu.lmsdashboarddropdownbutton.show .dropdown-item span {
    color: rgba(0, 0, 0, 0.69);
    font-family: var(--font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

ul.dropdown-menu.lmsdashboarddropdownbutton.show {
    top: 20px !important;
    border: 1px solid var(--btn-board);
    border-radius: 10px;
    width: 100%;
}

ul.dropdown-menu.lmsdashboarddropdownbutton.show .dropdown-item i {
    margin-right: 10px;
}

.lmsdashboardmainloginbutton .dropdown-toggle::after {
    display: none;
}

.rightlogoutbtnbar i {
    color: #4f4f4f;
}

.lmsNotificationbell i {
    font-size: 30px;
}

.lmsNotificationbell {
    position: relative;
}

.lmsNotificationbell:after {
    position: absolute;
    content: "3";
    background-color: var(--true-red);
    top: -15px;
    right: -15px;
    border-radius: 50%;
    padding: 2px 9px;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header > div > a.togglebtn i {
    font-size: 25px;
}

/* Getting started */

/* Dashboard inner-content start */

.inner-content {
    padding: 20px;
    overflow-y: auto;
    height: calc(100vh - 125px);
    overflow-x: hidden;
}

.dashboardCard {
    display: flex;
    background: var(--color-star);
    padding: 30px;
    border-radius: 10px;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.dashboardCard span {
    color: var(--bg-white);
    font-family: var(--font-family);
    font-size: 28px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: 32px;
    letter-spacing: -0.32px;
}

.dashboardCard2 {
    background-color: var(--primary-color);
}

.dashboardCard3 {
    background-color: var(--secondary-color);
}

.dashboardCardDesign {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0 0 0;
}

.lessonInfo span {
    color: var(--btn-board);
    font-family: var(--font-family);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-items: center;
    justify-content: start;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.aboutLessonInfo {
    display: flex;
    justify-content: start;
    align-items: center;
}

.lessonInfo {
    margin: 10px 12px 10px 12px;
    /* border-left: 4px solid #d3eff4; */
    padding: 12px;
    width: 100%;
}

.aboutLessonInfo .progressBar.progress-barwrapper {
    width: 50%;
}

.progressBar.progress-barwrapper {
    position: relative;
}

.progress {
    width: 100%;
    height: 12px;
    border-radius: 50px;
    background-color: var(--b-color);
    transition: width 300ms ease;
}

.progress-bar {
    background-color: var(--true-green);
}

.progressBar.progress-barwrapper span {
    position: absolute;
    top: -30px;
    left: 0;
    color: var(--heading-text);
    text-align: center;
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: 28px;
}

progress[value]::-webkit-progress-bar {
    width: 100%;
    height: 12px;
    border-radius: 50px;
    background-color: #e0e0e0;
    transition: width 300ms ease;
}

progress[value]::-webkit-progress-value {
    width: 0;
    border-radius: 50px;
    background-color: var(--primary-color);
    transition: width 300ms ease;
}

.progressBar {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: end;
}

.aboutLessonHeading a {
    color: var(--Tertiary, var(--secondary-color));
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: 28px;
    letter-spacing: -0.4px;
}

.aboutLessonHeading a i {
    color: var(--Tertiary, var(--secondary-color));
    margin-left: 10px;
}

.aboutLessonHeading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 30px 0;
}

.about40HoursHeading {
    margin: 30px 20px 60px 30px;
    border-left: 2px solid var(--b-color);
    padding-left: 40px;
}

.customDashboardDesign {
    margin-top: 40px;
}

.aboutTrainningHours {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about40HoursHeading h2 {
    margin-bottom: 30px;
}

.upcomingTaskHeading {
    padding: 0px 40px;
    border-left: 2px solid var(--b-color);
    margin: 30px 20px 20px 30px;
}

a.HoursTrainningButton {
    color: var(--Secondary-Primary-White, var(--bg-white));
    text-align: center;
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: 24px;
    letter-spacing: -0.28px;
    background: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 30px;
}

.TrainningSkipButton {
    color: var(--secondary-color);
    margin-left: 40px;
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: 24px;
    letter-spacing: -0.28px;
}

.upcomingTaskHeading h2 {
    margin-bottom: 30px;
}

footer {
    background-color: var(--bg-white);

    margin-left: 220px;

    position: fixed;

    overflow: hidden;

    left: 0;

    right: 0;

    bottom: 0;

    padding: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,

    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.opensidebar footer {
    margin-left: 100px;
}

.dashboardHeading h1 i {
    font-size: 40px;
    margin-right: 15px;
}

.aboutLessonInfo:hover {
    background: #24b1c736;
    margin-bottom: 10px;
    padding: 5px 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.aboutLessonInfo {
    background: #dddddd57;
    margin-bottom: 10px;
    padding: 5px 15px;
    border-radius: 10px;
}

/* Dashboard inner-content end */

/* Learning space*/

/* course inner-content start*/

.courseDetailscards {
    border-radius: 10px;
    border: 1px solid var(--b-color);
    background: var(--bg-white);
    position: relative;
}

.courseDetailscards a {
    position: absolute;
    background: var(--secondary-color);
    padding: 11px 18px;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    color: var(--bg-white);
    text-align: center;
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--weight-m);
    line-height: 24px;
}

.courseCardDetail h5 {
    max-height: 60px;
    overflow: auto;
    min-height: 60px;
}
.courseCardDetail {
    padding: 20px;
}

.courseCarddetailbar {
    /* margin: 20px 0 45px 0;*/
}

.checked {
    color: var(--color-star);
}

.unchecked {
    color: var(--text-dgray);
}

.starRating {
    margin: 20px 0;
}

.reviewsDetailnumber {
    color: var(--btn-board);
    font-family: var(--font-family);
    font-size: 12px;
    font-style: normal;
    font-weight: var(--weight-m);
    line-height: normal;
}

.reviewsDetail {
    color: var(--btn-board);
    font-family: var(--font-family);
    font-size: 12px;
    font-style: normal;
    font-weight: var(--weight-m);
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviewsDetail i {
    margin-right: 10px;
}

.reviewsDetail div {
    display: flex;
    align-items: center;
}

.courseCard img {
    border-radius: 10px 10px 0px 0;
    width: 100%;
    height: 250px;
    /* object-fit: fill; */
    object-fit: cover;
}

.courseCard {
    min-height: 250px;
    width: 100%;
}

.starRating i {
    font-size: 12px;
}

.row.cardsRow .col-lg-3.col-md-6 {
    margin-bottom: 50px;
}

/* course inner-content end*/

/* Workspace inner-content start*/

.workspacebtn {
    justify-content: end !important;
    margin-bottom: 20px;
}

.createc-by .william-joe p {
    font-family: var(--font-family);
    font-size: 14px;
}

.william-joe .grey-text {
    color: var(--btn-board);
    font-family: var(--font-family);
}

.created-img img {
    height: auto;
    width: 42px;
    object-fit: cover;
}

.iconons-content i {
    color: var(--primary-color);
}

.icons-fa .icon-text {
    font-size: 12px;
    font-weight: var(--weight-m);
    color: var(--btn-board);
    font-family: var(--font-family);
}

.tab-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--b-color);
    font-family: var(--font-family);
    font-weight: var(--weight-m);
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
}

.tab-box .tab_btn.active {
    color: var(--primary-color);
}

.tab-box .tab_btn {
    color: var(--text-dgray);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

button.tab_btn.my_Button[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn_Checked {
    position: absolute;
    left: -9999px;
}

.btn_Checked + label {
    display: inline-block;
    position: relative;
    font-size: 1.2rem;
    cursor: pointer;
}

.btn_Checked + label::before,
.btn_Checked + label::after {
    position: absolute;
    transition: all 0.2s;
    content: "";
}

.btn_Checked + label::before {
    top: -12px;
    left: 0;
    width: 34px;
    height: 17px;
    background-color: var(--true-red);
    border-radius: 8px;
}

.btn_Checked:checked + label::before {
    background-color: var(--true-green);
}

.btn_Checked + label::after {
    top: -10px;
    left: 2px;
    width: 13px;
    height: 13px;
    background-color: var(--bg-white);
    border-radius: 50%;
}

.btn_Checked:checked + label::after {
    left: 20px;
}

.btn_Checked + label span {
    position: absolute;
    bottom: 0;
    left: 0;
}

.tab-box .tab_btn i {
    padding: 10px;
    font-size: 12px;
}

.conten_box {
    padding: 20px;
}

.conten_box .content.active {
    display: block;
}

.conten_box .content {
    display: none;
    animation: moveing 0.5s ease;
}

.conten_box .content h4 {
    margin-bottom: 10px;
}

.content p {
    font-size: 16px;
    color: var(--heading-text);
}

.conten_box .ul-list ul li {
    font-size: 14px;
    font-family: var(--font-family);
    color: var(--heading-text);
    font-weight: var(--weight-m);
    font-size: 16px;
    line-height: 25px;
}

.workspacecard {
    border: 1px solid var(--b-color);
    border-radius: 10px;
}

.workspaceCardbody {
    border-bottom: 1px solid var(--b-color);
}

.workspaceBtn {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 16px;
    font-family: var(--font-family);
    outline: none !important;
}

.service-delivery .dashboardHeading h1 {
    color: var(--text-dgray);
    font-family: var(--upper-font-family);
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}

.card-body .lecture-bar #Setting-color {
    color: var(--secondary-color) !important;
}

/* Workspace Lesson */

.left-iconworkspace {
    text-align: end;
    margin-bottom: 20px;
}

.progressbar-pear.row {
    padding-bottom: 20px;
}

.dashboardHeading .left-iconworkspace span {
    color: var(--btn-board);
}

.dashboardHeading .left-iconworkspace i {
    color: var(--secondary-color);
}

.custom-accordion .accordion-button {
    background-color: #24b1c721;
    border-radius: 10px;
}

.custom-accordion .accordiion-heading .lessonvideoaccordion {
    color: var(--primary-color);
    font-weight: var(--weight-sb);
    font-size: 20px;
    font-family: var(--font-family);
}

.custom-accordion .accordion-content {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 15px;
}

.custom-accordion .accordion-icon {
    display: flex;
    align-items: center;
    color: var(--btn-board);
    gap: 5px;
}

.custom-accordion .accordion-icon i {
    color: var(--btn-board);
}

.custom-accordion .accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: url(../images/Frame.png) !important;
    background-color: var(--primary-color);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
    padding: 20px;
    background-position: center;
    border-radius: 50%;
}

.workspacecheckbox {
    display: flex;
    gap: 10px;
    align-items: center;
}

.workspacecheckbox::before {
    content: "";
    position: absolute;
    display: block;
    width: 2px;
    opacity: 0.5;
    background: var(--primary-color);
    height: 100%;
    left: 8.5px;
}

.workspacecheckbox input {
    width: 18px;
    height: 18px;
    position: relative;
    border: 1px solid var(--primary-color);
}

.workspacecheckbox a {
    font-size: 16px;
    font-weight: var(--weight-sb);
    padding: 20px 10px;
    color: var(--heading-text);
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

.video-description .vdtext {
    color: var(--text-dgray);
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--weight-m);
    line-height: normal;
}

.video-description .vdcontext {
    color: #696974;
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.video-description .spanvdcontext {
    color: var(--primary-color);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.mentorBtn {
    color: var(--primary-color);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.workspaceBtn:hover {
    border: 1px solid var(--text-dgray);
}

/* Manage Space Start */
/* User */
/* data table */
.customDataTable.data-table {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--bg-white);
    overflow-x: auto;
}

.cstmcard.managehubtable.customDataTable.data-table {
    padding: 30px 0;
}

.customDataTable.data-table tr td {
    color: var(--btn-board);
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--weight-m);
    line-height: 32px;
    padding: 12px;
}

.customDataTable.data-table th {
    color: var(--bg-white);
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--weight-m);
    line-height: 32px;
    padding: 12px;
    background-color: var(--primary-color);
}

.customDataTable.data-table .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.customDataTable.data-table label,
.customDataTable.data-table .dataTables_info {
    color: var(--btn-board);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

.customDataTable.data-table ul.pagination li a {
    background-color: var(--bg-white);
    color: var(--btn-board);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 1px solid var(--b-color);
    padding: 10px;
}

.customDataTable.data-table ul.pagination {
    gap: 16px;
    padding-top: 30px;
}

.customDataTable.data-table div.dataTables_wrapper div.dataTables_info {
    padding-top: 30px;
}

.customDataTable.data-table .icon i:first-child {
    border: 1px solid var(--b-color);
    padding: 5px;
    color: var(--background-btn);
}

.customDataTable.data-table .icon i:nth-child(2) {
    border: 1px solid var(--b-color);
    padding: 5px;
    color: #008000;
}

.customDataTable.data-table .icon i:nth-child(3) {
    border: 1px solid var(--b-color);
    padding: 5px;
    color: var(--secondary-color);
}

.userHeadingDiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.userHeadingDiv .addUserDiv a {
    color: var(--btn-board);
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    padding: 12px 20px;
    border: 1px solid var(--btn-board);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.userHeadingDiv .addUserDiv a i {
    margin-left: 10px;
    color: var(--btn-board);
}

/* Add New User */
.addInputLabel {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.addInputLabel input {
    border-radius: 12px;
    border: 1px solid var(--btn-board);
    padding: 15px;
    width: 100%;
    margin-bottom: 30px;
    font-family: var(--font-family);
}

.addInputLabel label {
    display: block;
    color: var(--btn-board);
    font-family: var(--font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 10px;
}

.addInputLabel div {
    width: 50%;
}

.addInputLabel select {
    border-radius: 12px;
    border: 1px solid var(--btn-board);
    padding: 15px;
    width: 100%;
    margin-bottom: 30px;
    font-family: var(--font-family);
}

.userBtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.userBtn i {
    margin-right: 10px;
}
.userBtn #submit-button {
    justify-content: end;
}

.userNextBtnDiv {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newUserModalbody h3 {
    color: var(--text-dgray);
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 20px 0 40px 0;
    text-align: center;
}

.newUserModalbody img {
    margin: auto;
    display: flex;
    margin-top: 40px;
}

/* Notification */

.notifinfo {
    margin-top: 20px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 10px;
}

.notifinfo img {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    object-fit: cover;
    margin: 0px auto;
}

.notifinfo h6 {
    position: relative;
}

.notifibox h6::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 20px;
    position: absolute;
    top: 8px;
    left: 120px;
}

.notifibox small {
    color: #7d7d7d;
    font-family: var(--font-family);
    font-size: 14px;
}

.iconfa {
    padding: 8px 11px;
    border-radius: 100%;
    background: #fb563533;
}

.iconfa i {
    color: var(--secondary-color);
}

.ABIDeleteBtn {
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
    border-radius: 10px;
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: normal;
    padding: 12px 30px;
}

/* ------profile----- */

.dropdown-item:hover {
    background-color: unset;
}

.dropdown-item:active {
    background-color: var(--bg-white);
}

.avatar-profile {
    width: 100%;
    margin: auto auto 47px auto;
}

.row.custom-profile-inputs h2 {
    font-size: 25px;
}

#profilefile-input {
    display: none;
}

.profilepreview {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: auto auto 20px;
    box-shadow: 0 0 20px rgba(170, 170, 170, 0.2);
}

.profilepreview img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.profilepreview label {
    font-weight: var(--weight-sb);
    cursor: pointer;
    color: var(--bg-white);
    border-radius: 8px;
    padding: 10px 20px;
}

/* setting */

.form-check-inline {
    margin-top: 20px;
}

.videoscheckbox label {
    font-size: 16px;
    font-family: var(--font-family);
}

.defaultvideo label {
    font-size: 16px;
    font-family: var(--font-family);
    color: var(--heading-text);
    font-weight: var(--weight-m);
}

.togglebox label {
    font-size: 16px;
    font-family: var(--font-family);
    color: var(--heading-text);
    font-weight: var(--weight-m);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border: none;
    font-size: 20px;
}

.custom-invalid-feedback {
    display: block !important;
}

.custom-invalid-feedback {
    width: 100%;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 0.875em;
    color: var(--true-red);
}

/*lesson */
button.form-filter {
    background: var(--background-btn);
    color: var(--bg-white);
    border: 1px solid var(--btn-board);
    padding: 15px;
    width: 100%;
    font-family: var(--font-family);
    border-radius: 12px;
}

.addInputLesson {
    margin-top: 30px;
}

/* lesson category */
.lessonCategorydiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.courseDetailscards .lessonCategorydiv a {
    position: unset;
}

.courseDetailscards .lessonCategorydiv .CatagoryEditButtons {
    border: unset;
    background-color: var(--bg-white);
}

.CatagoryEditButtons a {
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    background: var(--bg-white);
    color: var(--primary-color);
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: normal;
}

.CatagoryDeleteButtons a {
    border-radius: 10px;
    border: 1px solid var(--secondary-color);
    background: var(--bg-white);
    color: var(--secondary-color);
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: normal;
}

.courseDetailscards .lessonCategorydiv .CatagoryEditButtons a i {
    font-size: 16px;
    margin-left: 10px;
}

.courseDetailscards .lessonCategorydiv .CatagoryDeleteButtons a i {
    font-size: 16px;
    margin-left: 10px;
}

/* Add New Lesson */

.lesssonManeTabs.nav-tabs {
    border-bottom: none;
}

.nav-tabs.lesssonManeTabs .nav-link {
    border-radius: 5px;
    padding: 10px 20px;
    color: var(--text-dgray);
    border: 1px solid var(--primary-color);
}

.nav-tabs.lesssonManeTabs li a i {
    font-size: 23px;
}

.nav-tabs.lesssonManeTabs .nav-item i {
    color: var(--primary-color);
}

.nav-tabs.lesssonManeTabs .nav-link small {
    font-size: 14px;
    font-family: var(--font-family);
}

.tab-content.lessonContentTabs label {
    display: inline-block;
    font-size: 18px;
    font-family: var(--font-family);
    color: var(--btn-board);
    margin-bottom: 0.5rem;
}

.tab-content.lessonContentTabs select option {
    font-size: 18px;
    font-family: var(--font-family);
    color: var(--text-dgray);
}

.check-box.customLessonCheckbox label {
    font-size: 18px;
    color: var(--btn-board);
}

.customFormCheck .form-check-input[type="checkbox"] {
    border: 1px solid var(--primary-color) !important;
    border-radius: 2px;
}

.tab-pane .btnplus {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 5px;
}

.tab-pane .btnplus i {
    font-size: 16px;
    color: var(--bg-white);
}

.formcontrolinput .form-control {
    max-width: 100% !important;
    height: 100px;
}

.card-img-upload .card {
    width: 18rem;
    background: #24b1c746;
    border: none;
    color: var(--text-dgray);
    border-radius: 17px;
}

.btn-groups .btn-outline {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 18px;
}

.btn-groups .btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 18px;
}

/*play pause btn */
.custom_Video_Div .video-container {
    border-radius: 4px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-container .video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.workspaceWrapper {
    position: relative;
}

.video-container video {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.play-button-wrapper #circle-play-b {
    cursor: pointer;
    pointer-events: auto;
}

.play-button-wrapper #circle-play-b svg {
    width: 50px;
    height: 50px;
    fill: var(--bg-white);
    stroke: var(--bg-white);
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    opacity: 0.9;
}

.ABIPreBtn,
.ABINextBtn {
    border-radius: 10px;
    border: 1px solid var(--btn-board);
    background: var(--bg-white);
    color: var(--btn-board);
    font-family: var(--font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: normal;
    padding: 12px 30px;
    margin: 10px 0;
}

.userBtn .ABINextBtn i {
    margin-right: 0px;
    margin-left: 10px;
}

.userBtn a:hover {
    color: var(--primary-color);
}

/* Loader */
.overlay_Loader {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
    cursor: pointer;
}

.Loader {
    width: 100px;
    height: 100px;
    display: grid;
    border: 4.5px solid #0000;
    border-radius: 50%;
    border-color: #fdb545 #0000;
    animation: Loader-reader 1s infinite linear;
    top: 50%;
    left: 50%;
    position: absolute;
}

.Loader::before,
.Loader::after {
    content: "";
    grid-area: 1/1;
    margin: 2.2px;
    border: inherit;
    border-radius: 50%;
}

.Loader::before {
    border-color: var(--primary-color) #0000;
    animation: inherit;
    animation-duration: 0.5s;
    animation-direction: reverse;
}

.Loader::after {
    margin: 8.9px;
}

@keyframes Loader-reader {
    100% {
        transform: rotate(1turn);
    }
}

/*Games */
.customHeading {
    width: 50%;
}

.dashboardHeading.back-btn > h1 > i {
    font-size: 35px;
}

.customHeading h2 {
    font-size: 25px;
}

span.given.ui-draggable-disabled {
    opacity: 0.5;
}

.gamesButton {
    border-radius: 15px;
    background: linear-gradient(180deg, #cae0e1 0%, var(--primary-color) 100%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.18),
        0px -6px 0px 0px rgba(0, 0, 0, 0.25) inset;
    padding: 20px;
    display: block;
    color: var(--text-dgray);
    text-align: center;
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--weight-m);
    line-height: normal;
    max-width: 430px;
    width: 100%;
    margin: 10px auto;
}

a.gamesButton:hover {
    color: var(--bg-white);
}

a.nextGameBtn:hover {
    color: var(--text-dgray);
    background: #fb573570;
}

.gamesCardDesign {
    background: var(--bg-white);
}

.gamesCardDesign .row {
    align-items: center;
    justify-content: center;
}

.photoGameRow {
    padding: 20px;
    gap: 20px;
    border-radius: 10px;
    background: var(--bg-white);
    border: 1px solid var(--b-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
        rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
}

.nextGameBtn {
    border-radius: 15px;
    background: var(--secondary-color);
    padding: 10px 100px;
    color: var(--bg-white);
    text-align: center;
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: normal;
    text-align: center;
    display: inline-block;
    margin: 20px auto 0;
    align-items: center;
    justify-content: center;
    width: max-content;
    display: flex;
}

.photoGameRow ul {
    column-count: 2;
    list-style: none;
    width: 100%;
}

.photoGameRow input[type="checkbox"][id^="cb"] {
    display: none;
}

.photoGameRow label {
    /* padding: 10px; */
    position: relative;
    cursor: pointer;
    height: calc(100% - 30px);
    width: 100%;
    margin: auto;
    text-align: center;
}

li.pgameImg {
    margin-top: 15px;
}

.photoGameRow img {
    /* object-fit: cover; */
    /* width: 300px;
    height: 250px; */
    border-radius: 12px;
}

.photoGameRow label:before {
    background-color: var(--bg-white);
    color: var(--bg-white);
    content: " ";
    display: block;
    border-radius: 10px;
    border: 1px solid var(--bg-white);
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 28px;
    z-index: 1;
    transition-duration: 0.4s;
    transform: scale(0);
}

.correct :checked + label:before {
    content: "\f00c";
    background-color: var(--true-green);
    /* transform: scale(1); */
    font-size: 35px;
    font-family: "Font Awesome 6 Free";
    font-weight: var(--weight-sb);
    display: flex;
    align-items: center;
    justify-content: center;
}

.correct :checked + label img {
    transform: scale(0.9);
    z-index: -1;
    border: 8px solid var(--true-green);
}

.gameQuizBar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 20px;
    width: 50%;
    gap: 20px;
}

.incorrect :checked + label:before {
    background: var(--true-red);
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: var(--weight-sb);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1);
    font-size: 35px;
}

.incorrect :checked + label img {
    border: 8px solid var(--true-red);
    transform: scale(0.9);
    z-index: -1;
}

.gameQuizBar button {
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-align: center;
    font-family: var(--font-family);
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    background-color: transparent;
    padding: 10px;
}

.gameQuizBar .progressBar {
    width: 50%;
}

.dashboardHeading.back-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboardHeading.back-btn i {
    margin-right: 10px;
}

/* drag & drop games */

.columnSection {
    width: 50%;
}

.columnSection ul {
    column-count: unset;
}

.columnSection ul.picturematchdragdroplist li {
    /* width: 250px; */
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connected-sortable {
    margin: 0 auto;
    list-style: none;
    width: 90%;
}

li.draggable-item {
    padding: 30px;
    transition: box-shadow 0.25s ease-in-out;
    color: var(--text-dgray);
    text-align: center;
    font-family: var(--font-family);
    font-size: 25px;
    font-style: normal;
    font-weight: var(--weight-b);
    line-height: normal;
    margin-bottom: 20px;
    border-radius: 10px;
}

li.draggable-item:hover {
    cursor: pointer;
}

/* styles during drag */
li.draggable-item.ui-sortable-helper {
    background-color: var(--body-color);
    -webkit-box-shadow: 0 0 8px rgba(53, 41, 41, 0.8);
    -moz-box-shadow: 0 0 8px rgba(53, 41, 41, 0.8);
    box-shadow: 0 0 8px rgba(53, 41, 41, 0.8);
    transform: scale(1.015);
    z-index: 100;
}

li.draggable-item.ui-sortable-placeholder {
    background-color: var(--b-color);
    -moz-box-shadow: inset 0 0 10px var(--text-dgray);
    -webkit-box-shadow: inset 0 0 10px var(--text-dgray);
    box-shadow: inset 0 0 10px var(--text-dgray);
}

li.draggable-item.draggableItem3 {
    border-radius: 10px;
    background: var(--secondary-color);
}

li.draggable-item.draggableItem1 {
    border-radius: 10px;
    background: var(--b-color);
    border: 1px solid var(--b-color);
}

li.draggable-item.draggableItem2 {
    border-radius: 10px;
    background: var(--color-star);
}

li.draggable-item.draggableItem {
    padding: 0 !important;
    min-height: unset !important;
}

li.draggable-item.draggable-Item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    min-height: 175px;

}

.dragdropGameRow ul {
    list-style-type: none;
}

.dragdropGameRow {
    padding: 20px;
}
/* .dragDropspace {
    margin-top: 35px !important;
} */

/* sequence drag & Drop*/
.sequencedrag {
    border: 1px solid var(--b-color);
    height: 180px;
    background-size: 100% 100%;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.sequencetarget {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: var(--text-dgray);
}

.photoGameRow ul.dragDropPuzzleImg {
    column-count: unset;
    display: block;
}

.photoGameRow .photoImagesize span {
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-weight: var(--weight-sb);
    margin-top: 5px;
}
.woScrollgame {
    max-width: 600px;
    margin: 0 auto;
    /* width: 100%; */
}

.dragDropFirstDiv.sequenceDragDiv ul.dragDropMatchImg li:nth-child(1),
.dragDropFirstDiv.sequenceDragDiv ul.dragDropMatchImg li:nth-child(3) {
    margin-bottom: 15px;
}

ul.dragDropMatchdragImg li:nth-child(1),
ul.dragDropMatchdragImg li:nth-child(3) {
    margin-bottom: 15px;
}

/* drag & Drop 4th screen */
ul.dragDropMatchImg.dragDropPuzzleImg {
    gap: 0;
    padding: 0;
}

ul.dragDropMatchImg.dragDropPuzzleImg .sequencedrag {
    margin: 0;
}

ul.dragDropMatchImg.dragDropPuzzleImg .sequencetarget {
    margin: 0;
    background-size: 100% 100%;
    border: unset;
}

.gamesDescription.puzzledescription {
    margin-top: 20px;
}

.gamesDescription.puzzledescription p {
    align-items: center;

    border: 1px solid var(--b-color);

    margin-bottom: 10px;

    height: 60px;

    overflow-y: auto;
    width: 100%;

    padding: 10px;
}

.gamesDescription.puzzledescription p b {
    margin-right: 10px;
}

.photoImagesize img {
    height: 190px;
    width: 250px;
    object-position: center;
}
.photoGameRow.dragDropScreen {
    gap: unset;
}
.scrambler-img {
    width: 180px;
    height: 120px;
}
/* spinner*/

/* .spinner {
    height: 400px;
    width: 400px;
    position: relative;
    display: flex;
    padding: 5px;
    justify-content: center;
    align-items: center;
    margin: 40px auto 40px;
    border-radius: 50%;
    box-shadow: 0 0 0 5px var(--text-dgray), 0 0 0 15px var(--bg-white),
        0 0 0 18px #111;
}

.spinner .spin {
    position: absolute;
    background-color: rgb(255, 255, 255);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: var(--weight-sb);
    text-transform: uppercase;
    box-shadow: 1px 1px 2px 1px;
    letter-spacing: 0.1em;
    cursor: pointer;
    z-index: 10;
    user-select: none;
}

.spinner .spin::before {
    content: "";
    position: absolute;
    top: -20px;
    width: 30px;
    height: 30px;
    background-color: rgb(255, 255, 255);
    clip-path: polygon(50% 0%, 22% 100%, 78% 100%);
} */

.spinner .wheel {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: black;
    overflow: hidden;
    border-radius: 50%;
    transition: transform 5s ease-in-out;
}

.spinner .wheel .number {
    position: absolute;
    width: 50%;
    height: 50%;
    transform-origin: bottom right;
    background: var(--clr);
    transform: rotate(calc(40deg * var(--i)));
    clip-path: polygon(0 0, 59% 0, 100% 100%, 0 59%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner .wheel .number span {
    transform: rotate(45deg);
    font-size: 16px;
    font-weight: var(--weight-b);
    color: var(--bg-white);
    text-shadow: 3px 5px 2px rgba(0, 0, 0, 0.15);
    user-select: none;
}

.spinner .spin:active {
    border: 2px solid #333;
}

.spinnerWrong {
    color: var(--true-red);
    font-weight: var(--weight-b);
    font-size: 16px;
}

.spinnerCorrect {
    color: var(--true-green);
    font-size: 16px;
    margin: 15px 0;
}

.spinnerWrong i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.spinnerCorrect i {
    color: var(--primary-color);
    margin-right: 10px;
}

ol.multiplequizes {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
    font-size: 18px;
}

p.question {
    font-size: 20px;
    margin-top: 20px;
}

ol.multiplequizes li input {
    margin-right: 10px;
}

h4.multiplequizzesmaindiv {
    font-size: 25px;
    color: var(--text-dgray);
    margin: 20px 0;
}

.worddragmaindiv li {
    width: 200px;
    height: 200px;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.worddragcol1 {
    background: var(--primary, #fdb74c);
    background-size: contain;
}

.worddragcol2 {
    background: var(--primary-color);
    background-size: contain;
}

.worddragcol3 {
    background: #c4c4c4;
    background-size: contain;
}

.worddragcol4 {
    background: var(--secondary-color);
    background-size: contain;
}

.worddragmaindiv.drahgablefruits li {
    width: 100px;
    height: 100px;
}

.colordrag {
    min-height: 200px;

    width: 50%;

    flex: 0 0 auto;

    max-width: calc(50% - 10px);

    border-radius: 5px;

    background-size: 100% 100%;

    background-repeat: no-repeat !important;

    background-position: center !important;

    border: 1px solid var(--text-dgray);
}
.dragDropMainrow {
    display: block;
}

.noScrollRow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.dragDropMainrow h2 {
    font-size: 20px;
    text-align: center;
    font-family: var(--font-family);
    margin: unset;
    margin-bottom: 10px;
}

.dragDropCols.dragDropCols1 {
    margin-top: 50px;
}

.color-target {
    border: 1px solid var(--b-color);

    border-radius: 5px;

    width: 50%;

    min-height: 200px;

    max-width: calc(50% - 10px);

    background-repeat: no-repeat !important;

    background: var(--bg-white);

    background-size: 100% 100%;

    background-position: center;
}
.dragDropCols > .row1 {
    justify-content: space-evenly;
    align-items: center;
    margin: auto;
    display: flex;
}

.gameQuizBarMainProgressRow {
    justify-content: space-between;
    display: flex;
}

/*word scrambler */
.wordscramblermaindiv {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--bg-white);
    border: 1px solid var(--b-color);
    height: 65px;
    margin-bottom: 10px;
    width: 100%;
}

.numbercount {
    font-size: 20px;
    font-weight: var(--weight-sb);
    color: var(--heading-text);
    margin-right: 10px;
}

ul.scramblerDescription.inputtypescrambler li {
    min-height: 100px;
    padding: 0 0 0 20px;
    display: flex;
    align-items: center;
    border: 1px solid var(--b-color);
    margin-bottom: 10px;
}

.wordscramblermaindiv label {
    font-size: 16px;
    color: var(--heading-text);
    text-transform: uppercase;
    width: 150px;
}

.gamesDescription.puzzledescription ul.scramblerDescription li b,
.wordscramblermaindiv label b {
    margin-right: 10px;
}

.wordscramblermaindiv input {
    font-size: 20px;
    font-weight: var(--weight-m);
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    text-transform: uppercase;
    background-color: transparent;
}

.wordscramblermaindiv img {
    width: 100%;
    height: 100%;
    background: #fff;
}

.wordScramblercol.sequenceText label {
    width: 100%;
}
.wordScramblercol {
    display: inline-grid;
    width: 100%;
    margin-left: 30px;
}

.wordScramblerGameRow {
    padding: 20px;
    border-radius: 10px;
    border-radius: 10px;
    background: var(--bg-white);
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
    background: var(--primary-color);
}

.wordscramblermaindiv.one {
    position: relative;
}

.wordscramblermaindiv.one:after {
    position: absolute;
    right: 20px;
    top: 50%;
    display: flex;
    content: "\f00c";
    color: var(--true-green);
    font-size: 35px;
    font-family: "Font Awesome 6 Free";
    font-weight: var(--weight-sb);
    transform: translateY(-50%);
}

.wordscramblermaindiv.two {
    /* background: #fb573526; */
    position: relative;
}

.wordscramblermaindiv.two:after {
    position: absolute;
    right: 20px;
    top: 50%;
    display: flex;
    content: "\f00d";
    color: var(--true-red);
    font-size: 35px;
    font-family: "Font Awesome 6 Free";
    font-weight: var(--weight-sb);
    transform: translateY(-50%);
}

ul.scramblerDescription li {
    font-size: 16px;
}

.gamesDescription.puzzledescription ul.scramblerDescription li {
    padding: 10px;

    border: 1px solid var(--b-color);

    margin-bottom: 10px;

    height: 65px;

    overflow-y: auto;
}

ul.scramblerDescription.inputtypescrambler.scramblergamewithphoto li {
    min-height: 122px;
}

.wordscramblermaindiv.scramblerphotogame {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border: 1px solid var(--b-color);
    height: auto;
    margin-bottom: 10px;
}
/* word scrambler game 4th screen*/

/* memory match game */
.memory-game {
    width: 450px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    max-height: 450px;
    overflow: auto;
}

.memory-card {
    width: calc(25% - 10px);
    height: 139px;
    margin: 5px;
    position: relative;
    transform: scale(1);
    background-color: var(--bg-white);
    transform-style: preserve-3d;
    transition: transform 0.5s;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary-color);
}

.memory-card:active {
    transform: scale(0.97);
    transition: transform 0.2s;
}

.memory-card.flip {
    transform: rotateY(180deg);
}

.front-face,
.back-face {
    width: 100%;
    height: 100%;
    padding: 0px;
    position: absolute;
    backface-visibility: hidden;
    background: var(--bg-white);
}

.front-face {
    transform: rotateY(180deg);
}

.memoryMatchGameRow.photoGameRow img {
    width: 100%;
    height: 100%;
    border-radius: unset;
    object-fit: unset;
}

.photoGameRow.dragdropGameRow > .columnSection img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
}

/* pigeon video game */
.customCB {
    position: relative;
}
.customCB label.inner {
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 100px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position: absolute;
    top: 6px;
    left: 0;
    background: var(--bg-white);
    border: 1px solid #767676;
    outline: none;
}
.customCB label.outer {
    margin-left: 25px;
}
.customCB [type="checkbox"] {
    display: none;
}
.customCB input[type="checkbox"]:checked + label.inner {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='-10 -10 64.56 64.56'%3E%3Cpath d='M23.297 38.74a6.563 6.563 0 0 1-10.16.499L1.308 26.112a5.083 5.083 0 1 1 7.551-6.805l8.369 9.288a.617.617 0 0 0 .956-.047L35.386 5.217a5.083 5.083 0 1 1 8.181 6.032L23.297 38.74z'/%3E%3C/svg%3E");
}

.videosgames .videoplay video {
    width: 100%;
}

div.blanks {
    display: inline-block;
    min-width: 35px;
    border-bottom: 2px solid var(--text-dgray);
    color: var(--text-dgray);
}

div.blanks.ui-droppable-active {
    min-height: 20px;
}

span.answers > b {
    border-bottom: 2px solid var(--text-dgray);
}

span.given {
    margin: 10px;
    border: 1px solid grey;
    padding: 5px 10px;
    display: inline-block;
}

.card-content {
    margin: 14px;
}

.vidosfillbutton {
    width: 100%;
}

p.given {
    line-height: 40px;
}

ul.videoRadioQuiz {
    list-style-type: none;
}

ul.videoRadioQuiz li {
    margin-bottom: 20px;
}

ul.videoRadioQuiz input[type="radio"] {
    margin-right: 10px;
}

input[type="radio"].answerSelectColor {
    accent-color: var(--true-red);
}

input[type="radio"].answerRightColor {
    accent-color: var(--true-green);
}

ul.videoRadioQuiz p {
    margin-top: 10px;
    margin-bottom: 10px;
}

ul.dragDropMatchImg {
    list-style: none;
    column-count: 2;
}

.dragDropFirstDiv {
    padding: 20px;
}

ul.dragDropMatchdragImg {
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.photoGameRow ul.dragDropMatchdragImg li {
    background-size: 100% 100% !important;
    background: var(--bg-white);
    border: 1px solid var(--b-color);
    border-radius: 5px;
}

ul.dragDropMatchImg li.ui-state-default.ui-sortable-handle {
    height: 200px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: var(--text-dgray);
}

li.draggable-item:last-child {
    margin-bottom: 0;
}

.fruitdragmaindiv {
    display: flex;
    list-style-type: none;
}

.dragGameRow {
    padding: 20px;
    border-radius: 10px;
    background: var(--bg-white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
        rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    border: 1px solid var(--b-color);
}

.dragGameRow .ui-state-default {
    max-width: 60px;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--text-dgray);
    font-weight: var(--weight-b);
    border: 1px solid var(--bg-white);
    margin-bottom: 10px;
}

.gamesDescription p {
    font-size: 16px;
}

.gamesDescription > ul {
    box-shadow: none;
}

.puzzlelist li:first-child {
    color: var(--heading-text);
    font-size: 20px;
    font-weight: var(--weight-b);
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.dragDropPuzzleImg .sequencetarget {
    background-size: 100% 100%;
}

.fruitdragmaindiv li {
    max-width: 100px;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--text-dgray);
    font-weight: var(--weight-b);
    border: 1px solid var(--bg-white);
    margin-bottom: 10px;
}

.ui-state-highlight {
    height: 1.5em;
    line-height: 1.2em;
}

.fruitdragmaindiv span {
    color: var(--heading-text);
    font-size: 20px;
    font-weight: var(--weight-b);
    margin-right: 10px;
    display: flex;
    align-items: center;
}

/* beat the clock start*/

.clockGameRow {
    position: relative;
}

.water-jar {
    height: 450px;
    width: 100%;
    max-width: 100%;
    position: relative;
    background: url("../images/king.png");
    background-size: 100% 100%;
    border-radius: 12px;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.water-jar .water-filling {
    position: absolute;
    right: -25px;
    top: 70px;
    z-index: 3;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--true-green);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 20px;
}

.water-jar .water {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
    /* background-image: url("../images/fish-icegif-8.gif");  */
    background-color: #0b1fef;
    background-position: top;
    background-repeat: no-repeat;
    background-size: 200px 200px;
    opacity: 0.8;
}

.water-jar .water_wave {
    width: 200%;
    position: absolute;
    bottom: 100%;
}

.water-jar .water_wave_back {
    right: 0;
    fill: #87ceeb;
    -webkit-animation: wave-back 1.4s infinite linear;
    animation: wave-back 1.4s infinite linear;
}

.water-jar .water_wave_front {
    left: 0;
    fill: #0b1fef;
    margin-bottom: -1px;
    -webkit-animation: wave-front 1.7s infinite linear;
    animation: wave-front 1.7s infinite linear;
}

@-webkit-keyframes wave-front {
    100% {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}

@keyframes wave-front {
    100% {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}

@-webkit-keyframes wave-back {
    100% {
        -webkit-transform: translate(50%, 0);
        transform: translate(50%, 0);
    }
}

@keyframes wave-back {
    100% {
        -webkit-transform: translate(50%, 0);
        transform: translate(50%, 0);
    }
}

.videoRadioQuiz li p span {
    margin: 0px 10px;
}

.videoRadioQuiz li p b {
    margin-right: 10px;
}

.water-jar .water .fishinjar > img {
    width: 150px;
}

.water-jar .water .fishinjar {
    position: absolute;
    top: -20px;
    animation-name: leftToRight;
    animation-duration: 8.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    /* animation: leftToRight 4.5s linear infinite; */
}

@keyframes leftToRight {
    0% {
        transform: translateX(700px);
    }

    100% {
        transform: translateX(-200px);
    }
}

/* beat the clock end*/

/* beat the clock 1st start*/
.water-jar.fishermanwithfish {
    background: var(--bg-white);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.water-jar.fishermanwithfish .water {
    background-image: url(../images/water.gif);
    background-size: 100%;
    background-position: center;
}

/* beat the clock 1st start*/
/* beat the clock 2nd start */
.water-jar.carrot-jar {
    background-image: url(../images/cute-rabbit-with-carrot.avif);
}

.drops > div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation: drop-anim 3s linear;
    animation-fill-mode: forwards;
    top: -200px;
}

.drops > div > img {
    width: 125px;
    height: 125px;
}

.drops div:nth-child(1) {
    left: calc(1% - 25px);
    animation-delay: 2.3s;
    transform: translateX(50%) rotateZ(50deg);
}

.drops div:nth-child(2) {
    left: calc(10% - 25px);
    animation-delay: 2.1s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops div:nth-child(3) {
    left: calc(20% - 25px);
    animation-delay: 3.8s;
    transform: translateX(50%) rotateZ(20deg);
}

.drops div:nth-child(4) {
    left: calc(30% - 25px);
    animation-delay: 2.2s;
    transform: translateX(50%) rotateZ(90deg);
}

.drops div:nth-child(5) {
    left: calc(40% - 25px);
    animation-delay: 1.7s;
    transform: translateX(50%) rotateZ(30deg);
}

.drops div:nth-child(6) {
    left: calc(50% - 25px);
    animation-delay: 2.4s;
    transform: translateX(50%) rotateZ(360deg);
}

.drops div:nth-child(7) {
    left: calc(60% - 25px);
    animation-delay: 6.5s;
    transform: translateX(50%) rotateZ(50deg);
}

.drops div:nth-child(8) {
    left: calc(70% - 25px);
    animation-delay: 2.3s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops div:nth-child(9) {
    left: calc(80% - 25px);
    animation-delay: 5.9s;
    transform: translateX(50%) rotateZ(80deg);
}

@keyframes drop-anim {
    0% {
        top: -200px;
    }

    100% {
        top: 80%;
    }
}

.drops2 > div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation: drop-anim2 5s cubic-bezier(0.74, 0.01, 0.64, 0.97);
    animation-fill-mode: forwards;
    top: -200px;
}

.drops2 > div > img {
    width: 125px;
    height: 125px;
}

.drops2 div:nth-child(1) {
    left: calc(1% - 25px);
    animation-delay: 2.8s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops2 div:nth-child(2) {
    left: calc(10% - 25px);
    animation-delay: 13.1s;
    transform: translateX(50%) rotateZ(20deg);
}

.drops2 div:nth-child(3) {
    left: calc(20% - 25px);
    animation-delay: 4.9s;
    transform: translateX(50%) rotateZ(90deg);
}

.drops2 div:nth-child(4) {
    left: calc(30% - 25px);
    animation-delay: 8.5s;
    transform: translateX(50%) rotateZ(80deg);
}

.drops2 div:nth-child(5) {
    left: calc(40% - 25px);
    animation-delay: 5.7s;
    transform: translateX(50%) rotateZ(360deg);
}

.drops2 div:nth-child(6) {
    left: calc(50% - 25px);
    animation-delay: 3.3s;
    transform: translateX(50%) rotateZ(50deg);
}

.drops2 div:nth-child(7) {
    left: calc(60% - 25px);
    animation-delay: 11.5s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops2 div:nth-child(8) {
    left: calc(70% - 25px);
    animation-delay: 4.3s;
    transform: translateX(50%) rotateZ(80deg);
}

.drops2 div:nth-child(9) {
    left: calc(80% - 25px);
    animation-delay: 5.9s;
    transform: translateX(50%) rotateZ(50deg);
}

@keyframes drop-anim2 {
    0% {
        top: -400px;
    }

    100% {
        top: 70%;
    }
}

.drops3 > div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation: drop-anim3 7s cubic-bezier(0.72, 0.12, 0.34, 0.77);
    animation-fill-mode: forwards;
    top: -200px;
}

.drops3 > div > img {
    width: 125px;
    height: 125px;
}

.drops3 div:nth-child(1) {
    left: calc(1% - 25px);
    animation-delay: 6.3s;
    transform: translateX(50%) rotateZ(50deg);
}

.drops3 div:nth-child(2) {
    left: calc(10% - 25px);
    animation-delay: 5.1s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops3 div:nth-child(3) {
    left: calc(20% - 25px);
    animation-delay: 4.8s;
    transform: translateX(50%) rotateZ(20deg);
}

.drops3 div:nth-child(4) {
    left: calc(30% - 25px);
    animation-delay: 8.2s;
    transform: translateX(50%) rotateZ(90deg);
}

.drops3 div:nth-child(5) {
    left: calc(40% - 25px);
    animation-delay: 6.7s;
    transform: translateX(50%) rotateZ(30deg);
}

.drops3 div:nth-child(6) {
    left: calc(50% - 25px);
    animation-delay: 13s;
    transform: translateX(50%) rotateZ(360deg);
}

.drops3 div:nth-child(7) {
    left: calc(60% - 25px);
    animation-delay: 5.5s;
    transform: translateX(50%) rotateZ(50deg);
}

.drops3 div:nth-child(8) {
    left: calc(70% - 25px);
    animation-delay: 6.3s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops3 div:nth-child(9) {
    left: calc(80% - 25px);
    animation-delay: 12.9s;
    transform: translateX(50%) rotateZ(80deg);
}

@keyframes drop-anim3 {
    0% {
        top: -500px;
    }

    100% {
        top: 60%;
    }
}

.drops4 > div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation: drop-anim4 8s cubic-bezier(0.34, 0, 0.77, 0.99);
    animation-fill-mode: forwards;
    top: -400px;
}

.drops4 > div > img {
    width: 125px;
    height: 125px;
}

.drops4 div:nth-child(1) {
    left: calc(1% - 25px);
    animation-delay: 6.3s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops4 div:nth-child(2) {
    left: calc(10% - 25px);
    animation-delay: 5.1s;
    transform: translateX(50%) rotateZ(20deg);
}

.drops4 div:nth-child(3) {
    left: calc(20% - 25px);
    animation-delay: 12.8s;
    transform: translateX(50%) rotateZ(90deg);
}

.drops4 div:nth-child(4) {
    left: calc(30% - 25px);
    animation-delay: 18.2s;
    transform: translateX(50%) rotateZ(80deg);
}

.drops4 div:nth-child(5) {
    left: calc(40% - 25px);
    animation-delay: 13.7s;
    transform: translateX(50%) rotateZ(360deg);
}

.drops4 div:nth-child(6) {
    left: calc(50% - 25px);
    animation-delay: 14s;
    transform: translateX(50%) rotateZ(50deg);
}

.drops4 div:nth-child(7) {
    left: calc(60% - 25px);
    animation-delay: 5.5s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops4 div:nth-child(8) {
    left: calc(70% - 25px);
    animation-delay: 13.3s;
    transform: translateX(50%) rotateZ(80deg);
}

.drops4 div:nth-child(9) {
    left: calc(80% - 25px);
    animation-delay: 8.9s;
    transform: translateX(50%) rotateZ(50deg);
}

@keyframes drop-anim4 {
    0% {
        top: -600px;
    }

    100% {
        top: 50%;
    }
}

.drops5 > div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation: drop-anim5 7s cubic-bezier(0.72, 0.12, 0.34, 0.77);
    animation-fill-mode: forwards;
    top: -200px;
}

.drops5 > div > img {
    width: 125px;
    height: 125px;
}

.drops5 div:nth-child(1) {
    left: calc(1% - 25px);
    animation-delay: 8.3s;
    transform: translateX(50%) rotateZ(50deg);
}

.drops5 div:nth-child(2) {
    left: calc(10% - 25px);
    animation-delay: 9.1s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops5 div:nth-child(3) {
    left: calc(20% - 25px);
    animation-delay: 10.8s;
    transform: translateX(50%) rotateZ(20deg);
}

.drops5 div:nth-child(4) {
    left: calc(30% - 25px);
    animation-delay: 14.2s;
    transform: translateX(50%) rotateZ(90deg);
}

.drops5 div:nth-child(5) {
    left: calc(40% - 25px);
    animation-delay: 18.7s;
    transform: translateX(50%) rotateZ(30deg);
}

.drops5 div:nth-child(6) {
    left: calc(50% - 25px);
    animation-delay: 13s;
    transform: translateX(50%) rotateZ(360deg);
}

.drops5 div:nth-child(7) {
    left: calc(60% - 25px);
    animation-delay: 17.5s;
    transform: translateX(50%) rotateZ(50deg);
}

.drops5 div:nth-child(8) {
    left: calc(70% - 25px);
    animation-delay: 14.3s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops5 div:nth-child(9) {
    left: calc(80% - 25px);
    animation-delay: 19.9s;
    transform: translateX(50%) rotateZ(80deg);
}

@keyframes drop-anim5 {
    0% {
        top: -700px;
    }

    100% {
        top: 40%;
    }
}

.drops6 > div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation: drop-anim6 5s cubic-bezier(0.74, 0.01, 0.64, 0.97);
    animation-fill-mode: forwards;
    top: -200px;
}

.drops6 > div > img {
    width: 125px;
    height: 125px;
}

.drops6 div:nth-child(1) {
    left: calc(1% - 25px);
    animation-delay: 15.8s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops6 div:nth-child(2) {
    left: calc(10% - 25px);
    animation-delay: 10.1s;
    transform: translateX(50%) rotateZ(20deg);
}

.drops6 div:nth-child(3) {
    left: calc(20% - 25px);
    animation-delay: 11.9s;
    transform: translateX(50%) rotateZ(90deg);
}

.drops6 div:nth-child(4) {
    left: calc(30% - 25px);
    animation-delay: 5.5s;
    transform: translateX(50%) rotateZ(30deg);
}

.drops6 div:nth-child(5) {
    left: calc(40% - 25px);
    animation-delay: 18.7s;
    transform: translateX(50%) rotateZ(360deg);
}

.drops6 div:nth-child(6) {
    left: calc(50% - 25px);
    animation-delay: 19.3s;
    transform: translateX(50%) rotateZ(50deg);
}

.drops6 div:nth-child(7) {
    left: calc(60% - 25px);
    animation-delay: 16.5s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops6 div:nth-child(8) {
    left: calc(70% - 25px);
    animation-delay: 15.3s;
    transform: translateX(50%) rotateZ(80deg);
}

.drops6 div:nth-child(9) {
    left: calc(80% - 25px);
    animation-delay: 28.9s;
    transform: translateX(50%) rotateZ(50deg);
}

@keyframes drop-anim6 {
    0% {
        top: -800px;
    }

    100% {
        top: 30%;
    }
}

.drops7 > div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation: drop-anim7 7s cubic-bezier(0.72, 0.12, 0.34, 0.77);
    animation-fill-mode: forwards;
    top: -200px;
}

.drops7 > div > img {
    width: 125px;
    height: 125px;
}

.drops7 div:nth-child(1) {
    left: calc(1% - 25px);
    animation-delay: 10.3s;
    transform: translateX(50%) rotateZ(50deg);
}

.drops7 div:nth-child(2) {
    left: calc(10% - 25px);
    animation-delay: 13.1s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops7 div:nth-child(3) {
    left: calc(20% - 25px);
    animation-delay: 29.8s;
    transform: translateX(50%) rotateZ(20deg);
}

.drops7 div:nth-child(4) {
    left: calc(30% - 25px);
    animation-delay: 20.2s;
    transform: translateX(50%) rotateZ(90deg);
}

.drops7 div:nth-child(5) {
    left: calc(40% - 25px);
    animation-delay: 18.7s;
    transform: translateX(50%) rotateZ(30deg);
}

.drops7 div:nth-child(6) {
    left: calc(50% - 25px);
    animation-delay: 17s;
    transform: translateX(50%) rotateZ(360deg);
}

.drops7 div:nth-child(7) {
    left: calc(60% - 25px);
    animation-delay: 28.5s;
    transform: translateX(50%) rotateZ(50deg);
}

.drops7 div:nth-child(8) {
    left: calc(70% - 25px);
    animation-delay: 20.3s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops7 div:nth-child(9) {
    left: calc(80% - 25px);
    animation-delay: 24.9s;
    transform: translateX(50%) rotateZ(80deg);
}

@keyframes drop-anim7 {
    0% {
        top: -900px;
    }

    100% {
        top: 20%;
    }
}

.drops8 > div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation: drop-anim8 5s cubic-bezier(0.74, 0.01, 0.64, 0.97);
    animation-fill-mode: forwards;
    top: -200px;
}

.drops8 > div > img {
    width: 125px;
    height: 125px;
}

.drops8 div:nth-child(1) {
    left: calc(1% - 25px);
    animation-delay: 23.8s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops8 div:nth-child(2) {
    left: calc(10% - 25px);
    animation-delay: 18.1s;
    transform: translateX(50%) rotateZ(20deg);
}

.drops8 div:nth-child(3) {
    left: calc(20% - 25px);
    animation-delay: 11.9s;
    transform: translateX(50%) rotateZ(90deg);
}

.drops8 div:nth-child(4) {
    left: calc(30% - 25px);
    animation-delay: 24.5s;
    transform: translateX(50%) rotateZ(30deg);
}

.drops8 div:nth-child(5) {
    left: calc(40% - 25px);
    animation-delay: 28.7s;
    transform: translateX(50%) rotateZ(360deg);
}

.drops8 div:nth-child(6) {
    left: calc(50% - 25px);
    animation-delay: 23.3s;
    transform: translateX(50%) rotateZ(50deg);
}

.drops8 div:nth-child(7) {
    left: calc(60% - 25px);
    animation-delay: 15.5s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops8 div:nth-child(8) {
    left: calc(70% - 25px);
    animation-delay: 26.3s;
    transform: translateX(50%) rotateZ(80deg);
}

.drops8 div:nth-child(9) {
    left: calc(80% - 25px);
    animation-delay: 29.9s;
    transform: translateX(50%) rotateZ(50deg);
}

@keyframes drop-anim8 {
    0% {
        top: -900px;
    }

    100% {
        top: 10%;
    }
}

.drops9 > div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation: drop-anim9 5s cubic-bezier(0.74, 0.01, 0.64, 0.97);
    animation-fill-mode: forwards;
    top: -200px;
}

.drops9 > div > img {
    width: 125px;
    height: 125px;
}

.drops9 div:nth-child(1) {
    left: calc(1% - 25px);
    animation-delay: 19.8s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops9 div:nth-child(2) {
    left: calc(10% - 25px);
    animation-delay: 28.1s;
    transform: translateX(50%) rotateZ(20deg);
}

.drops9 div:nth-child(3) {
    left: calc(20% - 25px);
    animation-delay: 16.9s;
    transform: translateX(50%) rotateZ(90deg);
}

.drops9 div:nth-child(4) {
    left: calc(30% - 25px);
    animation-delay: 24.5s;
    transform: translateX(50%) rotateZ(30deg);
}

.drops9 div:nth-child(5) {
    left: calc(40% - 25px);
    animation-delay: 24.7s;
    transform: translateX(50%) rotateZ(360deg);
}

.drops9 div:nth-child(6) {
    left: calc(50% - 25px);
    animation-delay: 16.3s;
    transform: translateX(50%) rotateZ(50deg);
}

.drops9 div:nth-child(7) {
    left: calc(60% - 25px);
    animation-delay: 30.5s;
    transform: translateX(50%) rotateZ(10deg);
}

.drops9 div:nth-child(8) {
    left: calc(70% - 25px);
    animation-delay: 28.3s;
    transform: translateX(50%) rotateZ(80deg);
}

.drops9 div:nth-child(9) {
    left: calc(80% - 25px);
    animation-delay: 25.9s;
    transform: translateX(50%) rotateZ(50deg);
}

@keyframes drop-anim9 {
    0% {
        top: -1100px;
    }

    100% {
        top: 0%;
    }
}

/* beat the clock 2nd end */
/* beat the clock 3rd screen start */

.clock {
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: absolute;
    background-color: var(--color-star);
}

.clock:before {
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-left: -60px;
    border-radius: inherit;
    background-color: var(--color-star);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15),
        0 0 3px rgba(255, 255, 255, 0.75) inset;
}

.flashing {
    position: relative;
    width: 300px;
    height: 300px;
    cursor: default;
    margin: auto;
    z-index: 1;
}

.blinkFlash {
    width: 100%;
    height: 100%;
    /* display: block; */
    border-radius: 50%;
    background: #ff000063;
    opacity: 0;
    position: absolute;
    left: 0;
    top: -132px;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: flashing 1s 0.5s ease-in;
    border: 5px solid var(--color-star);
    animation-iteration-count: infinite;
    z-index: 1;
}

@keyframes flashing {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

.count {
    font-size: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    margin: auto;
    color: var(--bg-white);
}

.count:after {
    width: 100%;
    display: block;
    font-size: 18px;
    font-weight: 300;
    line-height: 18px;
    text-align: center;
    position: relative;
}

.action .input {
    margin-top: 30px;
    position: relative;
}

.action .input-num {
    width: 100%;
    border: none;
    padding: 12px;
    border-radius: 60px;
}

.action .input-btn {
    bottom: 0;
    left: 50%;
    color: var(--text-dgray);
    border: none;
    font-size: 20px;
    font-weight: var(--weight-sb);
    padding: 20px;
    position: absolute;
    border-radius: 20px;
    transform: translate(-50%, -50%);
    background-color: var(--color-star);
    text-transform: uppercase;
}
.tbl {
    display: table;
    width: 100%;
}

.tbl .col {
    display: table-cell;
}

.countdownStart {
    width: 450px;
    height: 450px;
    margin: auto;
    text-align: center;
    justify-content: center;
    display: flex;
    background: var(--bg-white);
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

/* beat the clock 3rd end*/

/* Workspace lesson quiz start */

li.selectoptionquiz input {
    border: 1px solid var(--b-color);
    border-radius: 6px;
    padding: 10px;
    width: 200px;
}

.lessonStyle {
    color: var(--heading-text);
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

ul.videoRadioQuiz li .form-check-input:checked {
    font-size: unset;
}

ul.videoRadioQuiz.ModuleQuiz input[type="radio"] {
    margin-right: 10px;
    accent-color: var(--primary-color);
}

ul.videoRadioQuiz.ModuleQuiz input[type="radio"]:checked {
    color: var(--primary-color);
}

label.form-label {
    display: block;
}

.mainDivoption {
    display: flex;
    gap: 10px;
}

/* Workspace lesson quiz end */

/* Email Verification start */

#submitBtnTxt {
    font-size: 20px;
    color: var(--primary-color);
}

.emailVerification-logo img {
    width: 100%;
    max-width: 100px;
}

/* Email Verification end */

/* submit popup start */
.modal-header.HeaderBorder {
    border: none;
}

.footerBtn.mt-3 {
    text-align: center;
}

.footerBtn button {
    background-color: var(--primary-color) !important;
    color: var(--bg-white);
    padding: 8px 40px;
}

.ScoreHeaqding h5 {
    font-size: 30px;
}

.ScoreTable {
    padding: 10px;
}

.ScoreTable p {
    font-size: 16px;
    font-weight: var(--weight-sb);
    color: var(--text-dgray);
    letter-spacing: 4%;
}

.ScoreTable1 p {
    font-size: 16px;
    font-weight: var(--weight-sb);
    color: var(--text-dgray);
    letter-spacing: 4%;
}

.ScoreTable1 {
    background-color: var(--bg-white);
    box-shadow: 0px 4px 4px 0px #00000028;
    padding: 10px;
    border-radius: 0px;
    border-radius: 5px;
}

.footerBtn .btn:hover {
    border-color: var(--primary-color);
    color: var(--bg-white);
}

.main_BG {
    background-color: var(--body-color);
    padding: auto;
    border-radius: 5px;
}

/* full screen css */
.fullscreen.green-btn {
    display: flex;
    justify-content: end;
}

.min-h {
    min-height: calc(100vh - 260px);
}

/* prepost test */
.userBtn.prePosButton {
    justify-content: center;
    gap: 10px;
}

/* drag drop word screen start */
.colordragdrop > .words {
    font-size: 20px;
    font-weight: var(--weight-sb);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    min-height: 85px;
    margin-bottom: 10px;
    border: 1px solid var(--text-dgray);
    border-radius: 5px;
}

span.dropped-text {
    font-size: 25px;
    font-weight: var(--weight-sb);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.colordragdrop {
    min-height: 85px;
}

.dropped-text > .image-text {
    width: 100%;
    min-height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    font-size: 20px;
}

.dragDropColumn {
    width: 100%;
}

.colordrop-target {
    border: 1px solid var(--b-color);
    min-height: 85px;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: var(--bg-white);
}

.accordionbtn {
    display: flex;
    justify-content: right;
    margin-bottom: 20px;
}

.accordionDiv p {
    text-align: justify;
}

/* submit screen */
.colortargetsubmitincorrect {
    position: relative;
    border: 8px solid var(--true-red) !important;
}

.colortargetsubmitcorrect {
    position: relative;
    border: 8px solid var(--true-green) !important;
}

.colortargetsubmitcorrect:after {
    position: absolute;
    content: "\f00c";
    top: -10px;
    left: -10px;
    background: var(--true-green);
    color: var(--bg-white);
    border-radius: 5px;
    transform: scale(1);
    font-family: "Font Awesome 6 Free";
    font-weight: var(--weight-sb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding: 2px 10px;
    border: 1px solid var(--bg-white);
}

.colortargetsubmitincorrect:after {
    position: absolute;
    content: "\f00d";
    top: -10px;
    left: -10px;
    background: var(--true-red);
    color: var(--bg-white);
    border-radius: 5px;
    transform: scale(1);
    font-family: "Font Awesome 6 Free";
    font-weight: var(--weight-sb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding: 2px 10px;
    border: 1px solid var(--bg-white);
}

.dragDropthought.submitscreen {
    opacity: 0.4;
}

/* text editor css */
.wrapper .note-editor.note-frame i {
    color: var(--text-dgray);
    font-weight: 300;
}

.wrapper .note-modal-footer {
    height: 60px;
}

.wrapper .note-editor .note-toolbar .note-dropdown-menu,
.wrapper .note-popover .popover-content .note-dropdown-menu {
    min-width: 190px;
    padding: 10px;
}

.wrapper .note-editor .note-toolbar .note-style .dropdown-style blockquote,
.wrapper .note-editor .note-toolbar .note-style .dropdown-style pre,
.wrapper .note-popover .popover-content .note-style .dropdown-style blockquote,
.wrapper .note-popover .popover-content .note-style .dropdown-style pre {
    margin: 0;
    padding: 0;
}

.wrapper .note-editor.note-airframe,
.wrapper .note-editor.note-frame {
    padding: 0;
}

.wrapper .note-btn {
    font-size: 20px;
}

.wrapper .note-color .dropdown-toggle {
    width: 30px !important;
}

/* video toggle css start */
.custom_Video_Div > .video-wrapper > .video-container video {
    border-radius: 10px;
    max-width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
}

.custom_Menubar {
    position: relative;
}

.videoToggle {
    position: absolute;
    top: -80px;
    right: -30px;
    cursor: pointer;
    font-size: 30px;
    background: #f5922c;
    padding: 15px 20px;
    color: var(--bg-white);
    border-radius: 20px 0px 0px 20px !important;
}

.videoToggle:after {
    content: "";
    position: absolute;
}

.custom_Accordion_Menu .custom-dropdown.custom-accordion {
    margin-top: 80px;
}

.custom_Accordion_Div {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
}

.custom_Video_Div {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.custom_Accordion_Menu {
    width: 2%;
    transition: all 0.5s ease-in-out;
}

.custom_Accordion_Menu .accordiion-heading {
    display: none;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    transition-delay: 2s;
}

.mainVideoSection .custom_Video_Div {
    width: 70%;
}

.mainVideoSection .custom_Accordion_Menu {
    width: 30%;
}

.mainVideoSection .custom_Accordion_Menu .accordiion-heading {
    display: block;
}

.accordion-button.workspaceAcordion {
    display: none;
}

.mainVideoSection .accordion-button.workspaceAcordion {
    display: flex;
}

.mainVideoSection .videoToggle {
    transform: rotate(180deg);
    border-radius: 0px 20px 20px 0 !important;
}

/* video toggle css end */

/* 404 screen start*/

.content404 {
    margin: auto;
    background: var(--bg-white);
    height: 100vh;
}

.content404 > .container > .row {
    align-items: center;
    height: 100vh;
}

.content404 .error-page__heading {
    margin: 40px 0;
}

.content404 .eyes {
    display: flex;
    gap: 10px;
}

.content404 button.ABIPrimaryBtn {
    margin: unset;
}

.content404 .eye {
    width: 80px;
    height: 100px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.content404 .eye__pupil {
    width: 30px;
    height: 30px;
    background-color: var(--text-dgray);
    border-radius: 50%;
    animation: movePupil 2s infinite ease-in-out;
    transform-origin: center center;
    /*
  To reverse the animation of the right eye, uncomment this.
  */
}

@keyframes movePupil {
    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-10px, -10px);
    }

    50% {
        transform: translate(10px, 10px);
    }

    75% {
        transform: translate(-10px, 10px);
    }
}

/* 404 screen end*/

/* Quiz alert */
.alertBoxQuiz {
    padding: 5px;
    margin-bottom: 5px;
}

/* css  added by rishi starts */

.progress-container {
    position: relative;
}

#progress-text {
    position: absolute;
    top: -4px;
    font-size: 15px;
    transform: translateX(-50%);
    color: black;
    font-weight: bold;
}
.modelquestionbtn {
    border-radius: 77px;
    border: 2px solid #24b1c7;
    color: #24b1c7;
    text-align: center;
    font-family: var(--font-family);
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    background-color: transparent;
    padding: 12px;
    margin-top: -20px;
}
.spinnerWrong {
    color: red;
    font-weight: 700;
    font-size: 16px;
}

.spinnerCorrect {
    color: green;
    font-size: 16px;
    margin: 15px 0;
}
.play-button-wrapper .circle-play-btn {
    cursor: pointer;
    pointer-events: auto;
}
.play-button-wrapper .circle-play-btn svg {
    width: 50px;
    height: 50px;
    fill: #fff;
    stroke: #fff;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    opacity: 0.9;
}
.video-container {
    position: relative;
    border: 1px solid #ccc;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    z-index: 1; /* Ensure the overlay is above the video */
}

.play-icon {
    width: 50px; /* Adjust size as needed */
    height: 50px; /* Adjust size as needed */
    cursor: pointer;
}

.circle-play-btn {
    cursor: pointer;
    pointer-events: auto;
}
.circle-play-btn svg {
    width: 50px;
    height: 50px;
    fill: #fff;
    stroke: #fff;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    opacity: 0.9;
}
.correctAnswer :checked + label img {
    border: 8px solid green !important;
    opacity: 1 !important;
}

.correctAnswer :checked + label:before {
    content: "\f00c";
    background-color: green;
    transform: scale(1);
    font-size: 35px;
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ABIPreBtn,
.ABINextBtn {
    border-radius: 10px;
    border: 1px solid #83899f;
    background: var(--bg-white);
    color: #83899f;
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 12px 30px;
    margin: 20px 0;
}
.userBtn .ABINextBtn i {
    margin-right: 0px;
    margin-left: 10px;
}
.userBtn a:hover {
    color: #4cb3b7;
}
.float-right {
    margin-left: auto;
}

/* full screen div css */
.fsm {
    margin: 10vh 5vw;
    background-color: blue;
    height: auto;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #f5f5f5;
    font-size: 1.5rem;
    border-radius: 10px;
    transition: 1s;
    cursor: pointer;
}
.fsm .fa {
    transition: 1s;
    color: #f5f5f5;
    font-size: 2.5vw;
}
.fsm .fa:before {
    color: #f5f5f5;
}
.fsm .modal-content {
    height: 0;
    width: 0;
    margin: 0;
}
.fsm h1.modal-content {
    opacity: 0;
    transition: 1s;
}
.fsm.growing h1.modal-content {
    height: auto;
    margin: 0;
    opacity: 0;
    transition-delay: 0.5s;
}
.fsm.full-screen {
    height: 100vh;
    z-index: 100;
    margin: 0;
    border-radius: 0;
}
.fsm.full-screen .fa {
    font-size: 10vw;
}
.fsm.full-screen .modal-content {
    height: auto;
    width: auto;
    margin: inital;
}
.fsm.full-screen h1.modal-content {
    transition-delay: 0.5s;
    opacity: 1;
}
.fsm.shrinking h1.modal-content {
    transition-delay: 0s;
    transition: 0.5s;
    opacity: 0;
    display: block;
}
.fsm-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.content.fsm.apple {
    margin: 0;
    background: #f6f6f6;
    padding: 50px;
    margin-top: 0px;
    z-index: 9;
}
.dashboardModalDesign .conten_box {
    padding: 0;
}
#profileForm .ABIPrimaryBtn {
    margin-top: 0;
}
.disabled-link {
    pointer-events: none;
}
/* fullscreen div */
#fullscreenDiv.fullscreen {
    z-index: 02;

    width: 100%;

    height: 100%;

    position: fixed;

    top: 0;

    left: 0;

    background: #fff;

    padding: 30px;
}

#fullscreenDiv {
    width: 100%;
    height: 100%;
}
.fullscreenbtn {
    display: grid;
    margin-left: auto;
    padding: 10px;
    border-radius: 10px;
    margin-right: 10px;
    margin-top: 10px;
}

.fullscreenbox {
    padding: 20px;
}
button.btn.btn-outline-info.btn-sm.mentorBtn.rounded-5:hover,
.fullscreenbtn i:hover {
    color: #fff;
}

.gameDescriptionStyle {
    margin-bottom: 10px;
}
#lesson-activity img {
    height: 100%;
    width: 100%;
}
.aboutLessonInfo img {
    height: 80px;
    width: 100px;
    border: 2px solid #ddd;
    /*object-fit: cover;*/
}
/* prepost test */
.prePostQuestion {
    max-height: 800px;
}

.preposttestgamediv {
    overflow-y: scroll;
    overflow-x: hidden;
    border-radius: 10px;
    padding: 20px;
}
.prePosQuesTxt {
    display: flex;
    margin: 10px 0;
}
ul.videoRadioQuiz.preposttestgamediv.prePostQuestion {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
        rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    margin-top: 30px;
}
.gamesDescription.customHeading {
    width: 100%;
}
#ytDivPlayer {
    pointer-events: none;
}
.courseDetailscards .finishGrnBkg {
    background: green;
}

.videoTxtStyle {
    background: none;
    border: none;
    width: 100%;
}
.goToQuestion {
    color: crimson;
    cursor: pointer;
}
.highlight {
    border: 2px solid red;
    padding: 10px;
    border-radius: 5px;
    background-color: #ffe6e6;
}
.mb-25 {
    margin-bottom: 25px;
}
.colordrop-target.sentSeq {
    height: max-content !important;
}
.words.worddragcol.img-fluid.image-text p {
    margin: 0;
}
.videoTxtStyle {
    border: 1px solid #c7bdbd;
    border-radius: 5px;
}
.note-editor.note-frame {
    margin-bottom: 15px;
    display: none;
}
.note-editable ul {
    list-style: disc !important;
    list-style-position: inside !important;
}
.capitalize {
    text-transform: capitalize;
}
.wrongAnswer :checked + label img {
    border: 8px solid var(--true-red);
    transform: scale(0.9);
    z-index: -1;
}
.correct :checked + label img {
    transform: scale(0.9);
    z-index: -1;
    opacity: 0.8;
}

.quizHeaderStyle {
    float: right;
    font-weight: bold;
    /* margin-left: 5px;*/
}

.quizDiv .card-header {
    font-weight: bold;
}

ul.ModuleQuiz li .form-check-input[type="checkbox"]:checked + label:before {
    display: none;
}

/*ul.ModuleQuiz li .form-check-input[type="checkbox"] + label {*/
/*  margin-left: 8px;*/
/*}*/

label.form-label {
    font-weight: bold;
    margin-left: 8px;
}

ul.videoRadioQuiz.ModuleQuiz .spinnerCorrect {
    font-weight: bold;
}

ul.ModuleQuiz li {
    margin-bottom: 0 !important;
    font-size: 14px;
}

.emptyMsgStyle {
    text-align: center;
}

ul.videoRadioQuiz.ModuleQuiz span.shortDescpQues b {
    color: var(--true-green);
}

ul.videoRadioQuiz.ModuleQuiz span.shortDescpQues p {
    color: var(--true-green);
    display: inline-block;
    font-weight: bold;
}

ul.videoRadioQuiz.ModuleQuiz span.shortDescpQues .fa-check {
    margin-right: 10px;
}

ul.videoRadioQuiz .selectoptionquiz {
    margin-top: 15px;
}

ul.ModuleQuiz .spinnerCorrect span {
    font-weight: bold;
    font-size: 8;
    text-decoration: underline;
    font-weight: bold;
    color: var(--true-green);
    margin: 5px;
}

.listcorrect {
    position: relative;
}

.listcorrect:after {
    position: absolute;
    content: "\f00c";
    right: -20px;
    color: green;
    border-radius: 5px;
    transform: scale(1);
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    padding: 10px 15px;
}

.listincorrect {
    position: relative;
}

.listincorrect:after {
    position: absolute;
    content: "\f00d";
    right: -20px;
    color: red;
    border-radius: 5px;
    transform: scale(1);
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    padding: 10px 15px;
}

.matchhcolordragdrop:after {
    position: absolute;
    content: "\f00c";
    top: -20px;
    left: -20px;
    background: green;
    color: #fff;
    border-radius: 5px;
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding: 10px 20px;
    border: 1px solid #fff;
}

.matchhcolordragdrop {
    position: relative;
    border: 5px solid green;
}

.unanswered label img {
    position: relative;
    border: 8px solid var(--true-red) !important;
}
.unanswered label:after {
    position: absolute;
    content: "\f00d";
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    background: var(--true-red);
    color: var(--bg-white);
    border-radius: 5px;
    transform: scale(1);
    font-family: "Font Awesome 6 Free";
    font-weight: var(--weight-sb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    padding: 2px 10px;
    border: 1px solid var(--bg-white);
}
.photoImagesize span {
    margin-top: 10px;
}
.dogpuzzlesequenceincorrect {
    position: relative;
    border: 5px solid red;
}

.dogpuzzlesequenceincorrect:after {
    position: absolute;
    content: "\f00d";
    top: -20px;
    left: -20px;
    background: red;
    color: #fff;
    border-radius: 5px;
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding: 10px 20px;
    border: 1px solid #fff;
}
.dogpuzzlesequencecorrect {
    position: relative;
    border: 5px solid green;
}

.dogpuzzlesequencecorrect:after {
    position: absolute;
    content: "\f00c";
    top: -20px;
    left: -20px;
    background: green;
    color: #fff;
    border-radius: 5px;
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding: 10px 20px;
    border: 1px solid #fff;
}
#quizForm h5 {
    text-align: center;
}
.gamesDescription12 {
    background-color: #4cb3b7;

    padding: 15px;

    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gamesDescription12 p {
    margin: 0;
    /* Remove default margin from paragraph */
    font-size: 16px;
    /* Font size for the text */
    color: white;
}

#pagination-container {
    display: flex;
    /* Align buttons in a row */
    justify-content: flex-start;
    /* Center the buttons */
    border: 1px solid grey;
    flex-wrap: wrap;
}

.tab-button {
    background-color: white;
    color: black;
    border: none;
    transition: background-color 0.3s, transform 0.2s;
    padding: 7px 13px;
    cursor: pointer;
    font-size: 16px;
    border-right: 2px solid rgba(0, 0, 0, 0.589);
}

.tab-button i {
    margin-right: 5px;
    /* Space between icon and text */
}

.tab-button:hover {
    background-color: #0057b380;
    /* Darker background on hover */
    transform: scale(1);
    /* Slightly enlarge on hover */
}

.resultHeadingStyle {
    color: #fa5837;
    text-align: center;
    /* margin-bottom: 25px; */
}

.modalbody123 h3 {
    color: red;
    /* margin-bottom: 25px; */
}

.remain -question {
    color: crimson;
    cursor: pointer;
    text-decoration: underline;
}

.modalbody123 .img-fluid {
    max-width: 100%;
    height: auto;
}

/* Add animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#result-summary {
    animation: fadeIn 1s ease-in-out;
}

/* Responsive design */
@media (max-width: 600px) {
    #result-summary {
        padding: 15px;
    }

    #result-summary img {
        max-width: 100%;
    }
}
.userAvatar {
    margin-top: 15px;
    margin-bottom: 15px;
}
.userAvatar img {
    max-width: 100%;
    height: 150px;
    border-radius: 100%;
}
.pass {
    color: var(--true-green);
    font-size: 16px;
}
.fail {
    color: var(--true-red);
    font-size: 16px;
}
.retryBtnStyle {
    margin-top: 40px;
}
footer p {
    text-align: center;
}
.publishLesson {
    float: right;
    margin-top: 20px;
    margin-bottom:20px;
}
#question-container label {
    display: inline;
}
.resultTableStyle {
    max-width: 30%;
    width: 100%;
}

.resultImage img {
    max-width: 150px;
    height: 150px;
    border-radius: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.dropdown-menu form {
    margin: 0;
}
.active {
    color: #000;
}
.note-table {
    display: none !important;
}
.note-insert {
    display: none !important;
}
.note-view {
    display: none !important;
}

.form-check-input:focus {
    box-shadow: unset;
}
.form-check-input {
    border: 2px solid #4f4f4f;
    margin-right: 5px;
}
.note-editor .note-toolbar .note-para .note-dropdown-menu > div + div,
.note-popover .popover-content .note-para .note-dropdown-menu > div + div {
    margin: 0 !important;
}
.prePostHeaderStyle h1 {
    font-family: var(--font-family);
}
.msg-style {
    font-family: inherit;
    font-size: 1.2em;
    font-weight: 600;
}
.quiz-question-color {
    color: #e53935;
    font-size: 22px;
}
.quiz-question-incorrect-color {
    color: #e53935;
    margin-right: 10px;
    font-size: 18px;
}
.incorrect-style {
    margin: 0;
    padding: 5px 10px 5px 5px;
    color: #000;
}
.incorrect-style i {
    color: #b93f3f;
    float: right;
    font-size: 22px;
}
#loginForm .formfield {
    margin-bottom: 10px;
}
#registerFrom .formfield {
    margin-bottom: 10px;
}

#pretest-form .form-check-input[type="checkbox"] {
    border-radius: 50%;
}

#pretest-form .form-check-input:checked[type="checkbox"] {
    border-radius: 50%;
}
#postTestQues .form-check-input[type="checkbox"] {
    border-radius: 50%;
}

#postTestQues .form-check-input:checked[type="checkbox"] {
    border-radius: 50%;
}

.ModuleQuiz .form-check-input[type="checkbox"] {
    border-radius: 50%;
}

.ModuleQuiz .form-check-input:checked[type="checkbox"] {
    border-radius: 50%;
}
#GameForm input[type="checkbox"] {
    margin-right: 10px;
}
.form-check-input[type="checkbox"] {
    border-radius: 50%;
}
.form-check-input[type="checkbox"]:checked {
    border-radius: 50%;
    background: #fff;
    border: 4px solid #4cb3b7;
}

.videoGameQuiz .input-wrapper,
.beatClockQuiz .input-wrapper {
    padding-left: 10px;
    margin-bottom: 5px;
    font-size: 15px;
}
.form-check-input:checked {
    background-color: #4cb3b7;
    outline: 1px solid #4cb3b7;
}
.rbtCertificateScroll {
    overflow: auto;
}
/*for iframe*/

#lesson-activity iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.undobtn {
    border-radius: 10px;

    border: 1px solid var(--btn-board);

    background: var(--bg-white);

    color: var(--btn-board);

    font-family: var(--font-family);

    font-size: 20px;

    font-style: normal;

    font-weight: var(--weight-b);

    line-height: normal;

    padding: 12px 20px;
}
.undobtn:hover {

    color: var(--primary-color);

    }
.undobackbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
/* css  added by rishi ends */
#pieChart {
    height: 60vh;
}

/* spinner circle */

.spinner-container {
    position: relative;
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    padding: 5px;
    justify-content: center;
    align-items: center;
    margin: 50px auto 50px;
    border-radius: 50%;
    box-shadow: 0 0 0 5px var(--text-dgray), 0 0 0 15px var(--bg-white),
        0 0 0 18px #111;
}

.spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform-origin: center;
    transition: transform 3s ease-out;
}

.spinner-container {
    transform-origin: center;
    transition: transform 10s ease-out;
}

.labels-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.label_spin {
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-align: center;
    width: 150px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transform-origin: center;
}
.spin {
    position: absolute;
    background-color: rgb(255, 255, 255);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: var(--weight-sb);
    text-transform: uppercase;
    box-shadow: 1px 1px 2px 1px;
    letter-spacing: 0.1em;
    cursor: pointer;
    z-index: 10;
    user-select: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spin::before {
    content: "";
    position: absolute;
    top: -20px;
    width: 30px;
    height: 30px;
    background-color: rgb(255, 255, 255);
    clip-path: polygon(50% 0%, 22% 100%, 78% 100%);
}
.preTestBtnStyle {
    margin: unset;
}
#summaryTabs .nav-link.active {
    background-color: #4cb3b7;
    color: white;
}
#course-summary{
width: 100%;
    overflow: auto;
}

#summaryTabs .nav-link {
    color: #4cb3b7;
}
#lesson-activity .video-container {
    z-index: 0;
}
