:root {
    --primary_color: #212121;
    --primary_opacity: #44189a;
    --secondary_color: #00c497;
    --text_color: #212121;
    --text_muted: #91a0b1;
    --background_color: #f9f9f9;
	--footer_background_color: #192132;
    --primary_gradient: radial-gradient(circle, rgba(33, 33, 33, 1) 0%, rgba(8, 8, 8, 1) 30%, rgba(0, 0, 0, 1) 100%);
    --secondary_text_color: #ffffff;

}

body {
    font-family: 'Mulish', sans-serif;
    background-color: var(--background_color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    color: var(--text_color);
}


/* Prevent horizontal scroll */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Prevent modal shake/shift when opening modals */
body.modal-open {
  padding-right: 0 !important;
}

/* Let modal scroll if content is long */
.modal {
  overflow-y: auto;
}

body > * {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  body ::-webkit-scrollbar {
    width: 3px !important;
  }
  body ::-webkit-scrollbar-track {
    background: #fff !important;
  }
  body ::-webkit-scrollbar-thumb {
    background: #e3e7ed !important;
  }
  body > ::-webkit-scrollbar-thumb:hover {
    background: #e3e7ed !important;
  }


  /* Start Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: #dfdfdf;
  }

  ::-webkit-scrollbar-thumb {
    background: #cbcbcd;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
  }

  /* End Custom scrollbar */
  .simplebar-scrollbar:before {
    background-color: #999;
  }


a {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    text-decoration: none;
    color: var(--text_color);
}

a:hover {
    color: var(--text_color);
}

/*
@media (min-width: 1600px) {
  .container {
    max-width: 1560px;
  }
}

*/

.logo img {
    height: 50px;
}

.text-primary {
    color: var(--primary_color) !important;
}

.text-secondary {
    color: var(--secondary_color) !important;
}

.link {
    cursor: pointer;
}

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

.link.link-secondary {
    color: var(--secondary_color);
}

.link:hover {
    opacity: .8;
}

.btn {
    border-radius: 8px;
    border-width: 2px;
    -webkit-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn.btn-md {
    padding: 5px 20px;
    height: 40px;
    font-size: 17px;
    font-weight: 700;
	font-family: Roboto Mono,monospace !important;
	border-radius: 500px;
	display: flex;
    align-items: center;
	background-color: var(--secondary_color);
}

.btn.btn-lg {
    padding: 10px 15px;
    font-size: 17px;
    font-weight: 500;
    border-width: 1px;
}

.btn.btn-xl {
    padding: 20px 30px;
    font-size: 17px;
    font-weight: 500;
    border-width: 1px;
}

.btn.btn-primary {
    background-color: var(--primary_color);
    border-color: var(--primary_color);
}

.btn.btn-primary:hover {
    opacity: .9;
}

.btn.btn-secondary {
    background-color: var(--secondary_color);
    border-color: var(--secondary_color);
	border-radius: 9999px;
}

.btn.btn-secondary:hover {
    opacity: .9;
}

.btn.btn-outline-primary {
    border-color: var(--primary_color);
    color: var(--primary_color);
}

.btn.btn-outline-primary:hover {
    background-color: var(--primary_color);
    color: #fff;
}

.btn:focus,
.btn:active {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn-close {
    width: .75em;
    height: .75em;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background-size: .75em;
}

.form-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.form-number .form-select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
    height: auto;
}

.form-number .form-select:focus {
    border-color: #ced4da;
}

.form-number .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.form-control {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 8px;
}

.form-control.form-control-md {
    padding-top: 10.75px;
    padding-bottom: 10.75px;
}

.form-control:focus {
    border-color: var(--primary_color);
}

.form-select {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 8px;
}

.form-select.form-select-md {
    padding-top: 10.75px;
    padding-bottom: 10.75px;
}

.form-select:focus {
    border-color: var(--primary_color);
}

.form-check-input {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.form-check-input:checked {
    background-color: var(--primary_color);
    border-color: var(--primary_color);
}

.form-switch .form-check-input {
    cursor: pointer;
}

.form-switch .form-check-input:not(:checked):focus {
    border-color: #888;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23888'/%3e%3c/svg%3e");
}

.settings-user-img {
    position: relative;
    width: 100px;
    height: 100px;
}

.settings-user-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.settings-user-img .settings-user-img-change {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background-color: rgba(20, 20, 20, 0.15);
}

.settings-user-img .settings-user-img-change i {
    cursor: pointer;
    color: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.settings-user-img .settings-user-img-change i:hover {
    opacity: .7;
}

.settings-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.settings-links .settings-link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #7d7d7e;
    padding: 15px 25px;
}

.settings-links .settings-link:not(:last-child) {
    margin-bottom: 10px;
}

.settings-links .settings-link::before {
    visibility: hidden;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--primary_color);
    border-radius: 20px;
    opacity: .05;
    z-index: 0;
}

.settings-links .settings-link:hover,
.settings-links .settings-link.active {
    z-index: 0;
    color: #555;
}

.settings-links .settings-link:hover::before,
.settings-links .settings-link.active::before {
    visibility: visible;
}

.settings-links .settings-link i {
    width: 35px;
}

.accordion-button {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 8px !important;
    background-color: #fff !important;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 600;
    font-size: 18px;
	color: #22242b;
}

.accordion-button::after {
    display: none;
}

.accordion-button .accordion-button-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    font-size: 18px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.accordion-button:not(.collapsed) {
    color: var(--primary_color);
}

.accordion-button:not(.collapsed) .accordion-button-icon {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.accordion-item {
    border-radius: 8px !important;
    border: 2px solid #eee !important;
}

.accordion-item:not(:last-child) {
    margin-bottom: 16px;
}

.accordion-body {
    padding-top: 0;
    color: #4a5568;
}

/* Article manual link styling */
.accordion-body a {
     color: inherit; /* keep text color the same */
    text-decoration: underline; /* underline shows it’s a link */
    text-decoration-thickness: 1.5px; /* makes underline slightly thicker for clarity */
    text-underline-offset: 2px; /* space between text and underline */
    font-weight: 500; /* optional, subtle emphasis */
    transition: text-decoration-color 0.2s ease;
}
.accordion-body a:hover {
    text-decoration-thickness: 2px; /* slightly thicker on hover */
}



.page-item.active .page-link {
    background-color: var(--primary_color);
    border-color: var(--primary_color);
}

.page-link {
    color: var(--primary_color);
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.page-link:hover {
    color: var(--primary_color);
}

h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #222;
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 25px;
  }
}

.card {
     border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #eee;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}


.card.card-blog img {
    width: 100%;
    max-height: 450px;
    -o-object-fit: cover;
    object-fit: cover;
	border-bottom: 1px solid #eee;
}

.card.v2 {
    -webkit-box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.card .card-body {
  padding: 25px 30px;
  line-height: 1.7;
  font-size: 16px;
  color: #333;
}

.posts .post {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.posts .post:not(:last-child) {
    margin-bottom: 16px;
}

.posts .post .post-img {
    border-radius: 8px;
  margin-right: 12px;
    width: 60px;
    height: 60px;
    -o-object-fit: cover;
    object-fit: cover;
}

.posts .post .post-info .post-title {
    overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 16px;
}

.post-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.post-meta .post-meta-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #888;
    font-size: 14px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.post-meta .post-meta-item:not(:last-child) {
    margin-right: 10px;
}

.post-meta .post-meta-item:not(:last-child)::after {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #999;
    margin-left: 10px;
    border-radius: 50%;
}

.post-meta .post-meta-item i {
    margin-right: 5px;
}

/* === COMMENTS SECTION === */
.comments {
  width: 100%;
  margin-top: 40px;
}

.comments .comment {
  display: flex;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e2e2e2;
}

.comments .comment:not(:last-child) {
  margin-bottom: 20px;
}

.comments .comment .comment-img img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 14px;
  object-fit: cover;
}

.comments .comment .comment-text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .card .card-body {
    padding: 20px;
    font-size: 15px;
  }
}



  .posts .post .post-img {
    width: 50px;
    height: 50px;
  }

  .comments .comment {
    flex-direction: column;
    align-items: flex-start;
  }

  .comments .comment .comment-img {
    margin-bottom: 12px;
  }
}

.plan-switcher {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 35px;
}

.plan {
    position: relative;
    background-color: #fff;
    -webkit-box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    padding: 45px 30px;
}

.plan.yearly .plan-monthly {
    display: none;
}

.plan.yearly .plan-yearly {
    display: block;
}

.plan .plan-monthly input {
    display: none;
}

.plan .plan-yearly {
    display: none;
}

.plan .plan-yearly input {
    display: none;
}

.plan .plan-price {
    font-size: 55px;
    font-weight: 700;
}

.plan .plan-text {
    margin-bottom: 30px;
}

.plan .plan-features {
    margin-top: 30px;
}

.plan .plan-features .plan-feat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
}

.plan .plan-features .plan-feat:not(:last-child) {
    margin-bottom: 16px;
}

.plan .plan-features .plan-feat .plan-feat-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: var(--primary_color);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    font-size: 15px;
}

.plan .plan-features .plan-feat .plan-feat-icon-v2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: var(--secondary_color);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    font-size: 15px;
}


.discount {
    display: none;
    -webkit-transform: perspective(200px) translateZ(-200px);
    transform: perspective(200px) translateZ(-200px);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.discount.show {
    display: block;
}

.discount.animate {
    -webkit-transform: perspective(200px) translateZ(0);
    transform: perspective(200px) translateZ(0);
}

.emptyInboxTitle {
  color: #585d6a;
  font-size: 20px;
  font-family: Roboto Mono,monospace !important;
  font-weight: 400;
  font-style: normal;
}

.nav {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    height: 70px;
    background: #21232a url(img/bstar.jpg) repeat 0 0;
}

.nav.nav-sticky {
    position: fixed;
    top: 0;
    left: 0;
    margin-top: 0;
    background-color: #fff;
    z-index: 1030;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}


.nav .nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	justify-content: space-between; /* CRUCIAL: Pushes logo left and button right */
    width: 100%;
}


.nav .nav-inner .logo {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.nav .nav-inner .nav-actions-sm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
}

@media (min-width: 1200px) {
    .nav .nav-inner .nav-actions-sm {
        display: none;
        
        
    }
}

.nav .nav-inner .nav-menu-button {
    color: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
    display: none !important;
}

.nav .nav-inner .nav-menu-button:hover {
    opacity: .8;
}

@media (max-width: 1199.98px) {
    .nav .nav-inner .nav-menu-button {
        display: flex !important;
    }
}

.nav .nav-inner .nav-menu {
    width: 100%;
}

@media (max-width: 1199.98px) {
    .nav .nav-inner .nav-menu {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1040;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        visibility: hidden;
        opacity: 0;
		pointer-events: none; /* THIS IS THE FIX: Allows clicks to pass through to the button below */
        transition: all 0.3s ease;
        
    }
}

.nav .nav-inner .nav-menu .overlay {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(17, 17, 26, 0.25);
}

@media (max-width: 1199.98px) {
    .nav .nav-inner .nav-menu .overlay {
        display: block;
    }
}

.nav .nav-inner .nav-menu .nav-menu-close {
    cursor: pointer;
    color: #666;
}

.nav .nav-inner .nav-menu .nav-menu-close i {
    font-size: 18px;
}

.nav .nav-inner .nav-menu .nav-menu-close:hover {
    opacity: .8;
}

.nav .nav-inner .nav-menu .nav-menu-scroller {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: visible !important;
    height: 70px;
}

.nav .nav-inner .nav-menu .nav-menu-scroller .ps__rail-x,
.nav .nav-inner .nav-menu .nav-menu-scroller .ps__rail-y {
    display: none !important;
}

@media (max-width: 1199.98px) {
    .nav .nav-inner .nav-menu .nav-menu-scroller {
        display: block;
        position: absolute;
        max-width: 60%;
        min-width: 250px;
        top: 0;
        right: -300px;
        height: 100%;
        background-color: #fff;
        padding: 20px;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        overflow: hidden !important;
    }

    .nav .nav-inner .nav-menu .nav-menu-scroller .ps__rail-x,
    .nav .nav-inner .nav-menu .nav-menu-scroller .ps__rail-y {
        display: block !important;
    }
}

.nav .nav-inner .nav-menu .nav-menu-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 1199.98px) {
    .nav .nav-inner .nav-menu .nav-menu-body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}

