@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');


@font-face {
    font-family: 'jooza';
    src: url(https://res.cloudinary.com/d3mfollow/raw/upload/v1663184069/fonts/flat-jooza-Regular_vvye7d.ttf);
    font-weight: normal;
    font-display: swap;
}

:root {
    --d3f-primary: #009ef7;
    --d3f-hover-primary: #0095e8;
    --d3f-secondary: #FA5A7D;
    --d3f-hover-secondary: #fc456a;
}

:root[data-theme=light] {
    --d3f-background-page: #f5f8fa;
    --d3f-background-card: #ffffff;
    --d3f-color-body: #272c40;
    --d3f-color-muted: #7e8299;
    --d3f-color-border: #eff2f5
}

:root[data-theme=dark] {
    --d3f-background-page: #151521;
    --d3f-background-card: #1e1e2d;
    --d3f-color-body: #ffffff;
    --d3f-color-muted: #acacac;
    --d3f-color-border: #2b2b40
}

* {
    -webkit-tap-highlight-color: transparent;
}

html, body {
    min-height: 100vh;
}

body {
    color: var(--d3f-color-body);
    background-color: var(--d3f-background-page);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

html[dir=ltr] body {
    font-family: 'Outfit', 'Readex Pro', sans-serif !important;
}

html[dir=rtl] body {
    font-family: 'Readex Pro', 'Outfit', sans-serif !important;
}

div::-webkit-scrollbar {
    width: 4px;
}

div::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 4px;
}

div:hover::-webkit-scrollbar-thumb {
    background-color: var(--d3f-color-border);
}

::placeholder {
    color: var(--d3f-color-muted) !important;
}

html[dir=rtl] .jooza {
    font-family: 'jooza';
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    line-height: inherit;
}

.tooltip {
    font-size: 12px !important;
}

html[dir=ltr] .tooltip {
    font-family: 'Outfit', 'Readex Pro', sans-serif !important;
}

html[dir=rtl] .tooltip {
    font-family: 'Readex Pro', 'Outfit', sans-serif !important;
}

body.menu-open {
    overflow: hidden;
}

.modal-content {
    background-color: var(--d3f-background-card);
    color: var(--d3f-color-body);
}

.modal-header,
.modal-footer {
    border-color: var(--d3f-color-border);
}

.modal-footer button[data-bs-dismiss=modal] {
    border: 0;
    padding: 6px 20px;
    border-radius: 4px;
}

.hidden {
    display: none !important;
}

.btn-close {
    background-size: 10px;
}

html[data-theme='dark'] .btn-close {
    filter: invert(1);
}

.alert {
    border: 0;
    font-size: 14px;
    margin-bottom: 10px;
}

.nowrap {
    white-space: nowrap;
}

.card {
    border-radius: 10px;
    border: 0;
    background-color: var(--d3f-background-card);
}

.card .card-header {
    background-color: var(--d3f-background-card);
    border-bottom: 1px solid var(--d3f-color-border) !important;
    border-radius: 10px 10px 0 0;
    padding: 16px 20px;
}

.nav-pills .nav-link {
    color: var(--d3f-color-body);
    background-color: var(--d3f-background-page);
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 6px;
}

.nav-pills .nav-link.active {
    color: var(--d3f-hover-primary);
    background-color: var(--d3f-background-page);
}

.nav-addfunds .nav-item .nav-link,
.nav-orders .nav-item .nav-link,
.nav-subscriptions .nav-item .nav-link,
.nav-drip-feed .nav-item .nav-link,
.nav-refill .nav-item .nav-link {
    background-color: var(--d3f-background-card);
}

.nav-addfunds .nav-item .nav-link.active,
.nav-orders .nav-item .nav-link.active,
.nav-subscriptions .nav-item .nav-link.active,
.nav-drip-feed .nav-item .nav-link.active,
.nav-refill .nav-item .nav-link.active {
    color: var(--d3f-primary);
    background-color: var(--d3f-background-card);
}

html[dir=ltr] .nav-pills .nav-item:not(:last-of-type) {
    margin-right: 10px;
}

html[dir=rtl] .nav-pills .nav-item:not(:last-of-type) {
    margin-left: 10px;
}

.dropdown-menu {
    border-radius: 8px;
    border: 0;
    margin: 5px 0 !important;
    background-color: var(--d3f-background-card);
    max-height: 400px;
    overflow-y: auto;
}


.dropdown-item {
    color: var(--d3f-color-body);
    font-size: 14px;
}


.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--d3f-primary);
    color: #ffffff;
}

