/*
Template Name: Site Namte
Template URI: 
Author: CodeZenix.
Author URI: https://www.siteurl.com
Description: 
Version: 1.0.0
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------*/
:root {
  --primaryColor: #FC2248;
  --secondaryColor: #7A75FF;
  --colorWhite: #ffffff;
  --salmon: #FF8268;
  --olive: #404040;
  --dark: #18191A;
  --color-black: #000000;
  --text-color_dark: #979899;
  --bg-slate-100: #F1F5F9;
  --bg-slate-200: #E2E8F0;
  --bg-slate-300: #CBD5E1;
  --bg-slate-900: #0F172A;
  --bg-slate-700: #334155;
  --bg-red-500: #EF4444;
  --borderColor: #e5e7eb;
  --yellow: #FDE047;
  --yellow-500: #EAB308;
  --sky-blue-400: #38BDF8;
  --sky-blue-500: #0EA5E9;
}

html {
  -webkit-text-size-adjust: 100%;
  transition: all 0.2s ease;
}

body {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.875;
}

p {
  font-size: 15px;
  line-height: 1.875;
  margin: 0;
}
@media screen and (min-width: 992px) {
  p {
    font-size: 1rem;
  }
}

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul li, ol li {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 992px) {
  ul li, ol li {
    font-size: 1rem;
  }
}

a {
  color: inherit;
  text-decoration: none;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 992px) {
  a {
    font-size: 1rem;
  }
}
a:hover {
  color: inherit;
  text-decoration: none;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: inline-block;
}

/*-------------------------------------------------
    [ ## Heading ]
---------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  clear: both;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  color: inherit;
  text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 3rem;
}

h4 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.125rem;
}

.font-thin {
  font-weight: 100;
}

.font-extralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.text-theme {
  color: #00bc91;
}

/*-------------------------------------------------
    [ ## Fields ]
---------------------------------------------------*/
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search] {
  width: 100%;
  border-radius: 0.375rem;
  background-color: transparent;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  color: #000000;
  height: 3.125rem;
  border: 1px solid #E8E8E8;
  padding: 1.25rem;
}
html.dark input[type=text],
html.dark input[type=email],
html.dark input[type=url],
html.dark input[type=password],
html.dark input[type=search] {
  border-color: #434445;
  color: white;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus {
  outline: none;
  box-shadow: none;
  border-color: #00bc91;
}
html.dark input[type=text]:focus,
html.dark input[type=email]:focus,
html.dark input[type=url]:focus,
html.dark input[type=password]:focus,
html.dark input[type=search]:focus {
  border-color: #00bc91;
}

input[type=time]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #E8E8E8;
}
html.dark select {
  border-color: #434445;
}
select:focus {
  border-color: #00bc91;
}
html.dark select:focus {
  border-color: #00bc91;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  box-shadow: 0 0 0rem 100rem rgba(0, 0, 0, 0) inset;
  -webkit-box-shadow: 0 0 0rem 100rem rgba(0, 0, 0, 0) inset;
  -webkit-text-fill-color: #000000 !important;
}

input:-webkit-autofill:focus {
  box-shadow: 0 0 0rem 100rem rgba(0, 0, 0, 0) inset;
  -webkit-box-shadow: 0 0 0rem 100rem rgba(0, 0, 0, 0) inset;
  -webkit-text-fill-color: #1F2933 !important;
}

textarea {
  display: block;
  width: 100%;
  min-height: 8rem;
  padding: 1rem 1.25rem;
  background-color: transparent;
  font-size: 0.875rem;
  line-height: 1.25rem;
  outline: none;
  border-radius: 0.375rem;
  border: 1px solid #E8E8E8;
}
html.dark textarea {
  border-color: #434445;
}
textarea:focus {
  outline: none;
  box-shadow: none;
  border-color: #00bc91;
}
html.dark textarea:focus {
  border-color: #00bc91;
}

::-webkit-input-placeholder {
  color: #9ca3af;
}

.widget_newsletter::-webkit-input-placeholder {
  color: #808080;
}

:-moz-placeholder {
  color: #9ca3af;
  opacity: 1;
}

::-moz-placeholder {
  color: #9ca3af;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #9ca3af;
}

/**
 * Hide element while making it readable for screen readers
 */
.figure {
  display: block;
}