.nav .nav-inner .nav-menu .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
}

@media (max-width: 1199.98px) {
    .nav .nav-inner .nav-menu .nav-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        margin-left: 0;
    }
}

.nav .nav-inner .nav-menu .nav-links .nav-link {
    padding: 0;
	margin-right: 10px;
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    opacity: 0.9;
}

@media (max-width: 1199.98px) {
    .nav .nav-inner .nav-menu .nav-links .nav-link {
        margin-bottom: 10px;
        color: var(--text_color);
    }
}

.nav .nav-inner .nav-menu .nav-links .nav-link:not(:last-child) {
    margin-right: 30px;
}

@media (max-width: 1199.98px) {
    .nav .nav-inner .nav-menu .nav-links .nav-link:not(:last-child) {
        margin-right: 0;
    }
}

.nav .nav-inner .nav-menu .nav-links .nav-link:hover,
.nav .nav-inner .nav-menu .nav-links .nav-link.active {
    font-weight: 500;
    opacity: 1;
	
}

.nav .nav-inner .nav-menu .nav-links .nav-drop {
    position: relative;
    z-index: 1030;
}

.nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 1199.98px) {
    .nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-btn {
        color: var(--text_color);
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-menu {
    visibility: hidden;
    position: absolute;
    top: 40px;
    left: -10px;
    background-color: #fff;
    min-width: 200px;
    padding: 20px;
    border-radius: 5px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    opacity: 0;
    -webkit-transform: perspective(200px) translateZ(-200px);
    transform: perspective(200px) translateZ(-200px);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

@media (max-width: 1199.98px) {
    .nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-menu {
        display: none;
        position: static;
        left: 0;
        width: 100%;
        margin-bottom: 10px;
    }
}

.nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-menu .nav-link {
    color: var(--text_color);
}

.nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-menu .nav-link:not(:last-child) {
    margin-bottom: 10px;
}

.nav .nav-inner .nav-menu .nav-links .nav-drop .nav-drop-menu .nav-link:last-child {
    margin-bottom: 0;
}

.nav .nav-inner .nav-menu .nav-links .nav-drop.active .nav-drop-menu {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 1199.98px) {
    .nav .nav-inner .nav-menu .nav-links .nav-drop.active .nav-drop-menu {
        display: block;
    }
}

.nav .nav-inner .nav-menu .nav-links .nav-drop.animated .nav-drop-menu {
    -webkit-transform: perspective(200px) translateZ(0);
    transform: perspective(200px) translateZ(0);
}

.nav .nav-inner .nav-menu .nav-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
}

@media (max-width: 1199.98px) {
    .nav .nav-inner .nav-menu .nav-actions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        margin-left: 0;
    }
}

@media (max-width: 1199.98px) {
    .nav .nav-inner .nav-menu .nav-actions .btn-outline-light {
        color: var(--text_color);
    }
}

.nav .nav-inner .nav-menu .nav-actions>*:not(:last-child) {
    margin-right: 15px;
}

@media (max-width: 1199.98px) {
    .nav .nav-inner .nav-menu .nav-actions>*:not(:last-child) {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 1199.98px) {
    .nav .nav-inner .nav-menu.show {
        visibility: visible;
        opacity: 1;
		pointer-events: auto;
    }
}

@media (max-width: 1199.98px) {
    .nav .nav-inner .nav-menu.show .nav-menu-scroller {
        visibility: visible;
        opacity: 1;
        right: 0;
    }
}


.nav.nav-sticky .language .language-button {
    color: #444;
}

.nav.nav-sticky .nav-inner .nav-menu .nav-links a {
    color: #fff;
}

.nav.nav-sticky .nav-inner .nav-menu .nav-drop .nav-drop-btn {
    color: var(--text_color);
}

.nav.nav-sticky .nav-inner .nav-menu .nav-actions .btn-outline-light {
    color: var(--text_color);
}

.header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: var(--primary_color);
    overflow: visible; /* no stacking context */
    
}

.header.v2 {
    min-height: 400px;
}

.header.v2 .header-circles {
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
}

.header.v2 .header-circles .header-circle {
    border-width: 1px;
}

.header .header-circles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header .header-circles .header-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed #fff;
    opacity: .7;
}

.header .header-circles .header-circle__1 {
    height: 300%;
    top: -10vw;
    -webkit-animation: rotate 500000ms linear infinite;
    animation: rotate 500000ms linear infinite;
}

@media (max-width: 575.98px) {
    .logo img {
        height: 30px;
    }

    .header .header-circles .header-circle__1 {
        display: none;
    }

    .mail-history-item span {
        display: none !important;
    }

    .mail-history-item .email , .mail-history .mail-history-day .mail-history-day-header  {
        font-size: 14px !important;
    }

    .go-up {
        visibility: hidden;
        position: fixed;
        width:40px  !important;
        height: 40px !important;
        bottom: 50px !important;
        right: 16px !important;
    }

}

.header .header-circles .header-circle__2 {
    height: 225%;
    top: 8%;
    animation: rotate 500000ms linear infinite reverse;
}

@media (max-width: 575.98px) {
    .header .header-circles .header-circle__2 {
        display: none;
    }
}

.header .header-circles .header-circle__3 {
    height: 150%;
    top: 40%;
    animation: rotate 500000ms linear infinite reverse;
}

@media (max-width: 575.98px) {
    .header .header-circles .header-circle__3 {
        display: none;
    }
}

.header .header-wrapper {
    background: #21232a url(img/bstar.jpg) repeat 0 0;
  padding-bottom: 20px;
  padding-top: 20px;
}

.header .header-wrapper .header-title {
    font-size: 20px !important;
    color: #fff !important;
    line-height: 100% !important;
    margin-top: 0 !important;
    padding-top: 0;
    margin-bottom: 25px !important;
    text-align: center;
    margin-bottom:.5rem;
  font-family:Roboto Mono,monospace!important;
  font-weight:700!important;
  font-weight: bold;

}

.header .header-wrapper .header-text {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    max-width: 700px;
    font-size: 16px !important;
    font-family: Roboto Mono,monospace !important;
    font-weight: 500 !important;
    padding: 0;
	color: #7a7c80;
    
}

.mail-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    flex-wrap: nowrap;
}

@media (max-width: 1200px) {
    .mail-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.mail-wrapper .ad {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .mail-wrapper .ad:first-child {
        margin-bottom: 20px;
    }
}

@media (max-width: 1200px) {
    .mail-wrapper .ad:last-child {
        margin-top: 20px;
    }
}

.mail-wrapper .mail-selection {
    max-width: 560px;
    width: 100%;
    text-align:center;
    border-radius: 15px;
    padding: 5px 5px;
    margin: 0 15px;
    -ms-flex-negative: 1;
    flex-shrink: 1;	
}

@media (max-width:1199px) {
  .mail-wrapper .mail-selection {
    max-width:550px;
    margin:0 auto
  }
}

/* Extra Small Devices (Below 570px) */
@media (max-width: 569px) {
  .mail-wrapper .mail-selection .mail-select .mail-input input {
    padding-right: 20px !important; /* No buttons, so normal padding */
  }
}

/* Small to Medium Devices (570px to 991px) */
@media (min-width: 570px) and (max-width: 991px) {
  .mail-wrapper .mail-selection .mail-select .mail-input input {
    padding-right: 60px !important; /* Adjust if only one button appears or smaller UI */
  }
}

/* Large Devices and Up (992px and above) */
@media (min-width: 992px) {
  .mail-wrapper .mail-selection .mail-select .mail-input input {
    padding-right: 60px !important; /* Enough space for both buttons */
  }
}

.mail-wrapper .mail-selection .mail-select {
    position: relative;
    z-index: 50;
}

.mail-wrapper .mail-selection .mail-select .mail-input {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.mail-wrapper .mail-selection .mail-select .mail-input input {
    outline: 0;
    border: 0;
    border-radius: 30px;
    padding: 10px 130px 10px 20px;
    font-size: 20px !important;
    font-weight: 400 !important;
    height: 57px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background-color: #fff;
    font-family: Roboto,sans-serif !important;
    width:100%;
    min-width:100%;
    
    
    
}


.mail-wrapper .mail-selection .mail-select .mail-input .mail-input-copy {
    position: absolute;
    right: 8px;
    height: 80%;
    width: 60px;
    font-size: 18px;
}

.mail-wrapper .mail-selection .mail-select .mail-input .mail-input-icon {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    right: 80px;
    font-size: 16px;
    color: var(--text_color);
    cursor: pointer;
    border: 2px solid var(--text_color);
    border-radius: 50%;
    width: 26px;
    height: 26px;
}

.mail-wrapper .mail-selection .mail-select .mail-results {
    visibility: hidden;
    position: absolute;
    width: 100%;
    background-color: #f6f6f6;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.mail-wrapper .mail-selection .mail-select .mail-results .mail-results-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 16px;
    color: var(--text_color);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-top: 1px solid #ddd;
    cursor: pointer;
}

.mail-wrapper .mail-selection .mail-select .mail-results .mail-results-item label {
    cursor: pointer;
}

.mail-wrapper .mail-selection .mail-select .mail-results .mail-results-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--text_color);
    text-align: center;
    background-color: #e7e7e7;
    padding: 10px;
    border-radius: 0 0 8px 8px;
}

.mail-wrapper .mail-selection .mail-select .mail-results .mail-results-info .btn {
    font-size: 12px;
}

.mail-wrapper .mail-selection .mail-select.show .mail-input input {
    border-radius: 8px 8px 0 0;
}

.mail-wrapper .mail-selection .mail-select.show .mail-results {
    visibility: visible;
    opacity: 1;
}

.mail-wrapper .mail-selection .mail-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 25px;
}

@media (max-width: 991.98px) {
    .mail-wrapper .mail-selection .mail-actions {
        margin-top: 15px;
    }
}

.mail-wrapper .mail-selection .mail-actions .mail-action {
    width: 100%;
    color: var(--text_color);
    padding: 12px 8px;
    font-size: 15px;
    white-space: nowrap;
}





@media (max-width: 991.98px) {
    .mail-wrapper .mail-selection .mail-actions .mail-action {
        font-size: 12px;
    }
}

@media (max-width: 499.98px) {
    .mail-wrapper .mail-selection .mail-actions .mail-action {
        padding: 7px 5px;
        
    }
}

.mail-wrapper .mail-selection .mail-actions .mail-action:not(:last-child) {
    margin-right: 2px;
}

.mail-wrapper .mail-selection .mail-actions .mail-action .mail-action-text {
    margin-left: 5px;
}

@media (max-width: 991.98px) {
    .mail-wrapper .mail-selection .mail-actions .mail-action .mail-action-text {
        display: none;
    }
}



.header-counters {
    max-width: 750px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 15px;
}

.header-counters .header-counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: var(--primary_opacity);
    color: var(--secondary_text_color);
    border-radius: 8px;
    padding: 20px;
}

.header-counters .header-counter .header-counter-info .header-counter-number {
    font-size: 24px;
    margin-bottom: 5px;
}

.header-counters .header-counter .header-counter-info .header-counter-title {
    text-transform: uppercase;
    margin-bottom: 0;
}

.header-counters .header-counter .header-counter-icon i {
    font-size: 50px;
}

.ad.ad-v {
    width: 200px;
    height: 600px;
}

.ad.ad-h {
    max-width: 720px;
    width: 100%;
    height: 90px;
}

.ad.ad-350 {
    max-width: 350px;
    width: 100%;
    height: 250px;
}

.ad.ad-250x250 {
   max-width: 336px;
  height: 280px;
  position: relative;
}

.ad.ad-box {
    max-width: 250px;
    width: 100%;
    height: 250px;
}



.ad img {
    width: 100%;
    height: 100%;
}

.section {
    position: relative;
    padding-top: 20px;
    padding-bottom: 45px;
    z-index: 0;
}

.section .section-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

.section .section-header .section-title-sm {
    position: relative;
    padding: 6px 12px;
    z-index: 0;
    color: var(--secondary_text_color);
    margin-bottom: 16px;
    text-transform: uppercase;
    font-size: 14px;
}

.section .section-header .section-title-sm::before {
    content: "";
    position: absolute;
    background-color: var(--primary_color);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 8px;
}

.section .section-header .section-title {
	font-family: 'Roboto Mono', monospace !important;
    font-size: 28px !important; /* Large and clear */
    font-weight: 700 !important;
    color: #22242b !important;
    line-height: 1.3 !important; /* Added for better multi-line wrapping */
    margin-bottom: 16px !important;
    letter-spacing: -0.5px;
    text-align: center;
    
}