.dropdown-toggle::after {
    vertical-align: baseline;
    content: "\f078";
    font-size: 10px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 500;
    border: 0;
}

html[dir=ltr] .dropdown-toggle::after {
    margin-left: 8px;
}

html[dir=rtl] .dropdown-toggle::after {
    margin-right: 8px;
}


.select2-container--default .select2-selection--single {
    background-color: var(--d3f-background-page);
    border-color: var(--d3f-background-page);
    border-radius: 8px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center;
}

html[dir=ltr] .select2-container--default:not(.search-dropdown) .select2-selection--single {
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
}

html[dir=rtl] .select2-container--default:not(.search-dropdown) .select2-selection--single {
    padding: 0.375rem 0.75rem 0.375rem 2.25rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal;
    color: var(--d3f-color-body);
}

.select2-results__option a {
    color: var(--d3f-color-body) !important;
    font-size: 14px;
}

html[data-theme=light] .select2-container--default .select2-results__option[aria-selected=true],
html[data-theme=light] .select2-container--default .select2-results__option--highlighted[aria-selected],
html[data-theme=light] .dropdown-item:focus:not(.active),
html[data-theme=light] .dropdown-item:hover:not(.active) {
    background-color: #f4f6fa !important;
}

html[data-theme=dark] .select2-container--default .select2-results__option[aria-selected=true],
html[data-theme=dark] .select2-container--default .select2-results__option--highlighted[aria-selected],
html[data-theme=dark] .dropdown-item:focus,
html[data-theme=dark] .dropdown-item:hover {
    background-color: #2b2b40 !important;
}

.select2-container--default .select2-results__option[aria-selected=true] a,
.dropdown-item:focus:not(.active),
.dropdown-item:hover:not(.active) {
    color: var(--d3f-color-body);
}

.select2-selection__id.badge.badge-secondary {
    background-color: var(--d3f-primary);
}

.select2-container .dropdown-menu > li > a {
    white-space: nowrap !important;
}


.select2-container--default .select2-selection--single .select2-selection__arrow b,
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 !important;
    margin: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b::before {
    content: "\f078";
    font-size: 14px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 500;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.35s ease-in-out;
}

html[dir=ltr] .select2-container--default .select2-selection--single .select2-selection__arrow b::before {
    right: 5px;
}

html[dir=rtl] .select2-container--default .select2-selection--single .select2-selection__arrow b::before {
    left: 5px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b::before {
    transform: translateY(-50%) rotate(180deg);
}

.select2-container .select2-dropdown {
    border-radius: 8px !important;
    overflow: hidden;
    margin: 10px 0 !important;
}

html[data-theme=light] .select2-container .select2-dropdown,
html[data-theme=light] .dropdown-menu {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

html[data-theme=dark] .select2-container .select2-dropdown,
html[data-theme=dark] .dropdown-menu {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}


.text-primary {
    color: var(--d3f-primary) !important;
}

.text-secondary {
    color: var(--d3f-secondary) !important;
}

.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-body {
    color: var(--d3f-color-body) !important;
}

.text-muted {
    color: var(--d3f-color-muted) !important;
}

.bg-primary {
    background-color: var(--d3f-primary) !important;
}

.bg-page {
    background-color: var(--d3f-background-page) !important;
}

.form-label,
#fields .control-label {
    font-weight: 600;
    font-size: 14px;
}

#fields .form-group {
    margin-bottom: 10px;
}

.form-control,
.form-select {
    background-color: var(--d3f-background-page);
    border-color: var(--d3f-background-page);
    color: var(--d3f-color-body);
    border-radius: 8px;
    transition: border-color 0s ease-in-out;
    font-size: 14px;
}


html[data-theme=light] .form-select {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIgNUw4IDExTDE0IDUiIHN0cm9rZT0iIzE4MUMzMiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==")
}

html[data-theme=dark] .form-select {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIgNUw4IDExTDE0IDUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=")
}

.form-control:not(textarea),
.form-select {
    height: 50px;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--d3f-background-page);
    color: var(--d3f-color-body);
}

