@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #232323;
    --white: #fff;
    --btn-primary: linear-gradient(to right bottom, #0d6efd, #5609f2);
    --blue: #0d6efd;
    --font: "Poppins", sans-serif;
    --red: #f93d95;
    --light-grey: #dfdfdf;
    --bg-daymode: #F1F2F6;
    --bg-darkmode: #232333;
    --bg-card-day: #ddd;
    --bg-card-night: #545454;
    --bg-sidebar-day: #0d6efd;
    --bg-sidebar-night: #191924;
    --bg-content-night: #2a2b40;
    --bg-content-night-shadow: 0 0 0.375rem 0.25rem rgb(0 0 0 /15%);
    --bg-menu-active: #4100a5;
    --bg-filter-btn: #3C15A4;
    --bg-secondary: #FFB400;
    --text-white: #fff;
    --text-black: #232323;
    --text-primary: #0d6efd;
    --dark-text-primary: #d92d53;
    --bg-input: #f1f2f6;
    --dark-bg-input: #151428;
    --badges-pending: #FFB400;
    --badges-inprogress: #ff5c00;
    --badges-completed: #01b713;
    --badges-partials: #4a629c;
    --badges-canceled: #dc3545;
    --badges-processing: #ac4006;
    --home-hero-top-text: #ff004d;
    --home-btn-hover: #0d6efd;
    --bg-user-day: #4100a5;
    --bg-user-night: #1d1d2e;
    --bg-dark-menu-active: #0d6efd;
    ;
    --more-menu: #4100a5;
    --btn-day-gradient: linear-gradient(-45deg, #6336f1, #0d6efd);
    --bg-light-grey: #ebebeb;
}

.hidden {
    display: none;
}

#parentContainer {
    width: 100%;
    min-height: 100vh !important;
    background: var(--bg-daymode);
    display: flex;
}

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background: var(--more-menu);
    border-color: var(--more-menu);
}

.nightmode #parentContainer {
    background: var(--bg-darkmode);
}

#parentContainer .sidebar {
    width: 300px;
    background: #0d6efd;
    min-height: 100vh;
    position: fixed;
    transition: 0.5s;
}

.top_bar {
    z-index: 1;
}

.nightmode #parentContainer .sidebar {
    background: var(--bg-sidebar-night);
}

#noAuthNav {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(5px);
}

#noAuthNav .nav-item .nav-link {
    font-size: 18px;
    font-weight: bold;
    color: #232323;
    display: inline-block;
    padding: 15px 15px;
    transition: 0.5s ease-in-out;
}

#noAuthNav .nav-item .nav-link:hover,
#noAuthNav .nav-item .nav-link.active {
    color: #0d6efd;
}

#parentContainer .parentContent {
    width: 100%;
    padding-left: 300px;
    transition: 0.5s;
}

#parentContainer.toggleSidebar .parentContent {
    padding-left: 0px;
}

#parentContainer .parentContent .top_bar {
    position: fixed;
    width: calc(100% - 350px);
    height: 50px;
    margin: 0 auto;
    margin-left: 30px;
    margin-right: 20px;
    background: var(--text-white);
    padding: 5px;
    margin-top: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s;
}

#parentContainer .parentContent main#content {
    margin-left: 18px;
    margin-right: 20px;
}

#parentContainer.toggleSidebar .parentContent main#content {
    margin-left: 10px;
    margin-right: 10px;
}

.nightmode #parentContainer .parentContent .top_bar {
    background: var(--bg-content-night);
    box-shadow: var(--bg-content-night-shadow);
}

.user_top_main .btn-user {
    background: transparent;
    outline: 0;
    padding: 0px;
    background: #0d6efd;
    border-radius: 50px;
}

.user_top_main .img-avatar {
    width: 40px;
    height: 40px;
}

.user_top_main .btn-user.dropdown-toggle::after {
    display: none;
}

.closeBtn {
    display: none;
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50px;
    font-size: 24px;
    right: -20px;
    top: 10px;
    box-shadow: 0 0 10px #504f4f;
}

.backdrop {
    position: fixed;
    width: 100%;
    height: 50px;
    backdrop-filter: blur(3px);
    z-index: 1;
}

#parentContainer.toggleSidebar .parentContent .top_bar {
    width: calc(100% - 40px);
    margin-left: 20px;
    z-index: 1;
}

/* Sidebar inner */

#parentContainer.toggleSidebar .sidebar {
    transform: translateX(-100%);
}

.sidebar_logo {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.sidebar_logo img {
    width: 200px;
}

.sidebar_user {
    margin: 0px 20px;
    text-align: center;
    background: var(--bg-user-day);
    padding: 15px 5px;
    border-radius: 10px;
}

.nightmode .sidebar_user {
    background: var(--bg-user-night);
    box-shadow: var(--bg-content-night-shadow);
}

.sidebar_user .user_avtar img {
    width: 70px;
    height: 70px;
}

.sidebar_user .user_info .balance {
    margin: 0;
    padding: 0;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
    color: var(--text-white);
    background: var(--bg-secondary);
}

.sidebar_user .user_info .username {
    color: var(--text-white);
    font-weight: bold;
    font-size: 16px;
}

#toggleSidebarBtn {
    position: absolute;
    background: var(--text-white);
    left: -55px;
    top: 0px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 30px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50px;
    z-index: 99999;
    transition: 0.5s;
}

.toggleSidebar #toggleSidebarBtn {
    left: 0px;
    transform: rotate(180deg);
    background: transparent !important;
}

.nightmode .toggleSidebar #toggleSidebarBtn {
    color: var(--text-white);
}

#toggleSidebarBtn .offIcon {
    display: none;
}

.toggleSidebar #toggleSidebarBtn .onIcon {
    display: none;
}

.toggleSidebar #toggleSidebarBtn .offIcon {
    display: block;
}

.sidebar_menu {
    margin: 0px 20px;
    margin-top: 10px;
    height: 100%;
    overflow: auto;
}

.sidebar_menu .menu_item {
    display: flex;
    text-decoration: none;
    width: 100%;
    gap: 8px;
    padding: 8px 8px;
    border-radius: 5px;
    margin-bottom: 3px;
    border: none;
    transition: 0.5s;
}

.sidebar_menu .menu_item:hover {
    background: var(--bg-menu-active);
}

.nightmode .sidebar_menu .menu_item:hover {
    background: var(--bg-dark-menu-active);
}

.sidebar_menu .menu_item.active {
    background: var(--bg-menu-active);
}

.nightmode .sidebar_menu .menu_item.active {
    background: var(--bg-dark-menu-active);
    box-shadow: 0px 0px 20px var(--bg-dark-menu-active);
}

.sidebar_menu .menu_item .menu_icon {
    font-size: 16px;
    color: var(--text-white);
}

.sidebar_menu .menu_item .menu_text {
    color: var(--text-white);
    font-size: 16px;
    font-weight: bold;
}

.logo_for_phone {
    display: none;
    transition: 0.5s;
}

.nightmode .logo_for_phone img {
    filter: invert(1);
}

.toggleSidebar .logo_for_phone {
    display: block;
}

.logo_for_phone img {
    width: 170px;
    margin-left: 50px;
}

/* more menu */

#moreMenu {
    display: flex;
    text-decoration: none;
    width: 100%;
    gap: 8px;
    padding: 5px 8px;
    border-radius: 5px;
    margin-bottom: 3px;
    transition: 0.5s;
    background: var(--more-menu);
    color: #fff;
    border: 1px solid #6100f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nightmode #moreMenu {
    background: var(--bg-dark-menu-active);
    border-color: var(--bg-dark-menu-active);
}