.section .section-header .section-text {
    max-width: 750px;
    margin: 0 auto; 
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    text-align: center;
}

@media (max-width: 768px) {
    .section .section-header .section-title {
        font-size: 22px !important; 
        margin-bottom: 12px !important;
        padding: 0 10px; 
        line-height: 1.2 !important;
    }

    .section .section-header .section-text {
        font-size: 16px !important; 
        line-height: 1.5 !important;
        padding: 0 20px; 
    }
}

.section .section-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: var(--primary_color);
    z-index: -1;
}

.mailbox-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 1199.98px) {
    .mailbox-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.mailbox-container .ad {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.mailbox-container .mail-content {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 750px;
}

.mailbox {
    width: 100%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 16px;
    overflow: hidden;
}

.mailbox .mailbox-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-transform: uppercase;
    background-color: var(--primary_color);
    color: #fff;
    padding-left: 25px;
  font-size: 1rem;
  font-weight: 700;
  font-family: Roboto Mono,monospace !important;
    
}

.mailbox .mailbox-header .mailbox-header-item {
    padding: 22px 16px;
}

.mailbox .mailbox-header .mailbox-header-item p {
    margin-bottom: 0;
}

.mailbox .mailbox-header .mailbox-header-item:first-child {
    width: 40%;
}

@media (max-width: 575.98px) {
    .mailbox .mailbox-header .mailbox-header-item:first-child {
        width: 30%;
    }
}

.mailbox .mailbox-header .mailbox-header-item:nth-child(2) {
    width: 40%;
}

@media (max-width: 575.98px) {
    .mailbox .mailbox-header .mailbox-header-item:nth-child(2) {
        width: 70%;
    }
}

.mailbox .mailbox-header .mailbox-header-item:nth-child(3) {
    width: 20%;
}

@media (max-width: 575.98px) {
    .mailbox .mailbox-header .mailbox-header-item:nth-child(3) {
        display: none;
    }
}

.mailbox .mailbox-body {
    background-color: #fff;
    min-height: 333px;
}

.mailbox .mailbox-body .mailbox-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.mailbox .mailbox-body .mailbox-item:nth-child(even) {
    background-color: #f6f6f6;
}

.mailbox .mailbox-body .mailbox-item .mailbox-item-col {
    padding: 16px;
}

.mailbox .mailbox-body .mailbox-item .mailbox-item-col p {
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.mailbox .mailbox-body .mailbox-item .mailbox-item-col:first-child {
    width: 40%;
}

@media (max-width: 575.98px) {
    .mailbox .mailbox-body .mailbox-item .mailbox-item-col:first-child {
        width: 30%;
    }
}

.mailbox .mailbox-body .mailbox-item .mailbox-item-col:nth-child(2) {
    width: 40%;
    overflow: hidden;
}

@media (max-width: 575.98px) {
    .mailbox .mailbox-body .mailbox-item .mailbox-item-col:nth-child(2) {
        width: 70%;
    }
}

.mailbox .mailbox-body .mailbox-item .mailbox-item-col:nth-child(3) {
    width: 22%;
}

@media (max-width: 575.98px) {
    .mailbox .mailbox-body .mailbox-item .mailbox-item-col:nth-child(3) {
        display: none;
    }
}

.mailbox .mailbox-body .empty {
    display: none;
}

.mailbox.empty .mailbox-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.mailbox.empty .mailbox-body .mailbox-item {
    display: none;
}

.mailbox.empty .mailbox-body .empty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 426px;
}

.mailbox.empty .mailbox-body .empty .empty-icon .emptyInboxRotation {
    -webkit-animation: rotation 2s linear infinite;
    animation: rotation 2s linear infinite;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.feat {
    display: block;
    padding: 50px 40px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 8px;
    color: var(--text_color);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.feat .feat-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    z-index: 0;
    color: var(--secondary_text_color);
    margin-bottom: 30px;
}

.feat .feat-icon i {
    font-size: 30px;
}

.feat .feat-icon::before {
    content: "";
    position: absolute;
    background-color: var(--primary_color);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 8px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.feat .feat-title {
    margin-bottom: 16px;
}

.feat .feat-text {
    margin-bottom: 0;
    color: #666;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.feat:hover,
.feat.active {
    color: #fff;
    background-color: var(--primary_color);
}

.feat:hover .feat-icon {
    color:  var(--primary_color);
}

.feat:hover .feat-icon::before,
.feat.active .feat-icon::before {
    background-color: #fff;
    opacity: 1;
}

.feat:hover .feat-text,
.feat.active .feat-text {
    color: #fff;
}

.faqs {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}

.question {
    background: var(--primary_gradient);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
}

/*
.section-shapes {
    position: relative;
    z-index: 1;
}

.section-shapes::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -80px;
    right: 20px;
    background-image: url('../img/shape-01.png'); /* Update path if needed */
    width: 150px;
    height: 200px;
    background-size: cover;
    opacity: 0.4;
    z-index: -1;
    animation: shapeAnimation 3s infinite alternate;
}

@keyframes shapeAnimation {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(15px);
    }
}

/* CARD DESIGN INSIDE SECTION-SHAPES */
.section-shapes .card1 {
    display: block;
    position: relative;
    width: 100%;
    max-width: 720px;
    background-color: #f2f8f9;
    border-radius: 4px;
    padding: 32px 24px;
    margin: 12px;
    text-decoration: none;
    overflow: hidden;
    z-index: 0;
   
    transition: transform 0.3s ease;  /* smooth scaling */
    will-change: transform; 
}

.section-shapes .card1:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background-color: rgb(139, 92, 246); /* violet match */
    height: 40px;
    width: 40px;
    border-radius: 40px;
    transform: scale(1);
    transition: transform 0.25s ease-out;
}

.section-shapes .card1:hover:before {
    transform: scale(50);
    transition: all 0.25s ease-out;
}

.section-shapes .card1:hover p {
    transition: all 0.3s ease-out;
    color: rgba(255, 255, 255, 0.8);
}

.section-shapes .card1:hover h3 {
    color: #fff;
}

.section-shapes .card1 p {
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    color: #666;
    margin-bottom: 10px;
}

.section-shapes .card1 p.small {
    font-size: 14px;
}

.section-shapes .go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 32px;
    height: 32px;
    top: 0;
    right: 0;
    background-color: rgb(139, 92, 246); /* violet match */
    border-radius: 0 4px 0 32px;
    overflow: hidden;
}

.section-shapes .go-arrow {
    margin-top: -4px;
    margin-right: -4px;
    color: white;
    font-family: courier, sans-serif;
}

@media (max-width: 767.98px) {
    .section-shapes::after {
        bottom: -40px;
        right: 10px;
        width: 100px;
        height: 140px;
    }
}




@media (max-width: 767.98px) {
    .section-shapes::after {
        bottom: -50px;
    }
}
    */

/* ============================================================
   GLOBAL LANGUAGE SETTINGS
   ============================================================ */
.language {
    position: relative;
    display: inline-block;
    z-index: 1030;
}

.footer .language {
    position: relative;
    display: inline-block; /* Important: shrinks container to button width */
}

/* THE DROPDOWN CARD */
.language .language-menu {
    position: absolute;
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    
    /* Centering Logic */
    left: 50% !important;
    transform: translateX(-50%) translateY(10px); 
    
    min-width: 160px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1040;
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Active State Triggered by JS */
.language.active .language-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* THE LITTLE ARROW (Pointy bit) */
/* --- NEW PROFESSIONAL ARROW DESIGN --- */

/* Base Arrow Styles (Global/Header) */
/* --- PROFESSIONAL WHITE ARROW DESIGN --- */

/* Base Arrow Styles (Global/Header) */
.language .language-menu::before {
    content: "";
    position: absolute;
    width: 10px; /* Refined size */
    height: 10px;
    background-color: #ffffff;
    
    /* Perfect Centering */
    left: 50%;
    margin-left: -5px;
    
    /* Position for Header: Top of menu pointing up */
    top: -6px;
    
    /* Seamless Border: Matches the menu edge */
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    
    transform: rotate(45deg);
    z-index: 1; 
}

/* Footer Specific Overrides (White Color pointing Down) */
.footer .language-menu::before {
    top: auto !important; 
    bottom: -6px !important; 
    
    /* Ensure it is solid white */
    background-color: #ffffff !important; 
    
    /* Reset header borders and apply footer-specific ones */
    border: none !important;
    border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    
    /* Points down toward the button */
    transform: rotate(45deg) !important; 
    
    /* Soft shadow to match the menu card */
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.05);
}

/* ============================================================
   FOOTER SPECIFIC OVERRIDES (Showing Above Button)
   ============================================================ */
.footer .language-menu {
    top: auto !important; 
    bottom: 100% !important; 
    margin-bottom: 12px; /* Space for the arrow */

    /* Ensure horizontal center RELATIVE TO THE BUTTON */
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(10px);
    
    /* Specific footer padding if needed */
    padding: 8px 0;
}

.footer .language.active .language-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* 5. Menu Link Styles */
.footer .language-menu a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    gap: 10px;
}

.footer .language-menu a:hover {
    background-color: #f8f9fa;
}

/* THE BUTTON STYLE (from your screenshot) */
.language-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 38px;
    padding: 0 16px;
    background: rgba(135, 135, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 500px;
    color: #fff;
    cursor: pointer;
    font-family: 'Roboto Mono', monospace;
    transition: all 0.3s ease;
}

.footer .language-current {
    color: #A7A7AA;
    background: transparent;
    border: 1px solid #444;
}

.footer .language-current:hover {
    color: #fff;
    border-color: #fff;
	background: rgba(255, 255, 255, 0.05);
}

/* MENU ITEM STYLES */
.language .language-menu a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    gap: 10px;
}

.language .language-menu a:hover {
    background-color: #f8f9fa;
}

.language .language-menu a.active {
    background-color: #f0f0f0;
}

/* Checkmark for Active Language */
.language .language-menu a.active::after {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    margin-left: auto;
    color: #999;
}

/* 3. ICON ROTATION (As requested) */
/* The chevron icon turns up when active */
.footer .language.active .language-current i {
    transform: rotate(180deg);
}

.footer .language-current i {
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Target the footer brand link */
.footer-brand.logo {
    display: inline-block;
    margin-bottom: 1rem; /* Equivalent to mb-3 */
    line-height: 0;      /* Removes baseline gap */
}

/* Target the logo image itself */
.footer-brand.logo img {
    display: block;
    width: 180px;        /* Your preferred width */
    height: auto;        /* Maintain aspect ratio */
    margin: 0 auto;      /* Centers the image inside the link on mobile */
}

/* On Desktop (992px and up) */
@media (min-width: 992px) {
    .footer-brand.logo img {
        margin: 0;       /* Aligns to the left on desktop */
    }
}

.mail-history {
    border: 1px solid #eee;
    max-height: 50vh;
    min-height: 50vh;
    overflow: auto;
}

.mail-history-empty {
    display: flex;
    height: 48vh;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
}


.mail-history .mail-history-day {
    position: relative;
}

.mail-history .mail-history-day .form-check {
    margin-right: 10px;
}

.mail-history .mail-history-day .mail-history-day-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: var(--secondary_color);
    padding: 8px 20px;
    color: #fff;
    text-transform: uppercase;
    z-index: 11;
}