.form-check-input:focus,
.select2-container--focus .form-control,
.select2-container--open .form-control {
    border-color: var(--d3f-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(46, 186, 223, .15);
}

.form-control:disabled,
.form-control[readonly] {
    background-color: var(--d3f-background-page);
}

.form-check .form-check-input {
    border-color: var(--d3f-color-border);
    background-color: transparent;
}

.form-check .form-check-input[type=checkbox] {
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

.form-check .form-check-label {
    padding: 0 10px;
}

.form-check .form-check-input:checked {
    background-color: var(--d3f-primary);
    border-color: var(--d3f-primary);
}

.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 11' width='13' height='11' fill='none'%3e%3cpath d='M11.0426 1.02893C11.3258 0.695792 11.8254 0.655283 12.1585 0.938451C12.4917 1.22162 12.5322 1.72124 12.249 2.05437L5.51985 9.97104C5.23224 10.3094 4.72261 10.3451 4.3907 10.05L0.828197 6.88335C0.50141 6.59288 0.471975 6.09249 0.762452 5.7657C1.05293 5.43891 1.55332 5.40948 1.88011 5.69995L4.83765 8.32889L11.0426 1.02893Z' fill='%23ffffff'/%3e%3c/svg%3e");
}

.form-check .form-check-input:checked[type=checkbox] {
    background-size: 10px;
}

.btn-close:focus {
    box-shadow: none;
}

.search button {
    position: absolute;
    background-color: transparent;
    border: 0;
    color: var(--d3f-color-body);
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
}

html[dir='ltr'] .search button {
    left: 10px;
}

html[dir='rtl'] .search button {
    right: 10px;
}

.page-orders .search .form-control,
.page-subscriptions .search .form-control,
.page-drip-feed .search .form-control,
.page-refill .search .form-control {
    background-color: var(--d3f-background-card);
    border-color: var(--d3f-background-card);
}

html[dir='ltr'] .search .form-control {
    padding-left: 50px;
}

html[dir='rtl'] .search .form-control {
    padding-right: 50px;
}

.btn,
.btn-sm {
    font-weight: 500;
    text-transform: capitalize;
}

.btn {
    min-height: 50px;
    border-radius: 8px;
}

.btn-sm {
    border-radius: 4px;
    border: 1px solid transparent;
}

a.btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary,
.btn-primary.disabled,
.btn-primary:disabled {
    background-color: var(--d3f-primary);
    border-color: var(--d3f-primary);
}

.btn-secondary {
    background-color: var(--d3f-secondary);
    border-color: var(--d3f-secondary);
}

.btn-primary:hover {
    background-color: var(--d3f-hover-primary);
    border-color: var(--d3f-hover-primary);

}

.btn-secondary:hover {
    background-color: var(--d3f-hover-secondary);
    border-color: var(--d3f-hover-secondary);
}

.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:focus {
    background-color: var(--d3f-hover-primary) !important;
    border-color: var(--d3f-hover-primary) !important;
    box-shadow: none !important;
    outline: none;
}

.btn-secondary:hover,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:focus {
    background-color: var(--d3f-hover-secondary) !important;
    border-color: var(--d3f-hover-secondary) !important;
    box-shadow: none !important;
    outline: none;
}

.title::before {
    content: "";
    position: absolute;
    bottom: -12px;
    width: 80px;
    height: 3px;
    border-radius: 1px;
    background-color: var(--d3f-primary);
    display: block;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler > span {
    display: block;
    width: 28px;
    height: 1.5px;
    margin-top: 6px;
    margin-bottom: 6px;
    background-color: var(--d3f-color-body);
    transition: transform 150ms linear, opacity 150ms linear;
    will-change: transform, opacity;
    border-radius: 2px;
}

html[dir=ltr] .navbar-toggler > span {
    transform-origin: center left;
}

html[dir=rtl] .navbar-toggler > span {
    transform-origin: center right;
}

.navbar-toggler > span:nth-child(2) {
    transform: scaleX(0.5);
}

.navbar-toggler:hover > span:nth-child(2) {
    transform: scaleX(1);
}

/* Start Style Dashboard  */

.header-wrap {
    background-color: var(--d3f-background-card);
    position: fixed;
    top: 0;
    width: calc(100% - 270px);
    height: 70px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 101;
}

html[dir=ltr] .header-wrap {
    right: 0;
}

html[dir=rtl] .header-wrap {
    left: 0;
}

.header-wrap > ul > li > a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--d3f-background-page);
    color: var(--d3f-color-body);
    border-radius: 6px;
    font-size: 16px;
}

html[dir=ltr] .header-wrap > ul > li:not(:last-of-type) > a {
    margin-right: 5px;
}

