:root {
  --purple: rgb(123, 31, 162);
  --violet: rgb(103, 58, 183);
  --pink: rgb(244, 143, 177);
}

body,
html {
  overflow-x: hidden;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}

body {
  background: url(/imgs/dark-diagonal-strips.png) repeat scroll 0 0 #292929;
  margin: 0px 0px;
  color: white;
  max-width: 100%;
  max-height: 100%;
}

::backdrop {
  background: url(/imgs/dark-diagonal-strips.png) repeat scroll 0 0 #292929;
}

a {
  text-decoration: none !important;
  color: white;
}

button {
  font-family: "Quicksand", sans-serif;
}

h1 {
  font-weight: 700;
}

h3 {
  font-weight: 700;
}

.titlebar {
  margin-top: 22px;
  height: 90px;
  width: 100%;
  background-color: #023363;

  display: flex;
  align-content: center;
  justify-items: center;
  align-items: center;
  justify-content: center;

  z-index: 50;
  user-select: none;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
}

.titlebar .secondary {
  width: 1160px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.titlebar .headertxt {
  color: white;
  font-weight: 700;
  font-size: 34px;
}

.titlebar .menubar {
  margin-left: auto;
  margin-right: auto;

  display: flex;
  margin-top: 4px;
}

.titlebar .menubar .non-active-bar {
  margin-left: 160px;
  margin-right: 270px;
}

.titlebar .menubar-nonactive {
  margin-left: 130px;
}

.titlebar .menubar button {
  background-color: #0058ca;
  width: 90px;
  height: 54px;
  color: white;

  border-radius: 5px;
  transition: all 0.2s;
  margin-left: 2px;

  border: none;
  justify-content: center;
  align-items: center;
  align-content: center;
  justify-items: center;
  font-weight: 700;
  font-size: 12px;
}

.titlebar .menubar button span {
  display: block;
  margin-top: 4px;
}

.titlebar .menubar button img {
  margin-top: 2px;
  display: block;
  margin-left: 30px;
  width: 18px;
  height: 18px;
}

.titlebar .menubar button:hover {
  cursor: pointer;

  transition: all 0.2s;
  background-color: #024cbb;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
}

.titlebar .login-main-btn {
  width: 148px;
  height: 34px;
  border-radius: 8px;
  background-color: #0058ca;
  text-shadow: #1a1a1a56 1px 1px;
  color: white;

  transition: all 0.1s;
  margin-top: 4px;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: center;
  user-select: none;
  box-shadow: 12.5px 12.5px 10px rgba(0, 0, 0, 0.035),
    100px 100px 80px rgba(0, 0, 0, 0.07);

  font-weight: 700;
}

.titlebar .login-main-btn:hover {
  transition: all 0.1s;
  cursor: pointer;
  background-color: #024cbb;
}

.titlebar .login-main-btn p {
  font-size: 13px;
  margin-left: 2px;
  word-break: break-all;
  white-space: pre-wrap;
  pointer-events: none;
}

.titlebar .login-main-btn img {
  width: 20px;
  height: 20px;
  margin-left: -4px;
  margin-right: 6px;
  pointer-events: none;
}

.titlebar .login-main-btn-dropdown {
  display: none;
  position: absolute;
  margin-top: 114px;
  flex-direction: column;
  font-size: 13px;
  margin-left: 1017px;
  transition: all 0.15s;
  z-index: 1;
}

.titlebar .login-main-btn-dropdown .dropdown {
  width: 114px;
  height: 32px;
  text-align: center;
  background-color: #0058ca;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  text-align: end;
  font-weight: 700;
}

.titlebar .login-main-btn-dropdown .dropdown:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.titlebar .login-main-btn-dropdown .dropdown:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.titlebar .login-main-btn-dropdown .dropdown p {
  padding: 10px;
}

.titlebar .login-main-btn-dropdown .dropdown:hover {
  background-color: #024cbb;
}

.titlebar .login-main-btn-dropdown .dropdown img {
  width: 16px;
  height: 16px;
}

.base {
  width: 1190px;
  height: 430px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 36px;
  margin-bottom: 40px;
  border-radius: 20px;
  background-color: #181818;
  font-size: 14px;
  color: rgb(183, 183, 183);
  border: 1px solid #0000009f;
}

.base .inside-base {
  width: 87%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.login-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  background-color: #000000ab;
  backdrop-filter: blur(5px);
  overflow: hidden;
  animation: opacity 0.1s both ease-in-out;
  z-index: 1;
  display: none;
}

.sidebar-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 112px;
  bottom: 0;
  background-color: #000000ab;
  backdrop-filter: blur(5px);
  overflow: hidden;
  animation: opacity 0.1s both ease-in-out;
  z-index: 1;
  display: none;
}