.mail-history .mail-history-day .mail-history-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.mail-history .mail-history-day .mail-history-item .btn {
    visibility: hidden;
    position: absolute;
    right: 20px;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.mail-history .mail-history-day .mail-history-item:hover {
    background-color: #f5f5f5;
}

.mail-history .mail-history-day .mail-history-item:hover .btn {
    visibility: visible;
    opacity: 1;
}

.payment-method {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 5px;
    z-index: 1;
}

.payment-method .payment-info {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.payment-method .payment-img {
    position: relative;
    margin-right: 10px;
    z-index: 1;
}

.payment-method .payment-img img {
    height: 60px;
}

.payment-method .payment-title {
    position: relative;
    font-weight: 500;
    z-index: 1;
    line-height: 60px;
}

.payment-method .form-check-label {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 2;
}

.payment-method .form-check-input {
    margin: auto 15px;
    z-index: 1;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.payment-method .form-check-input+ ::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 1px solid #eee;
    border-radius: 5px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-color: #eee;
}

.payment-method .form-check-input:checked+ ::after {
    border-color: var(--primary_color);
    background-color: var(--primary_color);
    opacity: .1;
}

.footer {
    background-color: var(--footer_background_color);
	border-top: 1px solid #f1f1f1;
    color: #444;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: #A7A7AA; /* Muted gray for headers */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav li a {
    color: #A7A7AA;
    text-decoration: none;
    font-size: 1.0rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    font-weight: 500;
	gap: 10px; /* Space between icon and text */
	
  
}



/* Target the footer navigation links for hover effect */
.footer-nav li a:hover .link-text {
    text-decoration: underline;
    text-decoration-thickness: 1px; /* Optional: controls thickness */
    text-underline-offset: 3px;     /* Optional: adds space between text and line */
}

/* If you want the icon to be underlined too (rare), use this instead: */
.footer-nav li a:hover {
    text-decoration: underline;
}

.external-icon {
    font-size: 10px;
    color: #bbb;
	
}

/* Mobile Optimization (under 768px) */
@media (max-width: 767px) {
    .footer .row.g-5 {
        --bs-gutter-y: 2.5rem; /* Adds vertical space between categories */
		justify-content: center;
    }
	
	.footer .col-6 {   
    justify-content: center;
    
	}

    .footer-heading {
        font-size: 13px;
		font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #A7A7AA;
    }

    .footer-nav li {
        margin-bottom: 0.75rem !important;
    }

    .link-text {
        font-size: 14px;
        line-height: 1.3;
        word-break: break-word;
		
    }
	

    /* Prevents the Language Widget from touching the categories */
    .nav-actions {
        margin-bottom: 1.5rem;
    }
}

/* Specific fix for the "External Icon" and icons alignment */
.footer-link {
    transition: opacity 0.2s ease;
    color: inherit;
}

.footer-link:hover {
    opacity: 0.8;
	
}

.footer-icon-wrapper i {
    font-size: 14px;
	display: block;
}

.text-muted {
    color: #A7A7AA !important;
    line-height: 1.6;
}

.footer .footer-upper {
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #4d4d4d;
}

.footer .footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.footer .footer-links a {
    margin: 10px;
    color: #f1f1f1;
    font-size: 17px;
}

.footer .footer-links a:hover {
    opacity: .9;
}

.footer .footer-lower {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #f1f1f1;
}

.cookies {
    visibility: hidden;
    position: fixed;
    max-width: 380px;
    padding: 30px;
    bottom: -150%;
    left: 40px;
    width: 100%;
    border-radius: 6px;
    background-color: #fff;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 90000;
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s;
}

@media (max-width: 575.98px) {
    .cookies {
        max-width: 100%;
        left: 0 !important;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
		
		
    }
}

.cookies.show {
    visibility: visible;
    transform: translateY(0) !important; /* Forces it back into view */
    bottom: 20px; /* Desktop position */
}

@media (max-width: 575.98px) {
    .cookies.show {
        bottom: 0; /* Mobile position (sticks to bottom) */
        transform: translateY(0) !important;
    }
}

.go-up {
    visibility: hidden;
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 40px;
    background-color: var(--primary_color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    border: none;
    
    /* Modern Shadow */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    
    z-index: 2000000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.go-up:hover {
    background-color: var(--secondary_color);
	transform: translateY(-5px); /* Lift up effect */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.go-up.show {
    visibility: visible;
    opacity: 1;
	transform: translateY(0);
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateL {
    0% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@keyframes rotateL {
    0% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@-webkit-keyframes circleAnimation {}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-webkit-keyframes shapeAnimation {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@keyframes shapeAnimation {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}


.img-circle {
    border-radius: 1000px;
    margin: 0 10px;
    width: 35px;
}

.img-width-170 {

    width: 170px;
}

button.btn.btn-link.p-0.m-0.align-baseline {
    color: var(--primary_color);
}


.custom-drop .dropdown-toggle {
    color: var(--text_color);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
}

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

.custom-drop .dropdown-toggle:hover {
    color: #888;
}

.custom-drop .dropdown-menu {
    border: 0;
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    padding: 0;
    border-radius: 10px;
    min-width: 180px;
}

.custom-drop .dropdown-menu .dropdown-divider {
    margin: 0;
}

.custom-drop .dropdown-menu li:first-child .dropdown-item {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.custom-drop .dropdown-menu li:last-child .dropdown-item {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.custom-drop .dropdown-menu .dropdown-item {
    padding: 10px 15px;
    color: #666;
}

.custom-drop .dropdown-menu .dropdown-item i {
    width: 30px;
}

.custom-drop .dropdown-menu .dropdown-item:hover,
.custom-drop .dropdown-menu .dropdown-item.active {
    background-color: #f4f8f8;
}

.animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}

@-webkit-keyframes slideIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.change_avatar_label {
    width: 100%;
    height: 100%;
    line-height: 100px;
    text-align: center;
    font-size: 23px;
    cursor: pointer;
}

#selectedImg {
    width: 100%;
    height: 100%;
}


.card__ribbon {
    width: 12em;
    height: 12em;

    position: absolute;
    top: -1em;
    right: -1em;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.card__ribbon::after {
    content: 'Special Offer';
    position: absolute;
    width: 150%;
    height: 3.5em;
    background-color: var(--primary_color);
    transform: rotate(45deg) translateY(-1.7em);

    display: flex;
    justify-content: center;
    align-items: center;

    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    letter-spacing: .1em;

    box-shadow: 0 .3em .6em rgba(0, 0, 0, .2);
}

.card__ribbon::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1em;
    height: 1em;
    background-color: var(--primary_color);
    box-shadow: -11em -11em var(--primary_color);
}


.yearly_plans {
    display: none;
}

.fz-15 {
    font-size: 15px;
}

.fz-14 {
    font-size: 14px;
}

.fz-13 {
    font-size: 13px;
}

.fz-12 {
    font-size: 12px;
}

.fz-11 {
    font-size: 11px;
}

.fz-10 {
    font-size: 10px;
}


.lobage-datatable {
    padding: 20px;
}

.lobage-datatable .lobage-datatable-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.lobage-datatable .lobage-datatable-header .lobage-datatable-filtering {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #eee;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 10px;
    padding-left: 10px;
    cursor: pointer;
    font-size: 14px;
}

.lobage-datatable .lobage-datatable-header .lobage-datatable-filtering>i {
    margin-right: 10px;
    color: #888;
}

.lobage-datatable .lobage-datatable-header .lobage-datatable-filtering .lobage-datatable-filtering-arrow {
    margin-left: 10px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: #777;
}

.lobage-datatable .lobage-datatable-header .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.lobage-datatable .lobage-datatable-actions {
    display: none;
    padding: 20px;
    border: 1px solid #eee;
    border-top: 0;
    background-color: #f9f9f9;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: perspective(200px) translateZ(-200px);
    transform: perspective(200px) translateZ(-200px);
}

.lobage-datatable.show .lobage-datatable-header .lobage-datatable-filtering {
    border-bottom-left-radius: 0;
}

.lobage-datatable.show .lobage-datatable-header .lobage-datatable-filtering .lobage-datatable-filtering-arrow {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.lobage-datatable.show .lobage-datatable-header .form-control {
    border-bottom-right-radius: 0;
}

.lobage-datatable.show .lobage-datatable-actions {
    display: block;
}

.lobage-datatable.animate .lobage-datatable-actions {
    -webkit-transform: perspective(200px) translateZ(0);
    transform: perspective(200px) translateZ(0);
}

.lobage-table table thead th {
    font-weight: 400;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
    color: #6c757d;
    font-size: 14px;
    background-color: #fff;
    min-width: 60px;
    white-space: nowrap;
}

.lobage-table table thead th:first-child {
    padding-right: 0;
    padding-left: 0;
    min-width: 40px;
}

.lobage-table table thead th.sorting {
    position: relative;
}

.lobage-table table thead th.sorting:not(.lobage-table table thead th.sorting.sorting_disabled) {
    background-image: none !important;
}

.lobage-table table thead th.sorting:not(.lobage-table table thead th.sorting.sorting_disabled)::after {
    position: absolute;
    content: '\f0dc';
    right: 10px;
    top: 50%;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #ddd;
}

.lobage-table table thead th.sorting:not(.lobage-table table thead th.sorting.sorting_disabled).sorting_asc {
    background-image: none !important;
}

.lobage-table table thead th.sorting:not(.lobage-table table thead th.sorting.sorting_disabled).sorting_asc::after {
    content: '\f0de';
    color: #666;
}

.lobage-table table thead th.sorting:not(.lobage-table table thead th.sorting.sorting_disabled).sorting_desc {
    background-image: none !important;
}

.lobage-table table thead th.sorting:not(.lobage-table table thead th.sorting.sorting_disabled).sorting_desc::after {
    content: '\f0dd';
    color: #666;
}

.lobage-table table tbody td {
    font-weight: 400;
    border-top: 0 !important;
    border-bottom: 1px solid #eee;
    padding: 13px 20px;
    color: #333;
    font-size: 14px;
    background-color: #fff;
    white-space: nowrap;
}

.lobage-table table tbody td.sorting_1 {
    background-color: #fff !important;
}

.lobage-table table tbody td .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
}

.lobage-table table tbody td:first-child {
    padding-right: 0;
    padding-left: 0;
}

.lobage-table table tbody td:first-child .form-check-input {
    margin-right: auto;
    margin-left: auto;
}

.lobage-table table tbody tr:nth-last-child(2) .lobage-dropdown .lobage-dropdown-menu {
    top: -20px;
    left: auto;
    right: 30px;
}

.lobage-table table tbody tr:last-child .lobage-dropdown .lobage-dropdown-menu {
    top: auto;
    left: auto;
    bottom: 0;
    right: 30px;
}

.lobage-table table tbody tr:only-child .lobage-dropdown {
    position: static;
}

.lobage-table table tbody tr:only-child .lobage-dropdown .lobage-dropdown-menu {
    position: absolute !important;
    top: 100px;
    left: auto;
    right: 60px;
    bottom: auto;
}

.lobage-table .dataTables_scrollBody {
    border-bottom: 0 !important;
    position: static !important;
}

.lobage-table .dataTables_scrollBody thead th::after {
    display: none;
}

.lobage-table .lobage-table-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 20px;
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .lobage-table .lobage-table-footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.lobage-table .lobage-table-footer>* {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 5px;
    margin-bottom: 5px;
}

.lobage-table .lobage-table-footer .dataTables_info {
    margin-right: 10px;
}

.lobage-table .lobage-table-footer .dataTables_length {
    margin-right: 10px;
}

.lobage-table .lobage-table-footer .dataTables_length select {
    outline: 0;
    border: 1px solid #dad9d9;
    color: #555;
    margin-right: 5px;
    margin-left: 5px;
}

.lobage-table .lobage-table-footer .dataTables_paginate {
    margin-left: auto;
}

@media (max-width: 991.98px) {
    .lobage-table .lobage-table-footer .dataTables_paginate {
        margin-left: 0;
    }
}

.lobage-table .lobage-table-footer .dataTables_paginate .paginate_button {
    color: #fff !important;
}

.lobage-table .lobage-table-footer .dataTables_paginate .paginate_button:not(.lobage-table .lobage-table-footer .dataTables_paginate .paginate_button.disabled) {
    background: #4f4db6a8;
    border: var(--primary_color);
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.lobage-table .lobage-table-footer .dataTables_paginate .paginate_button:not(.lobage-table .lobage-table-footer .dataTables_paginate .paginate_button.disabled):hover {
    background: var(--primary_colorHover);
}

.lobage-table .lobage-table-footer .dataTables_paginate .paginate_button.current {
    color: #fff !important;
    background-color: var(--primary_colorHover) !important;
}

.lobage-table .lobage-table-footer .dataTables_paginate .paginate_button.next,
.lobage-table .lobage-table-footer .dataTables_paginate .paginate_button.previous {
    background: transparent !important;
    color: #333 !important;
}

.lobage-table .lobage-table-footer .dataTables_paginate .paginate_button.next:not(.lobage-table .lobage-table-footer .dataTables_paginate .paginate_button.next.disabled):not(.lobage-table .lobage-table-footer .dataTables_paginate .paginate_button.previous.disabled):hover,
.lobage-table .lobage-table-footer .dataTables_paginate .paginate_button.previous:not(.lobage-table .lobage-table-footer .dataTables_paginate .paginate_button.next.disabled):not(.lobage-table .lobage-table-footer .dataTables_paginate .paginate_button.previous.disabled):hover {
    opacity: .7;
}


.card-actions {
    margin: -0.5rem -0.5rem -0.5rem auto;
    padding-left: 0.5rem;
}

.card-header {
    display: flex;
    align-items: center;
    background: 0 0;
    padding: 30px 40px;
    border: 0;
    padding-bottom: 0px;
}


.select2-dropdown {
    border-color: #eee;
}

.select2-container .select2-selection--single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40.5px;
    border-color: #eee;
    min-width: 135px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: unset;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 38.5px;
}

.select2-container .select2-selection--multiple {
    padding-top: 5px;
    padding-bottom: 5px;
    min-height: 40.5px;
    border-color: #eee;
}

.select2-container .select2-selection--multiple:focus {
    border-color: #eee;
}

.select2-container.select2-container--focus .select2-selection--multiple {
    border-color: #eee;
}

.select2-container {
    z-index: 200000000000;
}

.select2-container-custom-span {
    display: block;
    position: relative;
}

.select2-container-custom-span i {
    position: absolute;
    right: 5px;
    top: 5px;
    color: #ffc107;
}


#qrcode img {
    margin: auto;
}


.modal-history .mail-results-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--text_color);
    text-align: center;
    background-color: #e7e7e7;
    padding: 10px;
    border-radius: 0 0 8px 8px;
}

.modal-history .mail-results-info .btn {
    font-size: 12px;
}



.label_bluer {
    font-size: 12px;
    color: var(--primary_color);
}


/* view page */


.viewbox-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    justify-content: center;

}

@media (max-width: 1199.98px) {
    .viewbox-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.viewbox-container .ad {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.viewbox-container .box-content {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 730px;

}


.viewbox {
    width: 100%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 10px 10px 5px 5px;
    overflow: hidden;
    
}

.viewbox .viewbox-header {
    background-color: var(--primary_color);
    color: #fff;
    padding: 8px 20px;
    height:65px;
}


.viewbox .viewbox-body {
    background-color: #fff;
    min-height: 485px;
    
}

.viewbox-header i {
    margin: 10px;
    font-size: 20px;
}

.viewbox-header .text-muted {
    --bs-text-opacity: 1;
    color: var(--secondary_text_color) !important;
}

.viewbox-attachments {
    padding: 15px 25px;
    position: relative;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #222;
}

.viewbox-attachments .card {
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
    border: 1px solid #e2e2e2;
    margin: 5px 0px;
}

.viewbox-attachments .card-body {
    padding: 9px !important;
}


.viewbox-attachments img {
    width: 48px !important;
}

.viewbox-attachments i {
    color: #555;
}


.viewbox-attachments .file-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.viewbox .text-muted {
    font-size: 12px;
    font-weight: 600;
}

.can_see_attachments {
    position: absolute;
    width: 100%;
    height: 100%;
    background:var(--primary_color);
    right: 0;
    top: 0;
    z-index: 100;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.btn-icon {
    border: 0;
    background: transparent;
    margin: 0;
    padding: 0;
    color: #fff;
    display: block;
}

.is_seen_message {
    position: absolute;
    top: 10px;
    right: 12px;
    background-color: var(--secondary_color);
    display: block;
    padding: 5px 9px;
    font-size: 12px;
    border-radius: 5px;
    color: #fff;
}


.tag-cloud a {
    background: var(--secondary_color);
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    margin: 3px;
}

.tag-cloud {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.viewbox-body.v2 {
    min-height: auto !important;
}

.star-icon-color {
    color: #fab005;
}



.mail-history-item span {
    line-height: 8px;
    color: #585858;
    margin-right: 13px;
    font-weight: 600;
    font-size: 15px;
}

.mail-history-item .email {
    font-size: 16px;
    font-weight: 600;
    color: var(--text_color);
}


label.form-check-label a {
    color: var(--primary_color);
}


.auth-section {
    margin-top: -150px;
    background-color: #fff;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}


@media (max-width: 576px) {
    .post-meta {
        font-size: 12.5px;
    }
}

.post-meta {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.post-meta i {
    margin-right: 5px;
}

.meta-item {
    margin-right: 10px;
}

.post-meta i {
    color: #555;
}


.dark-logo {
    display: none;
}

.nav-sticky .dark-logo {
    display: block !important;
}

.nav-sticky .white-logo {
    display: none !important;
}


.plan-switcher {
    background-color: #fff;
    border: 1px solid var(--primary_color);
    border-radius: 8px;
    box-shadow: 0 1px 0 rgba(27,31,35,.04),inset 0 1px 0 hsla(0,0%,100%,.25);
    cursor: pointer;
    display: inline-flex;
    padding: 5px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.plan-switcher .plan-switcher-item {
    align-items: center;
    border-radius: 8px;
    display: flex;
    font-weight: 400;
    height: 35px;
    justify-content: center;
    position: relative;
    text-align: center;
    transition: .3s;
    width: 90px;
    font-size:16px;
}

.plan-switcher .plan-switcher-item.active {
    background-color: var(--primary_color);
    color: #fff
}

.plans-item{
    display:none;
}

.plans-item.active{
    display:block !important;
}

.disabled{
    pointer-events: none;
    opacity: .65;
}

.billing-card{
    display: flex;
    justify-content: space-between;
}

.billing-card span {
    background-color: var(--primary_color) !important;
    margin: auto 0;
}

#bankDiv , #discountDiv{
    display: none;
}

.bank_instruction {
    background: #e7e7e7;
    padding: 13px;
    border-radius: 7px;
}

.mailbox-custom-link{
    cursor: pointer;
}

.attachment-file{
    -webkit-transition: .1s;
    -o-transition: .1s;
    transition: .1s;
}

.attachment-file:hover{
    background-color: #eee;

}

button:disabled {
    cursor: not-allowed !important;
}


.meta-item {
     position: relative;
     padding: 6px 12px;
     z-index: 0;
     color: var(--secondary_text_color);
     margin-bottom: 16px;
     text-transform: capitalize;
     font-size: 14px;
     border-radius: 8px;
 }

.meta-item a:hover {
    color: var(--secondary_color);
}



.meta-item i , .meta-item a {
     color: var(--secondary_text_color);
 }

.meta-item::before {
    content: "";
    position: absolute;
    background-color: var(--primary_color);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 8px;
}


.star-bg {
    float: left;
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: absolute;
}


@media (max-width: 1700px) {
    .header, .header-wrapper, .mail-wrapper {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

#stars {
background: linear-gradient(132deg, #FC415A, #591BC5, #212335);
  background-size: 400% 400%;
  animation: Gradient 15s ease infinite;
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  padding:0;
  margin:0px;
}
.cube {
  position: absolute;
  top: 80vh;
  left: 45vw;
  width: 10px;
  height: 10px;
  border: solid 1px #D7D4E4;
  transform-origin: top left;
  transform: scale(0) rotate(0deg) translate(-50%, -50%);
  animation: cube 12s ease-in forwards infinite;

}

.cube::before {
  top: -30vh;
  left: -20vw;
  border-color: #f88aff;
  animation: cube 10s ease-in forwards infinite;
}

.cube:nth-child(2n) {
  border-color: #FFF ;
}
.cube:nth-child(2) {
  animation-delay: 2s;
  left: 25vw;
  top: 40vh;
}
.cube:nth-child(3) {
  animation-delay: 4s;
  left: 75vw;
  top: 50vh;
}
.cube:nth-child(4) {
  animation-delay: 6s;
  left: 90vw;
  top: 10vh;
}
.cube:nth-child(5) {
  animation-delay: 8s;
  left: 10vw;
  top: 85vh;
}
.cube:nth-child(6) {
  animation-delay: 5s;
  left: 50vw;
  top: 10vh;
}
.cube:nth-child(7) {
  animation-delay: 1s;
  left: 5vw;
  top: 10vh;
}
.cube:nth-child(7) {
  animation-delay: 3s;
  left: 83vw;
  top: 25vh;
}

/* Gradient Animation */
/* Animate Background*/
@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes cube {
  from {
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    opacity: 1;
  }
  to {
    transform: scale(20) rotate(960deg) translate(-50%, -50%);
    opacity: 0;
  }
}


.custom-shape-divider-bottom-1696181426 {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1696181426 svg {
    position: relative;
    display: block;
    width: calc(109% + 1.3px);
    height: 92px;
}

.custom-shape-divider-bottom-1696181426 .shape-fill {
    fill:var(--background_color);
}

/*
.header svg{
    position: absolute;
    bottom: -10px;
    left: 0;
}

#color-svg{
    color: var(--background_color);
}
*/
.btn-light:hover {
    background-color: var(--primary_color);
    border-color:var(--primary_color);
}

.sticky-adlobage {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 70px;
    max-height: 200px;
    padding: 5px 0;
    box-shadow: 0 -6px 18px 0 rgba(9, 32, 76, .1);
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fefefe;
    z-index: 20;
}

.sticky-adlobage-close {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 0 0;
    position: absolute;
    right: 0;
    top: -30px;
    background-color: #fefefe;
    box-shadow: 0 -6px 18px 0 rgba(9, 32, 76, .08);
}

.sticky-adlobage .sticky-adlobage-close svg {
    width: 22px;
    height: 22px;
    fill: #000;
}

.sticky-adlobage .sticky-adlobage-content {
    overflow: hidden;
    display: block;
    position: relative;
    height: 70px;
    width: 100%;
    margin-right: 10px;
    margin-left: 10px;
    text-align: center;
}

.sticky-adlobage .sticky-adlobage-content img {
    height: 100%;
    width: 100%;
}

.btn-light:hover {
    background-color: transparent;
    border-color: #ffffff;
    color: #fff !important;
}


.mailbox .mailbox-body .mailbox-item:hover {
    background: var(--background_color);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}



/*
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

*/



.preloader {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2100;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner::before,
.spinner::after {
    border: 6.7px solid #793ef1;
    border-radius: 50%;
    position: absolute;
    content: '';
    display: block;
}

.spinner::before {
    width: 33.6px;
    height: 33.6px;
    border-bottom-color: transparent;
    border-left-color: transparent;
    animation: spinner-1o3y8q 0.75s infinite linear reverse;
}

.spinner::after {
    animation: spinner-1o3y8q 0.5s infinite linear;
    height: 56px;
    width: 56px;
    border-right-color: transparent;
    border-top-color: transparent;
}

@keyframes spinner-1o3y8q {
    to {
        transform: rotate(360deg);
    }
}


span.select2-selection.select2-selection--single {
    height: 47px !important;
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
    border-radius: 8px !important;
}

span.select2-selection__arrow {
    height: 47px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 43px  !important;
}

h2.mt-3.mb-2 {
  color: #4a5568;
  font-size: 20px;
  font-family: Roboto Mono,monospace !important;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 5px;
  /* Add more styles as needed */
}

p.text-muted.mb-0{
    color: #8c92a5;
  font-family: Roboto Mono,monospace !important;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
    
}


/* From Uiverse.io by vinodjangid07 */ 
.copyBtn {
  
 width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  position: absolute;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s;
  right: 38px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.svgContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  letter-spacing: 0.8px;
  border-radius: 10px;
  transition: all 0.3s;
  border: rgba(156, 156, 156, 0.466);
  z-index: 2;
  position: relative;
}

.copyBtn .BG {
  
  width: 100%;
  height: 100%;
  background: #181818;
  border-radius: 10px;
  pointer-events: none;
  transition: all 0.3s;
  font-size: 0px;
  position: absolute; 
  left: 0; 
  top: 0; 
  width: 100%; 
  height: 100%; 
  z-index: 1;
}
.github .BG {
  background: #00c497;
}

.copyBtn:hover .BG {
  transform: scale(1.5);
  /* transform-origin: bottom; */
  font-size: 20px;
  color: white;
}

.copyBtn:hover .svgContainer {
  border: 1px solid rgba(216, 216, 216, 0.466);
  background-color: rgba(209, 209, 209, 0.466);
  backdrop-filter: blur(4px);
}

.mail-input {
  position: relative;
  width: 100%;
}

/* Adjust input so text doesn't collide with buttons */
.mail-input input {
  padding-right: 130px !important; /* enough space for 2 buttons */
}

/* QR button */

.mail-input-qr {
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  padding: 0 8px;
  cursor: pointer;
  color: #333;
  font-size: 1.2em;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background: #f6f7f9;
  background-color: #f6f7f9; /* extra safe */
  -webkit-appearance: none; /* removes default button style on iOS Safari */
  -moz-appearance: none; /* Firefox */
  appearance: none; /* standard */
  z-index: 2;
}

.mail-input-qr:focus {
  outline: none;
}

.mail-input-qr:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
/* QR button */


/* Updated card style with .e-card name and increased box width */
.e-card {
  width: 100%; /* ⬅️ Full column width */
  max-width: 100%; /* Remove fixed 280px */
  background: #f5f5f5;
  border-radius: 10px;
  padding: 50px 40px; /* ⬅️ Match .feat padding */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px #4445;
  cursor: default;
  transition: all 0.4s ease-in-out;
}

.e-card:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 20px #444e;
}

.e-card .icon,
.e-card .heading,
.e-card .content {
  position: relative;
  z-index: 3;
  transition: all 0.5s;
  
}

.e-card .icon {
  width: 40px;
  color: rgb(139, 92, 246);
  margin-bottom: 20px;
  font-size: 25px;

}

.e-card .heading {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  text-align: center;
  font-family: Roboto Mono,monospace !important;
  
}

.e-card p.content {
  font-size: 16px;
  font-family: Roboto, sans-serif;
  
}

.e-card .number {
  position: absolute;
  top: -90px;
  right: -85px;
  padding: 80px 100px 30px 30px;
  background: rgb(139, 92, 246);
  border-radius: 100%;
  z-index: 2;
}

.e-card .number .text {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}

.e-card .text {
  margin-top: 20px;
}

.e-card .number::after {
  content: "";
  width: 50px;
  height: 50px;
  background: rgb(139, 92, 246);
  position: absolute;
  border-radius: 100%;
  top: 50%;
  right: 50%;
  transition: all 0.5s;
  transform: translateX(50%) translateY(-50%);
  z-index: -1;
}

.e-card:hover .number::after {
  width: 1200px;
  height: 1200px;
  transition: width 0.5s ease, height 0.5s ease;
}

.e-card:hover .icon,
.e-card:hover .heading,
.e-card:hover .content {
  color: #f5f5f5;
  fill: #f5f5f5;
}

@media (max-width: 450px) {
  .e-card {
  width: 100%; /* ⬅️ Full column width */
  max-width: 100%; /* Remove fixed 280px */
  background: #f5f5f5;
  border-radius: 5px;
  padding: 10px 20px;
  }
}



.btnrefresh {
    
  display:inline-block;
  margin: 0 9px !important;
  height: 52px;
  min-width: 160px !important;
  font-family:Roboto Mono,monospace!important;
  font-weight:500;
  background-color: #f6f7f9;
  color: #22242b !important;
  text-align:center;
  vertical-align:middle;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  box-shadow: 0 2px 4px rgba(34,36,43,.16);
  cursor: pointer;
  outline: none;
  border:1px solid transparent;
  padding:.75rem 1.25rem;
  font-size:1rem;
  line-height:1.5;
  border-radius:25px;
  -webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  -o-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out
  
  
}
.btnrefresh:hover {
  background-color: #23c483;
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-7px);
  text-decoration:none
}

.btnrefresh:active {
  transform: translateY(-1px);
}

/* Tooltip */
.btnrefresh::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -40px; /* show under the button */
  left: 50%;
  transform: translateX(-50%);
  background-color: #222;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

/* Tooltip Arrow */
.btnrefresh::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #222 transparent transparent transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.btnrefresh:hover::after,
.btnrefresh:hover::before {
  opacity: 1;
}



@media (prefers-reduced-motion:reduce) {
  .btnrefresh{
    -webkit-transition:none;
    -o-transition:none;
    transition:none
  }
}

.btnrefresh:hover {
  color:#212529;
  text-decoration:none
}
.btnrefresh.focus,
.btnrefresh:focus {
  background-color: #f6f7f9;
}


@media (max-width: 991px) {
  .btnrefresh{
    min-width: 130px !important;
    margin-bottom: 10px !important;
    text-align: center;
    
    
  }
}

.mailbox-actions-card {
  background-color:#fff;
  -webkit-box-shadow:0 2px 4px rgba(34,36,43,.16);
  box-shadow:0 2px 4px rgba(34,36,43,.16);
  padding:25px 0;
  position:relative;
  z-index:10;
  width:100%!important;
  left:0;
  -webkit-transition:all .3s linear;
  -o-transition:all .3s linear;
  transition:all .3s linear
}


.mailbox-actions-card .scroll-to-fixed-fixed {
  top:78px!important;
  width:100%!important
}
@media (max-width:991px) {
  .mailbox-actions-card  {
    text-align:center
  }
}





.justify-content-center {
  -webkit-box-pack:center!important;
  -webkit-justify-content:center!important;
  -ms-flex-pack:center!important;
  justify-content:center!important;
}
.row {
  display:-webkit-box;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-flex-wrap:wrap;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  margin-right:-15px;
  margin-left:-15px
}
.col-md-auto {
    -webkit-box-flex:0;
    -webkit-flex:0 0 auto;
    -ms-flex:0 0 auto;
    flex:0 0 auto;
    width:auto;
    max-width:100%
  }
  
  @media (min-width: 991px) {
  .col-md-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}

.cookiescard {
  max-width: 320px;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 30px;
  gap: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}
#cookieSvg {
  width: 50px;
}

#cookieSvg g path {
  fill: rgb(97, 81, 81);
}

.cookieHeading {
  font-size: 1.2em;
  font-weight: 800;
  color: rgb(26, 26, 26);
}

.cookieDescription {
  text-align: center;
  font-size: 0.7em;
  font-weight: 600;
  color: rgb(99, 99, 99);
}

.buttonContainer {
  display: flex;
  gap: 20px;
  flex-direction: row;
}

.acceptButton {
  width: 80px;
  height: 30px;
  background-color: #7b57ff;
  transition-duration: .2s;
  border: none;
  color: rgb(241, 241, 241);
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
}

.declineButton {
  width: 80px;
  height: 30px;
  background-color: rgb(218, 218, 218);
  transition-duration: .2s;
  color: rgb(46, 46, 46);
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
}

.declineButton:hover {
  background-color: #ebebeb;
  transition-duration: .2s;
}

.acceptButton:hover {
  background-color: #9173ff;
  transition-duration: .2s;
}

.history-modal-dialog {
  margin: auto;
  max-width: 500px;   /* Adjust width as needed */
  width: 90vw;        /* Responsive width */
  max-height: 80vh;   /* Adjust height as needed */
}

.history-modal-dialog .modal-content {
  display: flex;
  flex-direction: column;
  max-height: 80vh;
}

.history-modal-dialog .modal-body {
  overflow-y: auto;
}

/* From Uiverse.io by sihamjardi */ 
.buttondelete {
  position: relative;
  border-radius: 6px;
  width: 160px;
  height: 47.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 1px solid #cc0000;
  background-color: #e50000;
  overflow: hidden;
}

.buttondelete,
.buttondelete__icon,
.buttondelete__text {
  transition: all 0.3s;
}

.buttondelete .buttondelete__text {
  transform: translateX(35px);
  color: #fff;
  font-weight: 600;
}

.buttondelete .buttondelete__icon {
  position: absolute;
  transform: translateX(109px);
  height: 100%;
  width: 39px;
  background-color: #cc0000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buttondelete .svg {
  width: 20px;
}

.buttondelete:hover {
  background: #cc0000;
}

.buttondelete:hover .buttondelete__text {
  color: transparent;
}

.buttondelete:hover .buttondelete__icon {
  width: 148px;
  transform: translateX(0);
}

.buttondelete:active .buttondelete__icon {
  background-color: #b20000;
}

.buttondelete:active {
  border: 1px solid #b20000;
}

@media (max-width: 1300.98px) {
  .ad.ad-250x250 {
    display: none !important;
  }
}

@media (max-width: 1300.98px) {
  .ad.ad-v {
    display: none !important;
  }
}



.mail-selection {
  text-align: center;
}
.mail-selection .input-box-col {
  padding: 0 5px;
}

.mail-selection .input-box-col,
.mail-selection form {
  display:-webkit-box;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:center;
  -webkit-justify-content:center;
  -ms-flex-pack:center;
  justify-content:center;
  -webkit-box-align:center;
  -webkit-align-items:center;
  -ms-flex-align:center;
  align-items:center
}

.mail-selection .input-box-col{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;

}

.mail-selection .input-box-col .input-warp {
  padding: 4px;
  background-color: hsla(0,0%,100%,.04);
  border-radius: 30px;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 10000;
}

.mail-selection .input-box-col .emailbox-input,
.mail-selection .input-box-col input[type=email],
.mail-selection .input-box-col input[type=text] {
  border:0;
  font-family:Roboto,sans-serif!important;
  background:transparent;
  margin:0;
  padding:10px 15px;
  font-size:20px!important;
  font-weight:400!important;
  color:#fff;
  height:52px;
  min-width:340px
}
.mail-selection .input-box-col .emailbox-input:focus,
.mail-selection .input-box-col input[type=email]:focus,
.mail-selection .input-box-col input[type=text]:focus {
  outline:none
}



.btn-rds {
  border-radius:20%
}
.icon-btn {
  width:52px;
  height:52px;
  text-align:center;
  border:0;
  padding:0;
  margin:0
}
.icon-btn:focus {
  outline:none
}
.btn-l-gary {
  background-color:hsla(0,0%,100%,.15)
}
.bg-theme {
  background-color:#00c497;
  color:#fff
}
.bg-theme svg {
  fill:#fff
}
.bg-theme:hover {
  background-color:hsla(0,0%,100%,.25)
}
.copyIconGreenBtn:disabled {
  opacity:.65
}



/* From Uiverse.io by kamehame-ha */ 
.copybtn-mobile {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 247px;
  min-width: 122px;
  height: 45px;
  padding: 10px 15px;
  gap: 10px;
  background-color:#00c497;
  color:#fff;
  outline: 3px #007ACC solid;
  outline-offset: -3px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: 400ms;
  box-sizing: border-box;
  border-radius: 20px;
  text-align: center;
}

.copybtn-mobile .mail-action-text {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-family: Roboto, sans-serif !important;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  
}

.copybtn-mobile svg path {
  transition: 400ms;
}

.copybtn-mobile:hover {
    background-color:hsla(0,0%,100%,.25)
  
}
.copybtn-mobile:hover .mail-action-text {
  color: #ffffff;
}

.copybtn-mobile:hover svg path {
  fill:#fff
}

.copybtn-mobile[data-tooltip] {
  position: relative;
}

.copybtn-mobile[data-tooltip]:hover::after {
  opacity: 1;
}
/* Tooltip */
.copybtn-mobile[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -40px; /* show under the button */
  left: 50%;
  transform: translateX(-50%);
  background-color: #222;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

/* Tooltip Arrow */
.copybtn-mobile[data-tooltip]::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #222 transparent transparent transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
}


/* From Uiverse.io by kamehame-ha */ 
.qr-mobile {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 247px;
  min-width: 122px;
  height: 45px;
  padding: 10px 15px;
  gap: 10px;
  background-color: hsla(0,0%,100%,.15);
  color:#fff
  outline: 3px #007ACC solid;
  outline-offset: -3px;
  
  text-align: center;
  border: none;
  cursor: pointer;
  transition: 400ms;
  box-sizing: border-box;
  border-radius: 20px;
  text-align: center;
}

.qr-mobile .mail-action-text {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-family: Roboto, sans-serif !important;
  line-height: 1;
  white-space: nowrap;
  text-align: center;  /* ✅ force text in one line */
}


.qr-mobile svg path {
  transition: 400ms;
}


.qr-mobile:hover svg path {
  fill:#fff
}

/* Show on small screens (below 570px) */
@media (max-width: 569px) {
  .mail-input-actions {
    display: flex !important;
    flex-direction: row;   /* change to row for horizontal layout */
    gap: 10px;
    justify-content: center; /* optional: center buttons horizontally */
    align-items: center;     /* vertically align buttons */
	background-color: red !important;  /* test: change background */
    color: yellow !important;          /* test: change text color */
    border: 2px solid blue !important; /* test: add border */
  }
  .mail-input-qr
  .copyBtn{
	  height:40px;
	  width: 100%
      border: 10px;
  }
  .mail-input-qr{
	  background-color: #198754;
  }
  .copyBtn{
	  background-color: red !important;
  }
}

@media (min-width: 570px) {
  .mail-actions {
    display: none !important;
  }
}

@media (max-width: 349px) {
  .mail-input-actions {
    flex-direction: column !important;
    gap: 10px;
    justify-content: center;
    align-items: stretch; /* or center */
  }
}

@media (min-width: 350px) and (max-width: 569px) {
  .mail-input-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
}


@media (max-width: 569px) {
  .mail-select .mail-input-qr,
  .mail-select .copyBtn {
    
	
  }
  .mail-select .mail-input {
    max-width: 100% !important;
  }
}

@media (min-width: 570px) {
  .mail-select .mail-input-qr,
  .mail-select .copyBtn {
    display: inline-block !important;
  }
  .mail-select .mail-input {
    max-width: 80% !important; /* revert to original */
  }
}

/* ONLY move copyBtn left below 1200px, keep QR fixed */
@media (max-width: 1199.98px) {
  .copyBtn {
    right: 36px; /* shift left */
  }
  
  /* Optional: reduce input padding accordingly */
  .mail-input input {
    padding-right: 110px !important;
  }
}

/* Further adjustments on smaller screens if needed */
@media (max-width: 576px) {
  .copyBtn {
    right: 38px;
    width: 45px;
    height: 45px;
	
  }
}

.ten-emailbox-text {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  max-width: 700px;
  font-size: 16px !important;
  font-family: Roboto Mono,monospace !important;
  font-weight: 500 !important;
  padding-top: 5px;
  color: #7A7C80;
  line-height: 1.5;
  padding-bottom:10px;
}



.ten-emailbox-title {
  font-size: 20px !important;
  color: #fff !important;
  line-height: 100% !important;
  margin-top: 0 !important;
  padding-top: 0;
  margin-bottom: 25px !important;
  text-align: center;
  margin-bottom: .5rem;
  font-family: Roboto Mono,monospace !important;
  font-weight: 700 !important;
  font-weight: bold;
  
}

.user-data-name{
    -webkit-box-flex: 0;
  -webkit-flex: 0 0 65%;
  -ms-flex: 0 0 65%;
  flex: 0 0 65%;
  max-width: 65%;
  display: block;
  padding-left: 65px;
  position: relative;
  font-size: 14px;
  font-family: Roboto,sans-serif !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #8c92a5;
  height: 60px;
}

@media (max-width:767px) {
  .user-data-name {
    -webkit-box-flex:0;
    -webkit-flex:0 0 100%;
    -ms-flex:0 0 100%;
    flex:0 0 100%;
    max-width:100%;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap
  }
}

.user-data-name-from-name {
  font-size: 14px;
  margin: 0;
  width: 100%;
  color: #22242b;
  font-weight: 500;
  font-family: Roboto,sans-serif !important;
  padding: 8px 0 0;
}

.user-data-nameemail {
  width: 100%;
  margin: 0;
  font-size: 14px;
  font-family: Roboto,sans-serif !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #8c92a5;
}

 .user-data-time {
  -webkit-box-flex:0;
  -webkit-flex:0 0 35%;
  -ms-flex:0 0 35%;
  flex:0 0 35%;
  max-width:35%
  font-size: 14px;
  font-family: Roboto,sans-serif !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #8c92a5;
}

@media (max-width:767px) {
  .user-data-time {
    -webkit-box-flex:0;
    -webkit-flex:0 0 100%;
    -ms-flex:0 0 100%;
    flex:0 0 100%;
    max-width:100%;
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    border-top:1px solid #ebebf4;
    height:45px;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-align-content:center;
    -ms-flex-line-pack:center;
    align-content:center;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex
  }
}

.date-time-text {
  text-align:right;
  font-family:Roboto,sans-serif!important;
  font-size:14px;
  font-weight:400;
  color:#8c92a5;
  margin-bottom:5px
}

@media (max-width:767px) {
  .date-time-text {
    text-align:left;
    display:inline-block;
    width:auto;
    margin:0;
    padding:0
  }
}

.user-data-time-data {
  text-align: right;
  font-size: 14px;
  font-family: Roboto,sans-serif !important;
  color: #585d6a;
  max-width: 100%;             /* Ensures it doesn't exceed container */
}

.inbox-data-content-header {
  height:90px;
  width: 100%;
  display:-webkit-box;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
  -webkit-align-items:center;
  -ms-flex-align:center;
  align-items:center;
  padding-left:25px;
  padding-right:25px;
  position:relative;
  -webkit-flex-wrap:wrap;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap
}

@media (max-width:767px) {
  .inbox-data-content-header {
    height:auto;
    padding-top:15px;
    padding-bottom:0
  }
}

.inbox-data-content {
  padding: 25px;
  border-top: 1px solid #ebebf4;
  font-size: 14px !important;
  color: #585d6a; !important;
  font-weight: 400;
  font-family: Roboto,sans-serif !important;
  
}

.user-data-name figure {
  width: 50px;
  height: 50px;
  border: 2px solid #e5e5f0;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 50px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: #00c497;
  border-radius: 50%;
  overflow: hidden;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* space between icon and text */
  text-decoration: none;
  font-size: 16px !important;
  color: #fff !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  font-family: Roboto Mono,monospace !important;
}

.back-link:hover {
  color: #00c497 !important;
  text-decoration: none !important;
}

.col-h-data {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 30%;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
 
  padding: 0 25px;
}

.back-text {
  color: #fff !important;
}

.back-link:hover .back-text {
  color: #00c497 !important;
}

.user-data-subject {
  min-height: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 25px;
  display: flex;
  border-top: 1px solid #ebebf4;
  

}

.user-data-subject small {
  font-size: 14px;
  font-family: Roboto,sans-serif !important;
  color: #8c92a5;
  display: inline-block;
  margin-right: 15px;
}

.user-data-subjecttext {
  display: inline-block !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #585d6a !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  font-family: Roboto,sans-serif !important;
  word-wrap: break-word !important;
  width: 90% !important;
  
}

.col-autos {
  flex: 0 0 auto;
  width: auto;
  margin-left: auto;
 
}

.social-share a {
    display: inline-block;
    margin-right: 15px;
    color: #555;
    text-decoration: none;g
    font-weight: 600;
	margin-top: 10px;
	padding:10px;
}


.social-share i {
    margin-right: 5px;
}

@media (max-width: 576px) {
    /* Icons will stay horizontal by default */
}

.tenminute,
.fiveminute,
.twentyminute {
    background: #21232a url('../img/bstar.jpg') repeat 0 0 !important;
    background-size: cover;
    color: #fff;
}

.tenminutemail-header,
.tenminutemail-timer-wrapper {
    background: transparent !important;
}

.tenminutemail-timer-wrapper span {
    color: #fff !important;
}

.tenminutemail-timer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: nowrap;
}

.tenminutemail-timer-wrapper h3 {
    margin-left: 8px;
    font-size: 12px !important;
    margin-bottom: 0;
    line-height: 1;
}

/* Responsive */
@media (max-width: 480px) {
    .tenminutemail-timer-wrapper {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 1.5rem;
    }
    .tenminutemail-timer-wrapper h3 {
        margin-left: 0;
        text-align: center;
        font-size: 14px !important;
    }
}

@media (max-width: 800px) {
    .ten-emailbox-text {
        margin-left: 10px;
        margin-right: 10px;
        text-align: center;
    }
}

/* Article Card Styles */
.custom-article {
    margin: 2.5rem auto;
    max-width: 800px; /* better for readability */
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.13);
    padding: 2.5rem 2rem;
    text-align: left;
    font-size: 16px;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
}

.custom-article h1 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #212121;
    text-align: center;
    letter-spacing: -1px;
}

.custom-article .post-meta {
    margin-top: 1.2rem;
}

.custom-article h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #222;
    display: block; /* ensures h2 is block */
    clear: both;    /* prevents text wrapping beside other elements */
}

.custom-article p {
  margin: 0 0 1.4rem;
  color: #2b2b2b;
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.01em;
  word-break: break-word;
  hyphens: auto;
  
}

/* Lists inside article */
.custom-article ul {
    margin-bottom: 1.2rem;
    padding-left: 1.8rem;
    list-style-type: disc;
    color: #333;
    font-size: 16px;
    font-family: inherit;
}

.custom-article ul li {
  margin-bottom: 0.5rem;
  line-height: 2.0;
}


/* Article links */
.custom-article a {
    color: inherit; /* keep text color the same */
    text-decoration: underline; /* underline shows it’s a link */
    text-decoration-thickness: 1.5px; /* makes underline slightly thicker for clarity */
    text-underline-offset: 2px; /* space between text and underline */
    font-weight: 500; /* optional, subtle emphasis */
    transition: text-decoration-color 0.2s ease;
}

/* Hover effect for better UX */
.custom-article a:hover {
    text-decoration-thickness: 2px; /* slightly thicker on hover */
}


@media (max-width: 640px) {
  .custom-article {
    padding: 1.6rem 1.3rem;
    border-radius: 12px;
  }

  .custom-article h1 {
    font-size: 1.9rem;
  }

  .custom-article h2 {
    font-size: 1.25rem;
  }

  .custom-article p {
    font-size: 15.5px;
    line-height: 1.7;
  }
}

/* Article FAQ Section Styling */
.article-faq-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.article-faq-section .faqs {
    width: 100%;
}

.article-faq-section .accordion {
    gap: 0;
}

.article-faq-section .accordion-item {
    border-radius: 8px !important;
    border: 2px solid #eee !important;
    margin-bottom: 16px;
}

.article-faq-section .accordion-button {
    justify-content: space-between;
    box-shadow: none !important;
    border-radius: 8px !important;
    background-color: #fff !important;
    padding: 20px !important;
    font-weight: 600;
    font-size: 18px;
    min-height: 70px;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
}

.article-faq-section .accordion-button span {
    flex: 1;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.article-faq-section .accordion-button::after {
    display: none;
}

.article-faq-section .accordion-button .accordion-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border: none;
    font-size: 18px;
    transition: .3s;
    flex-shrink: 0;
    margin-left: 15px;
}

.article-faq-section .accordion-button:not(.collapsed) {
    color: var(--primary_color);
}

.article-faq-section .accordion-button:not(.collapsed) .accordion-button-icon {
    transform: rotate(-180deg);
}

.article-faq-section .accordion-body {
    padding-top: 0;
    padding-bottom: 20px;
    color: #4a5568;
    line-height: 1.6;
}

.article-faq-section .accordion-body [itemprop="text"] {
    font-size: 16px;
}

/* ===== overrides: ensure mail-input action buttons are visible on desktop ===== */
/* Keeps container from clipping and forces actions to the right */
.mail-select,
.mail-input {
    overflow: visible !important;
}

.mail-input-actions {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    gap: 8px !important;
    z-index: 999 !important;
}

.mail-input input {
    padding-right: 160px !important; /* room for QR + copy buttons */
}

.copyBtn {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 1000 !important;
}

.mail-input-qr {
    position: absolute !important;
    right: 66px !important; /* adjust if needed */
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 1000 !important;
}

.copyBtn .BG { z-index: 0 !important; }
.copyBtn .svgContainer { z-index: 2 !important; }



.temp-emailbox {	
  border-radius:10px;
  padding-top:30px;
  text-align:center;
  padding-bottom:30px;
  border:2px dashed #383b44;
  border-image-source:url(images/border-box.png);
  border-image-slice:2;
  border-image-repeat:round
}
@media (max-width:1199px) {
  .temp-emailbox {
    max-width:556px;
    margin:0 auto
  }
}
.temp-emailbox .btn-rds span {
  display:none
}
#tm-body .temp-emailbox h2 {
  font-size:20px!important;
  color:#fff!important;
  line-height:100%!important;
  margin-top:0!important;
  padding-top:0;
  margin-bottom:25px!important
}
.temp-emailbox .input-box-col,
.temp-emailbox form {
  display:-webkit-box;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:center;
  -webkit-justify-content:center;
  -ms-flex-pack:center;
  justify-content:center;
  -webkit-box-align:center;
  -webkit-align-items:center;
  -ms-flex-align:center;
  align-items:center
}
.temp-emailbox .input-box-col {
    padding:0 5px;
    position: relative;
    z-index: 50;
}
/* Ensure header title inside the email box renders consistently for non-Latin scripts (e.g. Hindi) */
.temp-emailbox .header-title,
.temp-emailbox h1.header-title,
.temp-emailbox h2.header-title {
    font-size: 20px !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    font-family: 'Noto Sans Devanagari', 'Noto Sans', 'Mulish', sans-serif !important;
    word-break: break-word;
    white-space: normal;
}
.temp-emailbox .input-box-col .input-warp {
  padding:4px;
  background-color:hsla(0,0%,100%,.04);
  border-radius:30px;
  height:60px;
  display:-webkit-box;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack:center;
  -webkit-justify-content:center;
  -ms-flex-pack:center;
  justify-content:center;
  -webkit-box-align:center;
  -webkit-align-items:center;
  -ms-flex-align:center;
  align-items:center;
  position:relative;
  z-index:10000
}
.temp-emailbox .input-box-col .emailbox-input,
.temp-emailbox .input-box-col input[type=email],
.temp-emailbox .input-box-col input[type=text] {
  border:0;
  font-family:Roboto,sans-serif!important;
  background:transparent;
  margin:0;
  padding:10px 15px;
  font-size:20px!important;
  font-weight:400!important;
  color:#fff;
  height:52px;
  min-width:340px
}
.temp-emailbox .input-box-col .emailbox-input:focus,
.temp-emailbox .input-box-col input[type=email]:focus,
.temp-emailbox .input-box-col input[type=text]:focus {
  outline:none
}
.temp-emailbox-text {
  text-align:center;
  padding-top:30px;
  color:#7a7c80;
  font-size:14px;
  font-family:Roboto Mono,monospace!important;
  font-weight:500
}
@media (max-width:1199px) {
  .temp-emailbox-text {
    max-width:556px;
    margin:0 auto
  }
}
.temp-emailbox-text p {
  color:#7a7c80;
  font-size:14px!important;
  font-family:Roboto Mono,monospace!important;
  font-weight:500!important;
  padding:0;
  margin:0
}
.section-btn-header {
  background-color:#fff;
  -webkit-box-shadow:0 2px 4px rgba(34,36,43,.16);
  box-shadow:0 2px 4px rgba(34,36,43,.16);
  padding:25px 0;
  position:relative;
  z-index:100;
  width:100%!important;
  left:0;
  -webkit-transition:all .3s linear;
  -o-transition:all .3s linear;
  transition:all .3s linear
}
.section-btn-header.scroll-to-fixed-fixed {
  top:78px!important;
  width:100%!important
}
@media (max-width:991px) {
  .section-btn-header {
    text-align:center
  }
}

.qrPopoverBl {
  position:absolute;
  top:65px;
  right:-108px;
  -webkit-box-shadow:1px 4px 8px 0 rgba(34,36,43,.17);
  box-shadow:1px 4px 8px 0 rgba(34,36,43,.17);
  background:#fff;
  border-radius:12px;
  z-index:1000;
  padding:12px
}
.qrPopoverBl .qr-popover-arrow {
  position:absolute;
  display:block;
  top:-10px;
  right:145px
}
.qrPopoverBl .qr-popover-arrow:after,
.qrPopoverBl .qr-popover-arrow:before {
  position:absolute;
  display:block;
  content:"";
  border-color:transparent;
  border-style:solid;
  border-width:0 8px 9px
}
.qrPopoverBl .qr-popover-arrow:before {
  top:0;
  border-bottom-color:rgba(0,0,0,.06)
}
.qrPopoverBl .qr-popover-arrow:after {
  top:1px;
  border-bottom-color:#fff
}
.qrPopoverBl #qrImageBl svg {
  width:250px
}
.qrPopoverBlRtl {
  right:216px
}
@media (max-width:570px) {
  .temp-emailbox {
    padding:30px 15px
  }
  .temp-emailbox form {
    display:block;
    width:100%
  }
  .temp-emailbox .input-box-col .input-warp {
    display:block;
    height:auto;
    padding:0;
    background-color:transparent;
    border-radius:0
  }
  .temp-emailbox .input-box-col .input-warp .emailbox-input,
  .temp-emailbox .input-box-col .input-warp input[type=email],
  .temp-emailbox .input-box-col .input-warp input[type=text] {
    display:block;
    width:100%;
    background-color:hsla(0,0%,100%,.04);
    border-radius:30px;
    min-width:100%;
    margin-bottom:20px
  }
  .temp-emailbox .input-box-col .input-warp .icon-btn {
    width:auto;
    height:46px;
    min-width:138px;
    width:calc(50% - 5px);
    display:inline-block!important;
    text-align:left;
    margin-left:0;
    margin-right:2px
  }
  .temp-emailbox .input-box-col .input-warp .icon-btn svg {
    display:inline-block
  }
  .temp-emailbox .input-box-col .input-warp .icon-btn span {
    display:inline-block;
    font-size:16px!important;
    color:#fff;
    text-align:center
  }
  .temp-emailbox .input-box-col .input-warp .icon-btn.btn-rds {
    border-radius:20px;
    text-align:center
  }
  .temp-emailbox .input-box-col .input-warp .icon-btn+.icon-btn {
    margin-left:2px;
    margin-right:0
  }
  .qrPopoverBl {
    top:127px;
    right:36%
  }
  .qrPopoverBl .qr-popover-arrow {
    right:188px
  }
  .qrPopoverBl #qrImageBl svg {
    width:180px
  }
  .qrPopoverBlRtl {
    top:127px;
    right:4%
  }
  .qrPopoverBlRtl .qr-popover-arrow {
    right:92px
  }
  .qrPopoverBlRtl #qrImageBl svg {
    width:180px
  }
}
@media (max-width:359px) {
  .temp-emailbox .input-box-col .input-warp .icon-btn {
    min-width:112px
  }
  .qrPopoverBl {
    top:127px;
    right:94px
  }
  .qrPopoverBl .qr-popover-arrow {
    right:141px
  }
  .qrPopoverBl #qrImageBl svg {
    width:150px
  }
  .qrPopoverBlRtl {
    top:127px;
    right:0
  }
  .qrPopoverBlRtl .qr-popover-arrow {
    right:60px
  }
  .qrPopoverBlRtl #qrImageBl svg {
    width:150px
  }
}
.btn-rds {
  border-radius:50%
}
.icon-btn {
  width:52px;
  height:52px;
  text-align:center;
  border:0;
  padding:0;
  margin:0
}
.icon-btn:focus {
  outline:none
}
.btn-l-gary {
  background-color:hsla(0,0%,100%,.15)
}
.bg-theme {
  background-color:#00c497;
  color:#fff
}
.bg-theme svg {
  fill:#fff
}
.bg-theme:hover {
  background-color:hsla(0,0%,100%,.25)
}
.copyIconGreenBtn:disabled {
  opacity:.65
}
.popover {
  max-width:292px;
  border-radius:15px;
  border:1px transparent;
  -webkit-box-shadow:0 0 5px rgba(0,0,0,.11);
  box-shadow:0 0 5px rgba(0,0,0,.11)
}
.qr-popover {
  display:block;
  text-align:center;
  max-width:262px
}
.qr-popover img {
  max-width:100%;
  height:auto
}
@media (max-width:1199px) {
  .qr-popover img {
    width:170px;
    height:auto
  }
}
@media (max-width:990px) {
  .qr-popover img {
    width:150px;
    height:auto
  }
}
@media (max-width:639px) {
  .qr-popover img {
    width:135px;
    height:auto
  }
}
.qr-popover small {
  padding-top:10px;
  display:block;
  text-align:center;
  font-size:13px;
  color:#585d6a
}
.btn-gray {
  background-color:#f6f7f9;
  color:#22242b!important
}
.btn-gray:hover {
  background-color:#00c497!important
}
.btn-gray:hover,
.btn-gray:visited {
  color:#22242b!important
}
.bg-theme-light {
  background-color:#99e7d5;
  color:#fff
}
.bg-theme-light svg {
  fill:#fff
}
.bg-theme-light:hover {
  background-color:#00c497
}

@media (max-width: 570px) {
  .temp-emailbox {
    padding: 30px 15px;
  }
}

@media (max-width: 1199px) {
  .temp-emailbox {
    max-width: 556px;
    margin: 0 auto;
  }
}

@media (max-width: 570px) {
  .temp-emailbox .input-box-col .input-warp .icon-btn.btn-rds {
    border-radius: 20px;
    text-align: center;
  }
}

@media (max-width: 570px) {
  .temp-emailbox .input-box-col {
    display: inline;
    padding: 0;
	position: relative;
    z-index: 50;
  }
}

@media (max-width: 359px) {
  .temp-emailbox .input-box-col .input-warp .icon-btn {
    min-width: 112px;
  }
}

.temp-emailbox .input-box-col .input-warp .icon-btn.hidden {
  display:none!important
}
@media (min-width:0px) and (max-width:570px) {
  .hidden-xs-sm {
    display:none!important
  }
}

.section-subtitle {
    font-size: 16px;
    color: #4a5568;
	font-family: 'Roboto', sans-serif !important;
}

/* The Grid Container */
.step-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns on Desktop */
    gap: 20px;
    
}