.section-name {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-family: "Poppins", sans-serif;
  color: #000000;
  border: 1px solid #E8E8E8;
  letter-spacing: 0.025em;
  border-radius: 2.5rem;
}
.section-name i {
  color: #00bc91;
}
@media screen and (min-width: 992px) {
  .section-name {
    padding: 0.5rem 1.25rem;
  }
}
html.dark .section-name {
  color: #FFFFFF;
  border-color: #333333;
}

.section-title {
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .section-title {
    margin-top: 2.5rem;
  }
}
.section-title h2 {
  font-size: 2rem;
  color: #000000;
  font-weight: 200;
  line-height: 1.27;
}
@media screen and (min-width: 768px) {
  .section-title h2 {
    font-size: 2.25rem;
    line-height: 1.2;
  }
}
@media screen and (min-width: 992px) {
  .section-title h2 {
    font-size: 3rem;
    line-height: 1;
  }
}
html.dark .section-title h2 {
  color: #FFFFFF;
}
.section-title h2 span {
  font-weight: 600;
  color: #00bc91;
}
.section-title .subtitle {
  margin-top: 1rem;
  max-width: 36rem;
}
@media screen and (min-width: 768px) {
  .section-title .subtitle {
    margin-top: 1.5rem;
  }
}
.section-title .subtitle span {
  color: #000000;
}
html.dark .section-title .subtitle span {
  color: #FFFFFF;
}

