/* 
    Template Name: Documentation | Signs - Coming Soon HTML Template
    Template Type: Documentation
    Author: Mountain Theme
    Template URL: http://mountainclimbersstar.com/demo/html/signs/docs/
    Author URL: https://www.templatemonster.com/authors/mountaintheme/ 
    Created: Feb 6, 2024
    Updated: Dec 23, 2024
    Version: 2.1.0
*/

/* 
======================================== :: INDEX OF CSS :: ========================================
1. Web Font
2. Global Variable Define
3. Common CSS
4. Preloder CSS
5. progress Scroll to Top Bottom
6. Hambuger Menu Style
7. Button CSS
8. Header Top CSS
9. Side Vavigation CSS
10. Docs Content
11. Getting Started
12. Template Feature
13. Requirements
====================================================================================================
*/

/* ===================================
1. Web Font
===================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


/* ===================================
2. Global Variable Define
===================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-light: #FFF;
    --side-nav-bg: #f7f7f7;
    --top-nav-bg: #FFF;
    --footer-bg: #f7f7f7;
    --logo-color: #2F3542;
    --primary-color: #2F3542;
    --secondery-color: #3742FA;
    --secondery-color-tow: #57606F;
    --secondery-color-three: #747D8C;
    --border-color: #DDD;
    --border-color-2: #0000001f;
    --divider-color: #747d8cab;
    --color-orange: #ffcc853d;
    --color-orange-2: #E5780B;
    --color-mode-icon: #ffffffd0;
    --code-bg: #f9f2f4;

    /* Web Font */
    --primary-font: 'Poppins', sans-serif;
}

body.dark {
    --bg-light: #0F111A;
    --side-nav-bg: #141824;
    --top-nav-bg: #141824;
    --footer-bg: #141824;
    --logo-color: #EBEEF2;
    --primary-color: #EBEEF2;
    --secondery-color: #60C6FF;
    --secondery-color-tow: #818AA1;
    --border-color: #31374a;
    --border-color-2: #31374A;
    --divider-color: #7b8bbf;
    --color-orange: #4C433B;
    --color-orange-2: #3874FF;
    --color-mode-icon: #ffffffc9;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -mos-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

code {
    padding: 2px 5px;
    background-color: var(--code-bg);
    border-radius: 4px;
}

.hljs {
    padding: 1.5rem;
}

.yt-video iframe {
    width: 600px;
    height: 360px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
}

.title-2 {
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(87.85deg, #FF37EB 0.99%, #4D76FF 99.46%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.gradient-text:hover {
    background: linear-gradient(87.85deg, #4D76FF 0.99%, #FF37EB 99.46%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}


/* ===================================
3. Common CSS
===================================*/
body {
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 28px;
    color: var(--primary-color);
    overflow-x: hidden;
    background: var(--bg-light);
}

body,
html {
    scroll-behavior: smooth;
}

section,
.section {
    position: relative;
}

.section-pt {
    padding-top: 48px;
}

.container {
    width: 100%;
    margin: 0 auto;
}

p {
    margin-bottom: 0;
}

a {
    color: var(--primary-color);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

a:hover {
    color: var(--secondery-color);
}

a,
a:hover,
a:focus,
.btn:focus,
button,
button:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

ol li,
ul li {
    list-style: none;
}

img {
    height: auto;
    max-width: 100%;
}

hr {
    border-top: 1px solid var(--divider-color);
}

.divider {
    margin: 4rem 0;
}

.img-border {
    border: 1px solid var(--border-color);
}

section .section-title {
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 25px;
}

::selection {
    background: var(--secondery-color);
    color: #FFF;
}

.strong-text-1 {
    color: var(--secondery-color-tow);
}

.text-0 {
    font-size: 13px;
    color: var(--secondery-color-three);
    font-weight: 400;
}

.text-1 {
    font-size: 14px;
    color: var(--secondery-color-three);
    font-weight: 400;
}

.text-2 {
    font-size: 15px;
    color: var(--secondery-color-three);
    font-weight: 400;
}

.text-3 {
    font-size: 17px;
    color: var(--secondery-color-three);
    font-weight: 400;
}

code {
    padding: 2px 5px;
    background-color: var(--code-bg);
    border-radius: 4px;
}

.yt-video iframe {
    width: 600px;
    height: 360px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
}

/* ===================================
4. Preloder CSS
===================================*/
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999999 !important;
    background-color: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#preloader h4 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    text-transform: uppercase;
    color: #4078CF;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 10px;
    aspect-ratio: 1;
    border-radius: 50%;
    animation: l5 1s infinite linear alternate;
}

@keyframes l5 {
    0% {
        box-shadow: 20px 0 #000, -20px 0 #0002;
        background: #000
    }

    33% {
        box-shadow: 20px 0 #000, -20px 0 #0002;
        background: #0002
    }

    66% {
        box-shadow: 20px 0 #0002, -20px 0 #000;
        background: #0002
    }

    100% {
        box-shadow: 20px 0 #0002, -20px 0 #000;
        background: #000
    }
}

/* ===================================
5. progress Scroll to Top Bottom
===================================*/

/* ===================================
6. Hambuger Menu Style
===================================*/

/* ===================================
7. Button CSS
===================================*/
.btn {
    width: max-content;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    background: var(--secondery-color);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.btn:hover {
    background: var(--primary-color);
    color: #FFF;
}

/* ===================================
8. Header Top CSS
===================================*/
#header .navbar {
    padding: 0;
    min-height: 70px;
    background: var(--top-nav-bg);
    border-bottom: 1px solid var(--border-color);
}

#header .navbar .navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
}

#header .navbar .navbar-brand span {
    font-size: 10px;
    vertical-align: super;
    color: var(--secondery-color-three);
}

#header .navbar .navbar-brand h3 {
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

#header .navbar .navbar-brand h3 {
    color: #fb5200;
    font-size: 28px;
    font-weight: 700;
    display: inline-block;
    margin: 0;
}

#header .navbar .navbar-brand h3::first-letter {
    color: var(--logo-color);
}