#moreMenuContainer {
    height: 0px;
    display: none;
    transition: 0.5s;
}

#moreMenuContainer.actived {
    height: 100%;
    display: block;
}

#toggleModes {
    background: transparent;
    border: none;
    font-size: 25px;
}

.nightmode #toggleModes {
    color: var(--text-white);
}

#toggleModes #sun {
    display: none;
}

.top_right {
    display: flex;
    gap: 8px;
}

.nightmodeActive #sun {
    display: block !important;
}

.nightmodeActive #moon {
    display: none !important;
}

/* Content */

#content {
    margin-top: 70px;
}

.nightmode #content {
    color: var(--text-white);
}

/* All Page innner CSS */

.form-group {
    margin-bottom: 1rem !important;
}

.control-label,
.form-label {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-black);
}

.nightmode .control-label,
.nightmode .form-label {
    color: var(--text-white);
}

.nightmode .card,
.nightmode .well,
.nightmode .card.custom__card {
    background: var(--bg-content-night);
    box-shadow: var(--bg-content-night-shadow);
}

.dashboard .btn.btn-primary {
    width: 100%;
    background: var(--btn-day-gradient);
    color: #fff;
    border: 0;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    padding: 10px 10px;
    box-shadow: 0 0 10px #0d6efda3;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

#tabSwiter>.nav.nav-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

#tabSwiter>.nav.nav-pills .nav-item .nav-link {
    border: 1px solid #0d6efd;
    color: #0d6efd;
    font-size: 16px;
    padding: 2px 8px !important;
    width: 100%;
    height: 35px;
}

#tabSwiter>.nav.nav-pills .nav-item .nav-link.active {
    border: 2px solid #0d6efd;
    background: var(--btn-day-gradient);
    box-shadow: 0 0 10px #0d6efda3;
    color: var(--text-white);
}

.nightmode #tabSwiter>.nav.nav-pills .nav-item .nav-link {
    color: var(--text-white);
}

/* Droped Dwon User Menu */

#userProMenu {
    width: 200px;
    margin: 0;
    padding: 0;
    z-index: 9;
}

.nightmode #userProMenu {
    background: var(--bg-content-night);
    box-shadow: var(--bg-content-night-shadow);
}

#userProMenu .user_hipe {
    display: grid;
    grid-template-columns: 2fr 4fr;
    gap: 8px;
    padding: 10px;
}

#userProMenu .user_hipe .hipe_avatar {
    width: 50px;
    height: 50px;
    border: 1px solid #0d6efd;
    border-radius: 50px;
}

#userProMenu .user_hipe .user_infos p {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--text-black);
}

.nightmode #userProMenu .user_hipe .user_infos p {
    color: var(--text-white);
}

#userProMenu .linesperator {
    border-bottom: 1px solid #e5d9d9;
}

.nightmode #userProMenu .linesperator {
    border-color: #4b4d7673;
}

#userProMenu li {
    margin-top: 2px;
    margin-bottom: 2px;
    padding: 0px;
}

#userProMenu li a.user_menu {
    display: flex;
    width: 100%;
    font-size: 16px;
    color: var(--text-black);
    text-decoration: none;
    cursor: pointer;
    padding: 5px 10px;
    gap: 5px;
    font-weight: bold;
    transition: 0.5s;
}

.nightmode #userProMenu li a.user_menu {
    color: var(--text-white);
}

#userProMenu li a.user_menu i {
    font-size: 15px;
}

#userProMenu .user_name,
#userProMenu .user_balance {
    display: block;
    text-decoration: none;
    font-size: 16px;
    color: var(--text-black);
    font-weight: bold;
}

.nightmode #userProMenu .user_name,
.nightmode #userProMenu .user_balance {
    color: var(--text-white);
}

#userProMenu li a.user_menu:hover {
    background: #e3e3e3;
}

.nightmode #userProMenu li a.user_menu:hover {
    background: #4b4d7673;
}

#userProMenu li a.user_menu.logout {
    color: var(--badges-canceled);
}

.nightmode #userProMenu li a.user_menu.logout:hover {
    background: var(--badges-canceled);
    color: var(--text-white);
}

/* Filter Btn*/

.filter_btn_wrap {
    display: grid;
    gap: 10px 10px;
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
}

.filter_btn_wrap .btn_filter {
    font-size: 18px;
    text-transform: capitalize;
    border: none;
    padding: 3px;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
    background: #4A4A4A;
    color: #fff;
    border: 2px solid #4A4A4A;
    /* box-shadow: inset 0 5px 10px rgba(31, 31, 31, 0.7), 0 2px 8px #0000005e; */
    transition: 0.5s;
}

.filter_btn_wrap .btn_filter.activeItem {
    transition: 0.5s;
}

.nightmode .filter_btn_wrap .btn_filter {
    background: var(--bg-sidebar-night);
    border-color: var(--bg-sidebar-night);
    color: var(--text-white);
}

.filter_btn_wrap .btn_filter>i,
.filter_btn_wrap .btn_filter>.filter_txt {
    pointer-events: none;
}

.filter_btn_wrap .btn_filter.activeItem {
    background: var(--btn-day-gradient);
    box-shadow: 0 0 15px #0d6efd7a;
    color: var(--text-white);
    border-color: #0d6efd;
}

/* User Statistics */

.user__data__wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.user_data__item {
    display: flex;
    gap: 8px;
    background: var(--text-white);
    padding: 10px 10px;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
    align-items: center;
}

.nightmode .user_data__item {
    background: var(--bg-content-night);
    box-shadow: var(--bg-content-night-shadow);
}

.user_data__item .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border-radius: 7px;
    color: var(--text-white);
    background: #0d6efd;
    box-shadow: 0 0 10px #0d6efd7a;
}

.user_data__item .user__data h4 {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
}

.user_data__item .user__data p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: normal;
}

/* services details part */

.card-details .card-body-details {
    padding: 0px !important;
}

.card-details .card-body-details #pills-details {
    padding: 1rem 1rem;
}

.card-details .card-body-details .services_name {
    min-height: 100px;
    text-align: center;
    background: linear-gradient(to right, #6336f1c7, #0d6efdde), url(https://cdn.mypanel.link/m06oqf/pafrbo9gewg9omhf.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.current_services {
    padding: 10px;
}

.current_services #servicesId {
    display: inline-block;
    margin-bottom: 5px;
    background: #ffb400;
    font-size: 16px;
    padding: 3px 20px;
    border-radius: 20px;
    font-weight: bold;
    color: #0c0b0b;
}

.current_services #servicesName {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: var(--text-white);
}

.dashboard .details_data {
    margin-bottom: 15px;
}

.dashboard .details_2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.details_name h3,
.dashboard .details_data .details_name h3 {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-black);
}

.dashboard.nightmode .details_name h3,
.dashboard.nightmode .details_data .details_name h3 {
    color: var(--text-white);
}

.dashboard .details_data .item {
    display: flex;
    align-items: center;
    height: 50px;
    gap: 10px;
    background: #f1f2f6;
    padding: 8px;
    border-radius: 15px;
}

.dashboard.nightmode .details_data .item {
    background: var(--bg-darkmode);
}