@keyframes lineheight {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
@keyframes preloadedzero {
  0% {
    width: 50%;
  }
  100% {
    width: 0%;
  }
}
@keyframes topToBottom {
  0% {
    top: 0rem;
  }
  100% {
    top: 100%;
  }
}
@keyframes bottomToTop {
  0% {
    bottom: 0rem;
  }
  100% {
    bottom: 100%;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
.animate-bounce {
  animation: bounce 1s infinite;
}

.topbutton {
  position: fixed;
  right: 1rem;
  bottom: 1.5rem;
  z-index: 9999;
  display: grid;
  place-content: center;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: #FFFFFF;
  box-shadow: 0 1px 2px 0 #94a3b8;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.topbutton:hover {
  color: #000000;
}
@media screen and (min-width: 1200px) {
  .topbutton {
    right: 1.75rem;
    bottom: 1.75rem;
  }
}
@media screen and (min-width: 1400px) {
  .topbutton {
    right: 2rem;
  }
}
.topbutton.btn-show {
  visibility: visible;
  opacity: 1;
}

.style-switcher {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(15rem);
  width: 15rem;
  transition: all 0.2s ease;
  z-index: 9999;
}
.style-switcher.active {
  transform: translateY(-50%) translateX(0);
}
.style-switcher .toggle-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px #94a3b8;
  color: #000000;
  background-color: #FFFFFF;
  border-radius: 0.5rem 0 0 0.5rem;
  user-select: none;
  cursor: pointer;
  width: 3.75rem;
  height: 3.75rem;
  left: -3.75rem;
}
html.dark .style-switcher .toggle-btn {
  background-color: #212223;
  color: #FFFFFF;
}

.btn__theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #FFFFFF;
  text-align: center;
  font-size: 0.875rem;
  border: 1px solid #00bc91;
  background-color: #00bc91;
  border-radius: 2.5rem;
  padding: 0.875rem 2.25rem;
  line-height: 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn__theme:hover {
  background-color: #069c7a;
  color: #FFFFFF;
}

.btn__theme__outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 2rem;
  border: 1px solid #00bc91;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #00bc91;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn__theme__outlined:hover {
  background-color: #069c7a;
  color: #FFFFFF;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-slate-100);
}
html.dark .preloader {
  background: var(--color-black);
}
.preloader .animate-preloader {
  height: 7rem;
  width: 7rem;
  animation: preloader_spin 0.8s ease infinite;
  border-radius: 9999px;
  border-width: 4px;
  border-color: transparent;
  border-bottom-color: var(--primaryColor);
  border-top-color: var(--primaryColor);
}

.custom_cursor_one {
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid #9ca3af;
  border-radius: 50%;
  pointer-events: none;
  transition: all 100ms ease-out;
}
@media screen and (max-width: 767px) {
  .custom_cursor_one {
    display: none;
  }
}

.custom_cursor_two {
  z-index: 99999;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  border: 1px solid #9ca3af;
  background-color: #000000;
  position: fixed;
  pointer-events: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .custom_cursor_two {
    display: none;
  }
}

/*--------------------------------------------------------------
    [ ## Container ]
--------------------------------------------------------------*/
.container {
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 765px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 980px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1190px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
.fixed-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1024;
  border-bottom: 1px solid var(--borderColor);
  background: var(--colorWhite);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  transition: all 0.15s ease;
  transition-duration: 300ms;
}
@media screen and (min-width: 576px) {
  .fixed-header {
    padding: 1rem 0;
  }
}
.fixed-header .nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .fixed-header .nav {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.fixed-header .nav-btn {
  width: 2.5rem;
  background: none;
  border: 0;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .fixed-header .nav-btn {
    display: none;
  }
}
.fixed-header .nav-btn span {
  display: block;
  height: 1px;
  background: var(--bg-slate-700);
}
.fixed-header .nav-btn span.first {
  width: 66.666667%;
}
.fixed-header .nav-btn span.second {
  width: 100%;
}
.fixed-header .nav-btn span.third {
  width: 50%;
}
.fixed-header .nav-btn span + span {
  margin-top: 0.75rem;
}
.fixed-header .avatar-item {
  border-radius: 9999px;
  border-width: 1px solid var(--borderColor);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixed-header .avatar-item a {
  display: flex;
}
.fixed-header .avatar-item img {
  max-width: 10rem;
}
@media screen and (max-width: 991px) {
  .fixed-header .avatar-item img {
    max-width: 6rem;
  }
}
.fixed-header .avatar-txt {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: var(--olive);
}
@media screen and (max-width: 575px) {
  .fixed-header .avatar-txt {
    display: none;
  }
}
.fixed-header .right-menu {
  line-height: 2rem;
  margin-left: auto;
  display: flex;
  align-items: center;
}
.fixed-header .right-menu li a {
  display: inline-block;
  white-space: nowrap;
  border-radius: 0.5rem;
  border: 1px solid var(--borderColor);
  background: var(--colorWhite);
  padding: 1rem 1rem;
  font-size: 0.875rem;
  line-height: 1;
  transition: all 0.15s ease;
  transition-duration: 300ms;
}
.fixed-header .right-menu li a:hover {
  background: var(--color-black);
  color: var(--colorWhite);
}
.fixed-header .right-menu li a.active {
  background: var(--color-black);
  color: var(--colorWhite);
}
.fixed-header .right-menu li + li {
  margin-left: 1rem;
}
@media screen and (max-width: 575px) {
  .fixed-header .right-menu li.request-btn {
    display: none;
  }
}

.documentaton-wrapper {
  margin-top: 5rem;
  padding: 2.5rem 0;
}
.documentaton-wrapper .documentation-area {
  position: relative;
}
@media screen and (min-width: 992px) {
  .documentaton-wrapper .documentation-area {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
.documentaton-wrapper .documentation-area div + div {
  margin-top: 2rem;
}

@media screen and (min-width: 992px) {
  .sidebar {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column: span 3/span 3;
  }
}
@media screen and (min-width: 1400px) {
  .sidebar {
    grid-column: span 2/span 2;
  }
}
.sidebar .sidebar-body {
  position: sticky;
  top: 7rem;
  height: calc(100vh - 8rem);
  overflow-y: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  transition: all 0.15s ease;
  transition-duration: 200ms;
  scrollbar-width: none;
}
@media screen and (min-width: 1200px) {
  .sidebar .sidebar-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 1400px) {
  .sidebar .sidebar-body {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}
.sidebar .sidebar-body .nav_title {
  margin-bottom: 0.5rem;
  border-radius: 0.125rem;
  background: var(--dark);
  padding: 0.5rem 1rem;
  font-weight: 600;
  color: var(--colorWhite);
  font-size: 1rem;
  line-height: 1.7;
}
.sidebar .sidebar-body .nav-sidebar {
  line-height: 2rem;
}
.sidebar .sidebar-body .nav-sidebar li > .nav-link {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  background: var(--bg-slate-100);
  padding: 0.375rem 1rem;
  font-size: 15px;
}
.sidebar .sidebar-body .nav-sidebar li > .nav-link .docs-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  background: var(--bg-slate-300);
}
.sidebar .sidebar-body .nav-sidebar li + li {
  margin-top: 0.375rem;
}
.sidebar .sidebar-body .nav-sidebar li .dropdown_nav {
  line-height: 2rem;
  margin-top: 0.55rem;
  margin-bottom: 0.55rem;
  padding-left: 1rem;
  background: none;
}
.sidebar .sidebar-body .nav-sidebar li .dropdown_nav .nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.125rem 0;
  transition: all 0.15s ease;
  transition-duration: 200ms;
  background: none;
  line-height: 1.65;
}
.sidebar .sidebar-body .nav-sidebar li .dropdown_nav .nav-link:hover {
  color: var(--primaryColor);
}
.sidebar .sidebar-body .nav-sidebar li .dropdown_nav_with_border {
  border-left: 1px solid var(--borderColor);
}

@media screen and (min-width: 992px) {
  .text-content {
    grid-column: span 9/span 9;
  }
}
@media screen and (min-width: 1400px) {
  .text-content {
    grid-column: span 8/span 8;
  }
}
.text-content .doc-section {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.text-content .doc-section .title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}
@media screen and (min-width: 992px) {
  .text-content .doc-section .title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.text-content .doc-section .boldTitle {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}
.text-content .doc-section .titleXl {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}
.text-content .doc-section p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--color-black);
  font-size: 1rem;
}
.text-content .doc-section p span.sky-bg {
  color: var(--colorWhite);
  background: var(--sky-blue-500);
  padding: 0.25rem 0.75rem;
  border-radius: 0.125rem;
}
.text-content .doc-section p a.action {
  color: var(--primaryColor);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.text-content .doc-section .disk-list {
  line-height: 2rem;
  margin-left: 2rem;
  list-style-type: disc;
}
.text-content .doc-section .disk-list2 {
  list-style-type: disc;
  margin-left: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.text-content .doc-section ul li.credits-list a {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.text-content .doc-section ul li.credits-list a svg {
  fill: var(--primaryColor);
}
.text-content .doc-section .template-info {
  margin-top: 3rem;
  margin-bottom: 3rem;
  overflow-x: auto;
  border-radius: 0.5rem;
  background: var(--bg-slate-900);
  padding: 1rem;
  color: var(--colorWhite);
}
@media screen and (min-width: 768px) {
  .text-content .doc-section .template-info {
    padding: 2.4rem;
  }
}
.text-content .doc-section .template-info table tr {
  line-height: 1.56;
}
.text-content .doc-section .template-info table tr td {
  line-height: 1.56;
}
.text-content .doc-section .template-info table tr td.dot {
  padding-left: 3rem;
  padding-right: 3rem;
}
.text-content .doc-section .popup-img-wrapper {
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .text-content .doc-section .popup-img-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.text-content .doc-section .popup-img {
  margin-top: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--borderColor);
  padding: 0.5rem;
}
@media screen and (min-width: 992px) {
  .text-content .doc-section .popup-img {
    padding: 1rem;
  }
}
@media screen and (min-width: 1400px) {
  .text-content .doc-section .popup-img {
    padding: 1.5rem;
  }
}
.text-content .doc-section .popup-img a img {
  border-radius: 0.5rem;
}
.text-content .doc-section pre {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 0.375rem;
  background: var(--bg-slate-900);
  padding: 1rem;
  color: var(--colorWhite);
}
.text-content .doc-section pre.update {
  width: 100%;
  overflow-x: auto;
  border-radius: 0.5rem;
  background: var(--dark);
  padding: 2rem 0;
  color: var(--bg-slate-200);
}
.text-content .doc-section .decimal-list {
  list-style-type: decimal;
  margin-left: 1rem;
  line-height: 2rem;
}
.text-content .doc-section .decimal-list li a {
  color: var(--bg-red-500);
}
.text-content .doc-section .guide-list {
  line-height: 2rem;
  margin-left: 1rem;
  list-style-type: decimal;
}
.text-content .doc-section .guide-list li code {
  border-radius: 0.375rem;
  background: var(--yellow);
  padding: 0.5rem 1rem;
}
.text-content .doc-section .guide-list li + li {
  margin-top: 1.5rem;
}
.text-content .doc-section .folder-structure-list {
  line-height: 2rem;
  border-left: 1px dashed var(--borderColor);
}
.text-content .doc-section .folder-structure-list li::before {
  content: "";
  border-top: 1px dashed var(--borderColor);
  display: inline-block;
  width: 2rem;
  position: relative;
  top: -0.25rem;
}
.text-content .doc-section .folder-structure-list li i {
  margin-right: 0.5rem;
  color: var(--yellow-500);
}
.text-content .doc-section .folder-structure-list li span {
  font-weight: 600;
}
.text-content .doc-section .folder-structure-list li p {
  margin-left: 2rem;
  margin-top: 0;
  margin-bottom: 0;
}
.text-content .doc-section .folder-structure-list li .list {
  line-height: 2rem;
  margin-bottom: 1rem;
  margin-left: 2rem;
  border-left: 1px dashed var(--borderColor);
}
.text-content .doc-section .folder-structure-list li .list li::before {
  content: "";
  border-top: 1px dashed var(--borderColor);
  display: inline-block;
  width: 2rem;
  position: relative;
  top: -0.25rem;
}
.text-content .doc-section .folder-structure-list li .list li i {
  margin-right: 0.5rem;
  color: var(--yellow-500);
}
.text-content .doc-section .folder-structure-list li .list li p {
  margin-left: 2rem;
  margin-top: 0;
  margin-bottom: 0;
}
.text-content .doc-section .folder-structure-list li .list li ul {
  line-height: 2rem;
  margin-left: 2rem;
  border-left: 1px dashed var(--borderColor);
}
.text-content .doc-section .folder-structure-list li .list li ul li::before {
  content: "";
  border-top: 1px dashed var(--borderColor);
  display: inline-block;
  width: 2rem;
  position: relative;
  top: -0.25rem;
}
.text-content .doc-section .folder-structure-list li .list li ul li i {
  margin-right: 0.5rem;
  color: var(--yellow-500);
}
.text-content .doc-section .folder-structure-list li .list li ul li p {
  margin-left: 2rem;
}
.text-content .doc-section .folder-structure-list li .list li ul li code {
  color: var(--colorWhite);
  padding: 0.5rem 0.5rem;
  border-radius: 0.25rem;
  background: var(--color-black);
  display: inline-block;
  line-height: 1;
}
.text-content .doc-section .folder-structure-list li .list li ul li + li {
  margin-top: 0.5rem;
}
.text-content .doc-section .folder-structure-list li ul li::before {
  content: "";
  border-top: 1px dashed var(--borderColor);
  display: inline-block;
  width: 2rem;
  position: relative;
  top: -0.25rem;
}
.text-content .doc-section .folder-structure-list li ul li i {
  margin-right: 0.5rem;
  color: var(--yellow-500);
}
.text-content .doc-section .folder-structure-list li ul li p {
  margin-left: 2rem;
  margin-top: 0;
  margin-bottom: 0;
}
.text-content .doc-section .folder-structure-list li ul li span {
  font-weight: 600;
}
.text-content .doc-section .folder-structure-list li ul li ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
  border-left: 1px dashed var(--borderColor);
}
.text-content .doc-section .folder-structure-list li ul li ul li::before {
  content: "";
  border-top: 1px dashed var(--borderColor);
  display: inline-block;
  width: 2rem;
  position: relative;
  top: -0.25rem;
}
.text-content .doc-section .folder-structure-list li ul li ul li i {
  margin-right: 0.5rem;
  color: var(--yellow-500);
}
.text-content .doc-section .folder-structure-list li ul li ul li p {
  margin-left: 2rem;
  margin-top: 0;
  margin-bottom: 0;
}
.text-content .doc-section .folder-structure-list li ul li ul li span {
  font-weight: 600;
}
.text-content .doc-section .folder-structure-list li ul li ul li + li {
  margin-top: 0.5rem;
}
.text-content .body-footer {
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 5rem;
  border-radius: 0.375rem;
  background: var(--bg-slate-200);
  padding: 3rem 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}
.text-content .body-footer i {
  font-size: 3rem;
  font-weight: 400;
  color: var(--primaryColor);
}

@media screen and (min-width: 992px) {
  .right-sidebar {
    grid-column: span 6/span 6;
    grid-column-start: 4;
  }
}
@media screen and (min-width: 1400px) {
  .right-sidebar {
    grid-column: span 2/span 2;
    grid-column-start: auto;
  }
}
.right-sidebar .content-box {
  position: sticky;
  top: 7rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  transition: all 0.15s ease;
  transition-duration: 300ms;
}
.right-sidebar .content-box .box {
  position: relative;
  border: 1px solid var(--sky-blue-400);
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.right-sidebar .content-box .title {
  margin-bottom: 0.85rem;
  font-weight: 700;
  color: var(--sky-blue-400);
  font-size: 1rem;
  line-height: 1.5rem;
}
.right-sidebar .content-box p {
  line-height: 1.7;
  color: var(--color-black);
  font-size: 14px;
}
.right-sidebar .content-box .email {
  text-align: center;
  margin-top: 1rem;
}
.right-sidebar .content-box .email a {
  color: var(--colorWhite);
  background: var(--sky-blue-500);
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 1rem;
}

/*# sourceMappingURL=style.css.map */
