/*!
*
* project: (https://codecanyon.net/user/nemosofts)
* Author: nemosofts (nemosofts.com) <info.nemosofts@gmail.com>
* Developer: thivakaran
* Version: 1.0.0
* ---------------------------------------------------------------- */

/*!
* CSS Table of contents
*
* 01. Root Variables
* 02. Common Styling
* 03. Icons
* 04. Form
* 05. Header
* 06. Sidebar
* 07. Footer
* 08. Main container
* 09. Components
* 10. Dark theme skin
* 11. Responsive
*
*/

/*!
* 	Theme Variables
* ----------------------------------------------- */
:root {
    --body-font-size: 14px;

    --theme-primary-color: #dc3545;
    --theme-heart-color: #dc3545;

    --light-theme-bg: #f1f2f3;
    --light-theme-color: #6c757d;

    --dark-theme-bg: #111518;
    --dark-theme-color: #6c757d;

    --theme-light-color: #e9ecef;

    --link-color: #343a40;

    --box-shadow: 0 1px 1px rgba(130, 140, 150, 0.1), 0 -1px 0px rgba(120, 130, 140, 0.05);

    --header-height: 64px;
    --sidebar-width: 200px;
    --main-padding-y: 48px;
    --main-container-width: 1024px;

    --color-grey-30: #fafbfc;
    --color-grey-40: #f7f8f9;
    --color-grey-50: #f1f2f3;
    --color-grey-60: #b1b2b3;
    --color-grey-70: #919293;
    --color-grey-80: #818383;
    --color-grey-100: #717273;
    --color-grey-200: #636567;
    --color-grey-300: #515355;
    --color-grey-400: #454749;
    --color-grey-500: #3a3c3e;
    --color-grey-600: #202326;
    --color-grey-700: #21272b;
    --color-grey-800: #21272b;
}


/*!
* 	Common Styling
* ----------------------------------------------- */
body {
    background: var(--light-theme-bg);
    font-size: var(--body-font-size);
    color: var(--light-theme-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-theme-bg);
}

a {
    outline: none;
}

p:last-child {
    margin-bottom: 0;
}

#pb_wrapper {
    overflow: hidden;
    position: relative;
    /* min-height: 100vh; */
}

#pb_loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1024;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    color: var(--dark-theme-bg);
    font-size: 20px;
    font-weight: 500;
}

#pb_progress {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    z-index: 1001;
    height: 3px;
    width: 0;
    display: none;
    background: var(--theme-primary-color);
}

/*!
* 	Icons
* ----------------------------------------------- */
.pb-icon-search {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 0;
}

.pb-icon-search:after,
.pb-icon-search:before {
    content: '';
    position: absolute;
    width: 25%;
    height: 1px;
    border-radius: 1px;
    background-color: currentColor;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform .1s ease-in-out
}

.pb-icon-search:before {
    width: 50%;
    height: 50%;
    border-radius: 100%;
    border: 1px solid currentColor;
    background-color: transparent
}

.pb-icon-search:after {
    transform: rotate(45deg);
    transform-origin: left top;
    left: 64%;
    top: 64%;
}

.pb-icon-nav {
    position: relative;
}

.pb-icon-nav,
.pb-icon-nav:after,
.pb-icon-nav:before {
    content: "";
    display: inline-block;
    height: 1px;
    width: 16px;
    border-radius: 2px;
    background-color: var(--dark-theme-bg);
}

.pb-icon-nav:before {
    position: absolute;
    left: 0;
    bottom: -4px;
}

.pb-icon-nav:after {
    position: absolute;
    left: 0;
    bottom: -8px;
}


/*!
* 	Form
* ----------------------------------------------- */
.btn {
    font-size: var(--body-font-size);
    line-height: 1.25;
    padding-bottom: 8px;
    margin-right: 5px;
}

.btn-primary {
    color: #fff !important;
    background-color: #4361ee !important;
    border-color: #4361ee;
    box-shadow: 0 10px 20px -10px #4361ee;
}

.btn-success {
    color: #fff !important;
    background-color: #1abc9c;
    border-color: #1abc9c;
    box-shadow: 0 10px 20px -10px #1abc9c;
}

.btn-danger {
    color: #fff !important;
    background-color: #e7515a;
    border-color: #e7515a;
    box-shadow: 0 10px 20px -10px #e7515a;
}

.btn-primary:hover {
    box-shadow: none;
}

.btn-danger:hover {
    box-shadow: none;
}

.btn-success:hover {
    box-shadow: none;
}

.btn-sm {
    padding-bottom: 6px;
}

.btn-pill {
    border-radius: 32px;
    padding-left: 16px;
    padding-right: 16px;
}

