* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 100px;
    /* Adjust this to your navbar height */
}

:root {
    --primary-color: #05c191;
    --bs-primary: #05c191;
    --bs-primary-rgb: 5, 193, 145;
    --primary-gradient: linear-gradient(102deg, #07e2aa 39.35%, #05c191 70.94%);
    --black: #232323;
    --paragraph-black: #5a5a5a;
    --dark-black: #12171e;
    --white: #ffffff;
    --white-border: #e3e1e1;
    --text-font: "Inter", serif;
    --title-font: "Switzer", sans-serif;
    --btn-border-color: #04d9a2;
    --primary-color-deep: #03a47b;

    /* Dashboard */
    --sidebar-color: #1c1f36;
    --header-bg: #1c1f36;
    --bg-redial: radial-gradient(#141627, #1c1f36);
    /* --bs-body-bg: #0a0a0a; */
    --bs-dropdown-border-color: #0a0a0a;
    --form-input-bg: #111322;
    --black-pure: #000000;
    --card-bg: #1c1f36;
    --card-border: #5c5c5c;
    --footer-bg: #171717;
    --dark-body-bg: #141627;
    --dark-content-bg: #1c1f36;
    --boder-color: #eaeaea;
}

body {
    font-family: var(--text-font);
    font-size: 16px;
    color: var(--paragraph-black);
    line-height: 1.4;
    background: #f5f5f7;
}

body.auth_body {
    background: #141627;
    --bs-body-bg: #141627;
}

body.auth_body.daymode {
    background: #f2f2f2;
}

main {
    min-height: 450px;
    overflow-x: hidden;
}

.hidden {
    display: none;
}

.d-none-desk {
    display: none !important;
}

/*
  *
  *
  *
  *
  ===========================
      GLOBAL CSS
  ===========================
  *
  *
  */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font);
}

a,
p,
span,
div,
section {
    font-family: var(--text-font);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

p {
    font-family: var(--text-font);
    color: var(--paragraph-black);
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
}

.top_title_wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.top_title_wrapper .top_title {
    font-family: var(--title-font);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--black);
}

.top_title_wrapper p {
    width: 75%;
    margin: 0 auto;
    font-size: 16px;
    color: var(--paragraph-black);
    line-height: 1.4;
    margin-bottom: 15px;
}

.top_title_wrapper .custom_devider {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.top_title_wrapper .custom_devider .smaller_circle,
.top_title_wrapper .custom_devider .mid_circle,
.top_title_wrapper .custom_devider .icon_circle {
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0px 0px 8px #d2d2d2;
}

.top_title_wrapper .custom_devider .smaller_circle {
    width: 25px;
    min-width: 25px;
    height: 25px;
}

.top_title_wrapper .custom_devider .mid_circle {
    width: 35px;
    min-width: 35px;
    height: 35px;
}

.top_title_wrapper .custom_devider .icon_circle {
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    line-height: 0;
    color: var(--primary-color);
}

.section_spacing {
    padding: 80px 0px;
}

.link {
    color: var(--primary-color);
}

.xp_card {
    border-color: var(--white-border);
    border-radius: 15px;
    box-shadow: 0 0 14px 0 rgba(219, 219, 219, 0.5);
    height: 100%;
    transition: 0.8s ease;
    background: var(--white);
}

.xp_card:hover {
    transform: scale(1.03);
}

.xp_card .icon {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.xp_card h3 {
    color: var(--black);
    font-family: var(--title-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.card.xp_card.flex_card .card-body {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    padding: 20px;
}

.card.xp_card.flex_card .card-body p {
    margin-bottom: 0;
}

.card.xp_card.flex_card .content {
    width: calc(100% - 100px);
}

.card.xp_card.flex_card .icon {
    margin-bottom: 0;
}

.rounded_section {
    border-radius: 30px;
}

a.btn.btn-sm {
    padding: 5px 15px;
    font-size: 14px;
}

.def_title_wrap h2 {
    font-family: var(--title-font);
    font-size: 38px;
    color: var(--black);
    line-height: 1.1;
    font-weight: 700;
}

.def_title_wrap h3 {
    font-family: var(--title-font);
    font-size: 28px;
    color: var(--black);
    line-height: 1.1;
    font-weight: 700;
}

/* button */

.btn-primary {
    font-family: var(--title-font);
    font-size: 18px;
    color: var(--white);
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 50px;
    background: var(--primary-color);
    border: 1px solid var(--btn-border-color);
    border-radius: 50px;
    transition: 0.5s ease;
}

.btn-primary.btn_has_icon {
    gap: 5px;
}

.btn-primary.btn_has_icon .redir_icon {
    transform: rotate(180deg);
}

.btn-primary .icon {
    line-height: 0;
    font-size: 26px;
}

.btn-primary:hover {
    background: var(--primary-color-deep);
    border-color: var(--primary-color-deep);
    transform: scale(1.03);
}

.btn-primary:active,
.btn-primary:focus {
    background: var(--primary-color-deep) !important;
    border: 0 !important;
}

.def_sec {
    padding: 80px 0px;
}

/* END Global CSS*/

.faq_accordion .accordion-button::after {
    background: none !important;
    display: none;
}

.faq_accordion .acc_btn_content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.faq_accordion .acc_btn_content .text {
    font-family: var(--text-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
}

.faq_accordion .acc_btn_content .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    width: 35px;
    min-width: 35px;
    height: 35px;
    border-radius: 50px;
    font-size: 25px;
    color: var(--white);
    background: var(--primary-color);
}

.faq_accordion .accordion-button .acc_btn_content .icon .icon_minus {
    display: none;
}

.faq_accordion .accordion-button:not(.collapsed) .acc_btn_content .icon .icon_minus {
    display: block;
}

.faq_accordion .accordion-button:not(.collapsed) .acc_btn_content .icon .icon_plus {
    display: none;
}

.faq_accordion .accordion-item {
    margin-bottom: 14px;
    border: 0 !important;
    background: transparent;
}

.faq_accordion .accordion-item .accordion-button {
    padding: 10px 20px;
    border-radius: 50px 50px !important;
    box-shadow: none;
    background: var(--white);
}

.faq_accordion .accordion-button:not(.collapsed) {
    background: #05c191;
    color: var(--white);
    border-radius: 10px 10px 0px 0px !important;
}

.faq_accordion .accordion-button:not(.collapsed) .icon {
    background: var(--white);
    color: var(--primary-color);
}

.faq_accordion .accordion-body {
    background: var(--white);
}

/* Start: Navbar CSS */

.home_nav {
    background: var(--white);
    padding: 10px 0px;
}

.home_nav .nav-item .nav-link {
    font-family: var(--text-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    transition: 0.5s ease;
}

.home_nav .nav-item .nav-link:hover,
.home_nav .nav-item .nav-link.active,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--primary-color);
}

.home_nav .nav_logo img {
    width: 250px;
}

.signup_btn_wrap {
    display: flex;
    gap: 8px;
}

.signup_btn_wrap .nav_signup_btn {
    font-size: 16px;
    color: var(--white);
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 5px 25px;
    border-radius: 50px;
    border: 1.5px solid var(--primary-color);
    cursor: pointer;
    transition: 0.5s ease;
}

.signup_btn_wrap .nav_signup_btn.btn_outline {
    background: transparent;
    color: var(--primary-color);
}

.signup_btn_wrap .nav_signup_btn.btn_outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.signup_btn_wrap .nav_signup_btn:hover {
    transform: scale(1.05);
}

/* End: Navbar CSS*/

/* START: Footer CSS */

footer {
    background: var(--white);
    padding: 50px 0px;
}

footer a {
    color: var(--black);
}

.footer_logo img {
    width: 280px;
    margin-bottom: 20px;
}

.foo_info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.foo_info .info_item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.foo_info .info_item .icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    line-height: 0;
    background: #ededed;
    color: var(--primary-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: 0.5s ease;
}

.foo_info .info_item .text {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    transition: 0.5s ease;
}

.foo_info .info_item:hover .text {
    color: var(--primary-color);
}

.foo_info .info_item:hover .icon {
    background: var(--primary-color);
    color: var(--white);
}

.footer_menu_wrap .menu_title {
    font-family: var(--text-font);
    font-size: 24px;
    color: var(--black);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.footer_menu_wrap .footer_menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer_menu_wrap .footer_menu li a {
    display: block;
    font-family: var(--text-font);
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    transition: 0.5s ease;
}

.footer_menu_wrap .footer_menu li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer_bottom .footer_line {
    border-color: var(--primary-color);
    border-width: 2px;
}

.footer_bottom p {
    font-family: var(--text-font);
    font-size: 14px;
    color: var(--paragraph-black);
}

/* END: Footer CSS */

/* START: Terms/privacy/refund page css */
#page_header {
    background: linear-gradient(rgba(5, 193, 145, 0.75), rgba(5, 193, 145, 0.75)),
        url(https://cdn.getmyfollow.com/img/page-header-bg.webp),
        linear-gradient(#fff, #fff);
    padding: 60px 0px;
}

#page_header .page_header_content {
    text-align: center;
    color: var(--black);
}

#page_header .page_header_content h1 {
    font-family: var(--title-font);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

#page_header .page_header_content p {
    font-family: var(--text-font);
    font-size: 16px;
    font-weight: 400;
}

#page_header .page_header_content p a {
    color: var(--black) !important;
}

#page_header .page_header_content h4 {
    font-family: var(--text-font);
    font-weight: 700;
    font-size: 18px;
}

.terms_wraper {
    margin: 50px 0px;
}

.terms_wraper .terms_item h2 {
    font-family: var(--text-font);
    font-size: 22px;
    color: var(--black);
    line-height: 1.2;
    font-weight: 700;
}

.auth_body .terms_wraper .terms_item h2 {
    color: var(--white);
}

.auth_body.daymode .terms_wraper .terms_item h2 {
    color: var(--black);
}

.terms_wraper .terms_item p {
    font-size: 16px;
    color: var(--paragraph-black);
}

.auth_body .terms_wraper .terms_item ul li,
.auth_body .terms_wraper .terms_item p {
    color: var(--white);
}

.auth_body.daymode .terms_wraper .terms_item ul li,
.auth_body.daymode .terms_wraper .terms_item p {
    color: var(--paragraph-black);
}

#page_header .page_h_effect {
    width: 150px;
    position: absolute;
}

#page_header.has_effect {
    padding: 100px 0px;
}

#page_header.has_effect .container {
    position: relative;
}

#page_header .page_h_effect.effect_left {
    top: -70px;
    left: -30px;
}

.page_h_effect.effect_left.circle_rotate_eff {
    transform: rotate(45deg);
}

#page_header .page_h_effect.effect_right {
    right: -70px;
    bottom: -60px;
}

/* END: Terms/privacy/refund page css */

/* Sign In Page CSS */

/* Hero Sections */
#hero {
    background: url(https://storage.perfectcdn.com/28j8lg/j311izeez82qi6lh.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0px;
}

.video_sections {
    padding: 70px 0px;
}

.hero_content_wrap {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero_content h1 {
    font-family: var(--title-font);
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 110%;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-family: var(--text-font);
    color: var(--black);
    font-size: 18px;
    font-weight: normal;
}

.no_authform .has_icon {
    position: relative;
}

.no_authform .has_icon .icon {
    position: absolute;
    font-size: 34px;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.no_authform .has_icon .form-control {
    height: 50px;
    outline: none;
    box-shadow: none !important;
    padding-left: 50px;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    border: 1px solid #e3e1e1;
}

.is_password .pwd_sh_btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 25px;
    color: var(--paragraph-black);
    line-height: 0;
    z-index: 1;
}

.is_password .pwd_sh_btn .icon_hide {
    display: none;
}

.is_password .pwd_sh_btn.actived .icon_show {
    display: none;
}

.is_password .pwd_sh_btn.actived .icon_hide {
    display: inline-block;
}

.no_authform .has_icon .form-control:focus {
    border-color: var(--primary-color);
}

.login_btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.google_auth_btn {
    background: none;
    border: none;
}

.create_an_acc {
    font-size: 18px;
}

/* Counter Sections */

.card_counter .counter_text .card_counter .counter_text .counter-heading {
    font-family: var(--text-font);
    font-size: 20px;
    font-weight: 700;
}

.card_counter .counter_text .counter-sub-heading {
    color: var(--black);
    font-size: 30px;
    font-weight: 700;
}

.counter_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.counter-heading {
    font-size: 1.25rem;
}

/* Best and Cheap */

#best_and_cheap {
    overflow: hidden;
}

#best_and_cheap .best_n_cheap_wraper {
    position: relative;
    background: var(--white);
    padding: 80px 50px;
    border-radius: 30px;
    border: 1px solid var(--white-border);
    box-shadow: 0 0 10px 0px rgba(219, 219, 219, 0.5);
}

#best_and_cheap .best_cheap_img {
    position: absolute;
    bottom: -50px;
    right: 50px;
    z-index: 0;
}

/*  About Us */

#about_us {
    position: relative;
    padding: 120px 0px;
}

.about_us_effect {
    pointer-events: none;
}

.about_us_effect .about-us-bg-effect {
    position: absolute;
    top: -150px;
    right: 0;
    z-index: -1;
}

.follow_us_wrap h4 {
    text-align: center;
    font-family: var(--text-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
}

/* .about_us_effect .decorations_item_1 {
    position: absolute;
    width: 300px;
    bottom: 100px;
    right: 0;
  } */

.about_us_effect .decorations_item_1 {
    position: absolute;
    width: 500px;
    bottom: -240px;
    right: -240px;
}

#services .card-header {
    background: #2b3a45;
}

.card.service_card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.service_card .card-header {
    padding: 20px 20px;
    background: var(--black);
    color: var(--white);
    justify-content: center;
    display: flex;
    border-radius: 20px 20px 0px 0px;
}

.service_card .nav-link.active {
    background: #bdffee;
}

.service_card .nav-link {
    border-radius: 50px;
    background: var(--white);
}

.service_card .nav-link .text {
    color: var(--black);
}

