/* ======= root variable ======= */
:root {
  --doc-font-family: 'Poppins', sans-serif;
  --highlight-font-family: 'Espera', sans-serif;
  --doc-body-bgcolor: #0a0a0a;
  --doc-font-color: #7c859b;
  --doc-font-title: #fff;
  --doc-primary-color: #a065d5;
  --doc-secondary-color: #fff;
  --doc-sidebar:#141414;
  --doc-box-color:  #f7f8f9;
  --doc-white-color:  #ffffff;
  --doc-black-color:  #000000;
  --color-input-border: #6e777e;
  --color-border-light: #d7d7d7;
  --doc-font-size: 1rem;
  --font-line-height-body: 1.75;
  --font-weight-body: 500;
  --font-letter-spacing-body: 0.04rem;
  --doc-box-shadow: 0px 1px 50px 7px rgb(0 0 0 / 65%);
  --border: var(--doc-primary-color);
}


@font-face {
  font-family: 'Espera';
  src: url('../fonts/Espera-Regular.woff2') format('woff2'),
      url('../fonts/Espera-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Espera';
  src: url('../fonts/Espera-Bold.woff2') format('woff2'),
      url('../fonts/Espera-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Espera';
  src: url('../fonts/Espera-Italic.woff2') format('woff2'),
      url('../fonts/Espera-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Espera';
  src: url('../fonts/Espera-BoldItalic.woff2') format('woff2'),
      url('../fonts/Espera-BoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
}


/* Body font*/
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
      url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
      url('../fonts/Poppins-Bold.woff') format('woff');
font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
      url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-MediumItalic.woff2') format('woff2'),
      url('../fonts/Poppins-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Italic.woff2') format('woff2'),
      url('../fonts/Poppins-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
}


body {
  background: var(--doc-body-bgcolor);
  color: var(--doc-font-color);
  font-family: var(--doc-font-family);
  font-size: var(--doc-font-size);
  line-height: var(--font-line-height-body);
  letter-spacing: var(--font-letter-spacing-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--highlight-font-family);
  color: var(--doc-font-title);
  font-stretch: condensed;
  clear: both;
  word-break: break-word;
  text-transform: capitalize;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

.page-wrapper {
  min-height: 100%;
}

iframe {
    width:100%;
}

p {
  line-height: 1.5;
  word-break: break-all;
}

a {
  color: var(--doc-primary-color);
  word-break: break-all;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

a:hover {
  text-decoration: underline;
  color: var(--doc-primary-color);
}

a:focus {
  text-decoration: none;
}

code {
  background: var(--doc-black-color);
  color: var(--doc-white-color);
  font-size: 14px;
  font-weight: bold;
  padding: 2px 8px;
  padding-top: 4px;
  display: inline-block;
}

.btn,
a.btn {
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
}

/* scroll  */
.scrollbar-thumb, .scrollbar-track-y { width: 4px !important; }
.scrollbar-thumb { background: var(--doc-primary-color) !important; }
::-webkit-scrollbar-thumb { background: var(--doc-primary-color) !important; }

/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--doc-font-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--doc-primary-color);
}

.btn .svg-inline--fa,
a.btn .svg-inline--fa {
  margin-right: 5px;
  position: relative;
  top: -1px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="submit"],
input[type="button"],
textarea,
select {
  appearance: none;
  -webkit-appearance: none;
}

/* ====== Header ====== */
.header {
  background: var(--doc-body-bgcolor);
  color: var(--doc-font-color);
  border-top: 5px solid var(--doc-primary-color);
  padding: 15px 30px;
  position: fixed;
  z-index: 9;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / 30%);
  left: 0;
  right: 0;
}

.header a {
  color: var(--doc-white-color);
}

.header .container {
  position: relative;
}

.branding {
  text-transform: uppercase;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

header .menu-toggle {
    margin-right: 20px;
    font-size: 30px;
    cursor: pointer;
    display: none;
}

.logo-img {
  width: 150px;
}

.branding .logo {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 0;
}

.branding .logo a {
  text-decoration: none;
}

.branding .text-highlight {
  color: var(--doc-primary-color);
}

.text-highlight {
  color: var(--doc-primary-color);
}

.branding .text-bold {
  font-weight: 800;
  color: var(--doc-primary-color);
  display: inline-block;
  vertical-align: bottom;
  font-size: 20px;
}

.branding .icon {
  font-size: 24px;
  color: var(--doc-primary-color);
}

.breadcrumb {
  background: none;
  margin-bottom: 0;
  justify-content: flex-end;
  margin-left: auto;
}

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

.breadcrumb li.active {
  color: var(--doc-primary-color);
}

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

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

.breadcrumb>li+li:before {
  color: var(--doc-primary-color);
}

/* ======= Doc Styling ======= */

.doc-content {
  padding: 83px 30px 45px 380px;
}

.doc-body {
  position: relative;
}

.doc-header {
  margin-bottom: 30px;
}

.doc-header .doc-title {
  color: var(--doc-primary-color);
  margin-top: 0;
  font-size: 36px;
}

.doc-header .icon {
  font-size: 30px;
}

.doc-header .meta {
  color: #a2a6af;
}

.doc-section {
  padding-top: 90px;
  padding-bottom: 15px;
}

.doc-section .section-title {
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
  padding-bottom: 10px;
  color: var(--doc-primary-color);
  border-bottom: 1px solid var(--color-input-border);
}

.doc-section .block-title {
  border-bottom: 1px solid var(--color-border-light);
  padding-bottom: 15px;
  margin-bottom: 15px;
  margin-top: 20px;
}

@-webkit-keyframes animationgradienttitle {
    0% {
        background-position: 0 1600px;
    }

    100% {
        background-position: 1600px 0;
    }
}

@keyframes animationgradienttitle {
    0% {
        background-position: 0 1600px;
    }

    100% {
        background-position: 1600px 0;
    }
}

.doc-section h1 {
  font-size: 24px;
  font-weight: bold;
}

.doc-section h2 {
  font-size: 22px;
  font-weight: bold;
}

.doc-section h3 {
  font-size: 20px;
  font-weight: bold;
}

.doc-section h4 {
  font-size: 18px;
  font-weight: bold;
}

.doc-section h5 {
  font-size: 16px;
  font-weight: bold;
}

.doc-section h6 {
  font-size: 14px;
  font-weight: bold;
}

.section-block {
  padding-top: 15px;
  padding-bottom: 15px;
}

.section-block .block-title {
  margin-top: 0;
}

.section-block .list>li {
  margin-bottom: 10px;
}

.section-block .list ul>li {
  margin-top: 5px;
}

.code-block {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Sidebar */
.doc-sidebar {
  background-color: var(--doc-sidebar);
  position: fixed;
  top: 83px;
  left: 0;
  width: 350px;
  height: calc(100vh - 83px);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / 30%);
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.doc-menu {
  list-style: none;
}

.doc-menu .nav-link {
  display: block;
  padding: 10px 25px;
  color: var(--doc-font-title);
  font-weight: 500;
  font-size: 16px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.doc-menu .nav-link .menu-icon i {
  font-size: 16px;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.doc-menu li.active .nav-link .menu-icon i {
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
}

.doc-menu .nav-link:hover,
.doc-menu .nav-link:focus,
.doc-menu li.active > .nav-link {
  color: var(--doc-white-color);
  text-decoration: none;
  background: var(--doc-primary-color);
}

.doc-menu .nav-link.active {
  background: none;
  color: var(--doc-primary-color);
  font-weight: 600;
}

.doc-menu .doc-sub-menu .nav-link:hover,
.doc-menu .doc-sub-menu .nav-link:focus,
.doc-menu .doc-sub-menu li.active > .nav-link {
  color: var(--doc-primary-color);
  text-decoration: none;
  background: transparent;
}

.doc-sub-menu {
  list-style: none;
  background: var(--doc-sidebar);
  padding: 10px 25px;
}



.doc-sub-menu .nav-link {
  margin-bottom: 10px;
  font-size: 14px;
  display: block;
  color: var(--doc-font-color);
  padding: 0;
  padding-left: 15px;
  background: none;
  position: relative;
}

.doc-sub-menu .nav-link::before {
  position: absolute;
  content: "";
  background-color: var(--doc-font-color);
  height: 1px;
  width: 10px;
  top: 55%;
  left: 0;
}

.doc-sub-menu .nav-link:first-child {
  padding-top: 5px;
}

.doc-sub-menu .nav-link:hover {
  color: var(--doc-primary-color);
  text-decoration: none;
  background: none;
}

.doc-sub-menu .nav-link:focus {
  background: none;
}

.doc-sub-menu .nav-link.active {
  background: none;
  color: var(--doc-primary-color);
}

/* ===== item block ===== */
.item-details {
  background: var(--doc-sidebar);
  padding: 30px 50px;
}

.item-info {
  padding: 30px 50px;
}

/* Extra small devices (phones, less than 768px) */
@media (max-width: 767px) {
  .jumbotron {
    padding: 30px 15px;
  }

  .jumbotron h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .jumbotron p {
    font-size: 18px;
  }
  
  iframe {
    height: 350px;
  }

}

/*---------------------------------------------------------------------*/
.iq-label-info {
  background-color: var(--doc-primary-color);
  padding: 3px 5px;
  border-radius: 2px;
  color: var(--doc-white-color);
  font-size: 14px;
}

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

.alert-warning {
  background: var(--doc-primary-color);
  color: var(--doc-white-color);
}
.alert-warning h3 {
  color: var(--doc-white-color);
}


@media (max-width: 575.98px) {
  .main-search-box {
    width: 100%;
  }

  .main-search-box .search-form .search-input {
    width: 100%;
  }
}

@media (min-width: 576px) {
  .main-search-box .search-form .search-input {
    width: 400px;
  }
}

@media (min-width: 768px) {
  .main-search-box .search-form .search-input {
    width: 560px;
  }
}

@media (max-width: 991px) {
  header .menu-toggle {
    display: block;
  }
  .doc-content {
    padding: 45px 30px;
  }
  .doc-sidebar {
    left: -350px;
  }
  .doc-sidebar.is-open {
    left: 0;
  }
}

@media (max-width: 500px) {
  .breadcrumb {
    display: none;
  }
}

@media (max-width: 479px) {
  .doc-sidebar {
    left: -310px;
    width: 310px;
  }
  .doc-sidebar.is-open {
    left: 0;
  }
}