/*---------------------------------
	1.1 Theme SCSS
---------------------------------*/
/*-----------------------------------------------------------------------------------

	Template Name: Sasse - Software, SaaS & Startup HTML5 Template
	Author: Alif Theme
	Developer: Alif Theme
	Support: themealif@gmial.com
	Description: Sasse - Software, SaaS & Startup HTML5 Template
	Version: 1.0

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************

	-----------------
    01. THEME SCSS
	-----------------
		1.1 spacing
		1.2 theme
		1.3 typography

	-----------------
    01. utils SCSS
	-----------------
		1.1 breakpoints
		1.2 extends
		1.3 mixins
		1.4 variables

	-----------------
    02. COMPONENTS SCSS
	-----------------
		2.1 Animations
		2.2 Back to top
		2.3 badge
		2.4 Brand
		2.5 Breadcrumb
		2.6 Buttons
		2.7 Carousel
		2.8 Color
		2.9 Common
		2.10 Fun Fact
		2.11 Integration
		2.12 Offcanvas
		2.13 Pagination
		2.14 Preloader
		2.15 Section-title
		2.16 Short codes
		2.17 Social
		2.18 Video

	-----------------
    03. layout
	-----------------
		-----------------
		3.1 banner SCSS
		-----------------
			3.1.1 banner-1
			3.1.2 banner-2
			3.1.3 banner-3
			3.1.4 banner-4

		-----------------
		3.2 blog SCSS
		-----------------
			3.2.1 blog-tag
			3.2.2 blog
			3.2.3 postbox
			3.2.4 recent-post
			3.2.5 sidebar
			3.2.6 index

		-----------------
		3.3 ecommerce SCSS
		-----------------
			3.3.1 cart
			3.3.2 Checkout
			3.3.3 order
			3.3.4 shop

		-----------------
		3.4 footer SCSS
		-----------------
			3.4.1 copyrights
			3.4.2 footer

		-----------------
		3.5 header SCSS
		-----------------
			3.5.1 header-common
			3.5.2 header-dark

		-----------------
		3.6 menu SCSS
		-----------------
			3.6.1 mean
			3.6.2 mobile-menu

	-----------------
    04. Page SCSS
	-----------------
		4.1 about
		4.2 components
		4.3 contact
		4.4 cta
		4.5 faq
		4.6 features
		4.7 pricing-plan
		4.8 process
		4.9 services
		4.10 team
		4.11 testimonial
		4.12 tools

/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
a,
.btn,
button,
span,
sub,
sup,
p,
input,
select,
textarea,
img,
svg,
.transition-3,
li,
h1,
h2,
h3,
h4,
h5,
h6, .body__overlay {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

:root {
  /**  @font family declaration */
  --font-body: "Roboto", sans-serif;
  --font-title: "Oswald", sans-serif;
  --font-p: "Roboto", sans-serif;
  --font-icomoon: "icomoon";
  /** @color declaration */
  --color-white: #FFFFFF;
  --color-theme-white: #F9F9F9;
  --color-black: #000000;
  --color-theme-black: #222222;
  --color-black-light: #363636;
  --color-placeholder: #5E5E5E;
  --color-body: #FFFFFF;
  --color-primary: #8A27D1;
  --color-secondary: #AF62E7;
  --color-danger: #dc3545;
  --color-body-text: #5E5E5E;
  --color-body-text-2: #B9B6BB;
  --color-gray: #FAFAFA;
  --color-label: #0A0A0A;
  --color-rating: #FFC107;
  --color-text-muted: #6c757d;
  --color-bg-primary: #772EED;
  --color-bg-secondary: #EDF3F5;
  --color-dark-bg: #010101;
  --color-bg-3: #DDCBFB;
  --color-bg-4: #FBF3EC;
  --color-bg-5: #F7F5FB;
  --color-bg-6: #EEDDFA;
  --color-bg-7: #141414;
  --color-bg-8: #F1E4FB;
  --color-bg-9: #0D0214;
  --color-border-primary: #D9D9D9;
  --color-border-secondary: #F1F1F1;
  --color-gradient-1: linear-gradient(90deg, #F5F5F5 52.13%, rgba(245, 245, 245, 0.7) 100%);
  /** @font weight declaration */
  --fw-normal: normal;
  --fw-thin: 100;
  --fw-elight: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-ebold: 800;
  --fw-black: 900;
  /** @font size declaration */
  --fs-body: 18px;
  --fs-p: 18px;
  --fs-h1: 60px;
  --fs-h2: 52px;
  --fs-h3: 36px;
  --fs-h4: 28px;
  --fs-h5: 22px;
  --fs-h6: 20px;
  --fs-b1: 14px;
  --fs-b2: 16px;
  --fs-b3: 18px;
  --fs-b4: 22px;
  /** @transition value declaration */
  --transition: all .3s ease-in-out;
  --transition-5: all .5s ease-in-out;
}

