@import url("https://fonts.cdnfonts.com/css/google-sans");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --primaryFont: "Product Sans", sans-serif;
  --defaultTextFontSize: 14px;

  --softGray: #f5f5f5;
  --softGray2: #f5f5f5;

  --lightGray: #555;

  --lighterGray: #e0e0e0;
  --lighterGray2: #e0e0e0;

  --whiteGray: #f0f0f5;

  --whitishGray: #f9fafc;
  --whitishGray3: #f9fafc;

  --lightBlueGray: #eef1f8;
  --blue: #3895f9;
  --lightBlue: #e9f3fe;
  --red: #ff0000;
  --lightRed: #d33838;

  --whitishRed: #f8d7da;

  --white: #ffffff;
  --white2: #ffffff;

  --llpTextLightGray: #555;
  --llpTextColorBlue: #3895f9;
  --llpTextColorDarkGray: #2f2f2f;
}

body.dark-mode {
  /* Dark Mode Color Variations */
  --darkModeMainColor: #1e2329;
  --darkModeSecondaryColor: #181a20;
  --darkModeTextColor: #eaecef;

  --softGray: var(--darkModeMainColor);
  --softGray2: var(--darkModeSecondaryColor);

  --lighterGray: #2b3139;
  --lighterGray2: #979797;

  --whitishGray: #636161;
  --whitishGray3: var(--darkModeMainColor);

  --blue: #275fb7;
  --lightBlue: #26384f;

  --white: var(--darkModeMainColor);
  --white2: var(--darkModeSecondaryColor);

  --llpTextColorBlue: var(--darkModeTextColor);
  --llpTextColorDarkGray: var(--darkModeTextColor);
  --llpTextLightGray: var(--darkModeMainColor);
}

body {
  font-family: var(--primaryFont);
  color: var(--llpTextColorDarkGray);
  font-size: var(--defaultTextFontSize);
}

.d-none {
  display: none !important;
}

#mainHelpPage {
  display: flex;
}

.helpPage_sidebar {
  position: fixed;
  z-index: 999999;
  width: 100%;
  max-width: 300px;
  min-height: 100vh;
  height: 100%;
  background: var(--softGray);
  border-right: 1px solid var(--lighterGray);
}

.helpPage_sidebar_links::-webkit-scrollbar {
  width: 3px;
}

.helpPage_sidebar_links::-webkit-scrollbar-track {
  background: var(--lightBlueGray);
}
.helpPage_sidebar_links::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--lighterGray);
}
.helpPage_sidebar_links::-webkit-scrollbar-thumb:hover {
  background: var(--lightGray);
}

#mainHelpPage.training-videos .helpPage_main_container {
  margin-left: 0 !important;
}

.helpPage_main_container {
  margin-left: 300px;
  width: 100%;
}

.helpPage_sidebarHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 75px;
  background: var(--softGray2);
  border-bottom: 1px solid var(--lighterGray);
}

.helpPage_sidebar_logo {
  line-height: 0px;
}

.helpPage_sidebar_logo img {
  width: 100%;
  height: 100%;
  max-width: 150px;
  object-fit: contain;
}

.helpPage_navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 40px;
  min-height: 75px;
  background: var(--white);
  border-bottom: 1px solid var(--lighterGray);
}

/* Modal */
.modal {
  position: fixed;
  display: none;
  overflow: auto;
  align-items: start;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  padding-top: 50px;
  padding-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
  display: flex;
}

.modal-content {
  width: 100%;
  padding: 30px;
  max-width: 1000px;
  border-radius: 10px;
  background: var(--white);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.modal-title {
  font-weight: bold;
  font-size: 16px;
}

.modal-close-btn {
  cursor: pointer;
}

.modal-close-btn:hover {
  color: var(--blue);
}

.modal_video {
  display: flex;
  align-items: center;
  justify-content: center;
}

.iframe-container {
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--softGray);
}

.youtubeIframe {
  width: 100%;
  line-height: 0;
  min-height: 500px;
}

.menuBtn_container {
  display: flex;
  align-items: center;
  gap: 10px;
}

#mainHelpPage:not(.training-videos) .navbar_logo {
  display: none;
}

.navbar_logo img {
  max-width: 150px;
}

#helpPageCloseBtn,
#menuBtn {
  display: none;
}

.helpPage_searchAndBtn_container {
  display: flex;
  width: 100%;
  gap: 10px;
}

.helpPage_navbarBtn_container {
  display: flex;
  align-items: start;
  gap: 10px;
  min-width: 400px;
}

.helpPage_btn {
  outline: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  gap: 10px;
  width: 100%;
  min-height: 40px;
  border-radius: 15px;
  padding-inline: 10px;
  font-family: var(--primaryFont);
  font-size: var(--defaultTextFontSize);
}

.helpPage_btn:hover {
  opacity: 0.7;
}

#helpPageTrainingVideosBtn {
  color: var(--llpTextLightGray);
  background: var(--lighterGray2);
}