.dashboard .details_data .item .icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    background: #4916bf1a;
    color: #0d6efd;
    border-radius: 50px;
}

.dashboard.nightmode .details_data .item .icon {
    background: #22213b;
    color: var(--dark-text-primary);
}

.dashboard .descriptions_box {
    background: #f1f2f6;
    padding: 10px;
    border-radius: 15px;
}

.dashboard.nightmode .descriptions_box {
    background: var(--bg-darkmode);
}

.dashboard .details_data .item .item_content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.dashboard .details_data .item .item_content p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.dashboard.nightmode .details_data .item .item_content {
    color: #fff;
}

.dashboard.nightmode .descriptions_box {
    color: #fff;
}

.icon_link {
    background: var(--home-hero-top-text) !important;
    color: #fff !important;
}

.icon_start {
    background: #00a1ff !important;
    color: #fff !important;
}

.icon_speed {
    background: #ac42ef !important;
    color: #fff !important;
}

.icon_refill {
    background: #00cf00 !important;
    color: #fff !important;
}

.icon_avg_time {
    background: #002bff !important;
    color: #fff !important;
}

.for_mob {
    display: none;
}

.form-control {
    background: var(--bg-daymode);
}

.form-control {
    padding: 10px;
}

.nightmode .form-control {
    background: var(--bg-darkmode);
    color: var(--text-white);
    border-color: var(--bg-sidebar-night);
}

/* default infos */

.info_card_title_wrap {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.info_icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    background: #622fee;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px #622fee9e;
}

.info_title {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-black);
}

.nightmode .info_title {
    color: var(--text-white);
}

/* Orders */

#orders_filter,
#defaultOrder {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.input-group-btn .btn.btn-default {
    background: #0d6efd;
    color: #fff;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: bold;
    color: var(--text-black);
}

.dropdown-item.active,
.dropdown-item:active {
    background: #0d6efd;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: bold;
}

.orderFilter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0d6efd;
    color: var(--text-white);
    border-color: #0d6efd;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px;
    transition: 0.5s;
}

#defaultOrder .input-group {
    height: 48px;
}

#defaultOrder .input-group .input-group-btn button {
    height: 100%;
    border-radius: 0px 5px 5px 0px;
    border: 1px solid;
    border-color: #0d6efd;
}

.form-control:focus {
    box-shadow: 0 0 5px #0d6efd;
    border-color: #0d6efd;
}

.orderFilter:active,
.orderFilter:focus,
.orderFilter:hover {
    background: var(--bg-dark-menu-active);
    border-color: var(--bg-dark-menu-active);
    color: var(--text-white);
    box-shadow: 0 0 10px #0d6efd;
}

/*
Api Page Design
*/

#api {
    padding-top: 1rem;
}

.card__title {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 20px;
    font-weight: 800;
    color: #232323;
}

.card__icon {
    width: 50px;
    height: 50px;
    background: #0d6efd;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    color: var(--white);
    border-radius: 5px;
}

pre {
    background: #232323;
    color: #fff;
    padding: 20px 25px;
    border-radius: 10px;
}

/*
Services page
*/

#services {
    padding-top: 2rem;
}

#service-table {
    background: var(--white);
}

/*
Noting Found Design 
*/

.noting_found {
    text-align: center;
}

.noting_found .icon {
    width: 30%;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 50px;
    opacity: .5;
}

.nightmode .noting_found .icon img {
    filter: invert(1);
}

.noting_found h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    color: #808080;
}

.toggleSidebar #closerSidebar {
    display: none;
    width: 100vh;
    height: 100vh;
    position: absolute;
    left: 300px;
    pointer-events: none;
}

/* Accordion button styles */

.default__accoridions .accordion .accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px #e6e6e6;
}

.default__accoridions .accordion .accordion-item .accordion-button {
    background: #0d6efd !important;
    box-shadow: none;
    color: #fff;
}

.default__accoridions .accordion .accordion-item .accordion-button:not(.collapsed)::after {
    filter: brightness(35);
}

.default__accoridions .accordion .accordion-item .accordion-button.collapsed {
    background: #fff !important;
    color: var(--text-black);
}

.default__accoridions .accordion-flush .accordion-item .accordion-button {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

/* Tickets page design */

.ticket-badges {
    background: #d6defc;
    padding: 1px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-badges.Pending {
    background: #0d6efd;
    color: var(--text-white);
}

.ticket-badges.Answered {
    background: var(--badges-completed);
    color: var(--text-white);
}

.ticket-badges.Closed {
    background: var(--badges-canceled);
    color: var(--text-white);
}

.user_messages .ticket-message {
    background: #deecff;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
}

.admin_messages .ticket-message {
    background: #e8ffea;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
}

.nightmode .admin_messages .ticket-message,
.nightmode .user_messages .ticket-message {
    background: var(--bg-darkmode);
}

.user_user {
    display: flex;
    align-items: center;
    gap: 8px;
    float: right;
    margin-bottom: 10px;
    margin-top: 10px;
}

.admin_user {
    display: flex;
    align-items: center;
    gap: 8px;
    float: left;
    margin-bottom: 10px;
    margin-top: 10px;
}

.user_user .icons,
.admin_user .icons {
    width: 50px;
    height: 50px;
    border: 1px solid #0d6efd;
    border-radius: 50px;
}

.admin_user>div,
.user_user>div {
    display: flex;
    flex-direction: column;
}

/*
  Affiliates
*/

.affiliates_top_data {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.affiliates_top_data .items {
    display: flex;
    align-items: center;
    gap: 10px;
}

.affiliates_top_data .items .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: #0d6efd;
    color: var(--text-white);
    border: 2px solid #0d6efd;
    border-radius: 50px;
    box-shadow: 0 0 10px #0d6efdad;
}

.affiliates_bottom .bottom_item h5,
.affiliates_top_data .items .info h5 {
    font-size: 12px;
    color: #726e6e;
    margin: 0;
    padding: 0;
}

.affiliates_bottom .bottom_item h4,
.affiliates_top_data .items .info h4 {
    font-size: 16px;
    color: var(--text-black);
    margin: 0;
    padding: 0;
}

.affiliates_bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.affiliates_bottom .bottom_item {
    background: #fff;
    padding: 1rem 1rem;
    border-radius: 0.25rem;
    border: 1px solid rgba(0, 0, 0, .125);
}

/*
*
*
*
####################################################
Responsive For website 
####################################################
*
*
*
*
*
*/

@media only screen and (max-width: 990px) {
    #parentContainer .sidebar {
        transform: translateX(-100%);
        z-index: 99;
    }
    #parentContainer.toggleSidebar .sidebar {
        transform: translateX(0%);
    }
    #parentContainer .parentContent {
        padding-left: 0px;
    }
    #toggleSidebarBtn {
        left: 0px;
        transform: rotate(180deg);
        background: transparent;
    }
    .nightmode #toggleSidebarBtn {
        color: var(--text-white);
    }
    #parentContainer.toggleSidebar #toggleSidebarBtn {
        transform: rotate(0deg);
    }
    #parentContainer .parentContent .top_bar {
        width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
    }
    .toggleSidebar .closeBtn {
        display: block;
    }
    #toggleSidebarBtn .onIcon {
        display: none;
    }
    #toggleSidebarBtn .offIcon {
        display: block;
    }
    .logo_for_phone {
        display: block;
    }
    #parentContainer .parentContent main#content {
        margin-left: 10px;
        margin-right: 10px;
    }
    #parentContainer.toggleSidebar .parentContent main#content {
        margin-left: 10px;
        margin-right: 10px;
    }
    .toggleSidebar #closerSidebar {
        display: block;
        pointer-events: all;
    }
}