.login-win-popup {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 290px;
  height: 330px;
  z-index: 1;
  border-radius: 14px;
  background: url(../imgs/dark-diagonal-strips.png) repeat scroll 0 0 #292929;
  animation: opacity 0.2s both ease-in-out;

  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);

  display: none;
  justify-content: flex-start;
  align-items: center;
}

.login-win-popup label {
  display: block;
  margin-bottom: 5px;

  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
}

.login-win-popup form {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;

  color: rgb(190, 190, 190);
  font-size: 14px;
  font-weight: 700;
}

.login-win-popup form button {
  width: 110px;
  height: 34px;
  margin-top: 20px;
  margin-left: auto;
  border: 0;
  border-radius: 10px;
  color: white;
  background-color: #0365c0;
  transition: all 0.1s;
  font-size: 14px;
  font-weight: 700;
}

.login-win-popup form button:hover {
  cursor: pointer;
  background-color: #133eac;
  transition: all 0.12s;
}

.login-win-popup form .form-group-password {
  padding-top: 20px;
}

.login-win-popup form input {
  width: 238px;
  background-color: #181818;
  height: 26px;
  border-radius: 8px;
  border: 1px solid rgb(255, 255, 255);
  outline: none;
  color: rgb(255, 255, 255);
  padding-left: 8px;
  font-size: 14px;
}

.login-win-popup form a:hover {
  cursor: pointer;
}

.main-loading-overlay {
  cursor: default !important;
  overflow: hidden;
  z-index: 100000000;
  transition: visibility 0s 0.3s, opacity 0.3s linear;
  visibility: visible;
  opacity: 1;
  display: flex;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  background: #292929;
}

.loading-spinner {
  animation: spinner 1.5s infinite linear;
}

.main-loading-overlay .ping {
  --uib-size: 45px;
  --uib-speed: 2s;
  --uib-color: rgb(255, 255, 255);

  position: relative;
  height: var(--uib-size);
  width: var(--uib-size);
}

.ping::before,
.ping::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: var(--uib-color);
  animation: pulse var(--uib-speed) linear infinite;
  transform: scale(0);
  opacity: 0;
}

.ping::after {
  animation-delay: calc(var(--uib-speed) / -2);
}

@keyframes pulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.login-win-popup ul {
  margin-top: 20px;
  margin-left: -25px;
}

.login-win-popup ul a {
  color: #3366ff;
  text-decoration: none;
  padding-left: 2px;
  transition: all 0.2s;
}

.login-win-popup ul a:hover {
  color: #7a9bff;
  transition: all 0.2s;
}

.fadeInDown {
  animation: fadeInDown 0.16s;
}

.whitefilter {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(254deg)
    brightness(105%) contrast(108%);
}