.pb-btn-play,
.pb-btn-fav,
.pb-btn-add,
.pb-btn-player {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    border: none;
    outline: none;
    padding: 0;
    display: inline-block;
}

.pb-btn-play {
    position: relative;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    vertical-align: middle;
    background-color: #fff;
    color: #333;
    transition: box-shadow .4s cubic-bezier(.25, .8, .25, 1), transform .4s cubic-bezier(.25, .8, .25, 1);
    margin-left: auto;
    flex-shrink: 0;
}

.pb-btn-play:before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    border: 0.5em solid transparent;
    border-left-color: currentColor;
    border-left-width: 0.75em;
    margin-left: 0.375em;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
}

.pb-btn-play:hover {
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 40%);
    transform: translate3d(0, -1px, 0);
}

.pb-btn-play.active {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.pb-btn-play.active:before {
    width: 0.75em;
    height: 1em;
    min-width: 0.5em;
    border-top-width: 0;
    border-bottom-width: 0;
    border-left-width: 0.25em;
    border-right-width: 0.25em;
    border-color: currentColor;
    margin: 0;
}

.pb-btn-download {
    color: var(--color-grey-700);
}

.pb-btn-download:hover {
    color: var(--color-grey-700);
}

.pb-btn-fav.active {
    color: var(--theme-heart-color) !important;
}

.dropdown-item.pb-btn-fav.active {
    color: #fff !important;
    background: var(--theme-heart-color) !important;
}

.pb-btn-fav.active svg {
    fill: currentColor !important;
}

.pb-switch input {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: -1000px;
}

.pb-switch label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
}

.pb-switch label:empty {
    width: 32px;
    height: 16px;
}

.pb-switch label:before,
.pb-switch label:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
}

.pb-switch label:before {
    width: 24px;
    height: 12px;
    border-radius: 32px;
    background-color: rgba(120, 130, 140, 0.2);
    line-height: 1;
}

.pb-switch label:after {
    width: 16px;
    height: 16px;
    margin-top: -2px;
    background-color: #fff;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
    border-radius: 32px;
    transition: all .2s ease-in-out;
}

.pb-switch input:checked+label:after {
    left: 8px;
}

.pb-btn-add {
    padding: 11px 5px;
    background-color: transparent;
    color: currentColor;
    position: relative;
}

.pb-btn-add:after,
.pb-btn-add:before {
    content: "";
    display: block;
    width: 1em;
    height: 2px;
    background-color: currentColor;
    opacity: .5;
    border-radius: 2px;
}

.pb-btn-add:after {
    width: 2px;
    height: 1em;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.pb-btn-add:hover:after,
.pb-btn-add:hover:before {
    opacity: 1;
}


/*!
* 	Header
* ----------------------------------------------- */
#pb_header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    min-height: var(--header-height);
}

.pb-header-container {
    padding-left: 16px;
    padding-right: 16px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    min-height: var(--header-height);
}

.pb-header-left {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    min-width: 154px;
}

#pb_hamburger {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    border: none;
    outline: none;
    padding: 0;
    display: inline-flex;
    margin-right: 16px;
    position: relative;
    height: 9px;
}

.pb-brand {
    display: inline-block;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    color: var(--dark-theme-bg);
}

.pb-brand:hover {
    color: var(--dark-theme-bg);
}

.pb-brand .pb-brand__text {
    font-weight: 400;
}

.pb-search-form {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    background-color: var(--light-theme-bg);
    border-radius: 32px;
    padding: 8px 16px 8px 16px;
    position: relative;
    width: 100%;
}

.pb-search-form #pb-search-input {
    background: none;
    border: none;
    outline: none;
    padding-left: 8px;
    padding-right: 8px;
    flex-grow: 1;
    flex-basis: 0;
    display: inline-flex;
}

.navbar-nav .nav-link {
    color: var(--link-color);
}

/*!
* 	Sidebar
* ----------------------------------------------- */
#pb_aside {
    background-color: #fff;
    border-right: 1px solid rgba(130, 140, 150, .1);
    width: var(--sidebar-width);
    padding-top: 16px;
    padding-bottom: 16px;
    flex-shrink: 0;
    position: fixed;
    z-index: 1000;
    left: calc(-1 * var(--sidebar-width));
    top: var(--header-height);
    bottom: 0;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-transition: all .2s;
    transition: all .2s;
    -webkit-overflow-scrolling: touch
}

#pb_aside .navbar-nav {
    width: 100%;
    flex: 0 0 100%;
}

#pb_aside .nav-item .nav-link {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 10px 24px;
    line-height: 1.45;
}

#pb_aside .nav-item .nav-link .nav-link__icon {
    width: 24px;
}