@media only screen and (max-width: 767px) {
    #parentContainer .sidebar {
        transform: translateX(-100%);
    }
    #parentContainer.toggleSidebar .sidebar {
        transform: translateX(0%);
    }
    #parentContainer .parentContent {
        padding-left: 0px;
    }
    #toggleSidebarBtn {
        left: 0px;
    }
    #parentContainer.toggleSidebar #toggleSidebarBtn {
        background: transparent;
    }
    #parentContainer .parentContent .top_bar {
        width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
    }
    .toggleSidebar .closeBtn {
        display: block;
    }
    #toggleSidebarBtn .onIcon {
        display: none;
    }
    #toggleSidebarBtn .offIcon {
        display: block;
    }
    .logo_for_phone {
        display: block;
    }
    .user__data__wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .filter_btn_wrap {
        grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
    }
    .for_desk {
        display: none;
    }
    .for_mob {
        display: block;
    }
}

@media only screen and (max-width: 550px) {
    #parentContainer .sidebar {
        transform: translateX(-100%);
    }
    #parentContainer.toggleSidebar .sidebar {
        transform: translateX(0%);
    }
    #parentContainer .parentContent {
        padding-left: 0px;
    }
    #toggleSidebarBtn {
        left: 0px;
    }
    #parentContainer .parentContent .top_bar {
        width: calc(100% - 10px);
        margin-left: 5px;
        margin-right: 5px;
        margin-top: 5px;
    }
    #parentContainer.toggleSidebar .parentContent .top_bar {
        width: calc(100% - 10px);
        margin-left: 5px;
        margin-right: 5px;
        margin-top: 5px;
    }
    .toggleSidebar .closeBtn {
        display: block;
    }
    #toggleSidebarBtn .onIcon {
        display: none;
    }
    #toggleSidebarBtn .offIcon {
        display: block;
    }
    .logo_for_phone {
        display: block;
    }
    #parentContainer .parentContent main#content {
        margin-left: 0px;
        margin-right: 0px;
    }
    #parentContainer.toggleSidebar .parentContent main#content {
        margin-left: 0px;
        margin-right: 0px;
    }
    .user__data__wrap {
        margin-top: 0px;
        margin-bottom: 5px;
        gap: 5px;
    }
    .user_data__item .icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .user_data__item .user__data h4 {
        font-size: 16px;
    }
    .user_data__item .user__data p {
        font-size: 14px;
    }
    .filter_btn_wrap {
        grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
        gap: 5px 5px;
    }
    .filter_btn_wrap .btn_filter {
        padding: 2px;
        border-width: 1px;
    }
    .filter_txt {
        display: none;
    }
    #tabSwiter>.nav.nav-pills .nav-item .nav-link {
        border-width: 1px;
        font-size: 14px;
        height: 30px;
        padding: 2px 3px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2px;
    }
    .control-label,
    .form-label {
        font-size: 14px;
        margin-bottom: 3px !important;
    }
    .form-control {
        font-size: 14px;
    }
    form .mb-3,
    .form-group {
        margin-bottom: 7px !important;
    }
    .dashboard .btn.btn-primary {
        font-size: 16px;
        padding: 5px 7px;
    }
    .current_services #servicesName {
        font-size: 14px;
    }
    .item_content,
    .item_content small,
    .descriptions_box {
        font-size: 12px;
        line-break: anywhere;
        line-height: 1.1;
    }
    .dashboard .details_data {
        margin-bottom: 8px;
    }
    .details_name h3,
    .dashboard .details_data .details_name h3 {
        font-size: 14px;
    }
    /*sidebar responsive */
    .sidebar_user {
        margin: 0px 20px;
        text-align: center;
        background: var(--bg-user-day);
        padding: 7px 5px;
        border-radius: 7px;
    }
    .sidebar_user .user_avtar img {
        width: 50px;
        height: 50px;
    }
    .sidebar_user .user_info .balance {
        padding: 0px 11px;
    }
    .sidebar_logo img {
        width: 150px;
    }
    .sidebar_menu .menu_item {
        padding: 5px 8px;
    }
    .sidebar_menu .menu_item .menu_icon {
        font-size: 14px;
    }
    .sidebar_menu .menu_item .menu_text {
        font-size: 14px;
    }
}

/*
*
* Home 
*
*/

.navbar-brand img {
    max-width: 200px;
}

/* Common CSS */

.container_custom {
    width: 80%;
    margin: 0 auto;
}

.bor_rad10 {
    border-radius: 10px;
}

.bor_rad50 {
    border-radius: 50px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-50 {
    margin-right: 50px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.btn_primary {
    display: inline-block;
    text-align: center;
    background: var(--btn-primary);
    color: var(--white);
    text-decoration: none;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 500;
    /* box-shadow: inset 0 0 15px #bb96e9, 0 6px 15px #481e9c78; */
    transition: 0.8s;
    color: #fff;
}

.btn_primary:hover {
    color: var(--white);
    transform: translateY(-10px);
}

.btn_secondary {
    display: inline-block;
    text-align: center;
    color: var(--blue);
    text-decoration: none;
    padding: 12px 33px;
    font-size: 18px;
    font-weight: 500;
    border: 2px solid var(--blue);
    transition: 0.5s;
}

.btn_secondary:hover {
    transform: translateY(-10px);
    background: var(--btn-primary);
    color: var(--white);
}

p {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

/* Input Group */

.form_group {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
}

.form_group .form_icon {
    position: absolute;
    background: var(--blue);
    width: 45px;
    height: 45px;
    margin-left: 7.5px;
    margin-top: 7.5px;
    line-height: 45px;
    color: #fff;
    border-radius: 9px;
    font-size: 20px;
}

.form_group .form_control {
    width: 100%;
    font-size: 16px;
    min-height: 60px;
    padding: 0px 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
}

.form_group .form_control.has_icon {
    padding-left: 60px;
}

/* Navbar CSS */

.navigations {
    display: flex;
    justify-content: space-between;
    padding: 1.7rem 0rem;
    max-height: 100px;
    align-items: center;
}

.nav_menu ul {
    list-style-type: none;
    display: inline-block;
}

.nav_menu ul li {
    display: inline-block;
}

.nav_menu ul li a {
    font-family: var(--font);
    font-size: 20px;
    font-weight: bold;
    padding: 15px 20px;
    text-decoration: none;
    margin-right: 5px;
    color: var(--black);
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.nav_menu ul li a:hover {
    color: var(--blue);
}

.nav_menu ul li a.signup {
    display: inline-block;
    position: relative;
    background: var(--btn-primary);
    color: var(--white);
    padding: 15px 35px;
    box-shadow: inset 0 0 15px #bb96e9, 0 6px 15px #481e9c78;
    transition: 0.5s;
}

.mob_menu {
    display: none;
}

.nav_menu ul li a.signup:hover {
    transform: translateY(-5px);
}

.mob_menu_shower {
    position: fixed;
    width: 0%;
    background: #000;
    right: 0;
    height: 100%;
    z-index: 99;
    transition: 0.5s;
}

.mob_menu_shower .closeMenu {
    position: absolute;
    opacity: 0;
    right: 10px;
    background: black;
    padding: 10px 10px;
    border: none;
    color: #fff;
    font-size: 20px;
    top: 15px;
    cursor: pointer;
}

.mob_menu_shower #menu_con {
    display: none;
}

.mob_menu_shower.show {
    width: 50%;
}

.mob_menu_shower.show .closeMenu {
    opacity: 1;
}

.mob_menu_shower.show #menu_con {
    display: block;
}

#menu_con {
    padding: 5rem 3rem;
}

#menu_con ul li {
    list-style-type: none;
    margin-bottom: 15px;
}