.card.service_card .card-header ul {
    gap: 10px;
}

.card.service_card .card-body {
    box-shadow: 0px 0px 44px 0px rgba(191, 191, 191, 0.25);
    padding: 40px;
}

#reachOut,
#payment {
    background: #fff;
}

#reachOut {
    position: relative;
    overflow: hidden;
}

#reachOut .reach_out_image img {
    width: 550px;
    position: absolute;
    bottom: 0px;
}

.def_title_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.def_title_wrap a {
    width: fit-content;
}

/* testimonials */

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.testimonialsSlide .swiper-button-next,
.testimonialsSlide .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    border: 1px solid var(--Primary, #05c191);
    transition: 0.3s ease;
}

.testimonialsSlide .swiper-button-next:hover,
.testimonialsSlide .swiper-button-prev:hover {
    background: var(--bs-primary);
}

.testimonialsSlide .swiper-button-next:hover .icon,
.testimonialsSlide .swiper-button-prev:hover .icon {
    color: var(--white);
}

.testimonialsSlide .icon {
    line-height: 0;
    color: var(--primary-color);
    font-size: 30px;
    transition: 0.3s ease;
}

.testimonialsSlide .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.testimonialsSlide .testimonials_item {
    width: 80%;
    margin: 0 auto;
}

.testimonialsSlide span {
    color: var(--paragraph-black);
    font-family: var(--title-font);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 120%;
}

/* get in touch */

#getInTouch {
    background: linear-gradient(rgba(43, 58, 69, 0.85), rgba(43, 58, 69, 0.85)),
        url("https://cdn.getmyfollow.com/img/get_in_touch_bg.webp");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 100px 0;
}

#getInTouch.rounded_section {
    padding: 80px 20px;
}

#getInTouch .btn {
    margin: 0 auto;
}

.follow_us_wrap {
    margin-top: 15px;
    color: var(--white);
}

/* get in touch with Follow Us section start */
.follow_us_btn_group .follows_us_btn {
    padding: 7px 13px;
    color: var(--black);
    font-family: var(--text-font);
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: 0.5px solid var(--white);
    background: var(--White);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.5s ease;
}

.follow_us_btn_group .follows_us_btn:hover {
    transform: scale(1.03);
}

.follows_us_btn .icon {
    line-height: 0;
}

.follows_us_btn .icon img {
    width: 18px;
}

.follow_us_btn_group {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.get_in_bottom_space {
    margin-bottom: 80px;
}

/* get in touch with Follow Us section end */

/* END: Sign In Page CSS */

/* About Us Page */
#hero.about_us {
    padding: 80px 0px;
    background: url(https://cdn.getmyfollow.com/img/about-us-page-bg.webp);
    background-repeat: no-repeat;
    background-position: right top;
    overflow: hidden;
    position: relative;
}

#hero.about_us .hero_image img {
    width: 650px;
    position: absolute;
    bottom: 0px;
    right: 140px;
}

/* start api page style */

pre {
    background: var(--dark-black);
    margin: 20px 0;
    color: var(--white);
    border-radius: 18px;
    padding: 25px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 0;
}

/* end api page style */

/* start signup page style */
#signup {
    background-image: url(https://cdn.getmyfollow.com/img/sign_up_bg.webp);
    background-repeat: no-repeat;
    background-position: center -200px;
    background-size: cover;
    padding: 50px 0;
    position: relative;
}

#signup .signup_sides_images {
    position: absolute;
    width: 100%;
    height: 100vh;
}

#signup .signup_sides_images img {
    width: 300px;
}

#signup .signup_sides_images .left_image {
    position: absolute;
    left: 300px;
    top: calc(50% - 300px);
}

#signup .signup_sides_images .right_image {
    position: absolute;
    right: 300px;
    top: calc(50% - 150px);
}

.form-group label {
    margin-bottom: 7px;
}

.has_icon.is_password {
    position: relative;
}

.signup_box {
    padding: 30px 49px;
    margin: 35px 0 60px 0;
    border-radius: 24px;
    border: 1px solid var(--Primary);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 0px 20px 0px rgba(245, 245, 245, 0.25);
    backdrop-filter: blur(32px);
}

.signup_box h3 {
    color: var(--primary-color);
    text-align: center;
    font-family: var(--title-font);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 30px;
}

.or_devider {
    display: flex;
    align-items: center;
    text-align: center;
}

.or_devider .line {
    flex: 1;
    border-color: var(--paragraph-black);
}

.or_devider .text {
    padding: 0 10px;
    color: #000;
    font-weight: bold;
}

/* end signup page style */

/* Blog Page */

#blogs .card {
    border-radius: 15px;
    margin-bottom: 25px;
    overflow: hidden;
}

#blogs .card .card-title {
    font-size: 20px;
    font-weight: bold;
}

#blogs .card .card-text {
    font-size: 14px;
}

#blogPost .blog_title {
    font-family: var(--title-font);
    font-size: 45px;
    color: var(--black);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 15px;
}

#blogPost .blog_image img {
    width: 100%;
    margin-bottom: 15px;
}

#blogPost .blog_content {
    color: var(--paragraph-black);
    font-size: 16px;
    font-family: var(--text-font) !important;
}

/* Contact Us */
#hero.contact_us {
    background: url("https://cdn.getmyfollow.com/img/contact-us-bg-image.webp");
    background-color: var(--white);
    background-position: right top;
    padding: 50px 0px;
}

@media only screen and (max-width: 1600px) {

    #hero.about_us,
    #hero {
        padding: 70px 0px;
    }

    .hero_content h1,
    #page_header .page_header_content h1,
    .blog_title {
        font-size: 40px;
        margin-bottom: 5px;
    }

    .hero_content_wrap {
        gap: 10px;
    }

    .home_nav .nav-item .nav-link {
        font-size: 16px;
    }

    #signup .signup_sides_images .left_image {
        position: absolute;
        left: 130px;
        top: calc(50% - 150px);
    }

    #signup .signup_sides_images .right_image {
        position: absolute;
        right: 130px;
        top: calc(50% - 150px);
    }

    #hero.about_us .hero_image img {
        width: 550px;
        right: 70px;
    }

    #page_header .page_h_effect.effect_left {
        left: -30px;
    }

    #page_header .page_h_effect.effect_right {
        right: -30px;
        bottom: -70px;
    }
}

@media only screen and (max-width: 1199px) {
    .home_nav .nav_logo img {
        width: 200px;
    }

    .home_nav .nav-item .nav-link {
        font-size: 16px;
    }

    #best_and_cheap .best_cheap_img {
        bottom: -80px;
        right: 0;
        position: relative;
    }

    .about_us_effect .decorations_item_1 {
        position: absolute;
        width: 400px;
        bottom: -120px;
        right: -200px;
    }

    #reachOut .reach_out_image img {
        width: 500px;
    }

    #signup .signup_sides_images .left_image {
        position: absolute;
        left: 40px;
        top: calc(50% - 300px);
    }

    #signup .signup_sides_images .right_image {
        position: absolute;
        right: 40px;
        top: calc(50% - 150px);
    }

    #hero.about_us .hero_image img {
        width: 570px;
        right: 0px;
    }

    #page_header .page_h_effect {
        width: 130px;
    }
}

@media (max-width: 1024px) {
    #page_header .page_h_effect {
        width: 100px;
    }

    #page_header .page_h_effect.effect_left {
        left: -15px;
    }

    #page_header .page_h_effect.effect_right {
        right: -15px;
    }
}

/* Media query for max-width 991px */
@media only screen and (max-width: 991px) {
    body {
        font-size: 14px;
    }

    p,
    #page_header .page_header_content p,
    .terms_wraper .terms_item p,
    .table_col {
        font-size: 14px;
    }

    .top_title_wrapper .top_title {
        font-size: 36px;
    }

    .top_title_wrapper p {
        width: 100%;
        font-size: 14px;
    }

    .btn-primary {
        font-size: 16px;
        padding: 12px 40px;
    }

    .def_title_wrap {
        gap: 5px;
    }

    .def_title_wrap h2 {
        font-size: 36px;
    }

    .def_title_wrap h3 {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .faq_accordion .acc_btn_content .text {
        font-size: 16px;
    }

    .form-group label {
        font-size: 16px;
    }

    .hero_content h1,
    #page_header .page_header_content h1,
    .blog_title {
        font-size: 40px;
    }

    .create_an_acc {
        font-size: 16px;
    }

    .card_counter .counter_text .counter-sub-heading {
        font-size: 36px;
    }

    .card_counter .counter_text .counter-heading {
        font-size: 18px;
    }

    .footer_menu_wrap .menu_title {
        font-size: 20px;
    }

    .footer_menu_wrap .footer_menu li a {
        font-size: 14px;
    }

    .footer_bottom p {
        font-size: 12px;
    }

    .signup_box {
        padding: 20px 30px;
    }

    .hero_content_wrap {
        gap: 20px;
    }

    #about_us {
        padding: 80px 0;
    }

    .card.xp_card.flex_card .card-body {
        align-items: flex-start;
    }

    .video_sections,
    .def_sec,
    .section_spacing {
        padding: 40px 0px;
    }

    /* br {
      display: none;
    } */

    .hero_col {
        display: none;
    }

    #best_and_cheap .best_n_cheap_wraper {
        padding: 40px 40px;
    }

    .reach_out_image,
    .about_us_img {
        text-align: center;
    }

    .about_us_img img {
        width: 60%;
        margin: 0 auto;
    }

    .reach_out_image {
        position: relative;
        bottom: -80px;
    }

    #reachOut {
        overflow: hidden;
    }

    .reach_out_image img {
        width: 80%;
    }

    .about_us_effect .about-us-bg-effect {
        top: 170px;
    }

    #best_and_cheap .best_cheap_img {
        text-align: center;
        bottom: -70px;
    }

    .service_nav_pills {
        justify-content: center;
    }

    .card_counter .icon {
        margin-bottom: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card_counter .icon img {
        width: 80px;
    }

    .card.xp_card.flex_card .card-body {
        display: flex;
        flex-direction: column;
    }

    .card.xp_card.flex_card .content {
        width: 100%;
    }

    #reachOut .reach_out_image img {
        position: inherit;
    }

    #signup .signup_sides_images {
        display: none;
    }

    #hero.about_us .hero_image {
        text-align: center;
    }

    #hero.about_us .hero_image img {
        position: relative;
        width: 500px;
    }

    .signup_box h3 {
        font-size: 35px;
        margin-bottom: 20px;
    }

    .foo_info .info_item .text {
        font-size: 14px;
    }

    .foo_info .info_item .icon {
        width: 35px;
        min-width: 35px;
        height: 35px;
        font-size: 15px;
    }

    .footer_logo img {
        width: 200px;
        margin-bottom: 20px;
    }

    #page_header .page_h_effect {
        width: 100px;
    }

    .terms_wraper .terms_item h2 {
        font-size: 20px;
    }

    .follow_us_wrap h4,
    #blogs .card .card-title {
        font-size: 20px;
    }

    .follow_us_btn_group .follows_us_btn {
        font-size: 14px;
    }

    .offcanvas a.menu_btn.telegram {
        width: 30px !important;
    }
}

/* Media query for max-width 767px */
@media only screen and (max-width: 767px) {
    body {
        font-size: 12px;
    }

    p,
    #page_header .page_header_content p,
    .terms_wraper .terms_item p,
    .table_col {
        font-size: 12px;
    }

    .top_title_wrapper .top_title {
        font-size: 28px;
    }

    .top_title_wrapper p {
        font-size: 12px;
    }

    .btn-primary {
        font-size: 14px;
        padding: 10px 30px;
    }

    .def_title_wrap h2 {
        font-size: 28px;
    }

    .faq_accordion .acc_btn_content .text {
        font-size: 14px;
    }

    .form-group label {
        font-size: 14px;
    }

    .hero_content h1,
    #page_header .page_header_content h1,
    .blog_title {
        font-size: 32px;
    }

    .create_an_acc {
        font-size: 14px;
    }

    .card_counter .counter_text .counter-sub-heading {
        font-size: 28px;
    }

    .card_counter .counter_text .counter-heading {
        font-size: 16px;
    }

    .footer_menu_wrap .menu_title {
        font-size: 18px;
    }

    .footer_menu_wrap .footer_menu li a {
        font-size: 12px;
    }

    .footer_bottom p {
        font-size: 10px;
    }

    .signup_box {
        padding: 15px 20px;
    }

    .hero_content_wrap {
        gap: 15px;
    }

    .custom_table_wrapper .table_col {
        padding: 5px;
    }

    .home_nav .nav_logo img {
        width: 180px;
    }

    #best_and_cheap .best_n_cheap_wraper {
        padding: 40px 25px;
    }

    #about_us {
        padding: 40px 0;
    }

    .video_sections,
    .def_sec,
    .section_spacing {
        padding: 40px 0px;
    }

    .signup_box h3 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .foo_info .info_item .text {
        font-size: 12px;
    }

    .foo_info .info_item .icon {
        width: 30px;
        min-width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .footer_logo img {
        width: 180px;
    }

    #page_header .page_h_effect {
        width: 80px;
    }

    #page_header .page_h_effect.effect_left {
        left: -30px;
    }

    #page_header .page_h_effect.effect_right {
        right: -30px;
    }

    .terms_wraper .terms_item h2 {
        font-size: 18px;
    }

    .table_title h3 {
        font-size: 20px;
    }

    #page_header .page_header_content h4,
    .service_table_wrapper h4 {
        font-size: 16px;
    }

    .follow_us_wrap h4,
    #blogs .card .card-title {
        font-size: 18px;
    }

    .follow_us_btn_group .follows_us_btn {
        font-size: 12px;
    }
}

/* Mobile Devices */

