@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


* {
    font-family: "Exo", sans-serif;
    padding: 0px;
    margin: 0px;
    outline: none !important;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

::selection {
    background: var(--theme);
    color: aliceblue !important;
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
:root::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}


img {
    user-select: none !important;
}

body {
    background: #ffffff;
}

:root {
    overflow-x: hidden;
    --theme: #3957ff;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

html {
    overflow-x: hidden;
}

header {
    position: fixed;
    background: #141414;
    left: 0;
    top: 0;
    width: 100%;
    height: fit-content;
    z-index: 22;
    padding: 5px 57px;
}

.HeaderLogo {
    display: block;
    margin: 0 0;
    width: fit-content;
    cursor: pointer;
    transition: 300ms;
}

.HeaderLogo .setbg {
    height: 70px;
    aspect-ratio: 1/0.5;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(2.5);
    transition: 300ms;
}

main {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #262626;
    z-index: 9;
    padding: 50px;
    padding-top: 130px;
}

.MainContent {
    display: none;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background: #141414;
    border-radius: 10px;
    overflow-y: auto;
}

.HomeCoursesGH {
    display: flex;
    justify-content: start;
    align-items: start;
    margin: 0 auto;
    width: 100%;
    padding: 30px;
    flex-wrap: wrap;
}

.HomeCourseItem {
    display: block;
    margin: 25px 2%;
    width: 21%;
    background: #262626;
    border-radius: 10px;
    overflow: hidden;
    transition: 300ms;
    cursor: pointer;
}

.HomeCourseItemThumb {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/0.5;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.HomeCourseItemInfo {
    display: block;
    margin: 0 auto;
    width: 100%;
    color: aliceblue;
    padding: 10px;
}

.HomeCourseItemInfo h4 {
    display: block;
    margin: 5px auto;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: var(--theme);
}

.HomeCourseItemInfo label {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 13px;
}

.HomeCourseItemInfo label strong {
    margin: 0 4px;
}

.HomeCourseItem:hover {
    transform: scale(1.1);
    box-shadow: 9px 8px 1px 1px #080808;
}

.LecturesGH {
    position: absolute;
    left: 0;
    top: 0;
    width: 25%;
    height: 100%;
    background: #0a0a0a;
    padding: 0;
    overflow-y: auto;
}


.LectureItem {
    display: block;
    margin: 0 auto;
    width: 100%;
    color: aliceblue;
    border-bottom: solid 1px #1e1e1e;
    padding: 16px 25px;
    transition: 300ms;
    cursor: pointer;
}

.LectureItem h4 {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 17px;
    font-weight: bold;
    color: var(--theme);
}

.LectureItem p {
    display: block;
    margin: 9px auto;
    width: 100%;
    font-size: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.LectureItem label {
    display: block;
    margin: 0 0;
    width: fit-content;
    background: #363636;
    padding: 2px 12px;
    border-radius: 5px;
}


.LectureItem:hover {
    background: #181818;
}


.LectureShow {
    position: absolute;
    right: 0;
    top: 0;
    width: 75%;
    height: 100%;
    overflow-y: auto;
    padding: 57px;
}

.LectureShow video {
    display: block;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/0.5;
}

.LectureShow h4 {
    display: block;
    margin: 38px auto 20px;
    width: 100%;
    font-size: 30px;
    color: var(--theme);
    font-weight: bold;
}

.LectureShow p {
    display: block;
    margin: 0 auto;
    width: 100%;
    font-size: 20px;
    color: aliceblue;
    font-weight: 200;
}

.ActiveLecture {
    background: #303030;
}


.LoginInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 86px;
    z-index: 2;
}

.LoginDiv {
    display: block;
    margin: 0 auto;
    width: 500px;
    min-height: fit-content;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.LoginBG {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: grayscale(1);
    opacity: 0.3;
}

.GetStarted {
}

.GetStartedInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    background: #1e1e1e;
    display: flex;
    justify-content: center;
    align-items: center;
}

.GetStartedDiv {
}

.GetStartedDiv button {
    display: block;
    margin: 0 auto;
    width: fit-content;
    padding: 17px 34px;
    border: solid 2px;
    border-radius: 1000px;
    background: #00000080;
    color: aliceblue;
    text-transform: uppercase;
    transition: 300ms;
}

.GetStartedDiv button:hover {
    transform: scale(1.1);
    background: aliceblue;
    color: #1e1e1e;
    border-color: aliceblue;
    box-shadow: -7px -4px 1px 1px #0000008c;
}


.HeaderLogo:hover {
    transform: scale(1.2);
    filter: drop-shadow(2px 4px 6px black);
}

.LectureShowVideoContainer {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.LectureShowVideoContainer .WaterMarkParent {
    position: absolute;
    right: 15px;
    top: 6px;
    width: 70px;
    aspect-ratio: 1/1;
    z-index: 2;
    margin: 0;
    pointer-events: none;
    overflow: hidden;
    box-shadow: inset 1px 1px 20px 0px #000000;
    padding: 8px;
}

.WaterMarkParent .setbg {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    aspect-ratio: 1/1;
}

.Shine {
    position: absolute;
    right: 22px;
    top: 0;
    width: 0px;
    height: 100%;
    box-shadow: 0px 0px 10px 4px #ffffff;
    transform: rotate(26deg);
    mix-blend-mode: normal;
    opacity: 0.3;
    -webkit-animation: ButtonShineAnimation 3s ease-in-out infinite;
    animation: ButtonShineAnimation 3s ease-in-out infinite;
}

@keyframes ButtonShineAnimation {
    0% {
        right: -120%;
    }
    100% {
        right: 220%;
    }
}


.LectureShowVideoContainer:hover .WaterMarkParent {
    display: none;
}

#output {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999999;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.InpectHandler {
    display: none;
}

.InpectHandlerInner {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.InpectHandlerFade {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.6;
}

.InpectHandlerDiv {
    display: block;
    margin: 0 auto;
    width: 500px;
    height: fit-content;
    background: #ffffff;
    padding: 20px;
    z-index: 2;
    text-align: center;
    border-radius: 30px;
}

.InpectHandlerDiv .setbg {
    display: block;
    margin: 0 auto 28px;
    width: 200px;
    aspect-ratio: 1/1;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.InpectHandlerDiv h4 {
    display: block;
    margin: 21px auto;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #e95546;
}

.ConsolePredictor {
}

.ConsolePredictorInner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
}

.ConsolePredictorDiv {
    display: block;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
}

.ConsolePredictorDiv img {
    display: block;
    height: auto;
    width: 300px;
    margin: 20px auto;
}

.ConsolePredictorDiv h3 {
    display: block;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    color: white;
    max-width: 90%;
    font-size: 16px;
}

.ConsolePredictorDiv button {
    display: block;
    margin: 16px auto;
    width: fit-content;
    background: #4b7036;
    color: aliceblue;
    padding: 11px 17px;
    border: none;
    border-radius: 1000px;
    transition: 300ms;
}

.ConsolePredictorDiv button i {
    margin-right: 3px;
}

.ConsolePredictorDiv button:hover {
    transform: scale(1.1);
    box-shadow: -7px -3px 1px 1px #00000080;
}

.ShowLecturesBtn {
    display: none;
}

.LecturesListFade {
    display: none;
}