:root[dir=rtl] {
  --font-body: "Cairo", sans-serif;
  --font-title: "Reem Kufi", sans-serif;
  --font-p: "Cairo", sans-serif;
}

/*----------------------------------------
   Bootstrap customize
-----------------------------------------*/
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 30px;
}

.container {
  padding-inline-start: 15px;
  padding-inline-end: 15px;
}

@media (min-width: 1441px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
  .container-1640 {
    max-width: 1640px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-10,
.gx-10 {
  --bs-gutter-x: 10px;
}

.g-15,
.gx-15 {
  --bs-gutter-x: 15px;
}

.g-20,
.gx-20 {
  --bs-gutter-x: 20px;
}

.g-30,
.gx-30 {
  --bs-gutter-x: 30px;
}

.g-30,
.gy-30 {
  --bs-gutter-y: 30px;
}

.g-15,
.gy-15 {
  --bs-gutter-y: 15px;
}

.g-40,
.gx-40 {
  --bs-gutter-x: 40px;
}

.g-40,
.gy-40 {
  --bs-gutter-y: 40px;
}

.g-50,
.gx-50 {
  --bs-gutter-x: 50px;
}

.g-50,
.gy-50 {
  --bs-gutter-y: 50px;
}

.g-60,
.gy-60 {
  --bs-gutter-y: 60px;
}

/*---------------------------------
    1.2 Common Classes
---------------------------------*/
label .required {
  color: var(--color-danger);
}

.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.opacity-05 {
  opacity: 0.5;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.position-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.position-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-attach-fix {
  background-attachment: fixed;
}

.hr-1 {
  border-top: 1px solid rgb(232, 232, 232);
}

.x-clip {
  overflow-x: clip;
}

@media (max-width: 575px) {
  .o-xs {
    overflow-x: hidden;
  }
}

.overflow-visible {
  overflow: visible;
}

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body__overlay {
  background-color: var(--color-bg-primary);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  inset-inline-start: 0;
  opacity: 0;
  visibility: hidden;
}

.body__overlay {
  background-color: var(--color-bg-primary);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  inset-inline-start: 0;
  opacity: 0;
  visibility: hidden;
}

.body__overlay.opened {
  opacity: 0.7;
  visibility: visible;
}

.image-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*----------------------------------------
   Mfp customize
-----------------------------------------*/
.mfp-close {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.mfp-close:hover {
  color: var(--color-theme-white);
}
.mfp-close::after {
  position: absolute;
  content: "\X";
  height: 100%;
  width: 100%;
  font-family: var(--font-icomoon);
  font-size: 36px;
  font-weight: 200;
  inset-inline-end: -20px;
  margin-top: -25px;
  cursor: pointer;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .mfp-close::after {
    inset-inline-end: 15px;
    margin-top: -30px;
  }
}

/* Bootstrap Table */
table {
  margin-bottom: 0 !important;
}

.table > thead {
  vertical-align: middle;
}

.table > tbody {
  vertical-align: middle;
}

.table > :not(caption) > * > * {
  padding: 10px 10px;
}

/*---------------------------------
	1.2 Typography SCSS
---------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  color: var(--color-body-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: normal;
  line-height: 1.5;
  background: var(--color-body);
}

.ap-dark-home {
  background-color: var(--color-dark-bg);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h5,
h5,
.h5,
h6,
.h6 {
  color: var(--color-theme-black);
  margin-top: 0px;
  line-height: 1.3;
  margin-bottom: 0;
  font-weight: var(--fw-medium);
  word-break: break-word;
  font-family: var(--font-title);
}

h1,
.h1 {
  font-size: var(--fs-h1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h1,
  .h1 {
    font-size: 42px;
  }
}

h2,
.h2 {
  font-size: var(--fs-h2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h2,
  .h2 {
    font-size: 36px;
  }
}

h3,
.h3 {
  font-size: var(--fs-h3);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h3,
  .h3 {
    font-size: 32px;
  }
}

h4,
.h4 {
  font-size: var(--fs-h4);
}

h5,
.h5 {
  font-size: var(--fs-h5);
}

h6,
.h6 {
  font-size: var(--fs-h6);
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-size: var(--fs-p);
  font-family: var(--font-p);
  font-weight: var(--fw-normal);
  color: var(--color-body-text);
  margin-bottom: 25px;
  line-height: 1.6;
}
p.b1 {
  font-size: var(--fs-b1);
  line-height: 1.714;
}
p.b2 {
  font-size: var(--fs-b2);
}
p.b3 {
  font-size: var(--fs-b3);
}
p.b4 {
  font-size: var(--fs-b4);
}
p:last-child {
  margin-bottom: 0;
}

.b1 {
  font-size: var(--fs-b1);
}

.b2 {
  font-size: var(--fs-b2);
}

.b3 {
  font-size: var(--fs-b3);
}

.b4 {
  font-size: var(--fs-b4);
}

a {
  text-decoration: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

img {
  max-width: 100%;
  object-fit: cover;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

hr:not([size]) {
  margin: 0;
  border-color: var(--color-border-primary);
  opacity: 1;
  border-width: 1px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=date],
input[type=file],
input[type=url],
select,
textarea {
  outline: none;
  background-color: transparent;
  height: 50px;
  width: 100%;
  font-size: 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid var(--color-border-primary);
  color: var(--color-theme-black);
  padding-inline-start: 16px;
  padding-inline-end: 16px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=file]:focus,
input[type=url]:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary);
}

input[type=file]::file-selector-button {
  font: var(--font-body);
  -webkit-appearance: button;
  margin-inline-start: -17px;
  width: 115px;
  height: 50px;
  border: none;
  border-radius: 6px 0 0 6px;
  color: var(--color-theme-black);
  cursor: pointer;
  padding: 0 30px 0 25px;
  font-size: 16px;
  font-weight: var(--fw-medium);
}

textarea {
  padding: 20px 25px;
  min-height: 250px;
}
textarea:focus {
  border-color: var(--color-primary);
}

*::-moz-selection {
  background: var(--color-secondary);
  color: var(--color-theme-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--color-primary);
  color: var(--color-theme-white);
  text-shadow: none;
}

::selection {
  background: var(--color-primary);
  color: var(--color-theme-white);
  text-shadow: none;
}

*::-moz-placeholder {
  opacity: 1;
  font-size: 16px;
  color: var(--color-placeholder);
}

*::placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--color-placeholder);
}

/*---------------------------------
	1.3 Default Spacing SCSS
---------------------------------*/
.section-space {
  padding-top: 115px;
  padding-bottom: 130px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space {
    padding-top: 65px;
    padding-bottom: 65px;
  }
}

.section-space-top {
  padding-top: 115px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-space-top {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space-top {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space-top {
    padding-top: 65px;
  }
}

.section-space-bottom {
  padding-bottom: 130px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-space-bottom {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space-bottom {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space-bottom {
    padding-bottom: 65px;
  }
}

.section-space-medium {
  padding-top: 85px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space-medium {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.section-space-medium-top {
  padding-top: 85px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space-medium-top {
    padding-top: 50px;
  }
}

.section-space-medium-bottom {
  padding-bottom: 100px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space-medium-bottom {
    padding-bottom: 50px;
  }
}

.section-space-small {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space-small {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.section-space-small-top {
  padding-top: 80px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space-small-top {
    padding-top: 50px;
  }
}

.section-space-small-bottom {
  padding-bottom: 80px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space-small-bottom {
    padding-bottom: 50px;
  }
}

.section-space-large {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-space-top-large {
  padding-top: 150px;
}

.section-space-bottom-large {
  padding-bottom: 150px;
}

.section-title-space {
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  .section-title-space {
    margin-bottom: 40px;
  }
}

.section-space-margin {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space-margin {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space-margin {
    margin-top: 65px;
    margin-bottom: 65px;
  }
}

.section-space-margin-bottom {
  margin-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space-margin-bottom {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-space-margin-bottom {
    margin-bottom: 65px;
  }
}

/*----------------------------------------*/
/*  4.1 Landing css
/*----------------------------------------*/
.pr-60 {
  padding-right: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-5 {
  margin-top: 5px !important;
}

.b, strong {
  font-weight: bolder;
  color: var(--color-black);
}

.ap-card-heading-title {
  font-size: 36px;
  margin-bottom: 20px;
}

.ap-sidebar {
  position: fixed;
  inset-inline-start: 0;
  top: 0;
  height: 100%;
  width: 260px;
  background-color: var(--color-bg-primary);
  z-index: 99;
  transition: all 0.5s ease;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding-bottom: 110px;
}
.ap-sidebar.collapsed {
  inset-inline-start: -300px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .ap-sidebar {
    inset-inline-start: -300px;
  }
}
.ap-sidebar .logo__white {
  opacity: 0;
  visibility: hidden;
  width: 100%;
}
.ap-sidebar.open {
  inset-inline-start: 0;
}
.ap-sidebar .logo-details {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  height: 70px;
  margin: 0 auto;
}

.ap-sidebar-nav ul li {
  list-style: none;
}
.ap-sidebar-nav ul li:not(:last-child) {
  margin-bottom: 15px;
}
.ap-sidebar-nav ul li a {
  font-size: 18px;
  display: inline-flex;
  text-align: start;
  align-items: center;
  justify-content: start;
  font-weight: 500;
  width: 100%;
  height: 56px;
  padding: 0 20px;
  background-color: transparent;
  color: var(--color-white);
  transition: all 0.3s ease-in-out;
  gap: 0 10px;
}
.ap-sidebar-nav ul li a.active {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.ap-sidebar-nav ul li a:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.ap-sidebar-nav ul li a span {
  font-size: 18px;
}

.ap-sidebar-inner {
  margin-top: 20px;
}

@media (max-width: 992px) {
  .app-offcanvas-overlay.overlay-open {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 10;
  }
}

.app-page-body {
  position: absolute;
  inset-inline-end: 0;
  width: calc(100% - 260px);
  transition: all 0.5s ease;
  top: 0;
}
.app-page-body.collapsed {
  width: 100%;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .app-page-body {
    width: 100%;
  }
}

.app-content-wrapper {
  padding: 100px 60px 60px 60px;
  position: relative;
  min-height: 927px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .app-content-wrapper {
    padding: 100px 30px 60px 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .app-content-wrapper {
    padding: 100px 20px 60px 20px;
  }
}

.subtitle {
  margin-bottom: 10px;
  display: block;
}

.ap-header-list ul {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: end;
}
.ap-header-list ul li {
  list-style: none;
}
.ap-header-list ul li a {
  color: var(--color-white);
}
@media (max-width: 575px) {
  .ap-header-list ul li:nth-child(2) {
    display: none;
  }
}
@media (max-width:450px) {
  .ap-header-list ul li:nth-child(3) {
    display: none;
  }
}

.app-header {
  background-color: var(--color-primary);
  position: fixed;
  width: calc(100% - 260px);
  transition: 0.5s;
  top: 0;
  z-index: 999;
  right: 0;
}
.app-header.collapsed {
  width: 100%;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .app-header {
    width: 100%;
  }
}
.app-header-inner {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  padding: 13px 30px;
  transition: 0.3s;
  height: 70px;
  align-items: center;
  column-gap: 20px;
  background-color: var(--color-bg-primary);
}

.bar-icon {
  width: 20px;
  height: 18px;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  cursor: pointer;
}
.bar-icon span {
  width: 100%;
  height: 2px;
  background: var(--color-white);
  display: inline-block;
}
.bar-icon span:nth-child(2) {
  margin-inline-start: -10px;
  transition: all 0.3s ease-in-out;
}
.bar-icon:hover span:nth-child(2) {
  margin-inline-start: 0;
}

.ap-toggle-btn {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .ap-toggle-btn {
    display: block;
  }
}

.ap-badge {
  font-size: 18px;
  font-weight: 500;
  padding: 4px 10px 4px 10px;
  color: var(--color-black);
  background-color: var(--color-white);
  height: 26px;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.ap-card-wrapper {
  background: var(--color-white);
  padding: 25px 25px;
  margin-bottom: 20px;
  box-shadow: 0 6px 30px rgb(182, 186, 203);
  position: relative;
}

.ap-doc-body {
  position: absolute;
  inset-inline-end: 0;
  width: calc(100% - 275px);
  transition: all 0.5s ease;
  top: 30px;
  padding: 0px 25px 0px 0px;
}

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

.text-label {
  color: var(--clr-text-label);
}

.fs-14 {
  font-size: 18px;
}

pre {
  display: block;
  font-size: 20px;
  color: var(--clr-text-label);
}

.steps-panel {
  box-shadow: 0 3px 6px 0 rgba(4, 73, 89, 0.02);
  border: 1px solid var(--color-border-primary);
  margin-top: 10px;
  margin-bottom: 25px;
  border-radius: 6px;
}

.steps-panel .ordered-list {
  position: relative;
  list-style: none;
  padding-left: 20px;
  margin: 20px 0;
}

.steps-panel .ordered-list::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--color-primary);
}

.steps-panel .ordered-list li {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  margin: 18px 0;
  position: relative;
  padding-left: 35px;
  counter-increment: a;
}

.steps-panel .ordered-list li::before {
  content: counter(a);
  position: absolute;
  color: #fff;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  font-weight: 500;
  font-size: 12px;
  background-color: var(--color-primary);
  text-align: center;
  line-height: 23px;
  top: -4px;
  left: -4px;
  border: 5px solid #fff;
}

.article_list li a {
  color: #6b707f;
}

.tag_list li a i {
  margin-right: 15px;
  transform: translateY(2px);
  display: inline-block;
}

.doc-image {
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #ddd;
  padding: 5px;
}

.ap-single_list {
  list-style: none;
  box-shadow: 0 3px 6px 0 rgba(4, 73, 89, 0.02);
  border: 1px solid var(--color-border-primary);
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 25px;
  border-radius: 6px;
}

.ap-single_list li {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  position: relative;
  padding-left: 20px;
}
.ap-single_list li:not(:last-child) {
  margin-bottom: 8px;
}

.ap-single_list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  top: 8px;
}

.footer {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--color-bg-primary);
  padding: 15px 30px 15px 30px;
  width: 100%;
  overflow: hidden;
}
.footer p {
  color: var(--color-white);
}
.footer p a {
  color: var(--color-white);
}

.back-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -25px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}
.back-to-top-text {
  display: inline;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 8px;
  color: var(--color-primary);
}
.back-to-top-wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--color-black);
  position: relative;
  overflow: hidden;
}
.back-to-top-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
}

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