@media only screen and (max-width: 550px) {
    #hero.about_us {
        padding: 50px 0px;
    }

    #hero {
        padding: 50px 0px;
        background-position: -100px;
    }

    .hero_col {
        text-align: center;
        display: inline-block;
    }

    #page_header .page_header_content h1,
    .page_header_content h1,
    .blog_title {
        font-size: 28px;
    }

    .top_title_wrapper .top_title,
    .def_title_wrap h2 {
        font-size: 26px;
    }

    .def_title_wrap {
        gap: 0px;
    }

    .video_sections,
    #getInTouch,
    .section_spacing,
    .def_sec {
        padding: 50px 0px;
    }

    .hero_content_wrap {
        gap: 5px;
    }

    .hero_content p,
    .hero_content h1,
    #page_header .page_header_content h1 {
        text-align: center;
    }

    .hero_image {
        text-align: center;
    }

    .hero_image img {
        width: 80%;
    }

    .def_title_wrap h3 {
        font-size: 18px;
    }

    .create_an_acc {
        text-align: center;
    }

    .btn-primary {
        font-size: 16px;
        padding: 10px 30px;
    }

    .login_btns {
        grid-template-columns: 1fr;
    }

    .card_counter .counter_text .counter-sub-heading {
        font-size: 24px;
    }

    .btn-primary .icon {
        font-size: 20px;
    }

    .no_authform .form-group.has_icon .icon {
        width: 40px;
        height: 45px;
        font-size: 22px;
    }

    .no_authform .form-group.has_icon .form-control {
        height: 45px;
        padding-left: 35px;
        font-size: 16px;
    }

    .about_us_effect .decorations_item_1 {
        position: absolute;
        width: 200px;
        bottom: -20px;
        right: -70px;
    }

    .card.service_card .card-body {
        padding: 20px;
    }

    .card.service_card .card-header ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .service_nav_pills .nav-item button {
        padding: 5px 8px;
    }

    .service_nav_pills .nav-item button .icon {
        display: inline-block;
        width: 18px;
    }

    .card_counter .counter_text .counter-heading {
        font-size: 14px;
    }

    .xp_card h3 {
        font-size: 18px;
    }

    .card.service_card .card-header ul li button {
        width: 100%;
    }

    .service_card .card-header {
        padding: 15px 10px;
    }

    .card.xp_card.flex_card .card-body {
        gap: 8px;
    }

    .reach_out_image {
        bottom: -50px;
    }

    .testimonialsSlide .testimonials_item {
        width: 100%;
    }

    .testimonialsSlide .swiper-button-next,
    .testimonialsSlide .swiper-button-prev {
        position: absolute;
        top: 70%;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .foo_info {
        gap: 5px;
        margin-bottom: 20px;
    }

    .footer_logo {
        text-align: center;
    }

    .footer_bottom p {
        font-size: 14px;
    }

    .faq_accordion .accordion-item {
        margin-bottom: 8px;
    }

    .payment_method {
        margin-top: 15px;
    }

    .xp_card .card-body .icon {
        max-width: 80px;
        height: 80px;
        margin-bottom: 5px;
    }

    .best_n_cheap_wraper .row .col-12:last-child {
        height: 200px;
    }

    #best_and_cheap .best_cheap_img {
        bottom: -20px;
    }

    .top_title_wrapper .custom_devider .smaller_circle {
        width: 18px;
        min-width: 18px;
        height: 18px;
    }

    .top_title_wrapper {
        margin-bottom: 25px;
    }

    .top_title_wrapper .custom_devider .mid_circle {
        width: 25px;
        height: 25px;
        min-width: 25px;
    }

    .top_title_wrapper .custom_devider .icon_circle {
        width: 40px;
        min-width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .top_title_wrapper .custom_devider {
        gap: 6px;
    }

    .about_us_effect .about-us-bg-effect {
        top: 410px;
    }

    #getInTouch.rounded_section {
        padding: 50px 10px;
        border-radius: 20px;
    }

    .signup_box h3 {
        font-size: 25px;
    }

    #page_header .page_h_effect {
        width: 60px;
    }

    #page_header .page_h_effect.effect_left {
        left: 30px;
    }

    #page_header .page_h_effect.effect_right {
        right: 30px;
    }

    .terms_wraper .terms_item h2 {
        font-size: 16px;
    }

    .table_title h3 {
        font-size: 18px;
    }

    #page_header .page_header_content h4,
    .service_table_wrapper h4 {
        font-size: 14px;
    }

    .follow_us_wrap h4,
    #blogs .card .card-title {
        font-size: 16px;
    }

    #blogs .card .card-text {
        font-size: 12px;
    }
}

/*
  ================================================================================
                  Dashboard CSS Start From Here
  ================================================================================
  */

#dashboard {
    transition: 0.5s ease;
}

#dashboard #sidebar {
    position: fixed;
    width: 300px;
    height: 100%;
    background-color: var(--sidebar-color);
    overflow: auto;
    z-index: 9;
    transition: 0.5s;
}

.dropdown-menu {
    max-height: 400px;
    overflow: auto;
}

/* width */
.dropdown-menu::-webkit-scrollbar,
.select2-dropdown .dropdown-menu::-webkit-scrollbar,
#dashboard #sidebar::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.dropdown-menu::-webkit-scrollbar-track,
.select2-dropdown .dropdown-menu::-webkit-scrollbar-track,
#dashboard #sidebar::-webkit-scrollbar-track {
    background: #393939;
}

/* Handle */
.dropdown-menu::-webkit-scrollbar-thumb,
.select2-dropdown .dropdown-menu::-webkit-scrollbar-thumb,
#dashboard #sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 50px;
}

/* Handle on hover */
.dropdown-menu::-webkit-scrollbar-thumb:hover,
.select2-dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover,
#dashboard #sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color-deep);
}

#dashboard #content {
    padding-left: 300px;
    transition: 0.5s;
}

#dashboard #content #header {
    position: fixed;
    background: var(--header-bg);
    top: 0;
    width: calc(100% - 300px);
    max-height: 65px;
    height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 2;
    transition: 0.5s;
}

#dashboard #content .auth {
    /* padding-left: 15px; */
    padding-top: 80px;
}

#dashboard #sidebar .sider_logo {
    display: block;
    text-align: center;
    padding: 15px 5px;
}

#dashboard #sidebar .sider_logo img {
    width: 180px;
    margin: 0 auto;
}

.sider_logo img.logo-color {
    display: none;
}

.daymode .sider_logo img.logo-white,
.daymode #dashboard #sidebar .sider_logo img.logo-white,
#dashboard #sidebar .sider_logo img.logo-color {
    display: none;
}

.daymode .sider_logo img.logo-color,
.daymode #dashboard #sidebar .sider_logo img.logo-color {
    display: block;
}

#dashboard .user_box {
    margin: 10px 25px;
    text-align: center;
    padding: 20px 15px;
    border-radius: 15px;
    border: 1px solid var(--primary-color);
    background: url(https://cdn.getmyfollow.com/img/user_bg_effect.png);
    background-color: #141627;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

#dashboard .user_status {
    position: absolute;
    width: 35px;
    right: 8px;
    top: 8px;
}

.daymode #dashboard .user_box {
    background-color: rgba(255, 129, 3, 0.13);
}

.daymode #dashboard .user_box h4 {
    color: var(--black);
}

#dashboard .user_box .balance_formet_wrapper h6 {
    font-weight: normal;
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 50px;
    background-color: #1e2139;
    color: var(--white);
    margin-bottom: 0px;
}

.daymode #dashboard .user_box .balance_formet_wrapper h6 {
    background-color: #ff7f00;
}

#dashboard .user_box .balance_formet_wrapper .icon {
    width: 23px;
    height: 23px;
    background: var(--primary-color);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.offcanvas-body .user_box .user_avatar,
#dashboard #sidebar .user_box .user_avatar {
    width: 60px;
    border-radius: 60px;
    margin: 0 auto;
    margin-bottom: 5px;
}

.avatar_images {
    border-radius: 500px;
}

#dashboard .user_box h4 {
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    color: var(--white);
}

.daymode #dashboard .user_box h4 {
    color: var(--black);
}

#dashboard #sidebar .sidebar_menu {
    list-style-type: none;
    padding: 0;
    margin: 10px 25px;
}

#dashboard #sidebar .sidebar_menu .menu_item {
    margin-bottom: 5px;
}

#dashboard #sidebar .sidebar_menu .menu_item .menu_link {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: start;
    padding: 5px 15px;
    color: var(--white);
    border-radius: 5px;
    transition: 0.8s ease;
}

#dashboard #sidebar .sidebar_menu .menu_item .menu_link:hover {
    transform: scale(1.03);
    color: var(--primary-color) !important;
}

#dashboard #sidebar .sidebar_menu .menu_item .menu_link:hover .icon {
    color: var(--primary-color) !important;
}

#dashboard #sidebar .sidebar_menu .menu_item .menu_link.active {
    background: var(--primary-color);
    border-bottom: none;
    color: var(--white) !important;
}

#dashboard #sidebar .sidebar_menu .menu_item .menu_link.active:hover {
    transform: scale(1);
    color: var(--white) !important;
}

#dashboard #sidebar .sidebar_menu .menu_item .menu_link.active:hover .icon {
    color: var(--white) !important;
}

#dashboard #sidebar .sidebar_menu .menu_item:last-child .menu_link {
    border-bottom: none;
}

#dashboard #sidebar .sidebar_menu .menu_item .menu_link .icon {
    font-size: 25px;
    line-height: 0;
}

#dashboard #sidebar .sidebar_menu .menu_item .menu_link .icon i {
    font-size: 20px;
}

#dashboard #sidebar .sidebar_menu .menu_item .menu_link .menu_text {
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 400;
}

#dashboard #content #header .user_access_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-color: var(--white);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    padding: 0px;
}

#dashboard #content #header .user_access_btn .user_avatar {
    width: 100%;
}

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

.user_menu_wrap .dropdown-item {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: start;
}

.user_menu_wrap .dropdown-item .icon {
    font-size: 20px;
    line-height: 0;
}

.user_menu_wrap .dropdown-item .text {
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 400;
}

#SidebarButton {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: none;
    border: none;
    box-shadow: none;
    color: var(--white);
    padding: 10px 10px;
    padding-left: 0px;
    cursor: pointer;
    line-height: 0;
}

#dashboard #content #header .header_left {
    display: flex;
    align-items: center;
    gap: 0px;
}

#dashboard #content #header .header_right {
    display: flex;
    align-items: center;
    gap: 10px;
}

#dashboard #content #header .header_right .menu_btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user_sidebar .currency_btn .currency_button,
#dashboard #content #header .currency_btn .currency_button {
    border-radius: 50px;
    padding: 5px 18px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    border-color: var(--card-border);
    font-size: 14px;
    line-height: 0;
}

#dashboard.activeSidebar #sidebar {
    transform: translateX(-300px);
}

#dashboard.activeSidebar #content {
    padding-left: 0px;
}

#dashboard.activeSidebar #content #header {
    width: 100%;
}

.card_auth_1 .card-body {
    background: var(--bg-redial);
}

.user_data_info {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 10px;
}

.user_data_info .settings_icon_btn {
    position: absolute;
    color: var(--primary-color);
    font-size: 24px;
    right: 10px;
}

.user_data_info .user_d_right {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.user_data_info .user_d_right .icon {
    width: 50px;
}

.user_data_info .user_d_right h4 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 3px;
}

.user_data_info .user_d_right h6 {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: normal;
    margin-bottom: 0px;
}

.user_data_info .user_d_left {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: start;
    border-right: 3px solid var(--primary-color);
    padding-right: 10px;
}

.user_data_info .user_d_left .icon {
    width: 50px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user_data_info .user_d_left .text h6 {
    font-family: var(--title-font);
    color: var(--white);
    font-size: 16px;
    margin-bottom: 3px;
}

.user_data_info .user_d_left .text h3 {
    font-family: var(--title-font);
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--white);
}

.user_data_info .user_d_right {
    padding-left: 15px;
}

.statics_card_inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.statics_card_inner .icon {
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 50px;
    background: #05c1911f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: var(--white);
}

.statics_card_inner .icon img {
    width: 45px;
}

.statics_card_inner .text h6 {
    font-family: var(--title-font);
    color: var(--white);
    font-size: 16px;
    margin-bottom: 3px;
}

.statics_card_inner .text h3 {
    font-family: var(--title-font);
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 0px;
}

.cat_filter_wrap {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px 20px;
}

.cat_filter_wrap .filter_item {
    display: flex;
    gap: 5px;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 8px 15px;
    border-radius: 8px;
}

.cat_filter_wrap .filter_item>* {
    pointer-events: none !important;
}

.cat_filter_wrap .filter_item.activeItem {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
}

.cat_filter_wrap .filter_item .icons img {
    pointer-events: none;
    width: 25px;
    min-width: 25px;
    pointer-events: none;
}

.filter_item img {
    pointer-events: none;
}

.cat_filter_wrap .filter_item .text {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    pointer-events: none;
}

.card_auth_1 {
    border: none;
}

.card_auth_1 .card-header {
    /* background: url('https://cdn.getmyfollow.com/img/white-wave-lines.png'); */
    background: linear-gradient(45deg, #05c191, #0a785c);
    border-radius: 10px 10px 0px 0px;
    height: 75px;
    background-repeat: no-repeat;
    background-position: center right;
    max-height: 75px;
}

.card_auth_1 .card-header h3 {
    font-family: var(--title-font);
    font-size: 22px;
    margin-bottom: 0px;
    font-weight: 600;
    color: var(--white);
}

.card_auth_1 .card-header p {
    font-family: var(--title-font);
    font-size: 14px;
    margin-bottom: 0px;
    font-weight: 400;
    color: var(--white);
}

.card_auth_1 .card-body {
    border: 1px solid var(--card-border);
    border-top: 0px;
    border-radius: 0 0 10px 10px;
}

.card_auth_1 .card-header .card_text h4 {
    font-family: var(--title-font);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 0px;
}

.header_buttons .nav-item button {
    background: var(--white);
}

.header_buttons .nav-pills .nav-item .nav-link {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    gap: 2px;
    border-radius: 8px;
}

.header_buttons .nav-pills .nav-item .icon {
    color: var(--black);
    font-size: 22px;
    line-height: 0;
}

.header_buttons .nav-pills .nav-item .text {
    font-size: 14px;
    font-weight: bold;
    color: var(--black);
    /* display: none; */
}

.header_buttons .nav-pills .nav-item .nav-link.active .text {
    display: block;
}

.header_buttons .nav-pills .nav-item .nav-link.active {
    background: var(--white);
}

.header_buttons .nav-pills {
    gap: 5px;
}

.service_descriptions label,
.card-body .lebel {
    font-family: var(--title-font);
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--white);
}