.outline-cards {
  margin-top: 90px;
  margin-bottom: 140px;

  display: flex;
  justify-content: center;
  user-select: none;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.outline-cards .project {
  transform: translate(-50%, -50%);
  margin-right: 100px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.outline-cards .project:first-child {
  margin-left: 24px;
}

.outline-cards .project:last-child {
  margin-right: 0px;
}

.outline-cards .project:hover .imgMasked {
  clip-path: circle(100px at center);
}

.outline-cards .project:hover .project-hail {
  width: 120px;
  height: 120px;
  border-radius: 120px;
}

.outline-cards .project:hover .project-hail2 {
  width: 120px;
  height: 120px;
  border-radius: 120px;
  opacity: 0;
}

.outline-cards .project:hover .project-name {
  left: 200%;
  opacity: 1;
}

.outline-cards .project:hover .project-name:before {
  width: 100%;
}

.outline-cards .project-hail {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 40px;
  transition: 0.5s;
}

.outline-cards .project-hail2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 0;
  transition: 0.7s;
  border: 32px solid #f0544f;
  border-radius: 40px;
  pointer-events: none;
}

.outline-cards .imgMasked {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  height: 120px;
  clip-path: circle(20px at center);
  transition: 0.5s;
  pointer-events: none;
}

.outline-cards .project-name {
  position: absolute;
  max-width: 600px;
  min-width: 150px;
  left: 0;
  top: 150%;
  pointer-events: none;
  transition: 0.5s;
  color: white;
  padding: 3px 6px;
  z-index: 2;
  opacity: 0;
  font-weight: 700;
}

.outline-cards .project-name:before {
  content: "";
  width: 0;
  height: 100%;
  background-color: #023363;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
  z-index: -1;
}

.pdf-controller {
  user-select: none;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
  width: 100%;
  font-weight: 700;
  font-size: 13px;
}

.pdf-controller div {
  display: flex;
}

.pdf-controller button {
  border: none;
  background-color: rgba(99, 88, 238, 1);
  background-image: linear-gradient(
    83.2deg,
    rgba(150, 93, 233, 1) 10.8%,
    rgba(99, 88, 238, 1) 94.3%
  );
  margin-left: 4px;
  border-radius: 6px;
  transition: all 0.1s;
  outline: none;
  width: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  color: white;
  font-size: 11px;
  transition: background-image 0.2s ease-in-out;
  font-weight: 700;
}

.pdf-controller button:hover {
  background-image: linear-gradient(
    83.2deg,
    rgb(126, 74, 204) 10.8%,
    rgb(76, 65, 226) 94.3%
  );
  transition: background-image 0.2s ease-in-out;
  border-radius: 6px;
}

.testOpeningScene {
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url(/imgs/dark-diagonal-strips.png) repeat scroll 0 0 #292929;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testOpeningScene button {
  width: 120px;
  height: 40px;
  border: none;
  border-radius: 14px;
  background-color: #1360c5;
  color: white;
  transition: all 0.1s;
  font-weight: 700;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.testOpeningScene button:hover {
  background-color: #024cbb;
  transition: all 0.1s;
  border-radius: 12px;
}

.notification {
  position: absolute;
  z-index: 22;
  width: 300px;
  height: 90px;
  display: none;
  bottom: 20px;
  right: 20px;

  background-color: #1d1d1d;
  border-radius: 15px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  padding: 15px;
}

.notificationAnim {
  animation: notificationAnim 0.2s ease-in both;
}

.notification .desc {
  width: 95%;
  height: 60px;
  font-size: 14px;
}

.notification .buttons {
  display: flex;
  justify-content: flex-end;
}

.notification .buttons button {
  border: none;
  width: 90px;
  height: 26px;
  background-color: #1360c5;
  color: white;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.1s;
  margin-left: 5px;
}

.notification .buttons button:hover {
  border-radius: 8px;
  background-color: #024cbb;
  transition: all 0.1s;
}

.icon {
  width: 150px;
  height: 150px;
}

.view-tiles {
  user-select: none;
  margin-bottom: 60px;
  margin-left: 20px;
}

.view-tiles li {
  margin-bottom: 6px;
  font-size: 16px;
  transition: all 0.2s;
  list-style: none;
  display: table;
  transition: all 0.1s;
}

.view-tiles li .name {
  width: 100%;
  background-position: 0px 2px;
}

.view-tiles span {
  display: inline-block;
}

.view-tiles .date {
  display: none;
}

.view-tiles .size {
  display: none;
}

.view-tiles li .name {
  text-indent: 20px;
  background-repeat: no-repeat;
}

.view-tiles li:hover {
  transition: all 0.2s;
}

.titlebar-content {
  height: 50px;
  width: 100%;
  background-color: #232323;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
}

.titlebar-content .homebtn {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 14px;
  background-color: #1360c5;
  border: none;
  color: white;
  border-radius: 10px;
  transition: all 0.1s;
  height: 28px;
  width: 80px;
  font-weight: 700;
}

.titlebar-content .homebtn:hover {
  background-color: #024cbb;
  transition: all 0.1s;
}

.titlebar-content .homebtn img {
  width: 14px;
}

.titlebar-content .homebtn span {
  margin-left: 6px;
}

.titlebar-content .content-url {
  font-size: 18px;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
}

.panel {
  width: 800px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  border-radius: 20px;
  background-color: #181818;
  padding: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 40px;
  border: 1px solid #0000009f;
}

.panel > div {
  margin-top: 12px;
  padding: 10px;
  margin-right: auto;
}

.panel > div:last-child {
  margin-left: 80px;
}

.panelTwo {
  width: 800px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  background-color: #181818;
  padding: 50px;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 40px;
  border: 1px solid #0000009f;
}

.panelTwo input {
  width: 84px;
  height: 30px;
  margin-top: 4px;
  border: 0;
  border-radius: 10px;
  color: white;
  background-color: #0058ca;
  transition: all 0.2s;
  font-size: 13px;
  font-weight: 700;
  margin-right: 4px;
}

.panelTwo input:hover {
  background-color: #024cbb;
  transition: all 0.12s;
}
.panelTwo #log {
  width: 25rem;
  height: 15rem;
  background-color: black;
  border: 1px solid black;
  padding: 0.5rem;
  overflow: scroll;
}
.panelTwo button {
  width: 75px;
  height: 32px;
  margin-top: 4px;
  margin-left: auto;
  border: 0;
  border-radius: 10px;
  color: white;
  background-color: #0058ca;
  transition: all 0.2s;
  font-size: 13px;
  font-weight: 700;
}

.panelTwo button:hover {
  background-color: #024cbb;
  transition: all 0.12s;
}

.panelTwo #sendButton {
  width: 40px;
  height: 15px;
  margin: 3px;
  color: black;
  background-color: white;
  font-size: 11px;
  font-family: monospace;
  white-space: pre;
}