#menu_con ul li a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

#menu_con ul li a:hover {
    color: var(--red);
}

/* Hero Design */

.header {
    position: relative;
    width: 100%;
    z-index: 1;
    min-height: 90vh;
}

.header {
    background: linear-gradient(to bottom, #ffffff05, #ffffffeb 75%), url(https://res.cloudinary.com/de9bkrzj1/image/upload/v1660882763/increasefollower-assest/images/banner_bg_2_cifdds.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

#hero .hero_wraper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.hero_wraper .hero_left .hero_content .small_title {
    margin-bottom: 15px;
}

.hero_wraper .hero_left .hero_content .small_title h3 {
    font-size: 20px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 10px;
    color: var(--black);
    background: rgb(239 239 239 / 50%);
}

.hero_wraper .hero_left .hero_content .hero_title h1 {
    font-family: var(--font);
    font-size: 50px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight {
    color: var(--blue);
}

.highlight_red {
    color: var(--red);
}

.hero_wraper .hero_left .hero_content .hero_dsc p {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 15px;
}

#hero .hero_wraper .hero_right .hero_img img {
    width: 100%;
}

/* Banner Blur Background Maker*/

.banner_bg {
    width: 100%;
    z-index: -1;
    position: absolute;
    filter: blur(90px);
    overflow: hidden;
    max-height: 100%;
}

.banner_bg .color_ball {
    position: relative;
    z-index: -1;
    width: 422px;
    height: 422px;
    border-radius: 50%;
    top: -200px;
    left: 50px;
    background: linear-gradient(to bottom, #1690bd, #000480);
    opacity: 0.6;
}

.banner_bg .color_ball1 {
    position: absolute;
    z-index: -1;
    width: 422px;
    height: 422px;
    border-radius: 50%;
    top: 250px;
    left: 40%;
    background: linear-gradient(to bottom, #1690bd, #000480);
    opacity: 0.4;
}

.banner_bg .color_ball2 {
    position: relative;
    z-index: -1;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    top: -1000px;
    right: -1200px;
    background: linear-gradient(to bottom, #ff3232 40%, #6e1aac, #2b0fe4);
    opacity: 0.5;
}

/*End Banner Background*/

/* Login Section */

#login {
    padding: 1rem 0rem 3rem 0rem;
}

.login_box {
    position: relative;
}

.login_bg_wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -2;
    border-radius: 20px;
    background: #dbdada;
    overflow: hidden;
}

.login_ball1 {
    position: absolute;
    z-index: 8;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: -60px;
    right: -60px;
    background: linear-gradient(to bottom right, #0d6efd 20%, #ad5adc);
    opacity: 1.1;
    filter: blur(20px);
}

.login_ball2 {
    position: absolute;
    z-index: 8;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    left: -60px;
    bottom: -60px;
    background: linear-gradient(to bottom right, #f93d95 20%, #ffa713);
    opacity: 1.1;
    filter: blur(20px);
}

.login_ball3 {
    position: absolute;
    z-index: 8;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: -60px;
    right: -60px;
    background: linear-gradient(to bottom right, #0d6efd 20%, #ad5adc);
    opacity: 1.1;
    box-shadow: rgb(225 225 221) 0px 0px 20px inset;
    z-index: -170;
}

.login_ball4 {
    position: absolute;
    z-index: 8;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    left: -60px;
    bottom: -60px;
    background: linear-gradient(to bottom right, #f93d95 20%, #ffa713);
    opacity: 1.1;
    z-index: -170;
    box-shadow: inset 0 0 35px #fff;
}

/* Login Box insiders*/

.login_box_wrapper {
    padding: 2rem;
}

#rememberBox {
    display: block;
}

#rememberBox .icons_remember {
    width: 100%;
    height: 70px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #000;
    cursor: pointer;
    transition: 0.5s;
}

#remember:checked~.icons_remember {
    background: #0d6efd !Important;
    color: var(--text-white);
}

.login_input_wrap .login_right_wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn_login {
    height: 50px;
    border: none;
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: 0;
    border-radius: 10px;
    /* box-shadow: inset 0 0 15px #bb96e9, 0 6px 15px #481e9c78; */
    background: var(--btn-primary);
    cursor: pointer;
}

.login_input_wrap .login_left_wrap .login_group {
    width: 100%;
}

.login_input_wrap .login_left_wrap .login_group .login_input_def {
    width: 100%;
}

.login_group {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
}

.login_icon {
    position: absolute;
    width: 60px;
    height: 60px;
    color: #fff;
    background: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-left: 5px;
    border-radius: 13px;
}

.login_group .login_input_def {
    font-size: 18px;
    height: 70px;
    border: 0px;
    padding-left: 70px;
    padding-right: 10px;
    border-radius: 15px;
    outline: none;
}

/* Sign Up Page Design */

.sign_up_wrap {
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 20px;
    background: rgba(200, 198, 198, 0.35);
    margin-bottom: 5rem;
    position: relative;
    min-width: 550px;
}

.sign_up_wrap .signup_title_wrap {
    margin-bottom: 2rem;
}

.signUpBgWrap {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    filter: blur(25px);
    z-index: -1;
}

.signUpBgWrap .singup_bg {
    position: absolute;
    width: 200px;
    height: 200px;
    top: -3%;
    left: -11%;
    background: linear-gradient(to bottom right, #ff3232 20%, #2b0fe4);
    border-radius: 50%;
    z-index: -1;
    overflow: hidden;
}

.sign_up_wrap .signup_title_wrap::after {
    content: "";
    width: 20%;
    height: 5px;
    background: var(--btn-primary);
    display: block;
    margin: 0 auto;
    margin-top: 15px;
    transition: 0.5s;
    animation: widthChanger 15s infinite;
}

@keyframes widthChanger {
    0% {
        width: 20%;
    }
    25% {
        width: 50%;
    }
    50% {
        width: 20%;
    }
    75% {
        width: 50%;
    }
    100% {
        width: 20%;
    }
}

.sign_up_wrap .signup_title_wrap h2 {
    font-family: var(--font);
    font-size: 35px;
    color: var(--blue);
    font-weight: bold;
}

.sign_up_wrap .signup_title_wrap p {
    font-family: var(--font);
    font-size: 16px;
    color: var(--black);
    text-align: center;
}

.signup_field {
    width: 95%;
    margin: 0 auto;
}

.signup_field .form_group .form_control {
    background: #ffffffa6;
    outline: none;
    transition: 0.4s;
}

.signup_field .form_group .form_control:focus {
    background: #fff;
    border-color: var(--blue);
    box-shadow: 0 0 15px rgba(61, 57, 57, 0.25);
}

.signup_button {
    display: block;
    margin-top: 20px;
}

.signup_button .btn_signup {
    width: 100%;
    font-size: 18px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

/* Feature Wrap */

.top_feature {
    margin: 5rem 0rem;
}

.top_feature_wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    grid-column-gap: 3rem;
    justify-content: space-between;
}

.top_feature_item {
    text-align: center;
    background: rgba(207, 207, 207, 0.4);
    padding: 3rem 1.5rem;
    border-radius: 20px;
    position: relative;
    margin-bottom: 1.5rem;
}

.top_feature_item .top_feature_item_img img {
    width: 160px;
    max-height: 200px;
    margin: 0 auto;
}

.top_feature_item .top_feature_item_cont {
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem 0rem;
    border-radius: 15px;
    margin-top: 18px;
    transition: 1s;
}

.top_feature_item .top_feature_item_cont h4 {
    font-family: var(--font);
    font-size: 22px;
    font-weight: bold;
    color: var(--black);
}

.top_feature_item_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 20px;
    filter: blur(25px);
}

.item_bg_ball {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(to bottom right, #ff3232 20%, #2b0fe4);
    border-radius: 50%;
    bottom: 30px;
    left: 30px;
    transition: 5s;
}

.top_feature_item:hover .item_bg_ball {
    width: 250px;
    height: 250px;
}

.top_feature_item:hover .top_feature_item_cont {
    background: #fff;
}

/* Best Section Style  */

.best_sec {
    background: url(https://res.cloudinary.com/honestsmm/image/upload/v1661534458/honestsmm-assets/bg-3_ayt3it.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.best_wraper .best_left {
    width: 50%;
}

.best_wraper .best_right {
    width: 50%;
}

.best_cont .best_top_small h3 {
    font-family: var(--font);
    font-size: 20px;
    color: var(--black);
    font-weight: bold;
}

.best_cont h2 {
    font-family: var(--font);
    font-size: 50px;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: bold;
}

.best_cont p {
    font-family: var(--font);
    color: var(--black);
    font-size: 16px;
    font-weight: normal;
}

.best_img_wrap img {
    width: 100%;
    float: right;
}

/* End SignUP Design */

/* Counter Sections */

#counterUp {
    padding: 5rem 0rem;
}

.counter {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light-grey);
    padding: 10px;
    border-radius: 10px;
}

.counter_icon {
    width: 85px;
    height: 85px;
    background: #0d6efd;
    border-radius: 8px;
    margin-right: 10px;
    text-align: center;
    line-height: 95px;
}

.counter_icon i {
    color: var(--white);
    font-size: 30px;
}

.counter_cont .odometer {
    font-family: var(--font);
    font-size: 30px;
    font-weight: bold;
    color: var(--black);
    transition: 1s;
}

.counter_cont h4 {
    font-family: var(--font);
    font-weight: normal;
    color: var(--red);
    transition: 1s;
}

.counter_item::before {
    content: "";
    width: 0%;
    height: 0%;
    position: absolute;
    background: linear-gradient(to bottom right, #ff3232, #6d0fe4 100%);
    right: 0;
    bottom: 0;
    border-radius: 12px;
    z-index: 0;
    transition: 0.5s;
}

.counter_item:hover::before {
    width: 100%;
    height: 100%;
}

.counter_item:hover .counter_cont h4 {
    color: var(--white);
}

.counter_item:hover .counter_cont .odometer {
    color: var(--white);
}

.count_number {
    font-size: 25px;
    font-weight: 800;
    color: var(--black);
}

.counter_content h5 {
    font-size: 18px;
    font-weight: normal;
    color: var(--text-black);
}

#socialMediaSec {
    padding: 5rem 0rem;
    background: transparent;
    position: relative;
}

#socialMediaSec .social_media_blur {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(100px);
    z-index: -1;
}

.social_media_blur .social_media_ball_bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(to bottom right, #ff3232 20%, #2b0fe4);
    border-radius: 50%;
    bottom: 0px;
    left: -150px;
}

.social_media_blur .social_media_ball_bg2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(to bottom, #1690bd, #000480);
    border-radius: 50%;
    top: 0px;
    right: 0px;
    opacity: 0.5;
}

.social_media_wrap {
    margin-bottom: 1.5rem;
}

.social_media_wrap .social_title_wrap {
    text-align: center;
}

.social_media_wrap .social_title_wrap h4 {
    font-family: var(--font);
    font-size: 20px;
    color: var(--black);
}

.social_media_wrap .social_title_wrap h2 {
    font-family: var(--font);
    font-size: 30px;
    color: var(--black);
}

.social_media_wrap .social_title_wrap p {
    font-family: var(--font);
    color: var(--black);
    font-size: 16px;
}

.social_media_btn_wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-column-gap: 30px;
    margin-top: 3rem;
}

.social_btn {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    border: 2px solid var(--blue);
    background: transparent;
    font-size: 16px;
    text-align: center;
    color: var(--blue);
    font-weight: bold;
    font-family: var(--font);
    cursor: pointer;
    transition: 0.5s;
}

.social_btn:hover {
    background: var(--btn-primary);
    color: var(--white);
}

.social_btn.active {
    background: var(--btn-primary);
    color: var(--white);
}

/* Genral Feature Sections */

#genralFeature {
    padding: 5rem 0rem;
}