.example_link .example_set {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0a0a0a;
    padding: 10px 18px;
    border-radius: 10px;
    color: var(--white);
}

.service_infos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service_descriptions #service_descriptions,
.infos_item .info_box {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--form-input-bg);
    padding: 8px 10px;
    border-radius: 10px;
    color: var(--white);
    overflow: auto;
}

.infos_item .info_box .text {
    font-size: 14px;
}

/* Day Night Mode btn */
.day_night_btn {
    position: relative;
    display: flex;
    font-size: 22px;
    line-height: 0;
    height: 32px;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    background: var(--dark-body-bg);
    padding: 6px 10px;
    border-radius: 50px;
    color: var(--white);
    border: 1px solid var(--card-border);
}

.day_night_btn .night_mode {
    color: var(--primary-color);
}

.daymode .day_night_btn .night_mode {
    color: var(--white);
}

.day_night_btn .active_circle {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50px;
    transform: translateX(26px);
    top: -5px;
    z-index: 0;
    transition: 0.8s ease;
}

.daymode .day_night_btn .active_circle {
    right: inherit;
    transform: translateX(-10px);
}

.day_night_btn .night_mode,
.day_night_btn .day_mode {
    position: relative;
    z-index: 2;
}

.card_header_2 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card_header_2 .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    font-size: 24px;
    border-radius: 5px;
    color: var(--black);
}

.card_header_2 .text {
    font-size: 18px;
    font-weight: bold;
    color: var(--white);
}

#api_page .example_response {
    font-family: var(--title-font);
    color: var(--white);
    font-weight: 400;
}

#api_page pre {
    background: #141414;
    border-radius: 15px;
    padding: 20px 20px;
    color: #fff;
}

#api_page .table-bordered> :not(caption)>*>* {
    background: transparent;
    color: var(--white);
}

.header_logo .sider_logo>img {
    width: 180px;
}

.header_logo .sider_logo .logo-color {
    display: none;
}

.auth .form-group {
    margin-bottom: 1rem !important;
}

.auth .form-control {
    background-color: var(--form-input-bg);
    border-color: var(--form-input-bg);
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 5px;
    outline: none !important;
    box-shadow: none !important;
}

.auth .form-control:read-only,
.form-control:disabled {
    border-color: var(--form-input-bg) !important;
    background-color: var(--form-input-bg) !important;
}

.daymode .auth .form-control:read-only,
.daymode .form-control:disabled {
    border-color: var(--primary-color-deep) !important;
    background-color: #ededed !important;
}

.daymode .auth .select2-selection.form-control:read-only,
.daymode .auth select.form-control:read-only {
    background-color: #e5fff8 !important;
}

.auth label {
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.select2-container .dropdown-menu>li>a {
    color: var(--white);
}

.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: var(--primary-color) !important;
}

.select2-container--default .select2-results__option[aria-selected="true"] .badge.badge-secondary {
    background: var(--black);
}

.select2-container .badge.badge-secondary {
    min-width: 30px;
    background: var(--primary-color);
    color: var(--white);
}

.select2-results__option {
    border-bottom: 1px solid var(--card-border);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #05c1912e;
}

.ticket_history .tickets_his_item {
    display: grid;
    grid-template-columns: 50px repeat(3, 1fr);
    background: var(--form-input-bg);
    gap: 15px;
    padding: 13px 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: 0.5s;
}

.ticket_history.paymentTable .tickets_his_item {
    grid-template-columns: 50px repeat(3, 1fr) !important;
}

.ticket_history .tickets_his_item.unread_item {
    animation: unreadEffect 3s infinite;
}

@keyframes unreadEffect {
    0% {
        border-color: transparent;
    }

    50% {
        border-color: var(--primary-color);
        background: #180b00;
    }

    100% {
        border-color: transparent;
    }
}

.ticket_history .tickets_his_item h5 {
    font-family: var(--title-font);
    font-size: 16px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0;
}

.ticket_history .tickets_his_sub h5 {
    color: var(--primary-color);
}

.ticket_history .tickets_his_item .tickets_his_id::before {
    content: "Id";
}

.ticket_history .tickets_his_item .tickets_his_sub::before {
    content: "Subject";
}

.ticket_history .tickets_his_item .tickets_his_status::before {
    content: "Status";
}

.ticket_history .tickets_his_item .tickets_his_lastUpdate::before {
    content: "Last Update";
}

.ticket_history .tickets_his_item .payment_methods_name::before {
    content: "Payment Methods";
}

.ticket_history .tickets_his_item .payment_amount::before {
    content: "Amount";
}

.ticket_history .tickets_his_item .payment_time::before {
    content: "Date";
}

.ticket_history .tickets_his_item .tickets_his_status .ticket_Pending {
    color: #00b9cb;
}

.ticket_history .tickets_his_item .tickets_his_status .ticket_Answered {
    color: #1dcb00;
}

.ticket_history .tickets_his_item .tickets_his_status .ticket_Closed {
    color: #ff0202;
}

.ticket_history .tickets_his_item .payment_methods_name::before,
.ticket_history .tickets_his_item .payment_amount::before,
.ticket_history .tickets_his_item .payment_time::before,
.ticket_history .tickets_his_item .tickets_his_id::before,
.ticket_history .tickets_his_item .tickets_his_sub::before,
.ticket_history .tickets_his_item .tickets_his_status::before,
.ticket_history .tickets_his_item .tickets_his_lastUpdate::before {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #ddd;
}

.ticket_history .tickets_his_item .payment_amount,
.ticket_history .tickets_his_item .tickets_his_status {
    text-align: center;
}

.addFundHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.btn.btn_history {
    font-family: var(--title-font);
    font-weight: 700;
    background: var(--white);
    color: var(--black);
}

/* Services modal Design */
.services_dsc_modal {
    border-radius: 22px;
    border: none;
    overflow: hidden;
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.modal__close .btn_modal_close {
    width: 40px;
    background: #ff2c2c;
    font-size: 18px;
    color: var(--white);
    border-radius: 50px;
    height: 40px;
    cursor: pointer;
}

.services_dsc_modal .service_header {
    background: var(--primary-color);
    background-repeat: no-repeat;
    background-position: right center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px 20px 0px 0px;
    padding: 10px 10px;
    min-height: auto;
    height: auto;
    color: var(--white);
}

.more_info_btn {
    width: 30px;
    height: 30px;
    display: flex;
    background: var(--primary-color);
    color: var(--white) !important;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
}

.service_header #service_name {
    display: block;
    font-family: var(--font-text);
    font-size: 20px;
    font-weight: 700;
    text-align: start;
    color: var(--text-white);
    margin-top: 10px;
}

.services_dsc_modal .services_body {
    padding: 20px 25px;
    background: var(--card-bg);
}

.services_body .other_info {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 25px;
}

.services_body .other_info .info_item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services_body .other_info .info_item .icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-white);
    font-size: 18px;
    border-radius: 50px;
    margin: 0 auto;
    line-height: 40px;
}

.services_body .other_info .info_item .text {
    font-family: var(--title-font);
    color: var(--white);
}

.services_body .other_info .info_item .text h4 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 5px;
}

.services_body .other_info .info_item .text>span {
    font-size: 16px;
    display: block;
}

.services_body #service_des {
    font-size: 16px;
    font-weight: var(--title-font);
    background: var(--bs-body-bg);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: var(--text-black);
}

.services_action {
    text-align: center;
}

.services_action .btn-block {
    min-width: 300px;
}

.orders__filter__btn .order__filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.orders__filter__btn .order__filters .btn__orders__filter {
    background: var(--card-bg);
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 10px;
    gap: 10px;
    border: none;
    border: 1px solid var(--card-border);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.13);
    color: var(--white);
}

.orders__filter__btn .order__filters .btn__orders__filter.active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.orders__filter__btn .order__filters .btn__orders__filter .icon {
    font-size: 23px;
    line-height: 0;
}

.orders__filter__btn .order__filters .btn__orders__filter .text {
    color: var(--white);
    font-family: var(--title-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.orders__filter__btn .order__filters .btn__orders__filter.active .text {
    color: var(--white);
}

.pagination {
    display: flex;
    gap: 5px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.pagination li a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    display: block;
    line-height: 40px;
    font-size: 18px;
    text-align: center;
    color: #fff;
    border-radius: 7px;
    transition: 0.5s;
}

.pagination li a:hover,
.pagination li.active a {
    background: var(--primary-color);
}

/* Order Page Table */

.subs__table,
.refill__table,
.subs__table,
.refill__table,
.order__table {
    margin-bottom: 50px;
    background: var(--bg-redial);
    border-radius: 15px;
}

.refill__table .refill_table_head,
.refill__table .refill_table_row,
.refill__table .refill_table_head,
.refill__table .refill_table_row,
.order__table .order_table_head,
.order__table .order_table_row {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    /* grid-template-columns: 4em 5em 3fr 6em 7em 6em 6em 17em 12em 1fr; */
    width: 100%;
    gap: 10px;
    text-align: left;
    /* margin-bottom: 20px; */
    border-bottom: 1px solid var(--card-border);
    /* background: var(--primary-color); */
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.03);
    padding: 15px;
    border-radius: 10px 10px 0px 0px;
}

.order__table .order_table_row:last-child,
.refill__table .refill_table_row:last-child,
.subs__table .order_table_row:last-child {
    border-bottom: none;
}

.subs__table .subs_table_head>div,
.refill__table .refill_table_head>div,
.order__table .order_table_head>div {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.subs__table .subs_table_row>div,
.refill__table .refill_table_row>div,
.order__table .order_table_row>div {
    font-size: 14px;
    color: var(--text-black);
    font-weight: normal;
}

.subs__table .subs_table_row .body__id>span,
.refill__table .refill_table_row .body__id>span,
.order__table .order_table_row .body__id>span {
    display: inline-flex;
    gap: 4px;
    font-size: 16px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 10px;
    cursor: pointer;
}

.order__table .order_table_head .head__link,
.order__table .order_table_row .body__link {
    width: 25em;
}

.refill__table .refill_table_row .body__link .link__order,
.order__table .order_table_row .body__link .link__order {
    display: inline;
    color: var(--white);
    transition: 0.5s ease;
}

.refill__table .refill_table_row .body__link .link__order:hover,
.order__table .order_table_row .body__link .link__order:hover {
    color: var(--primary-color);
}

.refill__table .refill_table_row .body__link .link__order>a,
.order__table .order_table_row .body__link .link__order>a {
    color: var(--text-black);
    text-decoration: underline;
    font-weight: 600;
    word-break: break-all;
}

.order__table .order_table_row .body__quantity,
.order__table .order_table_row .body__price {
    /* font-weight: 600; */
}

.order__table .order_table_head .head__price,
.order__table .order_table_row .body__price {
    text-align: center;
}

.order__table .order_table_head .head__services,
.order__table .order_table_row .body__services {
    width: 20em;
}

.order__table .order_table_head .head__status,
.order__table .order_table_row .body__status {
    width: 8em;
}

.order__table .order_table_row .body__quickaction>.dropdown>.btn-action {
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    color: var(--white);
    padding: 6px 15px;
}

.subs__table .subs_table_head .body__status>.status_capsule,
.subs__table .subs_table_row .body__status>.status_capsule,
.refill__table .refill_table_row .body__status>.status_capsule,
.order__table .order_table_row .body__status>.status_capsule {
    background: #6400ff;
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    text-align: center;
    min-height: 30px;
    justify-content: center;
}

.body__services {
    cursor: pointer;
    transition: 0.5s;
}

.body__services:hover {
    color: var(--primary-color) !important;
}

.status_capsule.status_Completed {
    background: #1cb474 !important;
}

.status_capsule.status_Active {
    background: #795af6 !important;
}

.status_capsule.status_Pending {
    background: #eda417 !important;
}

.status_capsule.status_Processing {
    background: #795af6 !important;
}

.status_capsule.Rejected,
.status_capsule.status_Canceled {
    background: #ec3d3d !important;
}

.status_capsule.status_Partial {
    background: #d116bf !important;
}

.status_capsule.status_Paused {
    background: #ff5721 !important;
}

.status_capsule.status_Expired {
    background: #795af6 !important;
}

.status_capsule.status_Error {
    background: #878f99;
}

/* ###### Order Page Table */

/* Refill page table */
.refill__table .refill_table_head,
.refill__table .refill_table_row {
    grid-template-columns: repeat(6, minmax(auto, 1fr));
    gap: 25px;
}

.refill__table .refill_table_head .head__link,
.refill__table .refill_table_row .body__link {
    width: 25em;
}

.refill__table .refill_table_head .head__services,
.refill__table .refill_table_row .body__services {
    width: 25em;
}

.refill__table .refill_table_head .head__status,
.refill__table .refill_table_row .body__status {
    width: 8em;
}

/* ### Refill page table */

/* Subscriptions */
.subs__table .subs_table_head,
.subs__table .subs_table_row {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    width: 100%;
    gap: 15px;
    text-align: left;
    margin-bottom: 20px;
    border: 1px solid #d9d9d9;
    background: #fafbff;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.03);
    padding: 15px;
    border-radius: 15px;
}

.subs__table .subs_table_head .head__id,
.subs__table .subs_table_row .body__id {
    width: 5em;
}

.subs__table .subs_table_head .head__username,
.subs__table .subs_table_row .body__username {
    width: 13em;
}

.subs__table .subs_table_head .head__services,
.subs__table .subs_table_row .body__services {
    width: 15em;
}

.subs__table .subs_table_head .head__action,
.subs__table .subs_table_row .body__action {
    width: auto;
}

.subs__table .subs_table_head .body__details,
.subs__table .subs_table_row .body__details {
    width: 7rem;
}

.subs__table .subs_table_row .body__details .btn__details {
    border: 1px solid var(--card-border);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 5px 15px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.subs__table .subs_table_row .body__action .actions__btn {
    display: inline-flex;
    gap: 5px;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    border-radius: 50px;
    padding: 5px 15px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.subs__table .subs_table_row .body__action .btn__cancel {
    display: inline-flex;
    gap: 5px;
    border: 1px solid var(--dark-btn-bg);
    color: var(--dark-btn-bg);
    border-radius: 50px;
    padding: 5px 15px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.subs__table .subs_table_row .body__details .btn__details:hover {
    background: var(--primary-color-deep);
    color: var(--text-white);
}

/* ### Subscriptions */

.user_sidebar_menu ul {
    list-style-type: none;
    padding-left: 0px;
}

.user_sidebar_menu ul li .sidebar-user-item {
    font-size: 14px;
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 5px 10px;
    background: var(--card-bg);
    margin-bottom: 5px;
    border-radius: 5px;
    color: var(--white);
}

.user_sidebar_menu ul li .sidebar-user-item .icon {
    line-height: 0;
}

#myAccount .user_card_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.user_card_wrap .user_card_left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user_card_wrap .user_card_left .icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 50px;
    font-size: 25px;
}

.user_card_left .text h6 {
    font-size: 14px;
    margin-bottom: 0px;
}

.level_badges {
    background: var(--bs-body-bg);
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 50px;
}

#myAccount h3 {
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.acc_features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;
}

.feature_item {
    display: flex;
    gap: 6px;
    align-items: center;
}

.feature_item .icon {
    width: 25px;
    min-width: 25px;
    max-height: 25px;
    height: 25px;
    background: #e7ecf9;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #525252;
    line-height: 0;
}

.feature_item.active .icon {
    background: var(--primary-color);
    color: var(--white);
}

.feature_item .icon .activeIcon {
    display: none;
}

.feature_item.active .icon .activeIcon {
    display: block;
}

.feature_item.active .icon .inactiveIcon {
    display: none;
}

.ticket_info_item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--primary-color);
    padding: 10px 5px;
    margin-bottom: 10px;
}

.account_badges {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 70%;
    margin: 0 auto;
    background: #000000;
    padding: 10px 25px;
    border-radius: 50px;
}

.account_badges.next_level {
    background: var(--primary-color);
}

.account_badges .icon {
    line-height: 0;
}

.acc_point {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.acc_point .icon {
    font-size: 31px;
    color: var(--primary-color);
}

.info_icon_box {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 20px;
    color: var(--primary-color);
}

#levelModal .nav-item {
    margin-right: 5px;
    margin-bottom: 5px;
}

#levelModal .nav-item .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #141627;
    color: var(--white);
}