html[dir=rtl] .header-wrap > ul > li:not(:last-of-type) > a {
    margin-left: 5px;
}

html[data-theme=dark] .header-wrap .change-theme i::before {
    content: "\f185";
}

.aside-wrap {
    background-color: var(--d3f-background-card);
    position: fixed;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: 270px;
    z-index: 102;
    overflow: hidden;
    transition: transform .3s ease-in-out;
}

html[dir=ltr] body.dashboard .aside-wrap {
    left: 0;
}

html[dir=rtl] body.dashboard .aside-wrap {
    right: 0;
}

.aside-wrap .aside-logo img {
    width: 200px;
}

.aside-wrap .aside-user .balance {
    border-radius: 10px;
    text-align: center;
}

.aside-wrap .aside-user .balance > div {
    width: 100%;
    padding: 16px;
}

.aside-wrap .aside-user .balance > div:first-of-type {
    background-color: var(--d3f-primary);
    border-radius: 6px 6px 0 0;
}

.aside-wrap .aside-user .balance > div:last-of-type {
    background-color: var(--d3f-hover-primary);
    border-radius: 0 0 6px 6px;
}

.aside-wrap .aside-menu {
    flex: 1 1 auto;
    overflow-y: auto;
}

.aside-wrap .aside-menu ul li a {
    padding: 10px 0;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    color: var(--d3f-color-body);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3ms ease-in-out;
}

.aside-wrap .aside-menu ul li.active a {
    color: var(--d3f-primary);
}

html[dir=ltr] .aside-wrap .aside-menu ul li a i {
    margin-right: 12px;
}

html[dir=rtl] .aside-wrap .aside-menu ul li a i {
    margin-left: 12px;
}

body.dashboard .wrap .content-wrap {
    padding-top: 70px;
    width: calc(100% - 270px);
}

html[dir=ltr] body.dashboard .wrap .content-wrap {
    margin-left: auto;
}

html[dir=rtl] body.dashboard .wrap .content-wrap {
    margin-right: auto;
}

/* End Style Dashboard  */

body.guest .wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.guest .wrap > .item-wrap:first-of-type {
    flex: 1 1 auto;
}

.navbar-top {
    top: 0;
    right: 0;
    left: 0;
    height: 100px;
    background-color: transparent;
    transition: height 300ms ease-in-out;
    position: sticky;
    width: 100%;
    z-index: 100;
}

body.header-sm .navbar-top {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    height: 80px;
}

html[data-theme=light] body.header-sm .navbar-top {
    background-color: rgba(255, 255, 255, 0.8);
}

html[data-theme=dark] body.header-sm .navbar-top {
    background-color: rgba(0, 0, 0, 0.6);
}

.navbar-brand img {
    width: 160px;
}

html[dir=ltr] .navbar-nav {
    margin-left: 100px;
}

html[dir=rtl] .navbar-nav {
    margin-right: 100px;
}

html[dir=ltr] .navbar-nav .nav-item:not(:last-of-type) {
    margin-right: 40px;
}

html[dir=rtl] .navbar-nav .nav-item:not(:last-of-type) {
    margin-left: 40px;
}

.navbar-nav .nav-item .nav-link {
    text-transform: capitalize;
    color: var(--d3f-color-body);
    position: relative;
    padding-left: 0;
    padding-right: 0;
    font-weight: 600;
}

.navbar-nav .nav-item.active .nav-link {
    color: var(--d3f-primary);
}

.navbar-nav .nav-item.active .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 14px;
    height: 3px;
    border-radius: 1px;
    background-color: var(--d3f-primary);
}

.menu-mobile {
    background-color: var(--d3f-background-page);
    position: fixed;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    z-index: 102;
    width: 270px;
    transition: transform .3s ease-in-out;
}

html[dir=ltr] .menu-mobile {
    left: 0;
    transform: translateX(-100%);
}

html[dir=rtl] .menu-mobile {
    right: 0;
    transform: translateX(100%);
}

body.menu-open .menu-mobile {
    transform: none !important;
}

.menu-mobile ul li a {
    color: var(--d3f-color-body);
    padding: 20px;
    display: block;
    text-transform: capitalize;
    font-weight: 500;
    border-bottom: 1px solid var(--d3f-color-border);
}

.section-head h1 {
    max-width: 550px;
}

html[dir=rtl] .section-head h1 {
    font-size: 40px;
}

