@charset "UTF-8";
/*-----------------------------------------------------------------------------------

    Item Name: Guidex - Online Documentation HTML Template.
    Author: ashishmaraviya
    Version: 3.0
    Copyright 2023

-----------------------------------------------------------------------------------*/

/*---------------------------------------------------------------------------------
    Included CSS INDEX
-----------------------------------------------------------------------------------

01. Typography

02. Utilities
    - variables
    - mixins

03. Components
    - Common
    - Sidebar
    - Header
    - Tools-sidebar

04. Layout 
    - Cards
    - help
    - faq
    - blog
    - knowledgebase-list
    - knowledgebase
    - forum-list
    - post-forum
    - singal-forum
    - sign-up
    - reset-password

-----------------------------------------------------------------------------------*/

/* Typography */

/*=== Typography ===*/

/*--  Poppins font  --*/

@font-face {
    font-family: "Poppins, sans-serif";
    src: url("../fonts/poppins/Poppins-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Poppins, sans-serif";
    src: url("../fonts/poppins/Poppins-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Poppins, sans-serif";
    src: url("../fonts/poppins/Poppins-Light.ttf");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Poppins, sans-serif";
    src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Poppins, sans-serif";
    src: url("./../fonts/poppins/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Poppins, sans-serif";
    src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Poppins, sans-serif";
    src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Poppins, sans-serif";
    src: url("../fonts/poppins/Poppins-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Poppins, sans-serif";
    src: url("../fonts/poppins/Poppins-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

/*--  Nunito font  --*/

@font-face {
    font-family: "Nunito", sans-serif;
    src: url("../fonts/nunito/Nunito-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Nunito", sans-serif;
    src: url("../fonts/nunito/Nunito-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Nunito", sans-serif;
    src: url("../fonts/nunito/Nunito-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Nunito", sans-serif;
    src: url("../fonts/nunito/Nunito-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Nunito", sans-serif;
    src: url("../fonts/nunito/Nunito-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Nunito", sans-serif;
    src: url("../fonts/nunito/Nunito-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Nunito", sans-serif;
    src: url("../fonts/nunito/Nunito-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Nunito", sans-serif;
    src: url("../fonts/nunito/Nunito-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

/* Utilities */

/* Font Family */

/* iconfont */

/* Site main Color */

/* mixin */

/* Components */

/** General **/

body {
    margin: 0;
    background-color: #fff;
    font-family: "Poppins, sans-serif";
    letter-spacing: 0.03rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito", sans-serif;
    letter-spacing: 0.03rem;
    color: #484d54;
    font-weight: 600;
}

.main-heding {
    font-size: 28px;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #484d54;
}

a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.none {
    display: none;
}

p {
    color: #777;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.03rem;
    font-weight: 300;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style-type: none;
    color: #777;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.03rem;
    font-weight: 300;
}

ul li strong {
    font-weight: 600;
}

.detail-card ul li {
    line-height: 32px;
}

.text-center {
    text-align: center;
}

input,
.form-control {
    padding: 8px 15px;
    border: 1px solid #eee;
    line-height: 22px;
    border-radius: 5px;
    font-size: 13px;
    color: #999;
}

input:focus,
input:active,
.form-control:focus,
.form-control:active {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #eee;
    color: #777;
}

input::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
    color: #999;
}

input::-moz-placeholder,
.form-control::-moz-placeholder {
    color: #999;
}

input:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
    color: #999;
}

input::-ms-input-placeholder,
.form-control::-ms-input-placeholder {
    color: #999;
}

input::placeholder,
.form-control::placeholder {
    color: #999;
}

textarea {
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 13px;
    color: #777;
}

main {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.gx-main-content {
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    padding: 72px 0 0 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.sb-hide .gx-main-content {
    width: 100%;
    margin-left: 0;
}

b {
    color: #0d6efd;
}

.img-rectangle {
    border-radius: 0;
}

.img-round-radius {
    border-radius: 5px;
}

.img-round {
    border-radius: 50%;
}

.img-pill {
    border-radius: 50px;
}

.min-h-100 {
    min-height: calc(100vh - 48px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

code[class*=language-],
pre[class*=language-] {
    text-shadow: none;
}

/* Spacing */

.pb-m-24 {
    padding-bottom: 24px;
}

.pb-15 {
    padding-bottom: 15px;
}

.m-b-0 {
    margin-bottom: 0;
}

.m-t-10 {
    margin-top: 10px !important;
}

.m-t-15 {
    margin-top: 15px !important;
}

.m-t-24 {
    margin-top: 24px !important;
}

.m-t-30 {
    margin-top: 30px !important;
}

.m-b-0 {
    margin-bottom: 0 !important;
}

.m-b-15 {
    margin-bottom: 15px !important;
}

.m-b-24 {
    margin-bottom: 24px !important;
}

.m-b-30 {
    margin-bottom: 30px !important;
}

.m-r-5 {
    margin-right: 5px;
}

.m-r-10 {
    margin-right: 10px;
}

.m-l-10 {
    margin-left: 10px;
}

.m-l-50 {
    margin-left: 50px;
}

.m-l-30 {
    margin-left: 30px;
}

.m-r-15 {
    margin-right: 15px;
}

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

.mb-m-24 {
    margin-bottom: -24px;
}

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

.p-15 {
    padding: 15px;
}

.p-24 {
    padding: 24px;
}

.p-b-15 {
    padding-bottom: 15px;
}

.gx-border {
    border: 1px solid #eee;
}

/*  Loader  */

#gx-overlay {
    display: block;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
}

#gx-overlay .gx-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

#gx-overlay .gx-ellipsis div {
    position: absolute;
    top: 33px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
    opacity: 0.7;
    -webkit-transform: scale(0);
    transform: scale(0);
}

#gx-overlay .gx-ellipsis div:nth-child(1) {
    background: #0d6efd;
    left: 8px;
    -webkit-animation: lds-ellipsis1 0.6s infinite;
    animation: lds-ellipsis1 0.6s infinite;
}

#gx-overlay .gx-ellipsis div:nth-child(2) {
    background: #ff4f7f;
    left: 8px;
    -webkit-animation: lds-ellipsis2 0.6s infinite;
    animation: lds-ellipsis2 0.6s infinite;
}

#gx-overlay .gx-ellipsis div:nth-child(3) {
    background: #0d6efd;
    left: 32px;
    -webkit-animation: lds-ellipsis2 0.6s infinite;
    animation: lds-ellipsis2 0.6s infinite;
}

#gx-overlay .gx-ellipsis div:nth-child(4) {
    background: #ff4f7f;
    left: 56px;
    -webkit-animation: lds-ellipsis3 0.6s infinite;
    animation: lds-ellipsis3 0.6s infinite;
}

@-webkit-keyframes lds-ellipsis1 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes lds-ellipsis1 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes lds-ellipsis3 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-webkit-keyframes lds-ellipsis2 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(24px, 0);
        transform: translate(24px, 0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(24px, 0);
        transform: translate(24px, 0);
    }
}

/* Colors */

.color-primary {
    color: #0d6efd;
}

.color-secondary {
    color: #ff4f7f;
}

.color-success {
    color: #2bbb93;
}

.color-info {
    color: #50d1f8;
}

.color-warning {
    color: #ffa04f;
}

.color-danger {
    color: #fb2f2f;
}

.color-dark {
    color: #1d2531;
}

.bg-color-primary {
    color: #0d6efd;
}

.bg-color-secondary {
    color: #ff4f7f;
}

.bg-color-success {
    color: #2bbb93;
}

.bg-color-info {
    color: #50d1f8;
}

.bg-color-warning {
    color: #ffa04f;
}

.bg-color-danger {
    color: #fb2f2f;
}

.bg-color-dark {
    color: #1d2531;
}

.bg-primary {
    background-color: #0d6efd !important;
}

.bg-secondary {
    background-color: #ff4f7f !important;
}

label {
    margin-bottom: 5px;
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.gx-page-title {
    padding-bottom: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.gx-page-title .gx-breadcrumb h5 {
    font-size: 24px;
    font-weight: 600;
    color: #484d54;
}

.gx-page-title .gx-breadcrumb ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.gx-page-title .gx-breadcrumb ul li {
    font-size: 13px;
    color: #777;
    position: relative;
    text-transform: capitalize;
}

.gx-page-title .gx-breadcrumb ul li:not(:first-child) {
    padding-left: 20px;
}

.gx-page-title .gx-breadcrumb ul li:not(:first-child):after {
    content: "\ea6e";
    font-family: "remixicon" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 0;
    left: 3px;
}

.gx-page-title .gx-breadcrumb ul li a {
    color: #777;
}

.gx-page-title .gx-tools {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gx-page-title .gx-tools>div {
    padding-left: 5px;
}

.gx-page-title .gx-tools .calendar {
    height: 35px;
    padding: 0 8px;
    font-size: 12px;
    color: #777;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

.gx-page-title .gx-tools .calendar i {
    margin-right: 5px;
    font-size: 16px;
    color: #484d54;
}

.gx-page-title .gx-tools .refresh {
    width: 35px;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
    color: #484d54;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
}

.gx-page-title .gx-tools .filter button {
    width: 35px;
    height: 35px;
    padding: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    color: #484d54;
    font-size: 13px;
}

.gx-page-title .gx-tools .filter button i {
    font-size: 16px;
}

.gx-page-title .gx-tools .filter button:after {
    display: none;
}

.gx-page-title .gx-tools .filter button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gx-page-title-2 .gx-breadcrumb {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gx-page-title-2 .gx-breadcrumb h5 {
    margin: 0;
    text-transform: capitalize;
}

.simple-table {
    width: 100%;
}

.simple-table thead tr th {
    padding: 10px;
}

.simple-table tr td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.simple-table tr td span {
    display: block;
}

.simple-table tr td .title {
    font-size: 14px;
    color: #777;
    text-transform: capitalize;
}

.simple-table tr td .link {
    font-size: 13px;
    color: #999;
    text-transform: lowercase;
}

.simple-table tr td .users-view {
    font-size: 13px;
    font-weight: 600;
    color: #777;
}

.simple-table tr td .users-view i {
    margin-right: 5px;
}

.radius-30 {
    border-radius: 30px !important;
}

.radius-0 {
    border-radius: 0px !important;
}

.gx-btn {
    height: 35px;
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    text-transform: capitalize;
    color: #777;
    border: 1px solid #eee;
    border-radius: 5px;
    cursor: pointer;
}

.gx-btn:hover {
    background-color: rgba(72, 85, 104, 0.07);
}

.gx-btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gx-btn-primary,
.gx-primary-btn {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 35px;
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #0d6efd;
    color: #fff;
    font-size: 14px;
    border: 1px solid #0d6efd;
    border-radius: 5px;
    cursor: pointer;
}

.gx-btn-primary:hover,
.gx-primary-btn:hover {
    background-color: #fff;
    color: #0d6efd;
    border: 1px solid #0d6efd;
}

.gx-btn-primary:focus,
.gx-primary-btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gx-btn-secondary {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 35px;
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #ff4f7f;
    color: #fff;
    font-size: 14px;
    border: 1px solid #ff4f7f;
    border-radius: 5px;
    cursor: pointer;
}

.gx-btn-secondary:hover {
    background-color: #fff;
    color: #ff4f7f;
    border: 1px solid #ff4f7f;
}

.gx-btn-secondary:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.max-width-1170 {
    max-width: 1170px;
    margin: auto;
}

.dropdown {
    border-radius: 5px;
}

.dropdown .dropdown-toggle {
    width: 30px;
    height: 30px;
    padding: 0;
    background: transparent;
    border: 1px solid #eee;
    border-radius: 5px;
}

.dropdown .dropdown-toggle:after {
    display: none;
}

.dropdown .dropdown-toggle:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dropdown .dropdown-toggle i {
    color: #777;
    line-height: 29px;
}

.gx-code {
    margin-top: 15px;
    background: #fff;
    overflow: auto;
    width: auto;
    border: solid #eee;
    border-width: 0.1em 0.1em 0.1em 0.8em;
    padding-top: 15px;
    padding-left: 15px;
    border-radius: 5px;
}

.gx-code pre {
    margin: 0;
    line-height: 125%;
}

.gx-code pre span,
.gx-code pre code {
    color: #777;
    background-color: #fff;
}

.icons-header {
    width: 100%;
    display: block;
    position: relative;
}

.gx-material-icons .hide {
    display: none;
}

.material-icons {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}

.material-icons div {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.material-icons div code {
    border: 1px solid #f3f3f3;
    width: 65px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    line-height: 24px;
    cursor: pointer;
}

.material-icons div span {
    cursor: pointer;
    font-size: 13px;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: calc(100% - 90px);
    overflow: hidden;
    vertical-align: middle;
    white-space: nowrap;
    color: #777;
}

.material-icons div i {
    display: inline-block;
    width: 32px;
    height: 24px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    line-height: 24px;
}

.gx-remix-icons {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.gx-remix-icons .header-tools {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.gx-remix-icons .header-tools input {
    margin-bottom: 15px;
    padding: 8px 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 13px;
    color: #777;
}

.gx-remix-icons .header-tools input:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gx-remix-icons .remix-unicode-icon {
    margin-bottom: 24px;
}

.gx-remix-icons .remix-unicode-icon.hide {
    display: none;
}

.gx-remix-icons .gx-icon-block {
    width: 100%;
    height: 100%;
    padding: 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(72, 85, 104, 0.07);
    border-radius: 5px;
}

.gx-remix-icons .gx-icon-block .remix-icons {
    margin-bottom: 15px;
    color: #485568;
    font-family: "remixicon" !important;
    font-size: 26px;
}

.gx-remix-icons .gx-icon-block h4 {
    font-family: "Poppins, sans-serif";
    font-size: 14px;
    color: #777;
    font-size: 13px;
    text-align: center;
}

.remix-unicode {
    font-size: 13px;
    color: #777;
    font-family: "remixicon" !important;
}

.gx-search-popup .search.dropdown-menu.show {
    padding: 5px;
    -webkit-box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gx-search-popup .search.dropdown-menu.show a {
    padding: 0 0 0 5px;
    color: #777;
}

.gx-search-popup .search.dropdown-menu.show input {
    padding: 5px 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 13px;
    color: #777;
}

.gx-search-popup .search.dropdown-menu.show input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.drop-settings {
    position: absolute;
    top: 0;
    right: 0;
}

.drop-settings button {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.drop-settings button:focus,
.drop-settings button:focus-visible {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
}

.drop-settings button:hover,
.drop-settings button:active {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.drop-settings button i {
    color: #485568;
}

.drop-settings button:after {
    display: none;
}

.drop-settings ul {
    min-width: 9rem;
    border: 0;
    -webkit-box-shadow: 0 2px 7px rgba(58, 65, 74, 0.25);
    box-shadow: 0 2px 7px rgba(58, 65, 74, 0.25);
}

.drop-settings ul li a {
    font-size: 13px;
    color: #777;
    text-transform: capitalize;
}

.drop-settings ul li a:active {
    background-color: transparent;
    color: #777;
}

.dropdown-menu {
    padding: 10px;
    -webkit-box-shadow: 0 2px 7px rgba(58, 65, 74, 0.25);
    box-shadow: 0 2px 7px rgba(58, 65, 74, 0.25);
    border: 0;
}

.dropdown-menu .dropdown-item {
    padding: 5px 10px;
    font-size: 13px;
    color: #777;
    border-radius: 5px;
    text-transform: capitalize;
}

.dropdown-menu .dropdown-item:active {
    background-color: #e9ecef;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
    display: initial;
    width: initial;
    height: initial;
}

.max-height {
    max-height: 450px;
}

.appear {
    -webkit-animation: appear 500ms ease-out forwards;
    animation: appear 500ms ease-out forwards;
}

/**  Tags and skills input  **/

.bootstrap-tagsinput {
    width: 100%;
    background-color: transparent;
    border: 1px solid #eee;
    display: inline-block;
    padding: 8px 10px;
    color: #777;
    vertical-align: middle;
    border-radius: 5px;
    line-height: 22px;
    cursor: text;
}

.bootstrap-tagsinput input {
    border: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    background-color: transparent;
    padding: 0 5px;
    margin: 0;
    width: auto;
    max-width: inherit;
}

.bootstrap-tagsinput input:focus {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.bootstrap-tagsinput input::-webkit-input-placeholder {
    color: #999;
    opacity: 1;
}

.bootstrap-tagsinput input::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.bootstrap-tagsinput input:-ms-input-placeholder {
    color: #999;
    opacity: 1;
}

.bootstrap-tagsinput input::-ms-input-placeholder {
    color: #999;
    opacity: 1;
}

.bootstrap-tagsinput input::placeholder {
    color: #999;
    opacity: 1;
}

.bootstrap-tagsinput .tag {
    margin-right: 2px;
    color: #777;
}

.bootstrap-tagsinput .tag [data-role=remove] {
    margin-left: 8px;
    cursor: pointer;
    color: #ff4f7f;
}

.bootstrap-tagsinput .tag [data-role=remove]:after {
    content: "×";
    padding: 0px 2px;
}

.bootstrap-tagsinput .tag [data-role=remove]:hover {
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.bootstrap-tagsinput .tag [data-role=remove]:hover:active {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.bootstrap-tagsinput.form-control input::-moz-placeholder {
    color: #777;
    opacity: 1;
}

.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
    color: #777;
}

.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
    color: #777;
}

@-webkit-keyframes appear {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    75% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes appear {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    75% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.white-mode-logo {
    display: block;
}

.dark-mode-logo {
    display: none;
}

.gx-toggle-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.gx-toggle-sidebar .outer-ring {
    width: 30px;
    height: 18px;
    display: block;
    border: 1px solid #9799a7;
    border-radius: 30px;
    position: relative;
}

.gx-toggle-sidebar .outer-ring .inner-ring {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 3px;
    right: 4px;
    border-radius: 30px;
    display: block;
    background-color: #9799a7;
}

.gx-toggle-sidebar.active .outer-ring .inner-ring {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    left: 4px;
}

/* Responsive css sidebar */

@media only screen and (max-width: 991px) {
    .mb-991 {
        margin-bottom: 30px;
    }
    .material-icons {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}

@media only screen and (max-width: 767px) {
    .material-icons {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
    .gx-page-title {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .gx-page-title .gx-tools {
        margin-top: 15px;
    }
    .gx-page-title .gx-tools>div {
        padding: 0 5px 0 0;
    }
    .gx-page-title .gx-tools .refresh {
        display: none;
    }
    .gx-page-title-2 .gx-breadcrumb {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }
    .gx-page-title-2 .gx-breadcrumb ul {
        margin-top: 5px;
    }
}

@media only screen and (max-width: 575px) {
    .gx-main-content {
        width: 100%;
        margin-left: 0px;
    }
    .sb-collapse .gx-main-content {
        width: 100%;
        margin-left: 0px;
    }
    .right-header .gx-btn-primary {
        display: none !important;
    }
}

/** Sidebar css **/

.gx-sb-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.gx-sb-list li:last-child {
    padding-bottom: 0;
}

.gx-sb-list li li {
    padding: 5px 0 0 10px;
}

.gx-sb-list li li i {
    font-size: 12px !important;
}

.gx-sb-list .sb-subdrop-item {
    padding-left: 25px;
}

.gx-sb-list .sb-subdrop-item>a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
    color: #aeb8c7 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 18px !important;
}

.gx-sb-list .gx-sb-title {
    padding: 15px 0 5px 0;
    text-transform: uppercase;
    color: #485568;
    font-size: 13px;
    font-weight: 600;
}

.gx-sb-list .gx-sb-item-separator {
    width: 100%;
    height: 1px;
    margin: 12px 0;
    padding: 0;
    display: block;
    background-color: #27303e;
}

.gx-sb-list .gx-sb-item.home {
    padding: 12px;
    background-color: #27303e;
    border-radius: 5px;
}

.gx-sb-list .load-active>a .drop-arrow {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.gx-sb-list .load-sub-active>a .drop-arrow {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.gx-sb-list .gx-sb-item {
    position: relative;
}

.gx-sb-list .gx-sb-item a {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    padding: 12px 0px;
    width: 100%;
    color: #485568;
    font-size: 14px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 18px;
    text-transform: capitalize;
}

.gx-sb-list .gx-sb-item a>i {
    margin-right: 10px;
    font-size: 19px;
}

.gx-sb-list .gx-sb-item a .drop-arrow {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    right: 10px;
    font-size: 18px;
}

.gx-sb-list .gx-sb-drop {
    padding-top: 12px;
    padding-left: 0;
    display: none;
}

.gx-sb-list .gx-sb-drop a {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-transform: capitalize;
    font-weight: 300;
    background-color: #fff;
    color: #555;
    font-size: 13px;
}

.gx-sb-list .gx-sb-drop a i.ri-git-commit-line {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.gx-sb-list .active-drop ul {
    display: block;
}

/* ====================================== 
   Tools sidebar 
========================================= */

.gx-tools-sidebar-overlay {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 41;
}

.gx-tools-sidebar {
    width: 300px;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 41;
    -webkit-transform: translateX(300px);
    transform: translateX(300px);
}

.gx-tools-sidebar .gx-tools-sidebar-toggle {
    position: absolute;
    top: 45%;
    right: 302px;
    width: 40px;
    height: 40px;
    background-color: rgba(29, 37, 49, 0.6);
    -webkit-transition: all ease-in 0.3s;
    transition: all ease-in 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 25px;
    z-index: -1;
    cursor: pointer;
    text-decoration: none;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.gx-tools-sidebar .gx-tools-sidebar-toggle i {
    color: #fff;
    -webkit-animation: rotation 3s infinite linear;
    animation: rotation 3s infinite linear;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.gx-tools-sidebar .gx-bar-title {
    margin-bottom: 15px;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.gx-tools-sidebar .gx-bar-title h6 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #484d54;
}

.gx-tools-sidebar .gx-bar-title .close-tools {
    color: #ff4f7f;
    font-size: 17px;
    cursor: pointer;
}

.gx-tools-sidebar .gx-tools-detail {
    height: calc(100vh - 72px);
    padding: 0 15px 15px 15px;
    overflow: auto;
}

.gx-tools-sidebar .gx-tools-detail::-webkit-scrollbar {
    background-color: transparent;
    width: 7px;
    height: 7px;
    position: absolute;
}

.gx-tools-sidebar .gx-tools-detail::-webkit-scrollbar-thumb {
    background-color: rgba(80, 93, 113, 0.5);
    border-radius: 5px;
}

.gx-tools-sidebar .gx-tools-detail .gx-tools-block h3 {
    margin: 15px 0;
    font-size: 14px;
    font-weight: 500;
    color: #484d54;
    font-family: "Poppins, sans-serif";
}

.gx-tools-sidebar .gx-tools-detail .gx-tools-block p {
    margin: 0;
    text-transform: capitalize;
}

.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-color {
    margin: 0;
    padding: 0;
}

.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-color li {
    display: inline-block;
    height: 35px;
    width: 35px;
    border-radius: 5px;
    cursor: pointer;
    vertical-align: middle;
    margin: 6px;
    position: relative;
}

.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-tools-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-tools-info .gx-tools-item {
    width: 125px;
    margin-bottom: 10px;
    text-align: center;
}

.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-tools-info .gx-tools-item img {
    width: 100%;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-tools-info .gx-tools-item img:hover {
    border: 1px solid #0d6efd;
}

.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-tools-info .gx-tools-item.active {
    position: relative;
}

.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-tools-info .gx-tools-item.active:after {
    font-family: remixicon !important;
    content: "\eb79";
    width: 30px;
    height: 30px;
    font-size: 16px;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 10px;
    background-color: rgba(95, 106, 245, 0.7);
    color: #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-tools-info .gx-tools-item.active img {
    border-color: #0d6efd;
}

.active-variant {
    position: relative;
}

.active-variant:after {
    font-family: remixicon !important;
    content: "\eb79";
    height: 35px;
    width: 35px;
    font-size: 18px;
    position: absolute;
    color: #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.color-primary {
    background: #0d6efd;
}

.color-1 {
    background: #55ca9a;
}

.color-2 {
    background: #f5885f;
}

.color-3 {
    background: #32dbe2;
}

.color-4 {
    background: #3f51b5;
}

.color-5 {
    background: #f44336;
}

.color-6 {
    background: #e91e63;
}

.color-7 {
    background: #607d8b;
}

.color-8 {
    background: #4e5969;
}

.color-9 {
    background: #03492f;
}

.open-tools {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

/** Header css **/

.gx-header,
[data-header-mode-tool=light] {
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    height: 70px;
    width: 100%;
    padding: 0 12px;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.93);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
    z-index: 15;
}

.gx-header .gx-header-items,
[data-header-mode-tool=light] .gx-header-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gx-header .gx-header-items .left-header,
[data-header-mode-tool=light] .gx-header-items .left-header {
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gx-header .gx-header-items .left-header a,
[data-header-mode-tool=light] .gx-header-items .left-header a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gx-header .gx-header-items .left-header a img,
[data-header-mode-tool=light] .gx-header-items .left-header a img {
    width: 100px;
}

.gx-header .gx-header-items .header-search-box,
[data-header-mode-tool=light] .gx-header-items .header-search-box {
    margin-left: 20px;
    position: relative;
}

.gx-header .gx-header-items .header-search-box .open-search,
[data-header-mode-tool=light] .gx-header-items .header-search-box .open-search {
    display: none;
}

.gx-header .gx-header-items .header-search-box form,
[data-header-mode-tool=light] .gx-header-items .header-search-box form {
    background-color: transparent;
    z-index: 20;
}

.gx-header .gx-header-items .header-search-box input,
[data-header-mode-tool=light] .gx-header-items .header-search-box input {
    min-width: 300px;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #fff;
}

.gx-header .gx-header-items .header-search-box input:focus,
[data-header-mode-tool=light] .gx-header-items .header-search-box input:focus {
    outline: #ffdead;
    border: 1px solid #eee;
}

.gx-header .gx-header-items .header-search-box .search-btn,
[data-header-mode-tool=light] .gx-header-items .header-search-box .search-btn {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    right: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.gx-header .gx-header-items .header-search-box .search-btn i,
[data-header-mode-tool=light] .gx-header-items .header-search-box .search-btn i {
    color: #9799a7;
}

.gx-header .gx-header-items .gx-toggle-sidebar.active .outer-ring .inner-ring,
[data-header-mode-tool=light] .gx-header-items .gx-toggle-sidebar.active .outer-ring .inner-ring {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    left: 4px;
}

.gx-header .gx-header-items .outer-ring,
[data-header-mode-tool=light] .gx-header-items .outer-ring {
    width: 30px;
    height: 18px;
    display: block;
    border: 1px solid #9799a7;
    border-radius: 30px;
    position: relative;
}

.gx-header .gx-header-items .outer-ring .inner-ring,
[data-header-mode-tool=light] .gx-header-items .outer-ring .inner-ring {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 3px;
    right: 4px;
    border-radius: 30px;
    display: block;
    background-color: #9799a7;
}

.gx-header .right-header,
[data-header-mode-tool=light] .right-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.gx-header .btn-topic,
[data-header-mode-tool=light] .btn-topic {
    width: 35px;
    height: 35px;
    border: 1px solid #eee;
    border-radius: 5px;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gx-header .btn-topic i,
[data-header-mode-tool=light] .btn-topic i {
    color: #9799a7;
    font-size: 20px;
}

[data-header-mode-tool=dark] {
    background-color: rgba(26, 32, 43, 0.95);
}

[data-header-mode-tool=dark] .gx-header-items .header-search-box input {
    background: #1e2531;
    border-color: #313a4b;
    color: #aab2bf;
}

[data-header-mode-tool=dark] .gx-header-items .header-search-box input:focus {
    border-color: #313a4b;
}

[data-header-mode-tool=dark] .gx-header-items .gx-hover-drop:hover {
    background-color: #181d27;
}

[data-header-mode-tool=dark] .gx-header-items .gx-hover-drop i {
    color: #9ba5b5;
}

[data-header-mode-tool=dark] .gx-header-items .gx-right-tool>a:hover {
    background-color: #181d27;
}

[data-header-mode-tool=dark] .gx-header-items .gx-right-tool i {
    color: #9ba5b5;
}

[data-header-mode-tool=light] {
    background-color: rgba(255, 255, 255, 0.93);
}

[data-header-mode-tool=light] .gx-header-items .right-header .gx-right-tool>a:hover {
    background-color: #e9ecef;
}

[data-header-mode-tool=light] .gx-header-items .right-header .gx-right-tool>a i {
    color: #485568;
}

[data-header-mode-tool=light] .gx-header-items .right-header .gx-right-tool i {
    color: #485568;
}

[data-header-mode-tool=light] .gx-header-items .right-header .gx-hover-drop:hover {
    background-color: #e9ecef;
}

/* Responsive css sidebar */

@media only screen and (max-width: 1199px) {
    .gx-header .btn-topic {
        width: 35px;
        height: 35px;
        border: 1px solid #eee;
        border-radius: 5px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .gx-header .btn-topic i {
        color: #9799a7;
        font-size: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .gx-header {
        z-index: 20;
    }
    .gx-header .gx-header-items .header-search-drop:hover .gx-search {
        margin-top: 0;
        opacity: 1;
        visibility: visible;
    }
    .gx-header .gx-header-items .header-search-box {
        position: relative;
    }
    .gx-header .gx-header-items .header-search-box .open-search {
        width: 30px;
        height: 30px;
        display: block;
        color: #9799a7;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 21px;
    }
    .gx-header .gx-header-items .header-search-box .search-btn {
        right: 18px;
    }
    .gx-header .gx-header-items .header-search-box .gx-search {
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        width: 300px;
        margin-top: 15px;
        padding: 15px;
        border-radius: 5px;
        -webkit-box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
        box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
        position: absolute;
        opacity: 0;
        visibility: hidden;
        top: 50px;
        left: auto !important;
        display: block;
        background-color: #fff;
    }
    .gx-header .gx-header-items .header-search-box .gx-search input {
        width: 100%;
        min-width: 100%;
    }
    .gx-header .gx-header-items .outer-ring .inner-ring {
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        left: 4px;
        right: auto;
    }
    .gx-header .gx-header-items .gx-toggle-sidebar.active .outer-ring .inner-ring {
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        right: 4px;
        left: auto;
    }
}

@media only screen and (max-width: 767px) {
    .gx-header .gx-header-items .header-search-box {
        margin-left: 15px;
    }
    .gx-header .gx-header-items .header-search-box .open-search {
        font-size: 18px;
    }
    .gx-header .gx-header-items .header-search-box .gx-search {
        top: 45px;
    }
    .gx-header .gx-header-items .left-header {
        height: 60px;
    }
    .gx-header .gx-header-items .right-header .gx-hover-tool img.user {
        width: 30px;
        height: 30px;
    }
    .gx-header .gx-header-items .right-header .gx-hover-tool img.flag {
        width: 18px;
        height: 18px;
    }
    .gx-header .gx-header-items .right-header .gx-right-tool i {
        font-size: 18px;
    }
    .gx-header .gx-header-items .right-header .gx-right-tool>a {
        width: 30px;
        height: 30px;
    }
    .gx-header .gx-header-items .right-header .gx-hover-drop {
        width: 30px;
        height: 30px;
    }
    .gx-header .gx-header-items .right-header .gx-hover-drop .gx-hover-drop-panel {
        top: 45px;
    }
    .gx-header .gx-header-items .right-header .gx-right-tool {
        margin-left: 5px;
    }
    .gx-header .gx-header-items .right-header .gx-user-drop {
        margin-left: 10px;
    }
}

@media only screen and (max-width: 575px) {
    .sb-collapse .gx-header {
        width: 100%;
        margin-left: 0px;
    }
    .gx-right-tool.display-screen,
    .gx-right-tool.display-dark {
        display: none;
    }
}

@media only screen and (max-width: 420px) {
    .gx-header .gx-header-items .header-search-box {
        position: unset;
    }
    .gx-header .gx-header-items .header-search-box .gx-search {
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        top: 60px;
    }
    .gx-right-tool.apps .gx-hover-drop {
        position: unset;
    }
    .gx-right-tool.apps .gx-hover-drop-panel {
        width: calc(100% - 30px);
        left: 15px;
        right: 15px;
        top: 60px;
    }
    .gx-right-tool.apps .gx-hover-drop-panel ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

/* Layouts */

/** All Cards **/

.gx-full-card-close {
    display: none;
}

.gx-card-overlay {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 42;
}

.gx-full-screen {
    width: 100%;
    max-width: 1400px;
    padding: 12px;
    position: fixed;
    z-index: 30;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 43;
}

.gx-full-screen .gx-card {
    margin: 0;
    max-height: calc(100vh - 24px);
    overflow: auto;
}

.gx-full-screen .gx-card::-webkit-scrollbar {
    background-color: transparent;
    width: 7px;
    height: 7px;
    position: absolute;
}

.gx-full-screen .gx-card::-webkit-scrollbar-thumb {
    background-color: rgba(80, 93, 113, 0.5);
    border-radius: 5px;
}

.card-body-header {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.card-body-header h6 {
    margin: 0;
}

.feature-card {
    margin-bottom: 24px;
    padding: 30px 15px;
    -webkit-box-shadow: 0px 0px 15px #dfd9ff;
    box-shadow: 0px 0px 15px #dfd9ff;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 5px;
}

.feature-card img {
    margin-bottom: 15px;
    width: 50px;
    height: 50px;
}

.feature-card h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #484d54;
}

.gx-main-structure.active a i.ri-arrow-up-s-line {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.gx-main-structure.active>li {
    display: block;
}

.topic-sidebar {
    height: calc(100vh - 120px);
    position: sticky;
    top: 94px;
    overflow: auto;
}

.topic-sidebar::-webkit-scrollbar {
    background-color: transparent;
    width: 7px;
    height: 7px;
    position: absolute;
}

.topic-sidebar::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 5px;
}

.topic-sidebar:hover::-webkit-scrollbar {
    background-color: transparent;
    width: 7px;
    height: 7px;
    position: absolute;
}

.topic-sidebar:hover::-webkit-scrollbar-thumb {
    background-color: rgba(80, 93, 113, 0.5);
    border-radius: 5px;
}

.file-customization ul li {
    padding: 10px 0;
    line-height: 28px;
}

pre.language-markup,
pre.language-html,
pre.language-css,
pre.language-js {
    max-height: 450px;
    border-radius: 5px;
}

pre.language-markup::-webkit-scrollbar,
pre.language-html::-webkit-scrollbar,
pre.language-css::-webkit-scrollbar,
pre.language-js::-webkit-scrollbar {
    background-color: transparent;
    width: 7px;
    height: 7px;
    position: absolute;
}

pre.language-markup::-webkit-scrollbar-thumb,
pre.language-html::-webkit-scrollbar-thumb,
pre.language-css::-webkit-scrollbar-thumb,
pre.language-js::-webkit-scrollbar-thumb {
    background-color: rgba(80, 93, 113, 0.5);
    border-radius: 5px;
}

.source li {
    padding: 8px 0;
}

.gx-topic-list ul li {
    /* a {
      padding: 12px;
      color: $text-555;
      display: flex;
      font-weight: 500;
      &:hover {
          color: $main-primary-color;
      }
  } */
}

.gx-topic-list ul li .gx-drop-toggle {
    padding: 12px 0 20px 0;
    color: #555;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.gx-topic-list ul li a.sub-topic {
    background-color: #fff;
    padding: 10px 15px;
}

.gx-topic-list ul li .active {
    border: 1px solid #0d6efd;
    color: #0d6efd;
}

.tab-content {
    padding-top: 30px;
}

button.nav-link {
    color: #777;
}

button.nav-link:hover {
    color: #777;
}

button.nav-link i {
    margin-right: 5px !important;
}

.gx-main-structure {
    overflow: auto;
}

.gx-main-structure::-webkit-scrollbar {
    background-color: transparent;
    width: 7px;
    height: 7px;
    position: absolute;
}

.gx-main-structure::-webkit-scrollbar-thumb {
    background-color: rgba(80, 93, 113, 0.5);
    border-radius: 5px;
}

.gx-main-structure>li:not(:last-child) {
    margin-bottom: 15px;
}

.gx-main-structure a {
    color: #777;
}

.gx-main-structure ul.active>li {
    display: block;
}

.gx-main-structure i {
    margin-right: 10px;
    font-size: 20px;
    color: #0d6efd;
}

.gx-main-structure i.ri-arrow-up-s-line {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    font-size: 16px;
    color: #777;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gx-main-structure ul {
    margin-left: 35px;
    padding-left: 15px;
    border-left: 1px dashed #ddd;
}

.gx-main-structure ul li {
    padding: 10px 0;
    color: #777;
}

.gx-main-structure ul li a {
    color: #777;
}

.gx-main-structure ul li a i {
    margin-right: 10px;
    font-size: 20px;
    color: #0d6efd;
}

.gx-main-structure ul li i {
    margin-right: 10px;
    font-size: 20px;
    color: #0d6efd;
}

.info-title {
    margin-top: 15px;
    margin-bottom: 30px;
}

.gx-card.server img {
    width: 100%;
    max-width: 700px;
}

.gx-banner-auth {
    margin: 50px 0 !important;
    padding: 30px;
    background-color: #0d6efd !important;
    background-image: url("../img/demo-img/bg-1.png");
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.gx-banner-auth .gx-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.gx-banner-auth .gx-image img {
    width: 300px;
    border-radius: 5px;
}

.gx-banner-auth .auth-detail {
    padding: 0 15px;
}

.gx-banner-auth .auth-detail li {
    padding: 5px 0;
    list-style-type: none;
    color: #f5f5f5 !important;
}

.gx-banner-auth ul li {
    padding: 10px 0;
    line-height: 28px;
}

.gx-banner-auth ul .rating i {
    color: #FFFF00;
}

.gx-card {
    margin-bottom: 24px;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
}

.gx-card .gx-card-header.tips {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gx-card .gx-card-header.tips h4 {
    margin: 0 10px 0 0;
}

.gx-card .gx-card-header.tips p.small {
    margin: 0;
    font-size: 12px;
    color: #999;
}

.gx-card .gx-card-header {
    padding: 24px;
    border-bottom: 1px solid #eee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gx-card .gx-card-header .gx-card-title {
    margin: 0;
    font-size: 18px;
    color: #484d54;
    font-weight: 700;
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
}

.gx-card .gx-card-header small {
    color: #999;
    font-size: 12px;
}

.gx-card .gx-card-header .header-tools {
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gx-card .gx-card-header .header-tools>a {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #777;
    border: 1px solid #eee;
    border-radius: 5px;
}

.gx-card .gx-card-header .header-tools>a i {
    color: #777;
}

.gx-card .gx-card-header .header-tools .button-add {
    width: auto;
    padding: 0 10px;
    background-color: #2bbb93;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.gx-card .gx-card-header .header-tools .button-add i {
    color: #fff;
}

.gx-card .gx-card-header .header-tools .button-add:hover {
    background-color: #25a984;
}

.gx-card .gx-card-header .header-tools .gx-full-card-close i {
    color: #fd6969 !important;
    font-size: 20px;
}

.gx-card .gx-card-header .header-tools .dots {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #777;
    border: 1px solid #eee;
    border-radius: 5px;
    cursor: pointer;
}

.gx-card .gx-card-header .header-tools .link {
    color: #0d6efd;
    font-size: 13px;
}

.gx-card .gx-card-content {
    padding: 24px;
}

.gx-card .gx-card-content .note {
    margin: 15px 0 0 0;
    padding: 10px 15px;
    background-color: rgba(255, 20, 63, 0.07);
    border-radius: 5px;
    color: #ff7891;
    font-weight: 400;
    line-height: 22px;
}

.gx-card .gx-card-content .note i {
    font-size: 18px;
}

.gx-card .gx-card-content .note p {
    margin: 0;
}

.gx-card .label-card .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.gx-card .label-card .title .icon {
    width: 50px;
    height: 50px;
    padding: 5px;
    background-color: rgba(72, 85, 104, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
}

.gx-card .label-card .title .icon i {
    font-size: 25px;
    color: #485568;
}

.gx-card .label-card .title h4 {
    margin-bottom: 12px;
    color: #777;
    font-size: 15px;
    font-family: "Poppins, sans-serif";
    font-weight: 500;
}

.gx-card .label-card .title .growth-numbers h5 {
    margin: 0;
    color: #485568;
    font-size: 22px;
    line-height: 20px;
    font-weight: 700;
}

.gx-card .label-card .card-groth {
    margin-top: 10px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.gx-card .label-card .card-groth i {
    margin-right: 5px;
    font-size: 15px;
}

.gx-card .label-card .card-groth span {
    margin-left: 5px;
    color: #999;
}

.gx-card .label-card .up {
    color: #2bbb93;
}

.gx-card .label-card .down {
    color: #f90c4c;
}

.gx-card .gx-card-footer {
    padding: 15px;
}

.gx-page-block ul li {
    padding: 10px 0;
}

.nav-tabs .nav-item {
    padding: 0;
}

.gx-thanks {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gx-thanks img {
    width: 100%;
    max-width: 500px;
    margin-top: 30px;
}

.gx-thanks p {
    text-align: center;
}

.gx-side-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 42;
    display: none;
}

/* Responsive css */

@media only screen and (max-width: 1366px) {
    .topic-list li {
        font-size: 13px;
    }
}

@media only screen and (max-width: 1199px) {
    .gx-open-topic {
        left: 0 !important;
    }
    .gx-topic {
        width: 300px;
        height: 100vh;
        position: fixed;
        left: -300px;
        top: 12px;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        z-index: 43;
    }
    .gx-topic .topic-sidebar {
        height: calc(100vh - 24px);
        overflow: auto;
    }
    .gx-topic .topic-sidebar::-webkit-scrollbar {
        background-color: transparent;
        width: 7px;
        height: 7px;
        position: absolute;
    }
    .gx-topic .topic-sidebar::-webkit-scrollbar-thumb {
        background-color: rgba(80, 93, 113, 0.5);
        border-radius: 5px;
    }
}

@media only screen and (max-width: 991px) {
    .gx-full-screen .gx-card {
        height: calc(100vh - 24px);
        overflow: auto;
    }
    .topic-sidebar,
    .gx-sideviwe {
        margin-bottom: 30px !important;
        top: auto !important;
        bottom: auto !important;
    }
    .gx-banner-auth {
        padding: 24px;
    }
    .gx-banner-auth .auth-detail {
        padding: 0;
    }
    .gx-banner-auth .gx-detail {
        margin: auto;
        display: block;
        margin: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .gx-banner-auth .gx-image {
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .gx-blog-cmt-form input {
        margin-bottom: 15px;
    }
    .gx-blog-cmt-form .gx-text-leave.m-t-15 {
        margin: 0 !important;
    }
    .gx-card .gx-card-header {
        padding: 15px;
    }
    .gx-card .gx-card-content {
        padding: 15px;
    }
    .gx-banner-auth {
        display: block;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .gx-banner-auth .gx-detail {
        display: block;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .gx-banner-auth .gx-image img {
        width: 100%;
        border-radius: 5px;
    }
}

@media only screen and (max-width: 575px) {
    .gx-blog-arrows a {
        font-size: 15px !important;
    }
    .gx-blog-comment-wrapper .gx-single-comment-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .gx-blog-comment-wrapper .gx-single-comment-wrapper .gx-blog-user-img {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    .header-575 {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .header-575 .header-tools {
        margin-top: 15px;
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .gx-card .gx-card-header .header-tools .date {
        font-size: 11px;
    }
    .gx-card .gx-card-header {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .header-tools {
        display: none !important;
    }
}

/* help */

.gx-help-banner {
    margin-top: 50px !important;
    padding: 15px 30px;
    background-image: url("../img/demo-img/bg-1.png");
    background-color: #0d6efd !important;
}

.gx-help-banner .gx-contain {
    padding: 60px 0;
}

.gx-help-banner .gx-contain .gx-heding {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gx-help-banner .gx-contain .gx-heding h2 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
}

.gx-help-banner .gx-contain .gx-help-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.help-search-box {
    position: relative;
}

.help-search-box .open-search {
    display: none;
}

.help-search-box form {
    background-color: transparent;
    z-index: 20;
}

.help-search-box input {
    width: 700px;
    height: 40px;
    padding: 0 15px 0 40px;
    border: none;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
}

.help-search-box input:focus {
    outline: #ffdead;
    border: none;
}

.help-search-box input::-webkit-input-placeholder {
    color: #fff;
}

.help-search-box input::-moz-placeholder {
    color: #fff;
}

.help-search-box input:-ms-input-placeholder {
    color: #fff;
}

.help-search-box input::-ms-input-placeholder {
    color: #fff;
}

.help-search-box input::placeholder {
    color: #fff;
}

.help-search-box .search-btn {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.help-search-box .search-btn i {
    color: #fff;
}

.gx-services {
    padding: 20px;
    text-align: center;
}

.gx-services .services-icons i {
    font-size: 35px;
    color: #0d6efd;
}

.gx-services .services-heading {
    padding-bottom: 10px;
}

.gx-services .services-heading h4 {
    font-size: 16px;
    color: #484d54;
    font-weight: 600;
    margin-bottom: 0px;
    text-transform: capitalize;
}

.gx-services p {
    font-size: 12px;
    line-height: 20px;
}

.gx-help-answer {
    margin-top: 50px;
}

.gx-help-answer .answer-contain {
    text-align: center;
}

.gx-help-devloper {
    text-align: center;
}

.gx-help-devloper img {
    width: 70px;
    border-radius: 100px;
}

.gx-help-devloper h4 {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 0px;
}

.gx-help-devloper p {
    font-size: 12px;
    margin-bottom: 0px;
}

.gx-help-answer-buttons {
    padding: 30px 0;
    margin: auto;
    display: block;
    width: 120px;
}

/* model */

.gx-model-overlay {
    min-width: 100%;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 25;
}

.gx-modal-form {
    padding: 15px;
    width: 100%;
    max-width: 900px;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99;
}

.gx-modal-form .gx-inner-form {
    background: #fff;
    height: calc(100vh - 250px);
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 5px;
}

.gx-modal-form .gx-inner-form .close-modal {
    position: absolute;
    top: 10px;
    right: 5px;
}

.gx-modal-form .gx-inner-form .close-modal i {
    font-size: 18px;
    color: #f90c4c;
    cursor: pointer;
}

.gx-form .input-group {
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.gx-form .label-heading {
    float: left;
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    margin-top: inherit;
}

.gx-form input {
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    color: #999;
    border: 1px solid #eee !important;
}

.gx-form input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #0d6efd !important;
}

.gx-form input:hover {
    background-image: none !important;
}

.gx-form input::-webkit-input-placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.gx-form input::-moz-placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.gx-form input:-ms-input-placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.gx-form input::-ms-input-placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.gx-form input::placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.gx-form .br-input .input-icon+input {
    padding-left: 15px !important;
}

.gx-form .form-field:not(:last-child) {
    margin-bottom: 15px;
}

.gx-form textarea {
    width: 100%;
    height: 200px;
    outline: none;
    padding: 10px;
    padding-left: 15px;
}

.gx-form textarea:focus {
    border-color: #0d6efd !important;
}

.gx-form textarea::-webkit-input-placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.gx-form textarea::-moz-placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.gx-form textarea:-ms-input-placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.gx-form textarea::-ms-input-placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.gx-form textarea::placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.gx-form span {
    font-size: 12px;
}

.gx-form .form-field-buttons {
    margin: auto;
    display: block;
    outline: none;
    width: 80px;
}

.gx-form .form-field input[type=file] {
    cursor: pointer;
}

.gx-form .form-field input[type=file]::-webkit-file-upload-button {
    display: none;
}

.gx-form .form-field input[type=file]::file-selector-button {
    display: none;
}

.gx-form .drop-down {
    position: relative;
    width: 100%;
    text-align: left;
    border: 1px solid #eee;
    border-radius: 5px;
}

.gx-form .drop-down .header {
    height: 40px;
    padding: 10px 15px;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.gx-form .drop-down .header .filter_selected {
    width: 100%;
    font-size: 13px;
    font-weight: 400;
}

.gx-form .drop-down .header i {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    font-size: 30px;
    color: #000;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}

.gx-form .drop-down .header i.opened {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}

.gx-form .drop-down .filters {
    position: absolute;
    top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    z-index: 10;
    width: 100%;
    overflow: hidden;
}

.gx-form .drop-down .filters .filter {
    padding: 0.5rem;
    font-size: 14px;
    font-weight: 400;
}

.gx-form .drop-down .filters .filter:hover {
    color: #0d6efd;
}

.gx-form .drop-down .filters .filter.selected {
    color: #0d6efd;
}

/* Responsive css */

@media only screen and (max-width: 991px) {
    .help-search-box input {
        width: 500px;
    }
}

@media only screen and (max-width: 767px) {
    .help-search-box input {
        width: 100%;
    }
}

/* faq */

.gx-help-faq h1 {
    margin-bottom: 20px;
}

.gx-help-faq .accordion .accordion-item {
    border: none;
}

.gx-help-faq .accordion .accordion-item .accordion-header {
    padding-bottom: 0px;
}

.gx-help-faq .accordion .accordion-item:not(:last-child) {
    margin-bottom: 25px;
}

.gx-help-faq .accordion .accordion-item .accordion-button {
    background-color: #fff;
    color: #484d54;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #eee;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.gx-help-faq .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    background-image: none;
    font-family: remixicon !important;
    content: "\ea4e";
    font-size: 20px;
}

.gx-help-faq .accordion .accordion-item .accordion-button::after {
    background-image: none;
    font-family: remixicon !important;
    content: "\ea4e";
    font-size: 20px;
}

.gx-help-faq .accordion .accordion-item .accordion-collapse {
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.gx-help-faq .accordion .accordion-item .accordion-collapse .accordion-body p {
    margin-bottom: 0px;
}

/* blog */

.gx-help-blog-inner {
    padding: 15px;
}

.gx-blog-sub-imgs {
    margin-bottom: 15px;
}

.gx-blog-sub-imgs img {
    width: 100%;
    border-radius: 5px;
}

.gx-blog-tags a {
    color: #485568;
}

.gx-blog-arrows {
    margin-bottom: 30px;
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}

.gx-blog-arrows a {
    font-size: 20px;
    text-transform: capitalize;
    color: #485568;
}

.gx-blog-comment-wrapper .gx-single-comment-wrapper {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gx-blog-comment-wrapper .gx-single-comment-wrapper .ml-150 {
    margin-left: 4rem;
}

.gx-blog-comment-wrapper .gx-single-comment-wrapper h5 {
    color: #485568;
    font-size: 15px;
    font-weight: 600;
}

.gx-blog-comment-wrapper .gx-single-comment-wrapper .gx-blog-user-img {
    margin-right: 30px;
    max-width: 4rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 4rem;
    flex: 0 0 4rem;
    overflow: hidden;
}

.gx-blog-comment-wrapper .gx-single-comment-wrapper .gx-blog-user-img img {
    width: 100%;
    border-radius: 5px;
    border-radius: 5px;
}

.gx-blog-comment-wrapper .gx-single-comment-wrapper .gx-blog-comment-content span {
    color: #999;
    font-size: 13px;
}

.gx-blog-comment-wrapper .gx-single-comment-wrapper .gx-blog-comment-content p {
    margin-top: 5px;
}

.gx-blog-cmt-form input,
.gx-blog-cmt-form textarea {
    width: 100%;
    padding: 10px;
}

.gx-blog-cmt-form .gx-btn-primary {
    margin-top: 15px;
}

.gx-help-blog-image {
    position: relative;
}

.gx-help-blog-image img {
    width: 100%;
    border-radius: 5px;
}

.gx-help-blog-image span {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #0d6efd;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    padding: 4px 6px;
    border-radius: 5px;
}

.gx-help-blog-contain {
    padding-top: 15px;
}

.gx-help-blog-contain h4 {
    font-size: 22px;
    margin-bottom: 1rem;
}

.gx-help-blog-contain p {
    line-height: 25px;
    font-weight: 300;
}

.gx-btn-blog {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #0d6efd;
    border: 1px solid #0d6efd;
    color: #fff;
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 400;
    padding: 3px 8px;
    border-radius: 5px;
    cursor: pointer;
}

.gx-btn-blog:hover {
    background-color: #fff;
    color: #27303e;
}

/* Blog List*/

.blog-list .gx-help-blog-inner {
    padding: 15px;
}

.blog-list .gx-help-blog-image {
    position: relative;
}

.blog-list .gx-help-blog-image img {
    width: 100%;
    border-radius: 5px;
}

.blog-list .gx-help-blog-image span {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #0d6efd;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    padding: 4px 6px;
    border-radius: 5px;
}

.blog-list .gx-help-blog-contain {
    padding-top: 15px;
}

.blog-list .gx-help-blog-contain h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-list .gx-help-blog-contain p {
    line-height: 23px;
    font-weight: 400;
    font-size: 13px;
}

.blog-list .gx-btn-blog {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #0d6efd;
    border: 1px solid #0d6efd;
    color: #fff;
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 400;
    padding: 3px 8px;
    border-radius: 5px;
    cursor: pointer;
}

.blog-list .gx-btn-blog:hover {
    background-color: #fff;
    color: #27303e;
}

/* knowledgebase-list */

.gx-community {
    padding: 24px;
}

.gx-community:hover .community-file i {
    color: #0d6efd !important;
}

.gx-community:hover .community-inner h4 a {
    color: #0d6efd !important;
}

.gx-community .community-file {
    margin-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gx-community .community-file i {
    font-size: 40px;
    line-height: 46px;
    color: #485568;
}

.gx-community p {
    margin-bottom: 0px;
}

.gx-community-caption {
    padding-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gx-community-caption .community-file i {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.gx-community-caption h4.heading {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-transform: none;
    letter-spacing: 0px;
}

.gx-community-caption h4.heading a {
    color: #485568;
}

.gx-community-caption h4.heading a:hover {
    color: #0d6efd !important;
}

.gx-community-caption .entry-meta {
    padding-bottom: 15px;
}

.gx-community-caption .entry-meta i {
    font-size: 14px;
    color: #0d6efd;
}

.gx-community-caption .entry-meta span {
    padding-left: 3px;
    padding-right: 20px;
    font-size: 14px;
    color: #727272 !important;
}

.gx-sideviwe {
    position: sticky;
    top: 94px;
}

.gx-sideviwe h4.heading {
    padding: 24px;
    border-bottom: 1px solid #eee;
}

.gx-sideviwe ul {
    padding: 24px;
}

.gx-sideviwe ul li {
    position: relative;
}

.gx-sideviwe ul li a {
    padding: 12px 0;
    color: #485568;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gx-sideviwe ul li a i {
    margin-right: 10px;
    font-size: 20px;
    color: #485568;
}

.gx-sideviwe ul li:hover a {
    color: #0d6efd !important;
}

.gx-sideviwe ul li:hover::before {
    color: #0d6efd !important;
}

@media only screen and (max-width: 575px) {
    .gx-community-caption h4.heading {
        font-size: 16px;
        line-height: 24px;
    }
}

/* knowledgebase */

.gx-knowledgebase .gx-article {
    margin: 10px 0;
    display: inline-block;
    vertical-align: middle;
}

.gx-knowledgebase .gx-article .meta-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gx-knowledgebase .gx-article .meta-group .meta-data {
    color: #999;
    font-size: 13px;
    font-weight: 300;
}

.gx-knowledgebase .gx-article .meta-group .meta-data:not(:last-child) {
    margin: 0 5px;
    padding-right: 10px;
}

.heading-knowledgebase h2 {
    font-size: 28px;
    font-style: normal;
    line-height: 40px;
    letter-spacing: -0.025em;
}

.heading-knowledgebase h4 {
    font-size: 22px;
    font-style: normal;
    line-height: 30px;
    letter-spacing: -0.025em;
    opacity: 0.9;
}

.knowledgebase-info {
    margin-top: 15px;
}

.knowledgebase-info p,
.knowledgebase-info span {
    color: #777;
    font-weight: 300;
    font-size: 14px;
    line-height: 28px;
}

.knowledgebase-info ul li {
    padding-left: 15px;
}

.knowledgebase-info ul li a {
    padding: 8px 0;
    position: relative;
    display: block;
    color: #777;
}

.knowledgebase-info p {
    margin-bottom: 0px;
    line-height: 2.7;
}

.knowledgebase-info p span {
    font-size: 14px;
    font-weight: 400;
    color: #0d6efd;
}

.knowledgebase-info p span:hover {
    text-decoration: underline;
}

.knowledgebase-info span code {
    color: #0d6efd;
}

.qx-knowledgebase-contain {
    margin-top: 24px;
}

.qx-knowledgebase-contain p,
.qx-knowledgebase-contain span {
    font-weight: 300;
    font-size: 14px;
    line-height: 28px;
}

.qx-knowledgebase-contain ul li {
    font-weight: 400;
    line-height: 23px;
}

.knowledgebase-custom-font {
    margin-top: 24px;
}

footer .article-footer {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 20px;
}

footer .article-votes {
    border: none;
    text-align: center;
    padding: 30px 0;
}

footer .article-votes .article-votes-controls .article-vote {
    margin: 10px 5px;
    min-width: 90px;
    width: auto;
}

footer .article-votes .article-votes-controls button {
    background-color: transparent;
    border: 1px solid #0d6efd;
    border-radius: 4px;
    color: #0d6efd;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    line-height: 2.34;
    margin: 0;
    padding: 0 20px;
    text-align: center;
    -webkit-transition: background-color 0.12s ease-in-out, border-color 0.12s ease-in-out, color 0.15s ease-in-out;
    transition: background-color 0.12s ease-in-out, border-color 0.12s ease-in-out, color 0.15s ease-in-out;
    white-space: nowrap;
}

footer .article-votes .article-votes-controls button:hover {
    background-color: #0d6efd;
    color: #fff;
}

@media only screen and (max-width: 575px) {
    .heading-knowledgebase h4 {
        font-size: 18px;
        line-height: 25px;
    }
}

/* forum-list */

.gx-list-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.gx-list-inner .gx-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gx-list-inner .gx-heading h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.gx-list-inner .gx-buttons {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.qx-list-ai {
    font-size: 13px;
    color: #999;
}

.gx-forum-list {
    padding-top: 30px;
    padding-bottom: 0;
}

.gx-forum-list:not(:last-child) {
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.gx-list-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 20px 0;
}

.gx-list-box:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.gx-list-box .gx-list-image {
    padding: 23px 7px;
}

.gx-list-box .gx-list-image img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
}

.gx-list-box .gx-list-contain {
    padding: 10px 7px;
}

.gx-list-box .gx-list-contain h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0px;
}

.gx-list-box .gx-list-contain span {
    font-size: 14px;
    font-weight: 600;
}

.gx-list-box .gx-list-contain p {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 18px;
}

.gx-list-box .gx-list-contain .gx-last-meta {
    margin: 10px 0;
}

.gx-list-box .gx-list-contain .gx-last-meta ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gx-list-box .gx-list-contain .gx-last-meta ul li {
    background-color: #e1ecf4;
    font-size: 12px;
    font-weight: 400;
    border-radius: 5px;
    line-height: 15px;
    padding: 5px;
    margin: 0 5px;
}

/* forum */

.gx-answer-box {
    margin-top: 30px;
}

.gx-answer-box p,
.gx-answer-box span {
    font-size: 14px;
    line-height: 28px;
    color: #777;
    font-weight: 300;
}

.gx-singal-forum p,
.gx-singal-forum span {
    font-size: 14px;
    line-height: 28px;
    color: #777;
    font-weight: 300;
}

/* singal-forum */

.gx-singal-viwe .gx-singal-viwe-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.gx-singal-viwe .gx-singal-viwe-inner .gx-nowrap {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 8px;
    margin-right: 20px;
}

.gx-singal-viwe .gx-prose p {
    color: #777;
}

.gx-singal-viwe .gx-prose p code {
    padding: 2px;
    background-color: #e3e6e8;
    color: #777;
}

.gx-singal-viwe .gx-last-meta {
    margin: 10px 0;
}

.gx-singal-viwe .gx-last-meta ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gx-singal-viwe .gx-last-meta ul li {
    background-color: #e1ecf4;
    font-size: 12px;
    font-weight: 400;
    border-radius: 5px;
    line-height: 15px;
    padding: 5px;
    margin: 0 5px;
}

.gx-singal-viwe .gx-anchors {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.gx-singal-viwe .gx-anchors .gx-anchors-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 10px;
}

.gx-singal-viwe .gx-anchors .gx-anchors-inner span.gx-flex-item {
    margin-right: 10px;
}

.gx-singal-viwe .gx-anchors .gx-anchors-inner span.gx-flex-item a {
    font-size: 12px;
    font-weight: 400;
    color: #212529;
}

.gx-comment .comment-body {
    padding: 8px;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    font-weight: 400;
}

.gx-comment .comment-body span code {
    padding: 2px;
    background-color: #e3e6e8;
    color: #212529;
}

.gx-comment .comment-body a {
    background-color: #e1ecf4;
    font-size: 12px;
    font-weight: 400;
    border-radius: 5px;
    line-height: 15px;
    padding: 2px;
    margin: 0 5px;
}

.gx-answer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 0;
}

.gx-answer .gx-answer-heading {
    width: 50%;
}

.gx-answer .gx-answer-heading h2 {
    font-size: 20px;
    font-weight: 600;
}

.gx-answer .gx-answer-select {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.gx-answer .gx-answer-select .form-select {
    font-size: 12px;
    font-weight: 400;
}

.gx-answer .gx-answer-select .form-select option {
    font-size: 12px;
    font-weight: 400;
}

.gx-answercell p {
    font-size: 14px;
    line-height: 28px;
    color: #777;
}

.gx-answercell p code {
    font-size: 13px;
    font-weight: 400;
    padding: 2px;
    background-color: #e3e6e8;
    color: #212529;
}

.bg-light-white {
    background-color: #e3e6e8;
    border-radius: 5px;
    padding: 5px;
}

.bg-light-white pre {
    margin-bottom: 0px;
}

.gx-post-layout {
    padding: 20px 0;
}

.gx-post-layout p {
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    color: #212529;
    margin-bottom: 0px;
}

.gx-singal-p {
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    color: #212529;
    margin-bottom: 0px;
}

.gx-singal-list ol p {
    color: #212529;
    font-weight: 400;
}

ul.gx-singal-list-inner li {
    color: #212529;
    font-weight: 400;
}

ul.gx-singal-list-inner li code {
    font-size: 13px;
    font-weight: 400;
    padding: 2px;
    background-color: #e3e6e8;
    color: #212529;
}

.gx-textarea textarea {
    width: 100%;
    height: 200px;
    outline: none;
    padding: 10px;
    padding-left: 15px;
}

.gx-textarea textarea:focus {
    border-color: #0d6efd !important;
}

.gx-textarea textarea::-webkit-input-placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.gx-textarea textarea::-moz-placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.gx-textarea textarea:-ms-input-placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.gx-textarea textarea::-ms-input-placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.gx-textarea textarea::placeholder {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

/* post-forum */

.gx-post-sideviwe {
    position: sticky;
    top: 94px;
}

.gx-post-sideviwe h4.heading {
    padding: 24px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.gx-post-sideviwe ul {
    padding: 24px;
}

.gx-post-sideviwe ul li {
    position: relative;
    padding: 0px 0px 15px 0px;
}

.gx-post-sideviwe ul li::before {
    font-family: remixicon !important;
    content: "\ecc5";
    padding-right: 10px;
    font-size: 16px;
    color: #c5c3c3;
    font-weight: 500;
    position: absolute;
    left: 0px;
}

.gx-post-sideviwe ul li a {
    padding-left: 20px;
    color: #333;
}

.gx-post-sideviwe ul li:hover a {
    color: #0d6efd !important;
}

.gx-post-sideviwe ul li:hover::before {
    color: #0d6efd !important;
}

.search-content {
    margin-top: 5px;
}

.forum-post-caption h4.heading {
    margin: 0;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    text-transform: none;
    letter-spacing: 0px;
}

.forum-post-caption h4.heading span {
    font-weight: 300;
}

.forum-post-caption h4.heading a {
    color: #484d54;
    font-size: 17px;
}

.forum-post-caption h4.heading a:hover {
    color: #0d6efd;
}

.forum-post-caption span {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #777;
}

.forum-post-caption p.entry-meta {
    margin-bottom: 0px;
    font-size: 14px;
    padding-bottom: 8px;
}

.forum-post-caption p.entry-meta i {
    font-size: 16px;
    color: #777;
}

.forum-post-caption p.entry-meta span {
    padding-left: 2px;
    padding-right: 20px;
    font-size: 13px;
    font-weight: 400;
}

.forum-post-caption p {
    margin-bottom: 0px;
    font-size: 13px;
    line-height: 24px;
}

/* sign-up */

.auth-card {
    height: 100%;
    max-width: 400px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.auth-card:after {
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0d6efd;
    z-index: -1;
    -webkit-clip-path: polygon(0 0, 85% 0, 15% 100%, 0% 100%);
    clip-path: polygon(0 0, 85% 0, 15% 100%, 0% 100%);
}

.auth-card .auth-sections {
    padding: 50px 0;
}

.auth-card .auth-sections .gx-card {
    margin: 0;
}

.back-to {
    margin-top: 15px !important;
    color: #777;
    font-size: 13px;
    text-align: center;
}

.back-to i {
    font-size: 14px;
    line-height: 16px;
}

.back-to:hover {
    color: #0d6efd;
}

.gx-form {
    margin: auto;
    max-width: 650px;
}

.gx-form .gx-inline-block {
    padding-bottom: 20px;
    position: relative;
}

.gx-form .gx-inline-block i {
    position: absolute;
    right: 15px;
    bottom: 30px;
    cursor: pointer;
}

.gx-form .gx-signup-buttons {
    padding: 5px 0 0 0;
}

.gx-form .gx-signup-buttons button {
    margin: auto;
    display: block;
}

.gx-form .gx-signup-buttons a {
    max-width: 177px;
    margin: auto;
    display: block;
    padding: 6px 15px;
}

.gx-banner {
    text-align: center;
}

.gx-banner h4 {
    font-size: 20px;
}

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

/* reset-password */

.gx-text-small {
    padding: 10px 0;
    text-align: center;
}

.gx-text-small p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px;
}

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