#levelModal .nav-item .nav-link .icon {
    width: 20px;
}

.user-spending-info-box {
    background: #141627;
    padding: 15px;
    position: relative;
    top: -20px;
    right: 10px;
    border-radius: 9px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-results__option a {
    font-size: 14px;
}

.user-spending-info-box .user-spending-txt {
    color: var(--white);
}

.daymode .user-spending-info-box .user-spending-txt {
    color: var(--black);
}

.daymode .user-spending-info-box {
    background: #e4f1ff;
}

.daymode #levelModal .nav-item .nav-link {
    color: var(--black);
    background: #e1e1e1;
}

.user-spending-info-box .user-spending-txt {
    margin-bottom: 5px;
}

.search_inputs .search {
    display: flex;
    align-items: center;
    width: 100%;
}

.search_inputs .search .search_input {
    width: calc(100% - 120px);
    height: 45px;
    padding: 15px 15px;
    font-size: 16px;
    border: 1px solid var(--primary-color);
    border-radius: 10px 0px 0px 10px;
    outline: none !important;
    background: var(--form-input-bg);
    color: var(--black-pure) !important;
}

.search_inputs .icon_btn {
    display: flex;
    width: 120px;
    height: 45px;
    color: var(--white);
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    border-radius: 0px 10px 10px 0px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
}

.search_inputs .icon_btn .icon {
    color: var(--white);
    font-size: 20px;
    line-height: 0;
}

.search_inputs .icon_btn .text_search {
    color: var(--white);
}

#levelModal .nav-item .nav-link .icon {
    line-height: 0;
}

#levelModal .nav-item .nav-link.active {
    background: var(--primary-color);
}

#service_page_top {
    position: relative;
}

#service_page_top .search_filter_card {
    border-radius: 15px;
}

#service_page_top .service_top_img {
    position: absolute;
    pointer-events: none;
    right: -50px;
    top: -200px;
    z-index: -1;
}

#service_page_top .social_media_wrap {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

#service_page_top .social_media_wrap .social_media_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--white-border);
    background: var(--white);
    border-radius: 8px;
    padding: 10px 5px;
}

.auth_body #service_page_top .social_media_wrap .social_media_btn {
    background: #141627;
    border: 1px solid #141627;
}

.daymode #service_page_top .social_media_wrap .social_media_btn {
    background: var(--white);
    border-color: #e1e1e1;
    box-shadow: 0px 0px 8px 0px rgba(120, 120, 120, 0.15);
}

#service_page_top .social_media_wrap .social_media_btn.activeItem {
    background: #dffff7;
    border-color: var(--primary-color);
    color: var(--black);
}

#service_page_top .social_media_wrap .social_media_btn>* {
    pointer-events: none;
}

.search_filter_wrap {
    display: grid;
    grid-template-columns: 1fr 8fr;
    gap: 20px;
    align-items: center;
}

.filter_currency>button,
.search_filter_wrap .filter_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    font-family: var(--title-font);
    font-size: 16px;
    background: var(--primary-color);
    font-weight: bold;
    color: var(--white);
    border-radius: 10px;
    border-color: var(--primary-color);
    min-width: 200px;
    padding: 10px 20px;
}

#service_page_top .search_inputs .search,
#service_page_top .search_filter_wrap .search {
    position: relative;
}

#service_page_top .search_inputs .search input,
#service_page_top .search_filter_wrap .search input {
    width: 100%;
    height: 60px;
    padding: 15px 15px;
    font-size: 16px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    outline: none !important;
    background: #e5fff8;
    color: var(--black-pure) !important;
}

#service_page_top .search_inputs .search .icon,
#service_page_top .search_filter_wrap .search .icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 7.5px;
    top: 7.5px;
    background: var(--primary-color);
    font-size: 25px;
    border-radius: 5px;
    color: var(--white);
}

#service_page_top .search_inputs .search .icon {
    border: none;
    cursor: pointer;
}

#service_page_top .filter_btn.dropdown-toggle::after {
    display: none;
}

.search_filter_wrap .filter_btn .filter_service_text {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0;
    padding: 0;
}

.search_filter_wrap .filter_btn .filter_service_text .icon {
    font-size: 25px;
    position: relative;
    top: 5px;
}

/* Service Table */
.serv_category_card {
    background: var(--white);
    border: 1px solid var(--primary-color);
    box-shadow: 0px 4px 33px rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    margin-bottom: 25px;
    overflow: hidden;
}

.auth_body .serv_category_card {
    background: var(--card-bg);
}

.serv_category_card .serv_cat_card_header {
    text-align: left;
    /* background: var(--primary-color); */
    background: #9be6d3;
    padding: 10px 30px;
}

.serv_category_card .serv_cat_card_header .category_name {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    text-align: left;
}

.serv_category_card .serv_cat_card_body {
    padding: 20px;
}

.auth_body .serv_category_card .serv_cat_card_body {
    background: #1c1f36;
}

.daymode .serv_category_card .serv_cat_card_body {
    background: var(--white);
}

.serv_category_card .serv_cat_card_body .service_item,
.serv_category_card .serv_cat_card_body .service_item.service_table_header {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 10px;
}

.serv_category_card .serv_cat_card_body .service_item.service_table_header {
    margin-bottom: 15px;
}

.serv_category_card .serv_cat_card_body .service_item.service_table_header>span {
    font-family: var(--primary-font);
    font-weight: 800;
    color: var(--black);
}

.auth_body .serv_category_card .serv_cat_card_body .service_item.service_table_header>span {
    color: var(--white);
}

.serv_category_card .serv_cat_card_body .service_item.service_table_header>span {
    font-size: 14px;
}

.daymode .serv_category_card .serv_cat_card_body .service_item.service_table_header>span {
    color: var(--black);
}

.serv_category_card .serv_cat_card_body .service_item .id {
    width: 7%;
}

.serv_category_card .serv_cat_card_body .service_item .services_name {
    width: 57%;
}

.serv_category_card .serv_cat_card_body .service_item .rate {
    width: 8%;
}

.serv_category_card .serv_cat_card_body .service_item .max_order,
.serv_category_card .serv_cat_card_body .service_item .min_order {
    width: 7.5%;
}

.serv_category_card .serv_cat_card_body .service_item .avg_time {
    width: 13%;
}

.serv_category_card .serv_cat_card_body .service_item .descriptions {
    width: 10%;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.serv_category_card .serv_cat_card_body .service_item.service {
    border-bottom: 1px solid var(--card-border);
    padding-top: 0px;
    padding-bottom: 5px;
}

.serv_category_card .serv_cat_card_body .service_item .descriptions {
    text-align: end;
}

.serv_category_card .serv_cat_card_body .service_item.service>span.id>span,
.serv_category_card .serv_cat_card_body .service_item.service>span.rate>span {
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    border-radius: 10px;
}

.serv_category_card .serv_cat_card_body .service_item.service>span.min_order>span,
.serv_category_card .serv_cat_card_body .service_item.service>span.max_order>span {
    font-size: 12px;
    color: var(--black);
}

.auth_body .serv_category_card .serv_cat_card_body .service_item.service>span.min_order>span,
.auth_body .serv_category_card .serv_cat_card_body .service_item.service>span.max_order>span {
    color: var(--white);
}

.daymode .serv_category_card .serv_cat_card_body .service_item.service>span.min_order>span,
.daymode .serv_category_card .serv_cat_card_body .service_item.service>span.max_order>span {
    color: var(--black);
}

.daymode .serv_category_card .serv_cat_card_body .service_item.service .fav {
    color: var(--black);
}

.serv_category_card .serv_cat_card_body .service_item.service .fav {
    color: var(--white);
}

.serv_category_card .serv_cat_card_body .service_item:last-child {
    border-bottom: none !important;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.serv_category_card .serv_cat_card_body .service_item.service>span.id>span,
.serv_category_card .serv_cat_card_body .service_item.service>span.rate>span {
    /* background: var(--form-input-bg); */
    background: #e5fff8;
    color: var(--black);
}

.serv_category_card .serv_cat_card_body .service_item.service>span.avg_time {
    display: flex;
    align-items: center;
    max-height: 35px;
    font-size: 13px;
    color: var(--black);
}

.auth_body .serv_category_card .serv_cat_card_body .service_item.service>span.avg_time {
    color: var(--white);
}

.tab-content .alert.alert-success.alert-dismissible {
    color: var(--white) !important;
}

.daymode .tab-content .alert.alert-success.alert-dismissible {
    color: var(--black-pure) !important;
}

.daymode .serv_category_card .serv_cat_card_body .service_item.service>span.avg_time {
    color: var(--black);
    font-size: 12px;
}

.serv_category_card .serv_cat_card_body .service_item.service .services_name {
    font-size: 13px;
    font-weight: 400;
    color: var(--black);
}

.auth_body .serv_category_card .serv_cat_card_body .service_item.service .services_name {
    color: var(--white);
}

.daymode .serv_category_card .serv_cat_card_body .service_item.service .services_name {
    color: var(--black);
}

.serv_category_card .serv_cat_card_body .service_item.service>span.min_order,
.serv_category_card .serv_cat_card_body .service_item.service>span.max_order {
    display: flex;
    align-items: center;
    max-height: 35px;
}

.btn_descriptions {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    padding: 4px 15px;
    border-radius: 10px;
    transition: 0.8s;
}

.buy_now_btn {
    background: var(--primary-color);
    color: var(--white);
    line-height: 0;
    font-size: 24px;
    padding: 5px 10px;
    border: none;
    border-radius: 8px;
}

.btn_descriptions:hover {
    background: var(--primary-color-deep);
    color: var(--white);
    scale: 1.05;
}

.child_panel_Faq .accordion-header button {
    background: #111322;
    border: none;
}

.daymode .child_panel_Faq .accordion-header button {
    background: #ededed;
    box-shadow: none !important;
    border: none !important;
}

.child_panel_Faq .accordion-header button {
    color: var(--white);
    box-shadow: none !important;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed,
.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-radius: 0px;
}

.daymode .child_panel_Faq .accordion-header button {
    color: var(--black);
}

.child_panel_Faq .accordion-body {
    background: var(--bs-body-bg);
    color: var(--white) !important;
}

.daymode .child_panel_Faq .accordion-body {
    background: var(--white-border);
    color: var(--black);
}

.auth_body .accordion-body p {
    color: var(--white);
}

.auth_body.daymode .accordion-body p {
    color: var(--black);
}

.child_panel_Faq .accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 0px;
}

/* auth banner */
#auth_banner .card.banner_card {
    border-radius: 20px;
}

#auth_banner .card.banner_card .card-body {
    padding: 20px 40px;
    background: linear-gradient(#1c1f36ec, #1c1f36ec),
        url(https://cdn.getmyfollow.com/img/auth_section_bg.png);
    background-size: cover;
    background-position: bottom right;
    background-color: #1c1f36;
    border-radius: 20px;
}

.daymode #auth_banner .card.banner_card .card-body {
    background: linear-gradient(#ffffffec, #ffffffec),
        url(https://cdn.getmyfollow.com/img/auth_section_bg.png);
    background-size: cover;
    background-position: bottom right;
    background-color: #fff;
}

#auth_banner .banner_content h2 {
    font-family: var(--title-font);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
}

.daymode #auth_banner .banner_content h2 {
    color: var(--black);
}