.gn_featuer_wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.gn_featuer_wrap .gn_fetaure_item {
    background: #fff;
    padding: 2rem 2rem;
    text-align: center;
    box-shadow: 0 0 10px rgb(226, 221, 221);
    border-radius: 10px;
}

.gn_featuer_wrap .gn_fetaure_item .item_icon {
    width: 100%;
}

.gn_featuer_wrap .gn_fetaure_item .item_icon .icon_wrap {
    width: 80px;
    height: 80px;
    background: var(--btn-primary);
    text-align: center;
    font-size: 30px;
    line-height: 80px;
    color: var(--white);
    border-radius: 50px;
    margin: 0 auto;
    margin-bottom: 15px;
    box-shadow: inset 0 0 15px #bb96e9, 0 6px 15px #481e9c78;
}

.gn_featuer_wrap .gn_fetaure_item .item_title h3 {
    font-family: var(--font);
    color: var(--black);
    font-size: 22px;
    margin-bottom: 8px;
}

.gn_featuer_wrap .gn_fetaure_item .item_title .item_cont p {
    font-family: var(--font);
    color: var(--black);
    font-size: 15px;
}

/**/

#easySections {
    padding: 5rem 0rem;
    position: relative;
}

.easy_wrap {
    position: relative;
    border-radius: 12px;
}

.easy_bg_blur {
    overflow: hidden;
}

.easy_wrap .easy_bg_blur {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -2;
    border-radius: 20px;
    background: #dbdada;
    overflow: hidden;
}

.easy_bg_blur .blur_ball {
    position: absolute;
    z-index: 8;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    bottom: -60px;
    right: -60px;
    background: linear-gradient(to bottom right, #ff3232 20%, #2b0fe4);
    opacity: 1.1;
    filter: blur(20px);
}

.bg_ball {
    position: absolute;
    z-index: -1;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    bottom: -60px;
    right: -60px;
    background: linear-gradient(to bottom right, #ff3232 20%, #2b0fe4);
    opacity: 1;
    z-index: -170;
    box-shadow: inset 0 0 20px #e1e1dd;
}

.easy_wrap .easy_inner_wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding: 3rem;
    align-items: center;
}

.easy_title h4 {
    font-family: var(--font);
    font-size: 25px;
    color: var(--black);
    font-weight: 800;
}

.easy_title h2 {
    font-family: var(--font);
    font-size: 40px;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 800;
}

.easy_title p {
    font-family: var(--font);
    color: var(--black);
    font-size: 16px;
}

.easy_check_wrap {
    margin-top: 8px;
}

.easy_check_wrap .easy_check_item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.easy_check_wrap .easy_check_item i {
    font-size: 18px;
    margin-right: 8px;
    color: #0d6efd;
}

.easy_check_wrap .easy_check_item p {
    font-family: var(--font);
    color: var(--black);
    font-size: 16px;
}

.easy_right_img_wrap {
    width: 70%;
    overflow: hidden;
    margin: 0 auto;
    text-align: right;
}

/* Testimonials Sections */

#testimonialsSections {
    padding: 3rem 0rem;
}