html[dir=ltr] .section-head h1 {
    font-size: 60px;
}

html[dir=rtl] .section-head h1 {
    line-height: 1.5;
}

.section-head .d-flex {
    gap: 10px 20px;
}


.section-head img {
    width: 90%;
    display: block;
    margin: auto;
}

.section-features .title::before,
.section-services .title::before {
    left: 50%;
    transform: translateX(-50%);
}

.section-features .items {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: space-around;
    gap: 80px 20px;
}

.section-features .item {
    max-width: 440px;
    width: 100%;
    display: flex;
}

.section-features .item .item-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 30px;
    color: #ffffff;
}

html[dir=ltr] .section-features .item .item-icon {
    margin-right: 20px;
}

html[dir=rtl] .section-features .item .item-icon {
    margin-left: 20px;
}

.section-features .item:nth-child(1) .item-icon {
    background-color: var(--d3f-primary);
}

.section-features .item:nth-child(2) .item-icon {
    background-color: var(--d3f-secondary);

}

.section-features .item:nth-child(3) .item-icon {
    background-color: #E67C84;
}

.section-features .item:nth-child(4) .item-icon {
    background-color: #36A069;
}

.section-features .item .item-icon svg {
    width: 35px;
}

.section-features .item h4::before {
    content: "";
    width: 60px;
    height: 3px;
    position: absolute;
    bottom: -22px;
    border-radius: 1px;
}

html[dir=ltr] .section-features .item h4::before {
    left: 0;
}

html[dir=rtl] .section-features .item h4::before {
    right: 0;
}

.section-features .item:nth-child(1) h4::before {
    background-color: var(--d3f-primary);

}

.section-features .item:nth-child(2) h4::before {
    background-color: var(--d3f-secondary);
}

.section-features .item:nth-child(3) h4::before {
    background-color: #E67C84;

}


.section-features .item:nth-child(4) h4::before {
    background-color: #36A069;
}

.section-results .numbers {
    background-color: var(--d3f-primary);
    padding: 20px 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

html[dir=ltr] .section-results .numbers {
    border-radius: 10px 100px 10px 10px;
}

html[dir=rtl] .section-results .numbers {
    border-radius: 100px 10px 10px 10px;
}

.section-results .numbers::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 60px;
    width: 1px;
    background-color: #ffffff;
    display: block;
}

.section-results .number {
    width: 100%;
}

.section-results img {
    width: 100%;
}

.section-services .nav-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    min-height: 55px;
}


.section-services .nav-tabs .nav-item {
    flex: 1 1 0;
}

.section-services .nav-tabs .nav-link {
    height: 55px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--d3f-color-muted);
    position: relative;
    font-weight: 600;
    font-size: 20px;
    border: 0 !important;
    border-bottom: 1px solid var(--d3f-color-border) !important;
    white-space: nowrap;
}

.section-services .nav-tabs .nav-link.active {
    background-color: transparent;
    color: var(--d3f-color-body);
}

.section-services .nav-tabs .nav-link.active::before {
    content: "";
    height: 3px;
    width: 120px;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--d3f-primary);
    display: block;
}

.section-choose ul li {
    color: var(--d3f-color-muted);
    position: relative;
}

html[dir=ltr] .section-choose ul li {
    padding-left: 20px;
}

html[dir=rtl] .section-choose ul li {
    padding-right: 20px;
}

.section-choose ul li::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--d3f-primary);
    display: block;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

html[dir=ltr] .section-choose ul li::before {
    left: 0;
}

html[dir=rtl] .section-choose ul li::before {
    right: 0;
}

.section-choose ul li:not(:last-of-type) {
    margin-bottom: 10px;
}

.section-choose img {
    width: 90%;
    display: block;
    margin: auto;
}

.social-absolute > div {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(64, 123, 255, 0.15);
    border-radius: 50%;
    font-size: 40px;
    z-index: -1;

}

.social-absolute > div.facebook {
    color: #407BFF;
    top: -40px;
    left: 10%;
}

.social-absolute > div.youtube {
    color: #FC3A4D;
    top: -40px;
    right: 10%;
}

.social-absolute > div.instagram {
    color: #DE53D0;
    bottom: 0;
    left: 15%;
}

.social-absolute > div.twitter {
    color: #1CA1F2;
    bottom: 0;
    right: 15%;
}

footer {
    border-top: 1px solid var(--d3f-color-border);
}