#auth_banner .banner_content p {
    font-size: 16px;
    color: var(--paragraph-black);
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 15px;
}

#auth_banner .banner_image {
    text-align: right;
}

#auth_banner .banner_image img {
    width: 40%;
    min-width: 300px;
    margin: auto;
}

.no_bg {
    background: transparent !important;
}

.auth_body .modal-header,
.auth_body .modal-body {
    background: var(--card-bg);
    color: var(--white);
}

.daymode.auth_body .modal-header,
.daymode.auth_body .modal-body {
    background: var(--white);
    color: var(--black);
}

.select2-container--default .select2-results>.select2-results__options {
    background: var(--form-input-bg);
}

.daymode .select2-container--default .select2-results>.select2-results__options {
    background: var(--white);
}

.ticket_subject {
    color: var(--white);
}

.daymode .ticket_subject {
    color: var(--black);
}

.ticket-message-left.admin_ticket,
.ticket-message-right.user_ticket {
    margin-bottom: 20px;
}

.ticket-message-right.user_ticket .ticket-message {
    background: var(--primary-color);
    padding: 20px 20px;
    border-radius: 15px;
    margin-bottom: 5px;
    color: var(--white);
}

.ticket-message-left.admin_ticket .ticket-message {
    background: var(--form-input-bg);
    padding: 20px 20px;
    border-radius: 15px;
    margin-bottom: 5px;
    color: var(--white);
}

.card.card_chat .tickets-uploader {
    padding: 10px;
    background: #05c19136;
    border-radius: 10px;
    border: 1px dashed #5c5c5c;
    height: 60px;
    display: flex;
    align-items: center;
}

.card.card_chat .files-wrapper #uploader-button {
    width: 100%;
}

.card.card_chat .card-body {
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: space-between;
}

.submit_area_message {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    align-items: center;
}

.copy-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    font-size: 14px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-button:hover {
    background-color: var(--primary-color-deep);
}

.copy-icon {
    font-size: 16px;
    line-height: 0;
}

.copied-text {
    display: none;
    margin-left: 5px;
    font-size: 14px;
    color: var(--white);
    animation: fadeInOut 1.5s forwards;
}

.show-copied {
    display: inline-block !important;
}

@keyframes fadeInOut {

    0%,
    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Responsive Area For dashboard */

@media only screen and (max-width: 1900px) {

    .order__table .order_table_head .head__link,
    .order__table .order_table_row .body__link {
        width: 17em;
    }

    .order__table .order_table_head .head__services,
    .order__table .order_table_row .body__services {
        width: 13em;
        font-size: 12px;
    }

    #dashboard #sidebar {
        width: 275px;
    }

    #dashboard #content {
        padding-left: 275px;
    }

    #dashboard #content #header {
        width: calc(100% - 275px);
    }

    .refill__table .refill_table_row .body__link .link__order>a,
    .order__table .order_table_row .body__link .link__order>a {
        font-size: 13px;
        font-weight: 400;
    }
}

@media only screen and (max-width: 1550px) {

    .order__table .order_table_head .head__link,
    .order__table .order_table_row .body__link {
        width: 14rem;
    }

    .auth .btn-primary,
    .serv_category_card .serv_cat_card_header .category_name,
    .card_auth_1 .card-header h3,
    .user_data_info .user_d_right h4,
    .user_data_info .user_d_left .text h3,
    .statics_card_inner .text h3 {
        font-size: 18px;
    }

    .card_auth_1 .card-header .card_text h4 {
        font-size: 16px;
    }

    .def_content h1,
    .def_content h2,
    #payment_section h2,
    #auth_banner .banner_content h2 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 1300px) {
    .header_logo.d-none-desk {
        display: block !important;
    }

    #dashboard .show_withBar,
    #dashboard .hide_withBar {
        transform: rotate(-180deg);
    }

    #dashboard #sidebar {
        transform: translateX(-300px);
    }

    #dashboard #content {
        padding-left: 0px;
    }

    #dashboard #content #header {
        width: 100%;
    }

    #dashboard.activeSidebar #sidebar {
        transform: translateX(0px);
    }

    #dashboard #sidebar_active_blur {
        opacity: 0;
        transition: 1s;
    }

    #dashboard.activeSidebar #sidebar_active_blur {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 5;
        background: #00000080;
        display: block;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(5px);
        opacity: 1;
    }

    #dashboard.activeSidebar #content .auth,
    #dashboard.activeSidebar #content {
        overflow: hidden;
    }

    #dashboard #content .auth {
        padding-left: 0px;
    }

    .statics_card_inner .icon img {
        width: 30px;
    }

    #affiliate_page .affiliate_users_data .aff_item .aff_item_left .icon,
    .statics_card_inner .icon {
        width: 60px;
        min-width: 60px;
        height: 60px;
    }

    #affiliate_page .affiliate_users_data .aff_item .aff_item_right h5,
    .statics_card_inner .text h3 {
        font-size: 18px;
    }

    .user_data_info .user_d_left .icon {
        height: 60px;
    }

    #affiliate_page .affiliate_users_data {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 10px;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 992px) {
    .mb-ph-3 {
        margin-bottom: 10px;
    }

    .user_data_info .user_d_left .text h3 {
        font-size: 20px;
    }

    .cat_filter_wrap {
        grid-template-columns: repeat(4, 1fr);
    }

    .user_data_info .user_d_right h4 {
        letter-spacing: 0px;
        margin-bottom: 5px;
    }

    .card_auth_1 .card-header .card_text h4 br {
        display: none;
    }

    .d-none-tab {
        display: none !important;
    }

    .d-none-desk {
        display: block !important;
    }

    .card_auth_1 .card-header h3 {
        font-size: 18px;
        margin-bottom: 0px;
    }

    .social_media_wrap {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    #auth_banner {
        padding: 20px;
    }

    #auth_banner .banner_content h2 {
        font-size: 28px;
    }

    #affiliate_page .affiliate_users_data {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    #dashboard #sidebar {
        width: 300px;
    }

    /* Order Table */
    .order_table_row .body__id {
        grid-area: id;
        text-align: center;
    }

    .order_table_row .body__date {
        grid-area: date;
        text-align: center;
    }

    .order_table_row .body__link {
        grid-area: link;
        width: 100% !important;
    }

    .order_table_row .body__price {
        grid-area: price;
        text-align: center;
    }

    .order_table_row .body__price::before {
        content: "Charges";
    }

    .order_table_row .body__startcount {
        grid-area: statcount;
        text-align: center;
    }

    .order_table_row .body__startcount::before {
        content: "Start Count";
    }

    .order_table_row .body__quantity {
        grid-area: quantity;
        text-align: center;
    }

    .order_table_row .body__quantity::before {
        content: "Quantity";
    }

    .order_table_row .body__remain {
        grid-area: remain;
        text-align: center;
    }

    .order_table_row .body__remain::before {
        content: "Remain";
    }

    .order_table_row .body__services {
        grid-area: services;
        width: 100% !important;
        text-align: center;
    }

    .order_table_row .body__status {
        grid-area: status;
        text-align: center;
    }

    .order_table_row .body__quickaction {
        grid-area: actions;
        text-align: center;
    }

    .order__table .order_table_head {
        display: none;
    }

    .order__table {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* gap: 15px; */
    }

    .order__table .order_table_row {
        border: 1px solid var(--card-border);
    }

    .order__table .order_table_row {
        margin-bottom: 0;
    }

    .subs__table .subs_table_row .body__newpost,
    .subs__table .subs_table_row .body__quantity,
    .order_table_row .body__price,
    .order_table_row .body__remain,
    .order_table_row .body__startcount,
    .order_table_row .body__quantity {
        position: relative;
        padding-top: 20px;
    }

    .subs__table .subs_table_row .body__newpost::before,
    .subs__table .subs_table_row .body__quantity::before,
    .order_table_row .body__price::before,
    .order_table_row .body__remain::before,
    .order_table_row .body__startcount::before,
    .order_table_row .body__quantity::before {
        font-size: 12px;
        color: var(--primary-color);
        position: absolute;
        text-align: center;
        top: 0px;
        width: 100%;
        margin: 0;
        padding: 0;
        left: 0;
    }

    .refill__table .refill_table_head,
    .refill__table .refill_table_row,
    .refill__table .refill_table_head,
    .refill__table .refill_table_row,
    .order__table .order_table_head,
    .order__table .order_table_row {
        grid-template-areas:
            "id id id id id id id id id id id id "
            "date date date date date date date date date date date date"
            "link link link link link link link link link link link link"
            "price price price statcount statcount statcount quantity quantity quantity remain remain remain"
            " services services services services services services services services services services services services"
            "status status status status status status actions actions actions actions actions actions";
        gap: 10px;
    }

    .dripfeed__table .order_table_row .body__startcount::before {
        content: "Quantity";
    }

    .dripfeed__table .order_table_row .body__quantity::before {
        content: "Total quantity";
    }

    .dripfeed__table .order_table_row .body__remain::before {
        content: "Runs ~ Interval";
    }

    .refill__table .order_table_row .body__price::before {
        content: "Order Id";
    }

    .refill__table .order_table_row .body__price {
        grid-column: span 12;
    }

    .refill__table .order_table_row .body__status {
        width: 100%;
        grid-column: span 12;
    }

    .dripfeed__table .order_table_row .body__status {
        width: 100%;
        grid-column: span 12;
    }

    .orders__filter__btn .order__filters .btn__orders__filter .icon {
        width: 20px;
    }

    .subs__table .subs_table_head {
        display: none;
    }

    .subs__table .subs_table_row .body__id {
        grid-area: subId;
        width: auto;
    }

    .subs__table .subs_table_row .body__username {
        grid-area: subUsername;
        width: 100%;
    }

    .subs__table .subs_table_row .body__quantity {
        grid-area: subquan;
    }

    .subs__table .subs_table_row .body__newpost {
        grid-area: subpost;
    }

    .subs__table .subs_table_row .body__services {
        grid-area: subserv;
        width: 100%;
    }

    .subs__table .subs_table_row .body__status {
        grid-area: substatus;
    }

    .subs__table .subs_table_row .body__details {
        grid-area: subsdetail;
    }

    .subs__table .subs_table_row .body__action {
        grid-area: subaction;
    }

    .subs__table .subs_table_row .body__quantity::before {
        content: "Quantity";
    }

    .subs__table .subs_table_row .body__newpost::before {
        content: "New posts";
    }

    .subs__table {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .subs__table .subs_table_row {
        grid-template-columns: none;
        text-align: center;
        grid-template-areas:
            "subId subId subId subId subId subId"
            "subUsername subUsername subUsername subUsername subUsername subUsername"
            "subquan subquan subquan subpost subpost subpost"
            "subserv subserv subserv subserv subserv subserv"
            "substatus substatus subsdetail subsdetail subaction subaction";
    }

    .acc_features {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .social_media_wrap {
        grid-template-columns: repeat(6, 1fr);
    }

    .search_filter_wrap {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .filter_currency>button,
    .search_filter_wrap .filter_btn {
        width: 100%;
    }

    .filter_currency>button,
    .search_filter_wrap .filter_btn {
        height: 45px;
    }

    .social_media_wrap {
        gap: 5px;
    }

    .social_media_wrap .social_media_btn {
        padding: 8px 10px;
    }

    .social_media_wrap .social_media_btn .media_name {
        display: none;
    }

    .fav {
        position: absolute;
        top: 13px;
        right: 60%;
    }

    .serv_category_card .serv_cat_card_header .category_name {
        font-size: 18px;
    }

    .serv_category_card .serv_cat_card_body .service_item,
    .serv_category_card .serv_cat_card_body .service_item.service_table_header {
        display: grid;
    }

    .serv_category_card .serv_cat_card_body .service_item.service_table_header {
        display: none !important;
    }

    .serv_category_card .serv_cat_card_body .service_item .id {
        grid-area: id;
        width: 100%;
        text-align: center;
    }

    .serv_category_card .serv_cat_card_body .service_item.service .services_name {
        font-size: 14px;
        grid-area: services;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .serv_category_card .serv_cat_card_body .service_item .rate {
        position: relative;
        grid-area: price;
        width: 100%;
        text-align: center;
    }

    .serv_category_card .serv_cat_card_body .service_item .rate::before {
        content: "Rate Per 1000";
    }

    .serv_category_card .serv_cat_card_body .service_item.service>span.min_order {
        display: block;
        position: relative;
        grid-area: min;
        width: 100%;
        text-align: center;
    }

    .serv_category_card .serv_cat_card_body .service_item.service>span.max_order {
        display: block;
        position: relative;
        grid-area: max;
        width: 100%;
        text-align: center;
    }

    .serv_category_card .serv_cat_card_body .service_item.service>span.min_order::before {
        content: "Min Order";
    }

    .serv_category_card .serv_cat_card_body .service_item.service>span.max_order::before {
        content: "Max Order";
    }

    .serv_category_card .serv_cat_card_body .service_item.service>span.min_order::before,
    .serv_category_card .serv_cat_card_body .service_item.service>span.max_order::before,
    .serv_category_card .serv_cat_card_body .service_item .rate::before {
        font-family: var(--font-text);
        font-size: 12px;
        color: #8f8f8f;
        position: absolute;
        top: -20px;
        text-align: center;
        display: block;
        width: 100%;
    }

    .serv_category_card .serv_cat_card_body .service_item.service>span.avg_time {
        font-size: 14px;
        grid-area: avgTime;
        display: block;
        width: 100%;
        text-align: center;
    }

    .serv_category_card .serv_cat_card_body .service_item .descriptions {
        grid-area: desc;
        display: flex;
        align-items: center;
        gap: 5px;
        width: 100%;
        text-align: center;
    }

    .serv_category_card .serv_cat_card_body .service_item.service {
        position: relative;
        display: grid;
        grid-template-areas:
            "id id id id id id"
            "services services services services services services"
            " price price min min max max"
            " avgTime avgTime avgTime avgTime avgTime avgTime"
            " desc desc desc desc desc desc";
        gap: 10px;
    }

    .serv_category_card .serv_cat_card_body .service_item.service>span.id>span,
    .serv_category_card .serv_cat_card_body .service_item.service>span.min_order>span,
    .serv_category_card .serv_cat_card_body .service_item.service>span.max_order>span,
    .serv_category_card .serv_cat_card_body .service_item.service>span.rate>span {
        font-size: 14px;
        padding: 5px 18px;
    }

    .serv_category_card .serv_cat_card_body {
        padding: 10px;
    }

    .buy_now_btn,
    .btn_descriptions {
        font-size: 14px;
        padding: 5px 30px;
    }

    .buy_now_btn {
        padding: 8px 10px;
    }

    .services_dsc_modal .service_header {
        padding: 15px;
    }

    .services_dsc_modal .services_body {
        padding: 20px 10px;
    }

    .service_header #service_name {
        font-size: 16px;
    }

    .services_body .other_info .info_item .text h4 {
        font-size: 14px;
        margin-bottom: 0px;
    }

    .services_body .other_info .info_item .text>span {
        font-size: 14px;
        font-weight: var(--font-extra-bold);
    }

    .services_body .other_info .info_item {
        gap: 5px;
    }

    .service_header .btn_scondary {
        padding: 5px 20px;
        font-size: 14px;
    }

    .services_body #service_des {
        font-size: 12px;
    }

    #affiliate_page .affiliate_users_data {
        grid-template-columns: 1fr !important;
    }

    #auth_banner .banner_content h2 {
        font-size: 32px;
    }

    #auth_banner .banner_image {
        text-align: center;
    }

    .acc_features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .user-spending-info-box {
        top: 5px;
        right: inherit;
    }
}