.panel .csvAdmin {
  margin-top: 40px;
}

.panel .csvAdmin button {
  display: inline-block;
}

.panel .csvAdmin input {
  display: block;
}

.panel .csvAdmin p {
  display: inline-block;
  margin-right: 4px;
}

.panel input {
  display: block;
  border-radius: 6px;
  border: none;
  background-color: #ececec;
  height: 20px;
  outline: none;
  width: 180px;
  padding-left: 5px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-right: 3px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.panel input[class="options"] {
  cursor: pointer;
}

.panel button {
  width: 150px;
  height: 32px;
  margin-top: 4px;
  margin-left: auto;
  border: 0;
  border-radius: 10px;
  color: white;
  background-color: #0058ca;
  transition: all 0.2s;
  font-size: 13px;
  font-weight: 700;
}

.panel button:hover {
  background-color: #024cbb;
  transition: all 0.12s;
}

.panel .switch {
  width: auto;
  height: auto;
  margin-top: 4px;
  display: flex;
  justify-content: center;
}
.panel .smallbtn {
  width: 100px;
  margin: auto;
  margin-top: 5px;
}

.children {
  margin-left: auto;
}

.panel input[type="button"] {
  width: 150px;
  height: 32px;
  margin-top: 4px;
  border: 0;
  border-radius: 10px;
  color: white;
  background-color: #0058ca;
  transition: all 0.2s;
  font-size: 13px;
  font-weight: 700;
}

.panel input[type="button"]:hover {
  background-color: #024cbb;
  transition: all 0.12s;
}

.panel form .first-password {
  margin-bottom: 2px;
}

.panel form .second-password {
  margin-bottom: 6px;
}

.csvAdmin .adminPrompt {
  margin-top: 10px;
}

.panel .panelUsername {
  font-size: 24px;
  font-weight: 700;
  display: block;
  text-align: center;
}

.panel .AdministratorTxT {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 14px;
}

.hscroll {
  overflow-x: visible !important;
  overflow-y: visible !important;
}

.noscroll {
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

.noscrolly {
  overflow-x: scroll !important;
  overflow-y: hidden !important;
}

.pdfViewerBody {
  width: 100vw;
  height: 100vh;
  overflow-x: scroll;
  overflow-y: hidden !important;
}

.pdfViewer {
  display: flex;
  margin-left: auto;
  flex-direction: column;
  margin-right: auto;
  width: 850px;
  margin-top: 3vh;
  margin-bottom: 3vh;
  height: 95vh;
  overflow-y: auto !important;
  border-radius: 2%;
}

.pdfViewer canvas {
  border-radius: 12px;
  margin-bottom: 6px;
  width: 100%;
}

.pdfViewer p {
  margin-left: 5px;
  margin-bottom: 5px;
  margin-top: 0px;
  color: rgb(255, 255, 255);
  font-weight: 700;
}

.testLayout {
  display: flex;
  color: #000000;
  margin-top: 40px;
}

.testLayout .pdfViewer {
  display: flex;
  margin-left: auto;
  margin-right: 10px;
  border-radius: 12px;
  width: 850px;
  height: 89vh;
  margin-top: 0px !important;
  margin-bottom: 40px;
  border-radius: 2%;
}

.testLayout .pdfViewer canvas {
  margin-bottom: 6px;
}

.testLayout .testSheet {
  overflow-y: scroll;
  position: sticky;
  width: 730px;
  height: 600px;
  margin-bottom: 70px;
  border-radius: 12px;
  margin-right: auto;
  user-select: none !important;
}

.testLayout .testSheet div {
  background-image: linear-gradient(
    160deg,
    rgb(126, 74, 204) 10.8%,
    rgb(76, 65, 226) 94.3%
  );
  padding: 10px;
  color: rgb(255, 255, 255);
  border-radius: 14px;
  width: 150px;
  display: inline-block;
  margin: 4px;
}

.testLayout .testSheet p {
  font-weight: 700;
  margin-top: -4px;
  margin-bottom: 2px;
  font-size: 18px;
}

.testLayout .testSheet txt {
  font-weight: 700;
  position: absolute;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
}

.testLayout .testSheet .top {
  padding: 0 !important;
  background-image: none !important;
  display: flex !important;
}

.flagBtn {
  width: 16px;
  padding: 2px;
  transition: all 0.1s;
  border-radius: 4px;
  margin-left: auto;
  margin-top: -2px;
  margin-right: 7px;
}

.flagBtn:hover {
  cursor: pointer;
  transition: all 0.1s;
}

.testAnswerParent input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
  margin-top: 28px;
}

.testAnswerParent input[type="checkbox"]:checked {
  transition: all 0.15s;
  scale: 1.4;
  border: solid 5px rgb(36, 36, 36);
}

.fullScreen {
  background: rgb(66, 133, 244) !important;
  font-weight: 700;
}

.fullScreen:hover {
  cursor: pointer;
}

.submit {
  background: rgb(244, 180, 00) !important;
  font-weight: 700;
}

.submit:hover {
  cursor: pointer;
}

.splitPage {
  background: rgb(219, 68, 55) !important;
  font-weight: 700;
}

.splitPage:hover {
  cursor: pointer;
}

.save {
  background: rgb(15, 157, 88) !important;
  font-weight: 700;
}

.save:hover {
  cursor: pointer;
}

.courses-base {
  width: 1190px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 36px;
  border-radius: 20px;
  background-color: #181818;
  font-size: 14px;
  border: 1px solid #0000009f;
  margin-bottom: 60px;
  padding: 40px;
}

.button-1 {
  background-color: #0058ca;
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  height: 35px;
  width: 66px;
  outline: none;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin: 4px;
  transition: all 0.15s;
}
.button-flag {
  background-color: #0058ca;
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  height: 28px;
  width: 28px;
  outline: none;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin: 2px;
  transition: all 0.15s;
}

.button-flag2 {
  background-color: #000000;
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  height: 25px;
  width: 25px;
  outline: none;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin-left: 6px;
  transition: all 0.15s;
}
.button-1:hover,
.button-1:focus {
  background-color: #024cbb;
  transition: all 0.15s;
}

.courses-header {
  margin-top: 30px;
  display: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 16px;
}

.courses-header .desc {
  width: 700px;
  display: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  font-size: 14px;
}

.courses-content {
  width: 70%;
  display: none;
  border-radius: 15px;
  margin-left: auto;
  margin-right: auto;
  border: 5px solid rgb(0, 81, 255);
  padding: 14px;
}

.courses-content .collapsible {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(90, 90, 90, 0.2);
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.1s ease-in-out;
  border-radius: 10px;
  margin-bottom: 10px;
}

.courses-content .collapsible:last-of-type {
  margin-bottom: 0px;
}

.courses-content .active,
.collapsible:hover {
  transition: all 0.1s ease-in-out;
  scale: 1.015;
}

.courses-content .collapsible:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.courses-content .collapsible:last-of-type {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.courses-content .content {
  display: none;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  margin: 20px;
  border-radius: 10px;
  overflow: hidden;
  background-color: rgba(90, 90, 90, 0.2);
  animation: fadeIn 0.3s ease-in both;
  font-weight: 700;
}

.courses-content .content:last-child {
  border-radius: 10px;
}

.courses-content .content p {
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 14px;
}

.table-marks {
  display: inline-table;
  border-collapse: collapse;
  margin: 15px 0;
  font-size: 0.9em;
  min-width: 200px;
  overflow: hidden;
  background-color: #1f1f1f;
  border: 10px solid rgba(0, 128, 0, 0);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.table-marks th,
.table-marks td {
  border-bottom: 2px solid rgba(200, 200, 200, 0.3);
  padding: 12px 15px;
  text-align: center;
}
.table-marks tr:hover:not(:first-child) {
  background-color: #181818;
}
.remove {
  display: none;
}

.mobile-hamburger {
  margin-top: 14px;
  margin-right: 40px;
  display: none !important;
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: #fff;
  margin-bottom: 7px;
  cursor: pointer;
  transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background-color 0.5s ease;
  transition: transform 0.2s ease, background-color 0.5s ease,
    -webkit-transform 0.2s ease;
}
.menu-icon__line-left {
  width: 16.5px;
  transition: all 200ms linear;
}
.menu-icon__line-right {
  width: 16.5px;
  float: right;
  transition: all 200ms linear;
}
.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
  width: 30px;
}

.sidebar-open {
  position: absolute;
  width: 340px;
  height: 320px;
  top: 112px;
  bottom: 0;
  background-color: #023363;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;

  transition: transform 0.2s ease-in-out;
  transform: translate(-150%);
  border-bottom-right-radius: 40px;
}

.sidebar-open .menu-items {
  width: 170px;
  margin-left: 148px;
}
.sidebar-open li {
  list-style: none;
  margin-top: 30px;
  font-weight: 700;
}

.sidebar-open li:first-child {
  margin-top: 0px;
}

.sidebar-open a {
  color: #ffffff;
}

.sidebar-open a:hover {
  font-weight: 700;
}

.select-course {
  text-align: center;
}

.guideBase {
  width: 1190px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 36px;
  margin-bottom: 40px;
  border-radius: 20px;
  background-color: #181818;
  font-size: 14px;
  color: rgb(220, 220, 220);
  border: 1px solid #0000009f;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 50px;
}

.guideBase ul {
  margin: 0px !important;
}

.guideBase .desc {
  margin-top: 10px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  width: 84%;
}

.guideBase img {
  border-radius: 16px;
  border: 3px rgb(48, 54, 202) solid;
  width: 38vw;
}

.guideBase h3 {
  margin: 0px !important;
}

.guideBase h2 {
  margin-bottom: 8px !important;
}

.guideBase h4 {
  margin: 0px !important;
}

.guideBase .desc p {
  margin-top: 0px !important;
}

@media only screen and (max-width: 1600px) {
  .testLayout .testSheet {
    width: 370px;
  }
}

@media only screen and (max-width: 1300px) {
  .base {
    width: 90%;
    height: 40%;
  }

  .base .inside-base {
    margin-bottom: 50px;
  }

  .titlebar .login-main-btn {
    margin-left: 4%;
  }

  .titlebar .menubar {
    margin-left: 2%;
  }

  .titlebar .login-main-btn-dropdown {
    margin-left: 888px;
  }

  .courses-base {
    font-size: 14px;
    width: 85%;
  }

  .guideBase {
    width: 86%;
  }
}

@media only screen and (max-width: 1050px) {
  .base {
    font-size: 14px;
    width: 86%;
  }

  .titlebar .menubar {
    display: none;
  }

  .titlebar .login-main-btn-dropdown {
    margin-left: 292px;
  }

  .courses-base .desc {
    width: 87%;
  }

  .courses-content .collapsible {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    color: white;
    cursor: pointer;
    padding: 18px;
  }

  .courses-content {
    width: 88%;
    display: none;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
  }

  .mobile-hamburger {
    display: block !important;
  }
}

@media only screen and (max-width: 600px) {
  .panel {
    width: 70%;
  }

  .titlebar {
    height: 90px;
  }

  .titlebar .headertxt {
    font-size: 28px;
  }

  .titlebar .login-main-btn-dropdown {
    margin-left: 222px;
  }

  .courses-base {
    font-size: 14px;
    width: 68%;
  }

  .outline-cards {
    display: none;
  }

  .mobile-hamburger {
    margin-right: 20px;
  }

  .titlebar .login-main-btn img {
    margin-left: 0px;
  }

  .titlebar .login-main-btn {
    width: 50px;
  }

  .titlebar .login-main-btn img {
    margin-right: 0px;
  }

  .login-main-btn p {
    display: none;
  }

  .titlebar .login-main-btn-dropdown {
    margin-left: 218px;
  }

  .titlebar .login-main-btn-dropdown .dropdown {
    width: 120px;
  }

  .panel {
    flex-direction: column;
  }
  .panel .panelUsername {
    margin-top: 0px;
  }

  .panel .table-marks {
    margin-top: 0px;
  }
}

@keyframes rotate {
  0%,
  49.999%,
  100% {
    transform: none;
  }

  50%,
  99.999% {
    transform: rotate(90deg);
  }
}

@keyframes shift-left {
  0%,
  100% {
    transform: translateX(0%);
  }

  50% {
    transform: scale(0.65) translateX(-75%);
  }
}

@keyframes shift-right {
  0%,
  100% {
    transform: translateX(0%);
  }

  50% {
    transform: scale(0.65) translateX(75%);
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    scale: 0.6;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

@keyframes background-pan {
  from {
    background-position: 0% center;
  }

  to {
    background-position: -200% center;
  }
}

@keyframes scale {
  from,
  to {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

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

  to {
    transform: rotate(180deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes notificationAnim {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cooltxt > .magic {
  display: inline-block;
  position: relative;
  font-weight: 700;
  max-width: 900px;
}

.cooltxt > .magic > .magic-star {
  --size: clamp(20px, 1.5vw, 30px);

  animation: scale 700ms ease forwards;
  display: block;
  height: var(--size);
  left: var(--star-left);
  position: absolute;
  top: var(--star-top);
  width: var(--size);
}

.cooltxt > .magic > .magic-star > svg {
  animation: rotate 1000ms linear infinite;
  display: block;
  opacity: 0.7;
}

.cooltxt > .magic > .magic-star > svg > path {
  fill: var(--violet);
}

.cooltxt > .magic > .magic-text {
  animation: background-pan 3s linear infinite;
  background: linear-gradient(
    to right,
    var(--purple),
    var(--violet),
    var(--pink),
    var(--purple)
  );
  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.broadcast {
  text-align: center;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

::-webkit-scrollbar {
  width: 12px;
  background: rgba(121, 121, 121, 0);
  height: 12px;
}

::-webkit-scrollbar:hover {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-thumb {
  background: #63636396;
  border-radius: 10px;

  border-right: 2px solid transparent;
  border-left: 2px solid transparent;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: #83838396;
  border-radius: 10px;
}

::-webkit-scrollbar-track-piece {
  display: none;
}

::-webkit-scrollbar-corner {
  display: none;
}