.footer-logo img {
    width: 140px;
}

html[dir=ltr] footer .footer-menu li:not(:last-of-type) {
    margin-right: 40px;
}

html[dir=rtl] footer .footer-menu li:not(:last-of-type) {
    margin-left: 40px;
}

footer .footer-menu li a {
    color: var(--d3f-color-body);
    font-weight: bold;
    text-transform: capitalize;
    font-size: 14px;
}

html[dir=ltr] .footer-social li:not(:last-of-type) {
    margin-right: 10px;
}

html[dir=rtl] .footer-social li:not(:last-of-type) {
    margin-left: 10px;
}

.footer-social li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--d3f-primary);
    color: #ffffff;
    border-radius: 50%;
    transition: background-color .15s ease-in-out;
}

.footer-social li a:hover {
    background-color: var(--d3f-hover-primary);
}

.category-name strong {
    background-color: var(--d3f-primary);
    border-radius: 10px;
    display: block;
    width: 100%;
    padding: 16px;
    font-weight: 500;
}

.table {
    color: var(--d3f-color-body);
    vertical-align: middle;
}

html[dir='rtl'] .table {
    font-size: 12px;
}

html[dir='ltr'] .table {
    font-size: 14px;
}


.table th,
.table td {
    border-bottom: 0;
}

html[data-theme=light] .table tbody tr:not(.category-name) td {
    background-color: #f5f8fa;
}

html[data-theme=dark] .table tbody tr:not(.category-name) td {
    background-color: #2b2b40;
}

.table tbody tr:not(.category-name, :last-of-type) td {
    border-bottom: 4px solid var(--d3f-background-card);
}

html[dir=ltr] .table tbody td:first-of-type {
    border-radius: 10px 0 0 10px;
}

html[dir=ltr] .table tbody td:last-of-type {
    border-radius: 0 10px 10px 0;
}

html[dir=rtl] .table tbody td:first-of-type {
    border-radius: 0 10px 10px 0;
}

html[dir=rtl] .table tbody td:last-of-type {
    border-radius: 10px 0 0 10px;
}

.table td .link {
    width: 200px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    direction: ltr;
}

.table td span.service {
    width: 240px;
    display: block;
}

.table td span.status {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 6px;
    display: inline-block;
}

.table td .status.completed,
.table td .status.answered {
    color: #01B780;
    background: rgba(1, 183, 128, 0.25);
}

.table td .status.canceled,
.table td .status.error,
.table td .status.closed {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.25);
}

.table td .status.partial,
.table td .status.expired {
    color: #ff4500;
    background: rgba(255, 69, 0, 0.25);
}

.table td .status.pending,
.table td .status.paused {
    color: #ffa500;
    background: rgba(255, 165, 0, 0.25);
}

.table td .status.inprogress {
    color: #0000ff;
    background: rgba(0, 0, 255, 0.25);
}

.table td .status.processing {
    color: #00bfff;
    background: rgba(0, 191, 255, 0.25);
}

.table td .status.active,
.table td .status.rejected {
    color: #800080;
    background: rgba(128, 0, 128, 0.25);
}


.service-description > div > button {
    color: var(--d3f-color-body);
}

.af-item {
    background-color: var(--d3f-background-card);
    padding: 10px;
    border-radius: 8px;
}

.af-item .icon {
    background-color: var(--d3f-primary);
    border-radius: 8px;
    color: #ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.pagination > li {
    margin: 0 2px;
}

.pagination > li a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 30px;
    height: 30px;
    color: var(--d3f-color-body);
    font-weight: 700;
}

.pagination > li.active a {
    color: var(--d3f-primary);
}

.toast-wrap {
    position: fixed;
    bottom: 15px;
    max-width: 280px;
    width: 100%;
    background-color: var(--d3f-primary);
    color: #ffffff;
    z-index: 103;
    padding: 10px;
    border-radius: 8px;
}

html[dir=ltr] .toast-wrap {
    right: 15px;
}

html[dir=rtl] .toast-wrap {
    left: 15px;
}

.page-api pre {
    background-color: var(--d3f-background-page);
    padding: 20px 10px;
    border-radius: 8px;
    color: var(--d3f-color-body);
    display: block;
}

#accordionFaqs .accordion-item {
    border: 0;
    overflow: hidden;
}

#accordionFaqs .accordion-item {
    background-color: var(--d3f-background-card);
}