#pb_aside .nav-item .nav-link .nav-link__text {
    margin-left: 12px;
}

#pb_aside .nav-item.active .nav-link {
    font-weight: 500;
    color: var(--theme-primary-color);
    position: relative;
    background-color: rgba(220, 53, 69, 0.05);
}

#pb_aside .nav-item.active .nav-link:after {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 2px;
    right: 0;
    top: 0;
    background-color: var(--theme-primary-color);
    ;
}

#pb_aside .pb-aside__title {
    display: block;
    opacity: 0.5;
    font-size: 12px;
    padding: 8px 24px;
    line-height: 1.35;
}

#pb_aside .nav-sub-menu {
    display: none;
}

#pb_aside .nav-sub-menu .nav-item .nav-link {
    padding-left: 48px;
}

/* Hide sidebar */
.pb-hide-sidebar #pb_aside {
    left: 0;
}

.pb-hide-sidebar #pb_main {
    margin-left: 0;
}

#pb_aside::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 5px;
}

#pb_aside::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgb(0 0 0 / 19%);
}

#pb_aside::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgb(0 0 0 / 29%);
    -webkit-box-shadow: 0 0 1px rgb(255 255 255 / 50%);
}

/*!
* 	Footer
* ----------------------------------------------- */
.pb-footer {
    padding: 24px;
    line-height: 2;
}

.pb-footer a {
    white-space: nowrap;
    color: var(--link-color);
    text-decoration: none;
}

.pb-footer a:after {
    content: "";
    width: 12px;
    display: inline-block
}

.pb-footer .pb-copy {
    font-size: 12px;
}

.footer-wrapper {
    display: inline-block;
    background: transparent;
    font-weight: 600;
    font-size: 12px;
    width: 100%;
    border-top-left-radius: 6px;
    display: flex;
    justify-content: space-between;
}

.footer-wrapper .footer-section p {
    margin-bottom: 0;
    color: #515365;
    font-size: 13px;
    letter-spacing: 1px;
}

.footer-wrapper .footer-section p a {
    color: var(--theme-primary-color);
}

.footer-wrapper .footer-section svg {
    color: var(--theme-primary-color);
    fill: rgba(231, 81, 90, 0.419608);
    width: 15px;
    height: 15px;
    vertical-align: text-top;
}


/*!
* 	Main container
* ----------------------------------------------- */
#pb_main {
    margin-top: var(--header-height);
    padding-top: var(--main-padding-y);
    padding-bottom: var(--main-padding-y);
    -webkit-transition: all .2s;
    transition: all .2s;
}

.pb-main-container {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

#pb_main .pb-footer {
    font-size: 12px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

#pb_main .pb-footer a:after {
    display: none;
}

.pb-sticky-link {
    position: -webkit-sticky;
    position: sticky;
    top: 6rem;
    z-index: 10;
}

.pb-sticky-link a {
    color: var(--color-grey-700);
    text-decoration: none;
}

.pb-clipboard {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    border-radius: 4px;
    background-color: var(--color-grey-50);
    padding: 8px 16px;
}

.pb-clipboard .pb-clipboard__url {
    flex: 1;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

.pb-clipboard .pb-clipboard__link {
    color: inherit;
    display: inline-flex;
    flex-shrink: 0;
}

.pb-clipboard .pb-clipboard__link svg {
    width: 16px;
    height: 16px;
}

.pb-link-icon>a {
    color: inherit;
    font-size: 16px;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    text-decoration: none;
    padding: 2px;
}

.navbar-nav .dropdown-menu {
    position: absolute;
    margin-top: 16px;
}

.pb-main-head,
.pb-main-head__option {
    -webkit-align-items: center;
    align-items: center;
}

.pb-main-head {
    justify-content: space-between;
    margin-bottom: 48px;
}

.pb-main-head .pb-main-head__title {
    margin-bottom: 0;
}

.pb-main-head .pb-main-head__option {
    flex: 0 0 auto;
    max-width: 380px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}

.pb-main-head .pb-main-head__option .pb-main-head__option__item+.pb-main-head__option__item {
    margin-left: 8px;
}

.pb-main-head .pb-main-head__option .pb-main-head__option__item>.btn {
    padding: .5rem 1.25rem;
    line-height: 1.4;
}

.pb-auth {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    padding: 80px 16px;
    min-height: 100vh;
}

.pb-auth .pb-card {
    max-width: 440px;
    width: 100%;
    flex: 0 0 auto;
}

.pb-auth a {
    text-decoration: none;
    color: inherit;
}

.pb-auth .pb-card .pb-card__body {
    padding: 40px;
}

.pb-auth .pb-card .btn {
    padding: .5rem 1.5rem;
    width: 100%;
    font-size: 1rem;
}

.pb-auth .pb-auth__copy {
    margin-top: 24px;
}

.pb-auth .pb-auth__copy a {
    color: var(--bs-primary);
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.pb-auth .pb-auth__copy a:after {
    content: '';
    display: block;
    height: 1px;
    background-color: currentColor;
}

.nav-item-submenu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
}

.nav-item-submenu a {
    display: block;
    color: inherit;
    padding: 8px 24px 8px 50px;
    line-height: 1.15;
    text-decoration: none;
}


/*!
* 	Components
* ----------------------------------------------- */

/* Avatar */
.pb-avatar {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.pb-avatar .pb-avatar__image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 1;
}

/* Card */
.pb-card {
    position: relative;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 2px rgb(0 0 0 / 5%), 0 -1px 0px rgb(120 130 140 / 10%);
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), 0 -1px 0px rgb(120 130 140 / 10%);
    margin-bottom: 4px;
    border-radius: 10px;
}