#header .navbar .navbar-brand:hover h3 {
    opacity: .7;
}

#header .navbar .nav-item {
    display: flex;
    height: 100%;
}

#header .navbar .nav-item .nav-link {
    height: 70px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    color: var(--secondery-color-three);
    font-size: 14px;
    font-weight: 400;
}

#header .navbar .nav-item .nav-link:hover {
    color: var(--secondery-color);
}

#header .navbar .nav-item .nav-link.active {
    color: var(--primary-color);
    font-weight: 500;
}

#header .navbar .toggle-mode {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-orange);
    color: var(--color-orange-2);
    cursor: pointer;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

#header .navbar .toggle-mode:hover {
    background: var(--color-orange-2);
    color: var(--color-mode-icon);
}

#header .navbar .toggle-mode i {
    line-height: 0;
    font-size: 14px;
}

/* ===================================
9. Side Vavigation CSS
===================================*/
.sdocs-navigatiion {
    position: fixed;
    top: 70px;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    width: 250px;
    height: calc(100% - 70px);
    background: var(--side-nav-bg);
    border-right: 1px solid var(--border-color);
    z-index: 1;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.sdocs-navigatiion>.nav {
    padding: 30px 0;
}

.sdocs-navigatiion .nav .nav-item {
    position: relative;
}

.sdocs-navigatiion .nav .nav {
    display: none;
    margin: 0 0 5px;
}

.sdocs-navigatiion .nav .nav-link {
    position: relative;
    color: var(--primary-color);
    padding: 6px 30px;
    line-height: 25px;
    font-weight: 500;
    font-size: 14px;
}

.sdocs-navigatiion .nav .nav-item:hover>.nav-link,
.sdocs-navigatiion .nav .nav-item .nav-link.active {
    font-weight: 600;
}

.nav:not(.nav-pills) .nav-item .nav-link.active,
.nav:not(.nav-pills) .nav-item .nav-link:hover {
    color: var(--secondery-color);
}

.sdocs-navigatiion>.nav>.nav-item>.nav-link.active::after {
    content: "\f105";
    position: absolute;
    font-family: "Font Awesome 6 pro";
    top: 7px;
    right: 18px;
    font-weight: 700;
}

.sdocs-navigatiion .nav .nav-item .nav-link.active+.nav {
    display: block;
}

.sdocs-navigatiion .nav .nav .nav-link {
    color: var(--secondery-color-three);
    padding: 4px 30px 4px 45px;
}

.sdocs-navigatiion .nav .nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    left: 30px;
    height: 100%;
    border-left: 1px solid var(--border-color-2);
    width: 1px;
    top: 0;
}

.sdocs-navigatiion .nav .nav .nav-item .nav-link.active::after {
    border-color: var(--secondery-color);
    border-width: 2px;
}