@media only screen and (max-width: 550px) {
    .mb-ph-3 {
        margin-bottom: 0.5rem;
    }

    .cat_filter_wrap {
        grid-template-columns: repeat(6, 1fr);
    }

    .header_logo .sider_logo>img {
        width: 150px;
    }

    .cat_filter_wrap {
        gap: 5px;
    }

    .cat_filter_wrap .filter_item {
        justify-content: center;
        align-items: center;
    }

    .cat_filter_wrap .filter_item .text {
        display: none;
    }

    .user_data_info .user_d_left {
        border-right: none;
        padding-right: none;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 10px;
    }

    .user_data_info .settings_icon_btn {
        top: 80px;
    }

    .user_data_info {
        grid-template-columns: 1fr;
    }

    .user_data_info .user_d_right {
        padding-left: 0px;
    }

    .user_data_info .user_d_right h4 {
        font-size: 18px;
    }

    .statics_card_inner .text h6,
    .user_data_info .user_d_right h6 {
        font-size: 14px;
    }

    .statics_card .card-body {
        padding: 10px 10px;
    }

    #affiliate_page .affiliate_users_data .aff_item .aff_item_left .icon,
    .statics_card_inner .icon {
        width: 50px;
        min-width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .statics_card_inner .text h6 .statics_card_inner .icon img {
        width: 25px;
    }

    .statics_card_inner {
        gap: 5px;
    }

    .neworder_statistics_row .col-lg-3:nth-child(3),
    .neworder_statistics_row .col-lg-3:first-child {
        padding-right: 5px;
    }

    .neworder_statistics_row .col-lg-3:nth-child(2),
    .neworder_statistics_row .col-lg-3:nth-child(4) {
        padding-left: 5px;
    }

    .d-none-ph {
        display: none !important;
    }

    .example_set .text,
    .infos_item .info_box .text {
        font-size: 12px;
    }

    .card_auth_1 .card-header {
        height: auto;
        max-height: inherit;
    }

    .infos_item .info_box .icon {
        width: 30px;
        min-width: 30px;
    }

    .auth label {
        font-size: 14px;
    }

    .service_descriptions #service_descriptions {
        font-size: 14px;
    }

    .ticket_history .tickets_his_item {
        grid-template-areas:
            "tickId tickId tickId tickId tickId tickId"
            "ticketSub ticketSub ticketSub ticketSub ticketSub ticketSub"
            "ticketStatus ticketStatus LastUpdate LastUpdate LastUpdate LastUpdate";
        gap: 20px 5px;
    }

    .ticket_history.paymentTable .tickets_his_item {
        grid-template-areas:
            "tickId tickId tickId tickId tickId tickId"
            "ticketSub ticketSub ticketSub ticketSub ticketSub ticketSub"
            "ticketStatus ticketStatus LastUpdate LastUpdate LastUpdate LastUpdate";
        gap: 20px 5px;
    }

    .ticket_history .tickets_his_id {
        grid-area: tickId;
        text-align: center;
    }

    .payment_methods_name,
    .ticket_history .tickets_his_sub {
        grid-area: ticketSub;
        text-align: center;
    }

    .payment_amount,
    .ticket_history .tickets_his_status {
        grid-area: ticketStatus;
        text-align: center;
    }

    .payment_time,
    .ticket_history .tickets_his_lastUpdate {
        grid-area: LastUpdate;
        text-align: center;
    }

    .ticket_history .tickets_his_item .payment_methods_name::before,
    .ticket_history .tickets_his_item .payment_amount::before,
    .ticket_history .tickets_his_item .payment_time::before,
    .ticket_history .tickets_his_item .tickets_his_id::before,
    .ticket_history .tickets_his_item .tickets_his_sub::before,
    .ticket_history .tickets_his_item .tickets_his_status::before,
    .ticket_history .tickets_his_item .tickets_his_lastUpdate::before {
        font-size: 14px;
    }

    .ticket_history .tickets_his_item h5 {
        font-size: 15px;
    }

    .social_media_wrap {
        grid-template-columns: repeat(4, 1fr);
    }

    #auth_banner {
        padding: 20px 0px;
    }

    #myAccount h3 {
        font-size: 18px;
    }

    #myAccount p {
        font-size: 14px;
    }

    .level_badges {
        font-size: 10px;
    }

    .user_card_wrap .user_card_left .icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    #auth_banner .banner_content h2 {
        font-size: 24px;
    }

    .auth .btn-primary {
        height: 40px;
        font-size: 14px;
    }

    #auth_banner .banner_content p {
        font-size: 14px;
    }

    .service_itemscard .service_card_inner .serv_card_top .icon img {
        width: 75px;
    }

    .service_itemscard .service_card_inner .serv_card_top h3 {
        font-size: 20px;
    }

    .service_itemscard .service_card_inner .serv_card_top {
        font-size: 14px;
    }

    .order__table {
        grid-template-columns: 1fr;
    }

    .orders__filter__btn .order__filters .btn__orders__filter {
        padding: 6px 15px;
        border-radius: 7px;
        gap: 10px;
    }

    .orders__filter__btn .order__filters .btn__orders__filter .text {
        font-size: 16px;
    }

    .orders__filter__btn .order__filters .btn__orders__filter .icon {
        width: 16px;
    }

    .serv_category_card {
        margin-bottom: 20px;
    }

    .serv_category_card .serv_cat_card_body .service_item.service {
        position: relative;
    }

    .serv_category_card .serv_cat_card_body .service_item .fav {
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 18px;
    }

    .service_filter_wraper {
        padding: 15px 5px;
    }

    .subs__table {
        display: grid;
        grid-template-columns: 1fr;
    }

    .subs__table .subs_table_row {
        grid-template-columns: none;
        text-align: center;
        grid-template-areas:
            "subId subId subId subId subId subId"
            "subUsername subUsername subUsername subUsername subUsername subUsername"
            "subquan subquan subquan subpost subpost subpost"
            "subserv subserv subserv subserv subserv subserv"
            "substatus substatus substatus substatus substatus substatus"
            " subsdetail subsdetail  subsdetail subaction subaction subaction";
    }

    .order__table .order_table_row {
        border: none;
        border-bottom: 1px solid var(--card-border);
    }

    #dashboard #content #header .header_right {
        gap: 5px;
    }

    #dashboard #content #header .currency_btn .currency_button {
        padding: 5px 10px;
        font-size: 12px;
    }

    #dashboard #sidebar .sidebar_menu .menu_item .menu_link {
        padding: 5px 15px;
    }

    .acc_features {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    #service_page_top .social_media_wrap {
        gap: 5px;
    }

    .dropdown-toggle .dropdown-menu {
        max-width: 100%;
    }

    .dropdown-toggle .dropdown-menu .dropdown-item .text {
        white-space: wrap;
    }
}

@media only screen and (max-width: 400px) {
    .cat_filter_wrap {
        grid-template-columns: repeat(4, 1fr);
    }

    .statics_card_inner .text h6 {
        font-size: 11px;
    }

    #affiliate_page .affiliate_users_data .aff_item .aff_item_right h5,
    .statics_card_inner .text h3 {
        font-size: 14px;
    }
}

/* Day Mode colors */
.daymode h3,
.daymode h1,
.daymode h2,
.daymode h3,
.daymode h4,
.daymode h5,
.daymode h6,
.daymode p,
.daymode div {
    color: var(--black);
}

.daymode .level_badges,
.daymode #dashboard #sidebar {
    background: #e5fff8;
}

.daymode {
    background: #f5fcff;
}

.daymode .offcanvas,
.daymode #dashboard #content #header {
    background: #e5fff8;
}

.offcanvas .user_sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.offcanvas a.menu_btn.telegram {
    width: 40px;
    position: relative;
    top: 2px;
}

.daymode .user_sidebar_menu ul li .sidebar-user-item {
    background: #05c19140;
}

.daymode .user_sidebar_menu ul li .sidebar-user-item:hover {
    background: var(--primary-color);
}

.daymode #SidebarButton {
    color: var(--black);
}

.daymode #dashboard #sidebar .sidebar_menu .menu_item .menu_link {
    color: var(--black);
}

.daymode #dashboard #sidebar .sidebar_menu .menu_item .menu_link .icon {
    color: var(--black);
}

.daymode #api_page .example_response,
.daymode #api_page .table-bordered> :not(caption)>*>*,
.daymode .table tr td,
.daymode .table tr th,
.daymode .faq_accordion .accordion-item p,
.daymode .faq_accordion .accordion-item .accordion-header button,
.daymode .serv_category_card .serv_cat_card_body .service_item.service .services_name,
.daymode .serv_category_card .serv_cat_card_body .service_item.service_table_header>span,
.daymode .social_media_wrap .social_media_btn .media_name,
.daymode .ticket_history .tickets_his_item h5,
.daymode .ticket_history .tickets_his_item .payment_methods_name::before,
.daymode .ticket_history .tickets_his_item .payment_amount::before,
.daymode .ticket_history .tickets_his_item .payment_time::before,
.daymode .ticket_history .tickets_his_item .tickets_his_id::before,
.daymode .ticket_history .tickets_his_item .tickets_his_sub::before,
.daymode .ticket_history .tickets_his_item .tickets_his_status::before,
.daymode .ticket_history .tickets_his_item .tickets_his_lastUpdate::before,
.daymode #payment_section h2,
.daymode #auth_banner .banner_content p,
.daymode #auth_banner .banner_content h2,
.daymode .example_link .example_set,
.daymode .service_descriptions #service_descriptions,
.daymode .infos_item .info_box,
.daymode .service_descriptions label,
.daymode .card-body .lebel,
.daymode .statics_card_inner .text h3,
.daymode .statics_card_inner .text h6,
.daymode .user_data_info .user_d_left .text h3,
.daymode .cat_filter_wrap .filter_item .text,
.daymode .user_data_info .user_d_left .text h6,
.daymode .user_data_info .user_d_right h4 {
    color: var(--black);
}

.daymode .ticket_history .tickets_his_item .tickets_his_sub h5 {
    color: var(--primary-color);
}

.daymode #dashboard #sidebar .sidebar_menu .menu_item .menu_link.active {
    color: var(--white);
}

.daymode #dashboard #sidebar .sidebar_menu .menu_item .menu_link.active .icon {
    color: var(--white);
}

.daymode .services_dsc_modal .services_body {
    background: var(--white);
}

.daymode .services_body #service_des {
    background-color: #e5fff8;
    border-color: var(--primary-color);
}

.daymode .table> :not(caption)>*>*,
.daymode .social_media_wrap .social_media_btn,
.daymode .cat_filter_wrap .filter_item,
.daymode .card {
    background-color: var(--white);
    border-color: #e1e1e1;
}

.daymode .card_auth_1 .card-body {
    background: var(--white);
    border-color: var(--primary-color);
}

.daymode #dashboard #sidebar .sidebar_menu .menu_item .menu_link:hover {
    background: transparent;
}

.daymode #dashboard #sidebar .sidebar_menu .menu_item .menu_link.active:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

.daymode #dashboard #sidebar .sidebar_menu .menu_item .menu_link.active:hover .icon {
    color: var(--white) !important;
}

.daymode .select2-container .select2-selection__text,
.daymode label,
.daymode .service_descriptions label {
    color: var(--black);
}

.daymode .user_sidebar .currency_btn .currency_button,
.daymode #dashboard #content #header .currency_btn .currency_button {
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--black);
}

.daymode .day_night_btn {
    background: var(--white);
    border-color: var(--primary-color);
}

.daymode .day_night_btn .night_mode {
    color: var(--primary-color);
}

.daymode .day_night_btn .active_circle {
    background: var(--primary-color);
    color: var(--white);
}

.daymode .orders__filter__btn .order__filters .btn__orders__filter {
    border-color: #05c191;
    background-color: #e5fff8;
    color: var(--black);
}

.daymode .orders__filter__btn .order__filters .btn__orders__filter .text {
    color: var(--black);
}

.daymode .service_descriptions #service_descriptions,
.daymode .infos_item .info_box,
.daymode .example_link .example_set {
    border-color: #05c191;
    background-color: #e5fff8;
}

.daymode .card.card_chat .tickets-uploader,
.daymode .ticket_history .tickets_his_item,
.daymode .panel-body.border-solid,
.daymode .search_inputs .search input,
.daymode .search_filter_wrap .search input,
.daymode .auth .form-control {
    border-color: #05c191;
    background-color: #e5fff8;
}