.pb-card.pb-card--air {
    -webkit-box-shadow: 0 2px 16px rgb(0, 0, 0, .05);
    box-shadow: 0 2px 16px rgb(0, 0, 0, .05);
    border: 1px solid #e0e6ed;
}

.pb-card .pb-card__body {
    padding: 16px 24px;
}

.pb-card .pb-card__head {
    padding: 12px 24px 11px;
    border-bottom: 1px solid var(--theme-light-color);
}

.pb-card .pb-card__head .pb-card__head__option {
    margin-left: auto;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.pb-card .pb-card__head .pb-card__head__option .pb-card__head__option__item+.pb-card__head__option__item {
    margin-left: 8px;
}

.pb-card .pb-card__title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-theme-bg);
    text-decoration: none;
}

.pb-card.pb-card--data .pb-card__icon:before {
    content: '';
    display: block;
    position: absolute;
    top: -20px;
    left: -10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    background-color: currentColor;
}

.pb-card.pb-card--primary .pb-card__icon {
    color: var(--bs-primary);
}

.pb-card.pb-card--info .pb-card__icon {
    color: var(--bs-info);
}

.pb-card.pb-card--danger .pb-card__icon {
    color: var(--bs-danger);
}

.pb-card.pb-card--warning .pb-card__icon {
    color: var(--bs-warning);
}

.pb-card.pb-card--gren .pb-card__icon {
	color: #6eaf4c;
}

.pb-card .pb-card__icon {
    font-size: 32px;
}

.pb-card.pb-card--category {
    padding: 16px;
    margin-bottom: 24px;
}

.pb-card.pb-card--category .pb-card__image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.pb-card.pb-card--category .pb-card__toggle {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
}

.pb-card.pb-card--category .pb-card__option {
    position: absolute;
    top: 32px;
    right: -40px;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 10;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.pb-card.pb-card--category:hover .pb-card__option {
    right: 0;
}

.pb-card.pb-card--category .pb-card__option .pb-card__option__item+.pb-card__option__item {
    margin-top: 2px;
}

.pb-card.pb-card--category .pb-card__option .pb-card__option__item>a {
    color: #fff;
    font-size: 18px;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, .8);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    width: 32px;
}

.pb-card.pb-card--category .pb-card__image:before {
    content: '';
    display: block;
    padding-bottom: calc(3 / 4 * 100%);
}

.pb-card.pb-card--avatar .pb-card__image img,
.pb-card.pb-card--category .pb-card__image img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.pb-card.pb-card--category .pb-card__image .pb-card__image__collage {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: -2px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
}

.pb-card.pb-card--category .pb-card__image .pb-card__image__collage .pb-card__image__collage__item {
    position: relative;
    margin: 2px;
    flex: 0 0 auto;
    width: calc(50% - 4px);
    overflow: hidden;
}

.pb-card.pb-card--category .pb-card__image .pb-card__image__collage .pb-card__image__collage__item:before {
    padding-bottom: 75%;
    content: '';
    display: block;
}

.pb-card.pb-card--category .pb-card__content {
    margin-top: 8px;
}

.pb-card.pb-card--avatar {
    padding: 32px 16px;
    text-align: center;
    margin-bottom: 24px;
}

.pb-card.pb-card--avatar>a {
    text-decoration: none;
}

.pb-card.pb-card--avatar .pb-card__image {
    width: 180px;
    border-radius: 50%;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
    margin: auto;
}

.pb-card.pb-card--avatar .pb-card__image:before {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.pb-card.pb-card--avatar .pb-card__title {
    margin-bottom: 12px;
}

.pb-count {
    color: var(--color-grey-80);
}


/* Tab */
.pb-tab .pb-tab__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
}