/* Individual Card Styling */
.step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Number Circle */
.step-number {
    background: #3182ce; /* Primary Blue */
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2d3748;
}

.step-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
	font-family: 'Roboto', sans-serif !important;
}

/* 🟢 MOBILE VIEW: Vertical 1 by 1 */
@media (max-width: 992px) {
    .step-container {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on Tablets */
    }
}

@media (max-width: 600px) {
    .step-container {
        grid-template-columns: 1fr; /* 1 Column on Mobile */
    }
    
    .step-card {
        padding: 20px;
    }
}

/* Container styling */
.seo-content-block {
    max-width: 100%;
    font-family: Roboto, sans-serif;	
}

/* Consolidated Headings */
.seo-content-block h2 {
    font-family: 'Roboto Mono', monospace !important;
    font-weight: 700 !important;
    color: #22242b !important;
    line-height: 1.2 !important;
    margin-top: 14px !important; /* Slightly more space for SEO clarity */
    margin-bottom: 8px !important;
	font-size: 20px !important; 
}

/* Paragraph styling - Clean & Readable */
.seo-content-block p {
    color: #4a5568 !important;
    font-size: 16px !important;
    line-height: 1.6 !important; /* Better for Monospace fonts */
    margin-bottom: 20px;
	
	
}

/* Link styling: No color change, just underline */
.seo-content-block a {
    color: inherit !important;
    text-decoration: underline !important;
    transition: opacity 0.2s ease;
}