.daymode .dropdown-menu {
    background: var(--white);
}

.daymode .header_logo .sider_logo .logo-white {
    display: none;
}

.daymode .header_logo .sider_logo .logo-color {
    display: block;
}

.daymode .account_badges {
    background: #dcf5ff;
}

.daymode .account_badges.next_level {
    background: var(--primary-color);
    color: var(--white);
}

/* width */
.daymode .dropdown-menu::-webkit-scrollbar,
.daymode .select2-dropdown .dropdown-menu::-webkit-scrollbar,
#dashboard #sidebar::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.daymode .dropdown-menu::-webkit-scrollbar-track,
.daymode .select2-dropdown .dropdown-menu::-webkit-scrollbar-track,
.daymode #dashboard #sidebar::-webkit-scrollbar-track {
    background: #e5e5e5;
}

/* Handle */
.daymode .dropdown-menu::-webkit-scrollbar-thumb,
.daymode .select2-dropdown .dropdown-menu::-webkit-scrollbar-thumb,
.daymode #dashboard #sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 50px;
}

/* Handle on hover */
.daymode .dropdown-menu::-webkit-scrollbar-thumb:hover,
.daymode .select2-dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover,
.daymode #dashboard #sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color-deep);
}

.daymode .select2-container--default .select2-results__option[aria-selected="true"] .select2-selection__text {
    color: var(--white);
}

.daymode .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #e5fff8;
}

.daymode .select2-results__option {
    border-color: #05c19133;
}

.daymode .orders__filter__btn .order__filters .btn__orders__filter.active .text,
.daymode .orders__filter__btn .order__filters .btn__orders__filter.active {
    color: var(--white);
}

.daymode .subs__table,
.daymode .refill__table,
.daymode .subs__table,
.daymode .refill__table,
.daymode .order__table {
    background: var(--white);
}

.daymode .orders__filter__btn .order__filters .btn__orders__filter.active .icon {
    color: var(--white);
}

.daymode .refill__table .refill_table_row .body__link .link__order,
.daymode .order__table .order_table_row .body__link .link__order {
    color: var(--black);
}

.daymode .refill__table .refill_table_head,
.daymode .refill__table .refill_table_row,
.daymode .refill__table .refill_table_head,
.daymode .refill__table .refill_table_row,
.daymode .order__table .order_table_head,
.daymode .order__table .order_table_row {
    border-color: var(--primary-color);
}

.daymode .order__table .order_table_head {
    background: var(--primary-color);
    border-radius: 10px 10px 0px 0px;
}

.daymode .user_menu_wrap .dropdown-item.bg-danger .icon,
.daymode .user_menu_wrap .dropdown-item.bg-danger .text,
.daymode .user_menu_wrap .dropdown-item.bg-danger {
    color: var(--white) !important;
}

.daymode .ticket_history .tickets_his_item.unread_item {
    animation: unreadEffect2 3s infinite;
}

@keyframes unreadEffect2 {
    0% {
        border-color: transparent;
    }

    50% {
        border-color: var(--primary-color);
        background: #efd2bd;
    }

    100% {
        border-color: transparent;
    }
}

.daymode .card.card_chat {
    background: radial-gradient(#fff, #fff);
}

.daymode .ticket-message-left.admin_ticket .ticket-message {
    background: #ff7f0152;
}

.daymode .social_media_wrap .social_media_btn.activeItem {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.daymode .serv_category_card .serv_cat_card_body {
    background: var(--white);
}

.daymode .serv_category_card .serv_cat_card_body .service_item.service>span.id>span,
.daymode .serv_category_card .serv_cat_card_body .service_item.service>span.rate>span {
    background-color: #e5fff8;
    color: var(--primary-color);
}

.daymode .auth .faq_accordion .accordion-item {
    background-color: #e5fff8;
}

.daymode .modal-content {
    background: var(--white);
}

.dropdown-menu {
    z-index: 2;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
}

.separator::before,
.separator::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #c9c9c9;
}

.separator:not(:empty)::before {
    margin-right: 0.25em;
}

.separator:not(:empty)::after {
    margin-left: 0.25em;
}

.daymode .select2-container .dropdown-menu>li>a {
    color: var(--black);
}

.ticket-message blockquote {
    border-left: 2px solid var(--primary-color);
    background: #ff770033;
    padding: 0px 10px;
}

.alert-success {
    background: var(--primary-color);
    color: var(--primary-color-deep);
}

/* new modified code */
/* dashboard style start */
#dashboard .custom-secondary-style {
    background: #f0f0f0;
    color: black;
    border-color: #05c191;
    border-radius: 13px;
}

#dashboard a.menu_link.active {
    position: relative;
}

#dashboard a.menu_link.active::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 90%;
    background: var(--primary-color);
    border-radius: 30px;
    left: -30px;
}

#dashboard .show_withBar {
    display: inline-block;
}

#dashboard.activeSidebar .show_withBar {
    display: none;
}

#dashboard.activeSidebar .hide_withBar {
    display: inline-block;
}

#dashboard .hide_withBar {
    display: none;
}

.daymode #dashboard .card,
.daymode #dashboard a.filter_item.brand-category {
    background-color: var(--white);
}

#dashboard #content .auth {
    background: url("https://cdn.getmyfollow.com/img/order_page_bg.png");
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.daymode #dashboard #content .auth {
    background-color: #f2f2f2;
}

.daymode #dashboard .card,
.daymode #dashboard a.filter_item.brand-category,
.daymode #dashboard .card_auth_1 .card-body {
    border-color: var(--boder-color);
}

/* dashboard style end */

#counter .xp_card,
.service_card .card-body,
.service_card .card-header {
    background: var(--white);
}

select#service_type,
select#service_type:focus {
    background: var(--white);
    box-shadow: none;
}

/* dark mode color */

#dashboard .card,
#dashboard a.filter_item.brand-category,
.card_auth_1 .card-body {
    background: var(--dark-content-bg);
}

#dashboard #content .auth {
    background-color: var(--dark-body-bg);
}

#dashboard .card,
#dashboard a.filter_item.brand-category,
#dashboard .card_auth_1 .card-body {
    border-color: var(--dark-body-bg);
}

/* new modified code */
/* dashboard style start */
#dashboard .balance_formet_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

#dashboard .custom-secondary-style {
    background: #f0f0f0;
    color: black;
    border-color: #05c191;
    border-radius: 13px;
}

#dashboard a.menu_link.active {
    position: relative;
}

#dashboard a.menu_link.active::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 90%;
    background: var(--primary-color);
    border-radius: 30px;
    left: -30px;
}

#dashboard .show_withBar {
    display: inline-block;
}

#dashboard.activeSidebar .show_withBar {
    display: none;
}

#dashboard.activeSidebar .hide_withBar {
    display: inline-block;
}

#dashboard .hide_withBar {
    display: none;
}

.daymode #dashboard .card,
.daymode #dashboard a.filter_item.brand-category {
    background: var(--white);
}

.daymode #dashboard .card,
.daymode #dashboard a.filter_item.brand-category,
.daymode #dashboard .card_auth_1 .card-body {
    border-color: var(--boder-color);
}

.daymode #dashboard .banner_content,
.daymode #dashboard .order_table_row {
    color: var(--black);
}

.user_status_icon {
    position: absolute;
    width: 40px;
    right: 10px;
    top: 10px;
}

/* dashboard style end */

/* frontend start */
#counter .xp_card,
.service_card .card-body,
.service_card .card-header {
    background: var(--white);
}

.api_table .card {
    background: var(--White);
}

select#service_type,
select#service_type:focus {
    background: var(--white);
    box-shadow: none;
}

span.nav_logo img {
    width: 100%;
}

/* frontend start */

/* dark mode color */

#dashboard .card,
#dashboard a.filter_item.brand-category,
.card_auth_1 .card-body {
    background: var(--dark-content-bg);
}

#dashboard .banner_content,
#dashboard .banner_content p,
#dashboard .order_table_row {
    color: var(--white);
}

/* 
  #dashboard .card,
  #dashboard a.filter_item.brand-category,
  #dashboard .card_auth_1 .card-body {
    border-color: var(--dark-body-bg);
  } */

ul#select2-orderform-service-results .select2-results__option a {
    font-size: 13px;
}

#service_descriptions br:first-child {
    display: none !important;
}

.follow_us_btn_group.footer_group {
    display: flex;
    flex-direction: row;
    justify-content: left;
}

.follow_us_btn_group.footer_group .follows_us_btn {
    width: 40px;
    height: 40px;
    background: #ececec !important;
    padding: 8px;
    justify-content: center;
    transition: 0.5s ease;
}

.follow_us_btn_group.footer_group .follows_us_btn:hover {
    background: var(--bs-primary) !important;
}

/* New Blog Post CSS Codes. */

.blog-post-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog_post_content_wrap {
    padding: 30px 0px;
}

.nav-loc {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.nav-loc .loc-item {
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.5s ease;
}

.nav-loc .loc-item .loc-icon {
    font-size: 20px;
    line-height: 0;
    color: var(--black);
}

.nav-loc .loc-item .loc-text {
    font-size: 18px;
    color: var(--black);
}

.nav-loc .loc-item:hover .loc-icon,
.nav-loc .loc-item:hover .loc-text {
    color: var(--bs-primary);
}

.nav-loc .slash {
    font-size: 22px;
    line-height: 0;
}

.blog-post-title {
    font-size: 52px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--bs-primary);
}

.blog_info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.blog_info .blog_info_item {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 40px;
}

.blog_info .blog_info_item .b_info_icon {
    font-size: 20px;
    line-height: 0;
}

.blog_info .blog_info_item .b_info_text {
    font-size: 16px;
    line-height: 140%;
    color: var(--black);
}

.blog_info .blog_info_item .b_info_text.has-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog_info .b_info_text .share_wrapper {
    display: inline-flex;
    gap: 5px;
}

.blog_info .b_info_text .share_wrapper .share_item {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
    border-radius: 50px;
    transition: 0.5s ease;
}

.blog_info .b_info_text .share_wrapper .share_item:hover {
    background: #00bacb6b;
}

.blog_info .b_info_text .share_wrapper .share_item .share_icon {
    width: 20px;
}

#recentlyPostedBlog {
    padding: 100px 0px;
}

.blog_table_of_content {
    background: #ececec;
    padding: 25px 20px;
    border: 1px solid #a6a6a6;
    border-radius: 10px;
    margin: 20px 0px;
}

.blog_table_of_content h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
}

.blog_table_of_content ul {
    margin: 0px;
}

.blog_table_of_content ul li a {
    color: var(--black);
}

.blog_table_of_content ul li a:hover {
    text-decoration: underline;
}

.author_boxes {
    position: relative;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.15);
}

.author_boxes .author_profile {
    position: absolute;
    right: 30px;
    top: 30px;
}

.author_boxes .author_image img {
    width: 200px;
}

.author_boxes .author_info h4 {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 0;
}

.author_boxes .author_info .author_name {
    font-size: 24px;
    font-weight: bold;
    color: var(--bs-primary);
    margin-bottom: 5px;
}

.author_boxes .author_profile .share_wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.author_boxes .author_profile .share_wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    background-color: rgb(227, 227, 227);
}

.author_boxes .author_profile .share_wrapper a img {
    width: 20px;
}

.main_blog_content_area .blog_title_h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--black);
}

.main_blog_content_area>* {
    color: var(--black);
}

.main_blog_content_area p,
.main_blog_content_area ul {
    color: var(--black);
    font-size: 16px;
}

.main_blog_content_area h3 {
    font-size: 24px;
}

button.google_auth_btn {
    width: 100%;
    background: #05c191;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

button.google_auth_btn .form-group {
    margin: 0px !important;
    padding: 0px !important;
}

@media only screen and (max-width: 992px) {
    .blog-post-image img {
        height: 300px;
    }

    .nav-loc {
        flex-wrap: wrap;
    }

    .blog-post-title {
        font-size: 38px;
    }

    .blog_first_descriptions p {
        font-size: 16px;
    }

    .blog_table_of_content ul li a {
        font-size: 18px;
    }
}

@media only screen and (max-width: 550px) {
    .blog-post-image img {
        height: 250px;
    }

    .blog-post-title {
        font-size: 32px;
    }

    .blog_first_descriptions p {
        font-size: 16px;
    }

    .blog_table_of_content ul li a {
        font-size: 16px;
    }

    .nav-loc .loc-item .loc-icon {
        font-size: 16px;
    }

    .nav-loc .loc-item .loc-text {
        font-size: 14px;
    }

    .main_blog_content_area .blog_title_h2 {
        font-size: 24px;
    }

    .main_blog_content_area h3 {
        font-size: 22px;
    }

    .author_boxes {
        flex-direction: column;
        align-items: start;
    }

    .author_boxes p {
        font-size: 14px;
    }
}

/* Video Sections */

iframe.video_youtube {
    border: 4px solid #04c192;
    border-radius: 10px;
}

.video-bg {
    position: relative;
}


.video-bg::after {
    content: "";
    background: linear-gradient(45deg, #04c192, #da8700);
    width: 250px;
    height: 250px;
    position: absolute;
    filter: blur(60px);
    z-index: -1;
    rotate: 0deg;
    top: 30px;
    left: calc(50% - 125px);
    animation: animateVideoBg 7s infinite;
    transition: 5s ease-in-out;
    opacity: 0.8;
}


@keyframes animateVideoBg {
    0% {
        background: linear-gradient(45deg, #04c192, #da8700);
        rotate: 72deg;
    }

    25% {
        background: linear-gradient(45deg, #da8700, #04c192);
        rotate: 144deg;
    }

    50% {
        background: linear-gradient(45deg, #04c192, #da8700);
        rotate: 216deg;
    }

    75% {
        background: linear-gradient(45deg, #da8700, #b0bbb9);
        rotate: 288deg;
    }

    100% {
        background: linear-gradient(45deg, #04c192, #da8700);
        rotate: 360deg;
    }
}