.pb-tab .pb-tab__link {
    white-space: nowrap;
    text-decoration: none;
    color: var(--link-color);
    padding: 8px 16px;
    display: block;
    line-height: 1.15;
}

.pb-tab .pb-tab__item.active .pb-tab__link {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 1px 0px rgb(0 0 0 / 10%);
}

/* Pagination */
.pb-pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}

.pb-pagination ul li:first-child {
    margin-right: 16px;
}

.pb-pagination ul li:last-child {
    margin-left: 16px;
}

.pb-pagination ul li+li {
    margin-left: 8px;
}

.pb-pagination ul li a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: inherit;
}

.pb-pagination ul li a.active {
    background-color: var(--theme-primary-color);
    color: #fff;
    border-radius: 50%;
}

.pb-pagination ul li a.disable {
    pointer-events: none;
    opacity: .5;
    cursor: none;
}

/* Dropdown */
.dropdown-menu {
    font-size: 13px;
    border: 1px solid rgba(140, 150, 160, .15);
}

.dropdown-item,
.dropdown-menu li a {
    padding: 4px 24px;
}

.dropdown-divider {
    color: rgba(140, 150, 160, 0.2);
    border-color: rgba(140, 150, 160, 0.2);
}

.dropdown-item:focus,
.dropdown-item:active,
.dropdown-item:hover {
    background: rgba(0, 0, 0, .05);
    color: inherit;
}

/* Swiper */
.swiper-section {
    position: relative;
}

.swiper-section:hover .swiper-button {
    visibility: visible;
    opacity: 1;
}

.swiper-section.swiper-section--content .swiper-button {
    top: calc(50% - 24px);
}

.swiper-section .swiper-button-prev {
    left: -18px;
}

.swiper-section .swiper-button-next {
    right: -18px;
}

.swiper-button {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    -webkit-box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
    color: rgba(0, 0, 0, .54);
    visibility: hidden;
    opacity: 0;
    background: #fff;
}

.swiper-button.swiper-button-disabled {
    display: none;
}

.swiper-button:after {
    display: none;
}

.table th {
    background-color: var(--color-grey-50);
}

.table th,
.table td {
    padding: 0.75rem;
}

.form-control-icon {
    position: relative;
}

.form-control-icon .form-control-icon__label {
    position: absolute;
    top: 0;
    height: 100%;
    width: 38px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.form-control-icon .form-control-icon__label.form-control-icon__label--left {
    left: 0;
}

.form-control-icon .form-control-icon__label.form-control-icon__label--right {
    right: 0;
}

.form-control-icon .form-control {
    padding-left: 32px;
    padding-right: 32px;
}

.richText a {
    color: inherit;
}

.richText .richText-form button {
    background-color: var(--bs-primary);
    padding: 8px 24px;
}

/* badge */
.badge {
    margin: 0px;
    padding: 0px;
    display: inline-block;
    min-width: 10px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #777;
    border-radius: 2px;
}

.badge.badge-success.badge-icon i {
    background-color: rgba(41, 199, 95, 0.1);
}

.badge.badge-danger.badge-icon i {
    background-color: rgba(231, 76, 60, 0.1);
}

.badge.badge-icon span {
    padding: 5px;
}

.badge.badge-icon i {
    padding: 5px;
}

.badge.badge-success {
    color: #1782de;
    background-color: rgba(41, 199, 95, 0.2);
    box-shadow: none;
}

.badge.badge-danger {
    color: #e91e63;
    background-color: rgba(231, 76, 60, 0.2);
    box-shadow: none;
}


.table th {
    border-bottom-color: #e5e5e5 !important;
}

.table th {
    padding: 0.75rem;
}

.table td img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 3px !important;
    box-shadow: 0px 1px 8px 0px rgb(0 0 0 / 10%) !important;
    object-fit: cover;
}

.table>tbody>tr>td {
    vertical-align: middle !important;
}

.nav-pills .nav-link.active {
    color: var(--theme-primary-color);
    background-color: #e2e2e3;
    border-color: #e0e6ed #e0e6ed #fff;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;

}

.nav-pills .nav-link {
    border-radius: 0;
}

.pills_bar {
    border-bottom: 1px solid #f0f2f5;
}

.nav-link {
    color: #545454;
}

.nav-link:hover {
    color: var(--theme-primary-color);
}

.ads_view {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 30px;
    min-height: auto;
    width: 100%;
    border: 1px solid #dfdfdf;
    border-radius: 10px;
}