/* ===================================
10. Docs Content
===================================*/
.docs-content {
    position: relative;
    margin-left: 250px;
    padding: 0 50px 50px;
    transition: all .3s;
}

/* ===================================
11. Getting Started
===================================*/
#docs_start h1 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 400;
}

#docs_start h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
}

#docs_start .lead {
    font-size: 16px;
    font-weight: 300;
    color: var(--secondery-color-three);
    margin-bottom: 20px;
}

#docs_start .list-unstyled {
    margin-bottom: 20px;
}

#docs_start .list-unstyled li {
    font-size: 14px;
    font-weight: 400;
    color: var(--secondery-color-three);
}

#docs_start .list-unstyled li strong {
    font-weight: 600;
    color: var(--primary-color);
}

#docs_start .list-unstyled li a {
    color: var(--secondery-color);
}

#docs_start .list-unstyled li a:hover {
    text-decoration: underline;
}

#docs_start .alert {
    font-size: 14px;
    padding: 12px 17px;
    font-weight: 400;
}

#docs_start h2 {
    color: var(--secondery-color);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
}

#docs_start .alert a {
    color: #000000;
    text-decoration: underline;
}

/* ===================================
12. Template Feature
===================================*/
#template_features .template-desc {
    margin-bottom: 25px;
}

#template_features .template-desc p {
    font-size: 15px;
    font-weight: 400;
    color: var(--secondery-color-three);
}

#template_features .template-desc p strong,
#template_features .feature-list ul li strong {
    color: var(--secondery-color-tow);
}

#template_features .feature-list ul li {
    list-style: disc;
    list-style-position: inside;
    font-size: 15px;
    color: var(--secondery-color-three);
}

#template_features .feature-list ul li strong a {
    color: var(--secondery-color);
}

#template_features .feature-list ul li strong a:hover {
    text-decoration: underline;
}

#template_features .feature-list ul ul {
    margin-left: 20px;
}

#template_features .feature-list ul ul li {
    list-style: circle;
    list-style-position: inside;
}

/* ===================================
13. Requirements
===================================*/
#requirements .text-2 {
    margin-bottom: 30px;
}

#requirements .requirement-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

#requirements .requirement-icon li a img {
    width: 70px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

#requirements .requirement-icon li a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}


/* ===================================
14. Source & Cradites
===================================*/
#source-credits ul li {
    margin-left: 20px;
    list-style-position: inside;
    list-style-type: disc;
    font-size: 15px;
    color: var(--secondery-color-three);
}

#source-credits ul li:not(:last-child) {
    margin-bottom: 5px;
}

#source-credits ul li a {
    color: var(--secondery-color);
    font-size: 15px;
    font-weight: 400;
}

#source-credits ul li a:hover {
    text-decoration: underline;
}

/* ===================================
Support CSS
===================================*/
#support p a.author {
    color: var(--secondery-color);
    font-weight: 600;
}

#support .alert {
    font-size: 15px;
    font-weight: 400;

}

#support h3.rate {
    font-size: 25px;
    font-weight: 400;
    color: var(--primary-color);
}

#support h3.rate i {
    color: #FFC107;
}

#support .alert.alert-success a {
    color: var(--primary-color);
    font-weight: 700;
}

#support .alert.alert-success a:hover {
    text-decoration: underline;
}

/* ===================================
More Template CSS
===================================*/
#more_template .row .template-name {
    margin-top: 8px;
    line-height: 24px;
}

#more_template .template-block {
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

#more_template .template-block:hover {
    transform: translateY(-8px);
}

#more_template hr.divider {
    margin: 3rem 0;
}

/* ===================================
Changelog CSS
===================================*/
#changelog .version {
    font-weight: 400;
    font-size: 27px;
}

#changelog ul li {
    list-style: disc;
    list-style-position: inside;
    font-size: 15px;
    color: var(--secondery-color-three);
}

/* ===================================
Footer CSS
===================================*/
#footer {
    position: relative;
    margin-left: 250px;
    padding: 70px 50px 70px;
    transition: all .3s;
    background: var(--footer-bg);
    border-top: 1px solid var(--border-color);
}

#footer .copy-right {
    font-size: 16px;
    font-weight: 400;
}

#footer .cradit {
    font-size: 14px;
    padding: 6px 0;
}

#footer p a {
    color: var(--secondery-color);
}

#footer p a:hover {
    text-decoration: underline;
    opacity: .8;
}