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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --doc-primary-font: "Nunito", sans-serif;
  --doc-primary-color: #2bb9f1;
  --doc-heading-color: #2b2f40;
  --doc-font-color: #9d93b4;
  --doc-white-color: #ffffff;
  --doc-transition: all 0.3s;
}

html {
  scroll-behavior: smooth;
}

*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--doc-primary-light-color);
  border-radius: 10px;
}

*::-webkit-scrollbar {
  width: 1px;
  background-color: var(--doc-primary-light-color);
  border-radius: 1rem;
  height: 1px;
}

*::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: var(--doc-primary-color);
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: var(--doc-primary-font);
  font-size: calc(14px + 0.1041665vw);
  font-weight: 400;
  color: var(--doc-font-color);
  line-height: 1.5;
  word-break: break-word;
}

a,
a:hover,
button,
button:hover {
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
  -webkit-transition: var(--doc-transition);
  -moz-transition: var(--doc-transition);
  -ms-transition: var(--doc-transition);
  -o-transition: var(--doc-transition);
  transition: var(--doc-transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: var(--doc-transition);
  -moz-transition: var(--doc-transition);
  -ms-transition: var(--doc-transition);
  -o-transition: var(--doc-transition);
  transition: var(--doc-transition);
  margin: 0;
  padding: 0;
  word-break: break-word;
  color: var(--doc-heading-color);
  text-transform: capitalize;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus {
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: none;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a {
  font-family: var(--doc-primary-font);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

::placeholder {
  color: #afacc1;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #afacc1;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

p {
  margin: 0px;
  word-break: break-word;
}

/*============ ============  ============ 
Sidebar Style Start 
============ ============  ============ */

.doc_sidebar_wrapper {
  position: fixed;
  top: 0;
  left: -260px;
  z-index: 2;
  height: 100%;
  background: #fff;
  width: 260px;
  transition: var(--doc-transition);
  box-shadow: 0 0 21px 0 rgba(89, 102, 122, 0.1);
}

.menu_open .doc_sidebar_wrapper {
  left: 0;
}

.doc_logo {
  text-align: center;
  padding: 15px;
  border-bottom: 1px solid #9d93b429;
}

.doc_logo img {
  max-width: 190px;
  max-height: 59px;
  object-fit: contain;
}

.doc_navbar {
  max-height: 100%;
  overflow: auto;
  margin: 15px 0;
  padding: 0 30px;
}

.doc_navbar li {
  margin-bottom: 10px;
}

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

.doc_navlink {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--doc-font-color);
  padding: 10px 0;
  font-size: calc(14px + 0.1041665vw);
  font-weight: 500;
}

.doc_navlink svg {
  width: 18px;
  height: 18px;
}

.doc_navlink:hover,
.doc_navlink.active {
  color: var(--doc-primary-color);
}

/*============ ============  ============ 
Header Style Start 
============ ============  ============ */

header {
  z-index: 2;
  background-color: var(--doc-white-color);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: var(--doc-transition);
  margin-left: auto;
  border-bottom: 1px solid #9d93b429;
  padding: 25px 0;
}

.menu_open header {
  width: calc(100% - 260px);
}

.doc_nav_toggle {
  display: flex;
  align-items: center;
  /* justify-content: flex-end; */
}

.doc_nav_toggle a {
  width: 39px;
  height: 39px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--doc-primary-color);
  transition: var(--doc-transition);
}

.doc_nav_toggle a:hover {
  background-color: #e5f6fd;
}

.doc_nav_toggle a svg {
  width: 20px;
  height: 20px;
}

/*============ ============  ============ 
Common Style Start 
============ ============  ============ */

.doc_page_wrapper {
  position: relative;
  margin-top: 90px;
  width: 100%;
  margin-left: auto;
  transition: var(--doc-transition);
}

.menu_open .doc_page_wrapper {
  width: calc(100% - 260px);
}

.doc_section_main {
  padding: 50px 0;
  border-bottom: 1px solid #9d93b429;
}

.doc_section_heading {
  margin-bottom: 30px;
}

.doc_section_heading h3 {
  font-size: calc(18px + 1.145835vw);
  font-weight: 600;
  text-transform: capitalize;
  color: var(--doc-primary-color);
}

.doc_section_text {
  margin-bottom: 30px;
}

.doc_section_text p {
  margin-bottom: 15px;
}

.doc_section_text:last-child,
.doc_section_text p:last-child,
.doc_authentication_list:last-child {
  margin-bottom: 0;
}

.doc_section_text code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}

.doc_section_text h5 {
  font-size: calc(14px + 0.520835vw);
  font-weight: 500;
}

.doc_section_text h6 {
  font-size: calc(14px + 0.1041665vw);
  font-weight: 600;
}

.doc_authentication_list {
  margin: 10px 0;
}

.doc_authentication_list li {
  list-style: inside;
}

.doc_authentication_list li a {
  color: var(--doc-primary-color);
}

@media (max-width: 767.98px) {
  .menu_open .doc_page_wrapper {
    width: 100%;
  }
}