.ads_view_header {
    background: var(--theme-primary-color);
    color: #fff;
    text-align: start;
    font-weight: 700;
    padding: 15px 10px;
    width: 100%;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.ads_view .toggle_btn {
    margin-bottom: 0;
    margin-left: 5px;
    margin-top: -22px;
    display: block;
    float: right;
    position: absolute;
    right: 30px;
}

/* switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 5px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #e91e63;
}

input:focus+.slider {
    box-shadow: 0 0 1px #e91e63;
}

input:checked+.slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #4CAF50;
}


img.col-sm-3 {
    max-width: 100%;
}


/*!
*	 Nemosofts Card view
* ----------------------------------------------- */

/* pb-card-post */
.pb-card-post {
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
    background: var(--light-theme-bg);
}

.pb-card-post::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    border-radius: 0 0 10px 10px;
    background: -webkit-linear-gradient(top, rgba(255, 0, 0, 0), rgba(32, 32, 32, 0.99));
    background: -o-linear-gradient(bottom, rgba(255, 0, 0, 0), rgba(32, 32, 32, 0.99));
    background: -moz-linear-gradient(bottom, rgba(255, 0, 0, 0), rgba(32, 32, 32, 0.99));
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(32, 32, 32, 0.99));
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0), rgba(32, 32, 32, 0.99));
    width: 100%;
    height: 70%;
    z-index: 1;
}

.pb-card-post .bottom_block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 15px;
    color: #ffffff;
    z-index: 999;
}

.pb-card-post .bottom_block .post_title {
    color: #ffffff;
    font-size: 1.30rem;
}

.pb-card-post .bottom_block ul {
    list-style-type: none;
    padding-left: 0;
    padding-right: 0;
    margin-top: 15px;
}

.pb-card-post .bottom_block ul li:first-child {
    margin-left: 0;
}

.pb-card-post .bottom_block ul li {
    display: inline-block;
    padding: 0;
    margin: 0 4px;
}

.pb-card-post .bottom_block ul li a {
    background: #fff;
    color: var(--theme-primary-color);
    font-size: 14px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    border-radius: 30px;
}

.pb-card-post .bottom_block ul li a:hover {
    background: var(--theme-primary-color);
    color: #ffffff
}

.pb-card-post .image-post {
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.pb-card-post .toggle_btn {
    margin-bottom: 0;
    margin-top: -12px;
    display: block;
    float: left;
    position: relative;
    top: 12px;
}

.pb-card-post .toggle_btn a img {
    width: auto !important;
    height: auto !important;
}

.pb-card-post .toggle_btn a {
    background: transparent !important;
}

/* pb-card-post-text */
.pb-card-post-text {
    margin-bottom: 1.5rem !important;
    border-radius: 5px;
    padding: 1rem 1rem;
    color: #212529;
    border: 1px solid #ced4da;
    background: var(--light-theme-bg);
}

.pb-card-post-text ul {
    list-style-type: none;
    padding-left: 0;
    padding-right: 0;
    margin-top: 15px;
    margin-bottom: 0px;
}

.pb-card-post-text ul li:first-child {
    margin-left: 0;
}

.pb-card-post-text ul li {
    display: inline-block;
    padding: 0;
    margin: 0 4px;
}

.pb-card-post-text ul li a {
    background: #fff;
    color: var(--theme-primary-color);
    font-size: 14px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    border-radius: 30px;
    border: 1px solid var(--theme-primary-color);
}

.pb-card-post-text ul li a:hover {
    background: var(--theme-primary-color);
    color: #ffffff
}

.pb-card-post-text .toggle_btn {
    margin-bottom: 0;
    margin-top: -12px;
    display: block;
    float: left;
    position: relative;
    top: 12px;
}

.pb-card-post-text .toggle_btn a img {
    width: auto !important;
    height: auto !important;
}

.pb-card-post-text .toggle_btn a {
    background: transparent !important;
    border: none !important;
}

/* .pb-card--avatar */
.pb-card--avatar {
    border: 1px solid #ced4da !important;
    background: var(--light-theme-bg) !important;
}

.pb-card--avatar ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.pb-card--avatar ul li:first-child {
    margin-left: 0;
}

.pb-card--avatar ul li {
    display: inline-block;
    padding: 0;
    margin: 0 4px;
}

.pb-card--avatar ul li a {
    background: #fff;
    color: var(--theme-primary-color);
    font-size: 14px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    border-radius: 30px;
    border: 1px solid var(--theme-primary-color);
}

.pb-card--avatar ul li a:hover {
    background: var(--theme-primary-color);
    color: #ffffff
}

/* pb-card--category */
.pb-card--category {
    border: 1px solid #ced4da !important;
    background: var(--light-theme-bg) !important;
}

.decoration-link{
	color: #000000;
	text-decoration: none;
}

/*!
* 	Dark theme skin
* ----------------------------------------------- */
.pb-theme-dark {
    color: #fff !important;
    background-color: var(--dark-theme-bg);
    --tooltip-color: var(--color-grey-500);
    --color-grey-80: var(--color-grey-60);
    --color-box: var(--color-grey-500)
}

.pb-theme-dark .select2-container .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .05);
    background: var(--color-grey-600)
}