.testimonial_title {
    text-align: center;
}

.testimonial_title h2 {
    font-family: var(--font);
    color: var(--black);
    font-size: 30px;
    margin-bottom: 5px;
    font-weight: 800;
}

.testimonial_title p {
    font-family: var(--font);
    color: var(--black);
    font-size: 16px;
}

/*
  Lets get started sec
  */

.letGetStarted .bg_ball {
    top: -60px !important;
    left: -60px !important;
}

.letGetStarted .easy_bg_blur .blur_ball {
    top: -60px;
    left: -60px;
}

.let_start_wrap {
    display: flex;
    padding: 2rem 1rem;
    align-items: center;
    min-height: 500px;
}

.let_start_wrap .middle_start {
    width: 60%;
}

.let_start_wrap .let_start_wrap {
    width: 20%;
}

.let_start_wrap .right_start {
    width: 20%;
}

.let_start_wrap .middle_start .lets_start_cont {
    text-align: center;
}

.left_start .social_icon_warpers img {
    position: relative;
}

.left_start .social_icon_warpers img:first-child {
    top: -150px;
    left: 120px;
}

.social_icon_warpers img:last-child {
    top: 150px;
    left: -60px;
}

.social_icon_warpers2 img {
    position: relative;
}

.social_icon_warpers2 img:first-child {
    top: -150px;
    right: -40px;
}

.lets_start_cont h1 {
    font-family: var(--font);
    font-size: 35px;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 800;
}

.social_icon_warpers2 img:last-child {
    top: 150px;
    right: 150px;
}

/* Testimonials Card */

#testimonial {
    padding: 4rem 0rem;
    position: relative;
}

.testimonial_bg_blur {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(100px);
    z-index: -20;
}

.testimonial_bg_blur .blur_ball {
    position: absolute;
    width: 400px;
    height: 400px;
    left: -200px;
    background-image: linear-gradient(to bottom right, #ff3232 20%, #2b0fe4);
    border-radius: 50px;
}

.testimonial_item {
    position: relative;
    background: rgba(236, 227, 227, 0.60);
    border-radius: 10px;
    width: 95%;
    margin: 0 auto;
    z-index: -10;
    backdrop-filter: blur(5px);
}

.item_yellow {
    position: absolute;
    width: 40px;
    height: 60px;
    background: #ffa713;
    bottom: 0;
    left: 6%;
    z-index: -1;
}

.item_yellow2 {
    position: absolute;
    width: 40px;
    height: 80px;
    background: #ffa713;
    top: 0;
    right: 6%;
    z-index: -1;
}

.testi_item_wrap {
    display: flex;
    padding: 1.5rem;
    align-items: center;
}

.testi_item_wrap .testi_left .user_img {
    width: 150px;
    height: auto;
    margin: 0;
    margin-right: 15px;
}

.testi_item_wrap .testi_left .user_img img {
    width: 100%;
}

.user_info .testi_username {
    margin-bottom: 5px;
}

.user_info .testi_username h3 {
    font-family: var(--font);
    color: var(--black);
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.user_info .testi_username p {
    font-family: var(--font);
    color: var(--black);
    font-size: 14px;
}

.user_info .ratings {
    margin-bottom: 10px;
}

.user_info .ratings .rattings_item {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #00b67a;
    margin-right: 2px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

.user_info .ratings .rattings_item i {
    color: #fff;
    font-size: 20px;
    z-index: 99;
}

/* footer inner wrap */

footer {
    min-height: 300px;
    display: flex;
    align-items: flex-start;
}

.footer_inner_wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-column-gap: 45px;
}

.fo_deef_link ul {
    margin-top: 10px;
}

.fo_deef_link ul li {
    list-style-type: none;
}

.fo_deef_link h3,
.fo_contact h3 {
    font-family: var(--font);
    color: #000;
    font-size: 22px;
}

.fo_deef_link a {
    display: block;
    color: #000;
    font-size: 18px;
    margin-bottom: 5px;
    text-decoration: none;
}

.login_wraper {
    background: #ffffff85;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #ddd;
    width: 95%;
    margin: 0 auto;
}

#loginForm h3 {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

#loginForm label {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

#loginForm .form-control {
    padding: 10px 15px;
}

@media (max-width: 1150px) {
    .sign_up_wrap {
        width: 75%;
    }
    .sign_up_wrap {
        padding: 2rem 0rem;
    }
    .signup_field {
        width: 90%;
    }
    .top_feature_wrap {
        grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    }
}

@media (max-width: 1080px) {
    .sign_up_wrap {
        width: 75%;
    }
    .signup_field {
        width: 90%;
    }
    .sign_up_wrap {
        padding: 3rem 0rem;
    }
    .sign_up_wrap .signup_title_wrap h2 {
        font-size: 25px;
    }
    .sign_up_wrap .signup_title_wrap p {
        font-size: 14px;
    }
    .top_feature_wrap {
        grid-column-gap: 1.5rem;
    }
    .top_feature_item .top_feature_item_img img {
        width: 150px;
        height: auto;
    }
}

@media (max-width: 991px) {
    .nav_menu {
        display: none;
    }
    .header {
        min-height: 60vh;
    }
    .mob_menu {
        display: block;
        position: absolute;
        right: 10%;
    }
    .menu_btn {
        font-size: 25px;
        padding: 8px 15px;
        border: none;
        background: var(--btn-primary);
        color: var(--white);
        border-radius: 5px;
        cursor: pointer;
    }
    .mob_menu_shower.show {
        width: 40%;
    }
    .hero_wraper .hero_left .hero_content .small_title h3 {
        font-size: 15px;
    }
    .hero_wraper .hero_left .hero_content .hero_title h1 {
        font-size: 30px;
    }
    .hero_wraper .hero_left .hero_content .hero_dsc p {
        font-size: 15px;
    }
    .btn_primary {
        font-size: 15px;
        color: #fff;
    }
    .btn_secondary {
        font-size: 15px;
    }
    .hero_cta .btn_hero {
        width: 45%;
        padding-left: 0px;
        padding-right: 0px;
    }
    .sign_up_wrap {
        width: 85%;
    }
    .sign_up_wrap {
        padding: 2rem 0rem;
    }
    .top_feature_item:hover .item_bg_ball {
        width: 90%;
        height: 80%;
    }
    .counter_wrap {
        grid-template-columns: repeat(auto-fit, minmax(47%, 1fr));
    }
}

@media (max-width: 768px) {
    .top_feature_wrap {
        grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    }
    .top_feature_item {
        padding: 2rem 1rem;
    }
    .top_feature_item .top_feature_item_img img {
        width: 100px;
        height: auto;
    }
    .best_wraper {
        flex-direction: column !important;
    }
    .best_wraper .best_left {
        width: 100%;
    }
    .best_wraper .best_right {
        width: 100%;
    }
    .best_cont {
        text-align: center;
    }
    .best_cont .best_top_small h3 {
        font-size: 18px;
        text-align: center;
    }
    .best_cont h2 {
        font-size: 30px;
    }
    .best_cont p {
        font-size: 14px;
    }
    .header {
        background-position: left;
    }
    .login_wraper {
        margin-top: 15px;
    }
}

@media (max-width: 550px) {
    .container_custom {
        width: 95%;
    }
    .mob_menu_shower.show {
        width: 80%;
    }
    #hero .hero_wraper {
        flex-direction: column;
    }
    #hero .hero_wraper .hero_left {
        width: 100%;
    }
    #hero .hero_wraper .hero_right {
        width: 100%;
    }
    .hero_wraper .hero_left .hero_content .small_title h3 {
        font-size: 14px;
        text-align: center;
        width: 100%;
    }
    .hero_wraper .hero_left .hero_content .hero_title h1 {
        text-align: center;
        font-size: 30px;
    }
    .hero_wraper .hero_left .hero_content .hero_dsc p {
        text-align: center;
        font-size: 14px;
    }
    .btn_primary {
        font-size: 14px;
    }
    .btn_secondary {
        font-size: 14px;
    }
    .btn_hero {
        width: 45%;
        padding-right: 0px;
        padding-left: 0px;
    }
    .hero_content {
        margin-top: 5rem;
    }
    .banner_bg .color_ball2 {
        top: 150px;
        right: 0;
    }
    .sign_up_wrap {
        width: 95%;
        min-width: 95%;
    }
    .counter_wrap {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    .counter {
        margin-top: 0rem;
    }
}