#helpPageFreeTrialBtn,
#footerTrial_btn,
#helpPageTrainingVideosBtn.active,
#helpPageTrainingVideosBtn:hover {
  border: 1px solid var(--blue);
  color: var(--llpTextColorBlue);
  background: var(--lightBlue);
}

.trialBtn_container {
  position: relative;
  width: 100%;
}

.trialBtn_container .helpPage_bookDemoText {
  text-align: center;
  position: absolute;
  font-size: 12px;
  bottom: -15px;
  right: 0;
  left: 0;
}

.helpPage_bookDemoText a {
  text-decoration: none;
  color: var(--blue);
}

.helpPage_bookDemoText a:hover {
  text-decoration: underline;
}

.menuBtn {
  font-size: 20px;
  cursor: pointer;
}

.menuBtn:hover {
  color: var(--llpTextColorBlue);
}

.helpPage_closeSidebar {
  width: 30px;
  height: 30px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--llpTextColorDarkGray);
}

.helpPage_closeSidebar:hover {
  color: var(--llpTextColorBlue);
}

.helpPage_search_container {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
}

.helpPage_searchBtn {
  outline: none;
  border: none;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  cursor: pointer;
  right: 0;
  height: 40px;
  width: 50px;
  color: var(--llpTextColorDarkGray);
}

.helpPage_searchBtn:hover {
  color: var(--blue);
}

.helpPage_search_container .helpPage_search {
  width: 100%;
  height: 40px;
  padding-left: 20px;
  padding-right: 50px;
  border-radius: 20px;
  outline: none;
  background: var(--white2);
  font-family: var(--primaryFont);
  color: var(--llpTextColorDarkGray);
  font-size: var(--defaultTextFontSize);
  border: 1px solid var(--lighterGray);
}

.helpPage_search_container .helpPage_search:focus {
  border: 1px solid var(--blue);
}

.helpPage_sidebar_links {
  display: flex;
  overflow-y: auto;
  flex-direction: column;
  gap: 5px;
  padding: 20px 30px;
  max-height: calc(100vh - 75px);
}

.helpPage_sidebar_links li {
  list-style: none;
}

.helpPage_sidebar_links li .category_link {
  font-size: 15px;
  min-height: 40px;
  padding-inline: 10px;
  border-radius: 5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  border: 1px solid var(--softGray);
  color: var(--llpTextColorDarkGray);
}

.helpPage_sidebar_links li .category_link:hover,
.helpPage_sidebar_links li .category_link.active {
  background: var(--whitishGray);
  border: 1px solid var(--lighterGray);
}

#helpPage_content_container {
  padding: 40px;
  min-height: calc(100vh - 190px);
  background: var(--white2);
}

.helpPage_content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.video-list-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 15px;
}

.video-item {
  width: 100%;
  padding: 20px;
  max-width: 350px;
  border-radius: 10px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--lighterGray);
}

.video-item:hover {
  border-color: var(--blue);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.video-item .thumbnail {
  width: 100%;
  line-height: 0px;
  margin-bottom: 10px;
  cursor: pointer;
}

.video-item .thumbnail img {
  width: 100%;
  line-height: 0;
  border-radius: 5px;
  object-fit: contain;
}

.video-title {
  font-weight: bold;
  text-align: center;
}

#helpPageNoData {
  text-align: center;
  padding: 20px;
}

.noData_icon {
  font-size: 50px;
  margin-bottom: 10px;
  display: block;
  color: var(--blue);
}

.helpPage_item {
  line-height: 22px;
}

.helpPage_item a {
  color: var(--blue) !important;
}

.helpPage_item .helpPage_breadCrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.helpPage_item .category_title.parent {
  font-weight: bold;
}

.helpPage_item .category_title.active {
  text-decoration: underline;
  pointer-events: none;
  font-weight: bold;
  color: var(--blue);
}

.helpPage_item .category_title span {
  color: var(--lightGray);
}

.helpPage_item .category_title a,
.helpPage_item .category_title {
  display: flex;
  width: fit-content;
  text-decoration: none;
  gap: 10px;
  color: var(--lightGray);
}

.helpPage_item .category_title a:hover {
  text-decoration: underline;
  color: var(--blue);
}

.helpPage_loading {
  margin: 40px;
  text-align: center;
}

.helpPage_loading .loading_icon_container {
  font-size: 30px;
  color: var(--blue);
}

.helpPage_error {
  margin-bottom: 10px;
}

.helpPage_error_container {
  text-align: center;
  margin-inline: auto;
  padding: 20px;
  max-width: 500px;
  border-radius: 5px;
  color: var(--red);
  background: var(--whitishRed);
}

.helpPage_error_icon {
  margin-bottom: 10px;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
}

.helpPage_error_container p {
  font-weight: bold;
}

.helpPage_faqs_title_container .helpPage_main_faqTitle {
  margin-bottom: 15px;
}

.helpPage_faqs_title_container .helpPage_title_icon {
  margin-right: 5px;
}

.helpPage_faqs_title_container ul {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  gap: 10px;
  margin-left: 30px;
}