.pb-theme-dark .select2-dropdown {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .05);
    background: var(--dark-theme-bg)
}

.pb-theme-dark .select2-container--default .select2-search--dropdown .select2-search__field {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .05);
    background: var(--dark-theme-bg)
}

.pb-theme-dark .select2-container--default .select2-selection--multiple {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .05);
    background: var(--color-grey-600)
}

.pb-theme-dark .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .05);
    background: var(--dark-theme-bg)
}

.pb-theme-dark .select2-container--default .select2-results__option--selected {
    background: var(--color-grey-600)
}

.pb-theme-dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: #000000;
    border-right: 1px solid #323232;
    color: #fff;
}

.pb-theme-dark .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    background-color: #000;
}

.pb-theme-dark .select2-container--default .select2-selection--single {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .05);
    background: var(--color-grey-600)
}

.pb-theme-dark .form-control,
.pb-theme-dark .richText .richText-form input[type=file],
.pb-theme-dark .richText .richText-form input[type=number],
.pb-theme-dark .richText .richText-form input[type=text],
.pb-theme-dark .richText .richText-form select {
    color: #fff;
    border-color: rgba(255, 255, 255, .05);
    background: var(--color-grey-600);
}

.pb-theme-dark {
    --color-grey-60: rgba(255, 255, 255, 0.7)
}

.pb-theme-dark #pb_header,
.pb-theme-dark #pb_aside {
    background-color: var(--color-grey-800);
}

.pb-theme-dark #pb_aside::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgb(0 0 0 / 82%);
    -webkit-box-shadow: 0 0 1px rgb(255 255 255 / 50%);
}

.pb-theme-dark .dropdown-menu,
.pb-theme-dark .table th,
.pb-theme-dark .pb-clipboard,
.pb-theme-dark .richText .richText-toolbar ul li a .richText-dropdown-outer .richText-dropdown,
.pb-theme-dark .richText .richText-toolbar ul li a .richText-dropdown-outer .richText-dropdown .richText-dropdown-close {
    background-color: var(--color-grey-600);
    color: #fff;
}

.pb-theme-dark #pb_playlist:after {
    border-top-color: var(--color-grey-600);
}

.pb-theme-dark #pb_header .pb-search-form,
.pb-theme-dark .pb-card,
.pb-theme-dark .richText .richText-toolbar,
.pb-theme-dark .pb-tab .pb-tab__item.active .pb-tab__link {
    color: #fff;
    background-color: var(--color-grey-700);
}

.pb-theme-dark .dropdown-menu .dropdown-item,
.pb-theme-dark h1,
.pb-theme-dark h2,
.pb-theme-dark h3,
.pb-theme-dark h4,
.pb-theme-dark h5,
.pb-theme-dark h6,
.pb-theme-dark .pb-card .pb-card__title,
.pb-theme-dark .pb-footer,
.pb-theme-dark .pb-brand {
    color: inherit;
}

.pb-theme-dark a:not(.btn),
.pb-theme-dark .nav-link:not(.btn),
.pb-theme-dark .pb-sticky-link a:not(.btn) {
    color: var(--color-grey-80);
}

.pb-theme-dark p,
.pb-theme-dark .row p {
    color: #afafaf !important;
}

.pb-theme-dark .pb-tab .pb-tab__link {
    color: #fff;
}

.pb-theme-dark .button-primary,
.pb-theme-dark input[type=checkbox],
.pb-theme-dark input[type=radio] {
    background-color: transparent
}

.pb-theme-dark .pb-card .pb-card__sub-title {
    opacity: 0.75;
}

.pb-theme-dark .pb-card .pb-card__head,
.pb-theme-dark .richText,
.pb-theme-dark .richText .richText-toolbar,
.pb-theme-dark .richText .richText-redo,
.pb-theme-dark .richText .richText-undo,
.pb-theme-dark .richText .richText-toolbar ul li a,
.pb-theme-dark .table td {
    border-color: var(--color-grey-600);
}

.pb-theme-dark .richText .richText-toolbar ul li a:hover {
    background-color: var(--color-grey-600);
}

.pb-theme-dark .richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li a:hover {
    background-color: var(--color-grey-400);
}

.pb-theme-dark .richText .richText-editor,
.pb-theme-dark .richText .richText-initial {
    background-color: var(--color-grey-500);
    border-color: var(--color-grey-500);
}

.pb-theme-dark .table th {
    border-bottom-color: var(--color-grey-500) !important;
}