#accordionFaqs .accordion-item .accordion-button {
    background-color: var(--d3f-background-page);
    color: var(--d3f-color-body);
    border-radius: 8px !important;
    font-weight: 500;
}

#accordionFaqs .accordion-button:not(.collapsed) {
    color: var(--d3f-primary);
    box-shadow: none;
}

html[data-theme="dark"] #accordionFaqs .accordion-button.collapsed::after {
    filter: brightness(0) invert(1);
}

#accordionFaqs .accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

#accordionFaqs .accordion-item .accordion-button:focus {
    box-shadow: none;
}

#accordionFaqs .accordion-item .accordion-body {
    font-size: 14px;
}

.profile-avatar > span {
    width: 85px;
    height: 85px;
    background-color: var(--d3f-background-page);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.service-description {
    border-radius: 8px;
    background-color: var(--d3f-background-page);
}

.messages > div:not(:last-of-type) {
    margin-bottom: 10px;
}

.messages .ticket-message {
    background-color: var(--d3f-background-page);
    border-radius: 6px;
    font-size: 14px;
    padding: 10px;
}

.messages .ticket-avatar {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 158, 247, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
}

.messages .ticket-message-right .ticket-message::after,
.messages .ticket-message-left .ticket-message::after {
    content: "";
    border: 8px solid transparent;
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 10px;
}

html[dir=ltr] .messages .ticket-message-right .ticket-message::after,
html[dir=rtl] .messages .ticket-message-left .ticket-message::after {
    border-right-color: var(--d3f-background-page);
    left: -16px;
}

html[dir=rtl] .messages .ticket-message-right .ticket-message::after,
html[dir=ltr] .messages .ticket-message-left .ticket-message::after {
    border-left-color: var(--d3f-background-page);
    right: -16px;
}

.block-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--d3f-background-page);
    font-size: 20px;
}

.post .post-image {
    border-radius: 8px;
    overflow: hidden;
}

.post .post-title {
    height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-post-main .post-thumb img {
    display: block;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
}

.page-post-main .post-content * {
    font-family: inherit !important;
    line-height: inherit !important;
    color: var(--d3f-color-body) !important;
}

.page-post-main .post-content a,
.page-post-main .post-content a * {
    text-decoration: none !important;
    color: var(--d3f-primary) !important;
}

@media (max-width: 991.98px) {
    .header-wrap {
        width: 100%;
        padding: 10px;
    }

    body.dashboard .wrap .content-wrap {
        width: 100%;
    }

    body.menu-open .aside-wrap {
        transform: none !important;
    }

    html[dir=ltr] body.dashboard .aside-wrap {
        transform: translateX(-100%);
    }

    html[dir=rtl] body.dashboard .aside-wrap {
        transform: translateX(100%);
    }

    .navbar-top {
        height: 70px;
    }

    body.header-sm .navbar-top {
        height: 60px;
    }

    .navbar-brand img {
        width: 140px;
    }

    .section-features .items {
        row-gap: 40px;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        overflow: hidden;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 101;
    }

    body:not(.menu-open) .overlay {
        display: none;
    }

    html[dir=rtl] .section-head h1 {
        font-size: 36px;
    }

    html[dir=ltr] .section-head h1 {
        font-size: 46px;
    }
}

@media (max-width: 767.98px) {
    .section-features .items {
        grid-template-columns: 1fr;
    }

    html[dir=rtl] .section-head h1 {
        font-size: 30px;
    }

    html[dir=ltr] .section-head h1 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-results .numbers {
        padding: 20px;
    }

    .social-absolute > div {
        font-size: 20px;
        width: 60px;
        height: 60px;
    }

    .social-absolute > div.instagram,
    .social-absolute > div.twitter {
        top: 64%;
    }

    .social-absolute > div.instagram {
        left: 5%;
    }

    .social-absolute > div.twitter {
        right: 5%;
    }
}

@media (max-width: 479.98px) {
    .navbar-brand img {
        width: 130px;
    }

    html[dir=rtl] .section-head h1 {
        font-size: 28px;
    }

    html[dir=ltr] .section-head h1 {
        font-size: 36px;
    }

    .section-head .d-flex {
        flex-direction: column;
    }

    .section-head .d-flex a {
        width: 100%;
    }

    .social-absolute > div:nth-child(n+3) {
        width: 50px;
        height: 50px;
    }

    .social-absolute > div.instagram,
    .social-absolute > div.twitter {
        top: 60%;
    }

}