@media (max-width: 480px) {
    .top_feature_wrap {
        grid-template-columns: repeat(auto-fit, minmax(95%, 1fr));
    }
    .top_feature_item .top_feature_item_img img {
        width: 60px;
        height: auto;
    }
    .top_feature_item .top_feature_item_cont {
        margin-top: 5px;
        padding: 0.5rem 0rem;
        font-size: 16px;
    }
    .item_bg_ball {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 550px) {
    .login_group {
        height: 60px;
    }
    .login_input_wrap {
        flex-direction: column;
    }
    .login_input_wrap .login_left_wrap {
        width: 100%;
        flex-direction: column;
        gap: 0;
    }
    .login_input_wrap .login_left_wrap .login_group {
        width: 100%;
    }
    .login_box_wrapper {
        padding: 1rem;
    }
    .login_input_wrap .login_right_wrap {
        width: 100%;
        margin-top: 8px;
    }
    .login_group .login_input_def {
        height: 50px;
        padding-left: 50px;
        font-size: 16px;
    }
    .login_icon {
        width: 40px;
        height: 40px;
    }
    .btn_login {
        height: 50px;
    }
    .login_ball4,
    .login_ball2 {
        left: 0;
    }
    .login_ball1,
    .login_ball3 {
        right: 0;
    }
    .other_link {
        margin-top: 15px;
        text-align: center;
    }
    .social_media_btn_wrap {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        grid-gap: 15px;
    }
    .social_media_wrap .social_title_wrap h4 {
        font-size: 18px;
    }
    .social_media_wrap .social_title_wrap h2 {
        font-size: 24px;
    }
    .social_media_wrap .social_title_wrap p {
        font-size: 14px;
    }
    .tabcontent {
        display: flex;
        flex-direction: column;
    }
    .tabcontent .tab_cont_left {
        text-align: center;
    }
    .tabcontent .tab_cont_left .tab_cont {
        text-align: center;
        font-size: 14px;
    }
    .tabcontent .tab_cont_left .tab_title h3 {
        font-size: 22px;
        line-height: 1.2;
    }
    .total_check_wrap {
        display: flex;
        flex-direction: column;
    }
    .total_check_wrap .tab_check_wrap .check_mar {
        border: 1px solid var(--red);
        font-size: 14px;
    }
    .tabcontent .tab_cont_right {
        text-align: center;
        margin-top: 20px;
    }
    .gn_featuer_wrap {
        grid-template-columns: 1fr;
    }
    .tabcontent .tab_cont_right .tab_img img {
        width: 100%;
    }
    .gn_featuer_wrap .gn_fetaure_item {
        padding: 1rem;
    }
    .gn_featuer_wrap .gn_fetaure_item .item_title h3 {
        font-size: 20px;
    }
    .gn_fetaure_item .item_cont p {
        font-size: 14px;
    }
    .easy_wrap .easy_inner_wrap {
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
    }
    .easy_wrap .easy_title h4 {
        font-size: 18px;
        text-align: center;
    }
    .easy_wrap .easy_title h2 {
        font-size: 22px;
        text-align: center;
    }
    .easy_wrap .easy_title p {
        font-size: 14px;
    }
    .easy_check_wrap .easy_check_item i,
    .easy_check_wrap .easy_check_item {
        font-size: 14px;
    }
    .easy_right_img_wrap img {
        width: 100%;
    }
    .bg_ball,
    .easy_bg_blur .blur_ball {
        right: 0;
    }
    .testimonial_title h2 {
        font-size: 22px;
        line-height: 1.2;
    }
    .testimonial_title p {
        font-size: 14px;
    }
    .testi_item_wrap {
        flex-direction: column;
    }
    .item_yellow2 {
        right: 45%;
    }
    .testi_right {
        text-align: center;
    }
    .user_info .testi_username h3 {
        font-size: 20px;
    }
    .testi_des p {
        font-size: 14px;
    }
    .user_info .ratings .rattings_item {
        width: 30px;
        height: 30px;
        line-height: 30px;
        padding: 0;
    }
    .user_info .ratings .rattings_item i {
        font-size: 15px;
    }
    .let_start_wrap {
        flex-direction: column;
    }
    .let_start_wrap .middle_start {
        width: 100%;
    }
    .let_start_wrap {
        max-height: 250px;
    }
    .left_start .social_icon_warpers img:first-child {
        top: 0;
        left: 0%;
    }
    .social_icon_warpers img:last-child {
        top: 0;
        left: 0%;
    }
    .social_icon_warpers2 img:first-child {
        top: 0;
        right: 0;
    }
    .social_icon_warpers2 img:last-child {
        top: 0px;
        right: 0%;
    }
    .let_start_wrap .right_start {
        margin-top: 20px;
        width: 100%;
    }
    .let_start_wrap .left_start {
        margin-bottom: 20px;
        width: 100%;
    }
    .social_icon_warpers {
        display: flex;
        justify-content: space-between;
    }
    .social_icon_warpers2 {
        display: flex;
        justify-content: space-between;
    }
}

/*
 NEW CODES AFTER UPLOAD 
*/

.v2-footer {
    background: var(--bg-darkmode);
    padding: 5rem 0;
}

.footer_txt {
    color: #fff;
}

.social_media_links {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 25px;
    margin-top: 20px;
}

.social_media_links .social_media_item {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 48px;
    background: #36364e;
    border-radius: 10px;
    color: var(--white);
    transition: 0.5s ease-in-out;
    text-decoration: none;
}

.social_media_links .social_media_item:hover {
    background: #0d6efd;
}

.footer_menu_title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.quick_Link .footer_link {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    padding: 3px 0px;
    transition: 0.5s ease-in-out;
}

.quick_Link .footer_link:hover {
    transform: translateX(10px);
}