.seo-content-block a:hover {
    opacity: 0.7;
}

/* List styling */
.seo-feature-list, 
.seo-check-list {
    margin: 20px 0;
    padding-left: 20px;
}

.seo-feature-list li, 
.seo-check-list li {
    color: #4a5568 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 12px;
}

/* 🟢 Mobile responsiveness - Fixed hierarchy */
@media (max-width: 768px) {
    .seo-content-block h2 {
        font-size: 1.2rem !important; /* Approx 20px on mobile */
    }
    .seo-content-block p {
        font-size: 15px !important; /* Slightly smaller for mobile screens */
    }
}

/* --- 2. Timer Keyword Grid (Horizontal Row) --- */
.timer-link-container {
    margin: 40px 0;
    padding: 25px;
    background: #f8f9fa; 
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.timer-row-wrapper {
    display: flex;
    flex-direction: row; /* Horizontal on Desktop */
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.timer-item {
    flex: 1;
    background: #ffffff;
    border: 2px solid #22242b;
    padding: 12px 5px;
    text-align: center;
    text-decoration: none !important; /* No underline on boxes for clean UI */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.25s ease;
}

.timer-item:hover {
    background: #22242b;
    transform: translateY(-3px);
}

.timer-item:hover .timer-value,
.timer-item:hover .timer-label {
    color: #ffffff !important;
}

.timer-value {
    font-family: 'Roboto Mono', monospace !important;
    font-size: 22px;
    font-weight: 700;
    color: #22242b;
    line-height: 1;
}

.timer-label {
    font-family: 'Roboto Mono', monospace !important;
    font-size: 10px; /* Small for keywords on desktop */
    color: #4a5568;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap; /* Keeps keyword on one line */
    margin-top: 5px;
}

/* --- 4. Mobile Responsiveness --- */
@media (max-width: 900px) {
    /* Stack timer boxes vertically on tablets/phones for readability */
    .timer-row-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .timer-item {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        padding: 15px;
    }

    .timer-label {
        font-size: 14px; /* Larger on mobile for easier reading */
    }
}