.pb-theme-dark .richText .richText-toolbar ul li a .richText-dropdown-outer .richText-dropdown,
.pb-theme-dark .richText .richText-toolbar ul li a .richText-dropdown-outer ul.richText-dropdown li a {
    border-color: var(--color-grey-500);
}

.pb-theme-dark .table td {
    color: #fff;
}

.pb-theme-dark .richText .richText-editor {
    background-color: #ffffff;
}

.pb-theme-dark .pb-card {
    border: 1px solid #393c3e;
}

.pb-theme-dark .pb-card .pb-card__head {
    border-bottom: 1px solid #393c3e;
}

.pb-theme-dark .table th {
    border-bottom-color: var(--color-grey-500) !important;
}

.pb-theme-dark .table td {
    color: #fff;
}

.pb-theme-dark .pb-icon-nav,
.pb-theme-dark .pb-icon-nav:after,
.pb-theme-dark .pb-icon-nav:before {
    background-color: var(--color-grey-80);
}

.pb-theme-dark .pb-card.pb-card--air {
    -webkit-box-shadow: 0 2px 16px rgb(0 0 0 / 12%);
    box-shadow: 0 2px 16px rgb(0 0 0 / 12%);
    border: 1px solid #383e42;
}

/* new css */
.pb-theme-dark .nav-pills .nav-link.active {
    color: var(--theme-primary-color);
    background-color: #111518;
    border-color: #e0e6ed #e0e6ed #fff;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.pb-theme-dark .pills_bar {
    border-bottom: 1px solid #111518;
}

.pb-theme-dark .nav-link:hover {
    color: var(--theme-primary-color);
}

.pb-theme-dark .slider {
    background-color: var(--dark-theme-bg);
}

.pb-theme-dark .ads_view {
    border: 1px solid #393c3e;
}

.pb-theme-dark .img-thumbnail {
    background-color: #20262a;
    border: 1px solid #393c3e;
}

img.col-sm-3 {
    max-width: 100%;
}

.pb-theme-dark .swal2-popup {
    background: #171e20 !important;
    color: #fff !important;
    border: 1px solid #393c3e !important;
}

.pb-theme-dark .swal2-modal .swal2-title {
    color: #ffffff !important;
}

.pb-theme-dark .nav-tabs {
	border-bottom: 1px solid #111518 !important;
}

.pb-theme-dark .nav-tabs .nav-link.active {
	color: #ffffff !important;
	background-color: #111518 !important;
	border-color: #393c3e #393c3e #111518 !important;
}

/*!
*	 Nemosofts Card view
* ----------------------------------------------- */
/* pb-card-post */
.pb-theme-dark .pb-card-post {
    background: var(--color-grey-600);
}

/* pb-card--category */
.pb-theme-dark .pb-card--category {
    border: 1px solid #393c3e !important;
    background-color: var(--color-grey-600) !important;
}

/* .pb-card--avatar */
.pb-theme-dark .pb-card--avatar ul li a {
    background: rgba(243, 243, 243, 0.05);
    color: #ffffff;
    border: 1px solid var(--theme-primary-color);
}

.pb-theme-dark .pb-card--avatar {
    border: 1px solid #393c3e !important;
    background-color: var(--color-grey-600) !important;
}

/* pb-card-post-text */
.pb-theme-dark .pb-card-post-text {
    color: #fff;
    border: 1px solid #393c3e;
    background-color: var(--color-grey-600);
}

.pb-theme-dark .pb-card-post-text ul li a {
    background: rgba(243, 243, 243, 0.05);
    color: #ffffff;
    border: 1px solid var(--theme-primary-color);
}

.pb-theme-dark .decoration-link{
	color: #fff;
	text-decoration: none;
}

/*!
*	Responsive
* ----------------------------------------------- */
@media(min-width: 480px) {}

@media(min-width: 576px) {}

@media(min-width: 768px) {}

@media(min-width: 992px) {
    .pb-hide-sidebar #pb_aside {
        left: calc(-1 * var(--sidebar-width));
    }

    #pb_aside {
        left: 0;
    }

    #pb_main {
        margin-left: var(--sidebar-width)
    }
}

@media(min-width: 1200px) {}


@media(max-width: 1200px) {
    .swiper {
        overflow: visible;
    }
}

@media(max-width: 991px) {}

@media(max-width: 767px) {
    #pb_header .navbar .btn {
        padding-left: 8px;
        padding-right: 8px;
    }

    #pb_header .navbar .btn span {
        display: none;
    }

    .pb-main-head .pb-main-head__title {
        margin-bottom: 16px;
    }
}

@media(max-width: 576px) {}

@media(max-width: 479px) {}