.helpPage_faqs_title_container ul li {
  list-style: none;
}

.helpPage_faqs_title_container ul li a {
  padding: 10px;
  gap: 5px;
  border-radius: 5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: bold;
  background: var(--whitishGray3);
  color: var(--llpTextColorDarkGray);
  border: 1px solid var(--lighterGray);
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.04);
}

.helpPage_faqs_title_container ul li a:hover {
  border: 1px solid var(--blue);
  color: var(--llpTextColorBlue);
  background: var(--lightBlue);
}

.helpPage_faqs_title_container ul li a span {
  padding: 5px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.helpPage_categoryItems h1 {
  margin-bottom: 10px;
}

.helpPage_categoryItems ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 40px;
}

.helpPage_categoryItems ul a {
  text-decoration: none;
  color: var(--blue);
}

.helpPage_categoryItems ul a:hover {
  text-decoration: underline;
}

.helpPage_content_title {
  position: relative;
  margin-bottom: 15px;
}

.helpPage_content_title h1 {
  font-size: 32px;
  font-weight: bold;
}

.helpPage_content_description ul,
.helpPage_content_description ol {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
  gap: 5px;
}

.helpPage_content_description .video_remove_btn,
.helpPage_content_description .deleteUploadImage {
  display: none !important;
}

.helpPage_links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-left: 50px;
}

.helpPage_footer_top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 40px;
  background: var(--lightBlue);
}

.helpPage_footer_bottom {
  padding: 20px 40px;
  font-size: 12px;
  text-align: center;
  background: var(--white2);
  color: var(--llpTextColorDarkGray);
}

.helpPage_footer_trialBtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.helpPage_footer_bookDemo {
  white-space: nowrap;
}

.helpPage_footer_bookDemo a {
  color: var(--blue);
  text-decoration: none;
}

.helpPage_footer_bookDemo a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1400px) {
  .helpPage_sidebar {
    max-width: 270px;
  }

  .helpPage_main_container {
    margin-left: 270px;
  }
}

@media only screen and (max-width: 1200px) {
  .helpPage_sidebar {
    max-width: 250px;
  }

  .helpPage_main_container {
    margin-left: 250px;
  }

  .helpPage_footer_top {
    flex-direction: column;
  }
}

@media only screen and (max-width: 1000px) {
  .helpPage_sidebar {
    max-width: 230px;
  }

  .helpPage_main_container {
    margin-left: 230px;
  }

  #helpPage_content_container {
    padding: 40px 30px;
  }

  #mainHelpPage.training-videos .helpPage_navbar {
    flex-wrap: wrap;
  }

  .helpPage_navbar {
    padding: 10px 30px;
  }

  .helpPage_content {
    gap: 20px;
  }

  .helpPage_searchAndBtn_container {
    flex-direction: column;
  }

  .helpPage_faqs_title_container ul li a {
    padding: 8px;
  }

  .trialBtn_container .helpPage_bookDemoText {
    position: static;
    margin-top: 5px;
  }

  .helpPage_footer_top {
    text-align: center;
    padding: 10px 30px;
  }

  .helpPage_footer_bottom {
    padding: 20px 30px;
  }
}

@media only screen and (max-width: 768px) {
  .helpPage_sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    max-width: 250px;
  }

  .helpPage_sidebar.open {
    transform: translateX(0);
  }

  .helpPage_sidebarHeader {
    flex-direction: column-reverse;
    align-items: start;
    gap: 5px;
  }

  #helpPageCloseBtn {
    margin-left: auto;
  }

  .helpPage_navbar {
    align-items: start;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  #mainHelpPage:not(.training-videos) .navbar_logo {
    display: block;
    line-height: 0px;
    max-width: 150px;
  }

  .navbar_logo img {
    width: 100%;
  }

  #helpPage_content_container {
    padding: 20px;
  }

  .helpPage_main_container {
    margin-left: 0;
  }

  #mainHelpPage:not(.training-videos) #menuBtn,
  #mainHelpPage:not(.training-videos) #helpPageCloseBtn {
    display: flex;
  }

  .helpPage_content_description .video_iframe {
    width: 100%;
  }

  .helpPage_sidebar_links {
    padding: 20px;
  }

  .helpPage_footer_top {
    padding: 10px 20px;
  }

  .helpPage_footer_bottom {
    padding: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .video-list-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .helpPage_links {
    margin-left: 30px;
  }

  .helpPage_navbarBtn_container {
    min-width: 100%;
  }

  .help_page_title {
    font-size: 20px;
  }

  .helpPage_faqs_title_container .helpPage_main_faqTitle {
    margin-bottom: 10px;
  }

  .helpPage_faqs_title_container ul li a {
    padding: 5px;
  }
}

@media only screen and (max-width: 500px) {
  .helpPage_navbarBtn_container,
  .helpPage_footer_trialBtn {
    flex-direction: column;
  }
}

@media only screen and (max-width: 400px) {
  .helpPage_error,
  .helpPage_loading {
    margin-bottom: 20px;
  }
}
