@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    src: url("../webfonts/fa-solid-900.woff2") format("woff2");
    font-display: swap;
    ascent-override: 90%;
    descent-override: 10%;
    line-gap-override: 0%;
    size-adjust: 100%
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 400;
    src: url("../webfonts/fa-regular-400.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    src: url("../webfonts/fa-brands-400.woff2") format("woff2");
    font-display: swap
}

@font-face {
    font-family: "Font Awesome 6 v4compatibility";
    font-style: normal;
    font-weight: 400;
    src: url("../webfonts/fa-v4compatibility.woff2") format("woff2");
    font-display: swap
}

:root {
  --gradient-primary: linear-gradient(45deg, #f78f1e, #ef622a);
  --bs-washed-black: rgba(20, 20, 20, 1);
  --bs-white: rgba(255, 255, 255, 1);
  --bs-gradient-bg: linear-gradient(45deg, #f78f1e, #ef622a);
  --bs-durotar-fire: #ef622a;
}

.discount-badge {
  background: #046735;
  color: white;
  font-weight: bold;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 15px;
  display: inline-block;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
  top: 5px;
  right: 5px;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse{

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }

}

.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.plan-header {
  padding: 2rem 1.5rem 1rem;
  text-align: center;
  background: var(--bs-gradient-bg);
  color: white;
  margin: -1px -1px 0 -1px;
  border-radius: 16px 16px 0 0;
}

.plan-header.basic {
  background: var(--bs-gradient-bg);
}

.current-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #333;
  margin-right: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #555;
}

.feature-icon {
  color: var(--bs-durotar-fire);
  margin-right: 0.75rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.feature-group-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.outlet-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.outlet-logo {
  background: linear-gradient(45deg, #812536, #b97962);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 12px;
  color: #fff;
  border: 1px solid #e9ecef;
}

.cta-section {
  padding: 1.5rem;
  text-align: center;
}

.btn-primary-custom {
  background: var(--bs-gradient-bg);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 0.75rem;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(247, 143, 30, 0.3);
}

.btn-outline-custom {
  border: 2px solid var(--bs-durotar-fire);
  color: var(--bs-durotar-fire);
  background: transparent;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-outline-custom:hover {
  background: var(--bs-durotar-fire);
  color: white;
  transform: translateY(-2px);
}

.feat-css {
  background: linear-gradient(45deg, #ff1744, #ff6b35);
  top: 5px;
}

.category-position {
  top: 8px;
  right: 8px;
}

.custom-select .select2-selection {
  width: 100%;
  padding: 2px 9px;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  height: 38px;
}

.custom-select span.select2-selection__arrow {
  top: 5px !important;
  right: 5px !important;
}

.fixed-height {
  max-height: 325px;
  overflow: auto;
}

.fixed-height::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #f78f1e;
  border-radius: 10px;
  background-color: #F5F5F5;
}

.fixed-height::-webkit-scrollbar {
  width: 3px;
  background-color: #F5F5F5;
}

.fixed-height::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px #ef622a;
  background-color: #555;
}

.special-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  height: 100%;
  position: relative;
}

.special-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.special-card-header {
  background: var(--bs-gradient-bg);
  color: white;
  padding: 1rem;
  text-align: center;
  border-radius: 8px 8px 0 0;
  position: relative;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bulk-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.bulk-featured {
  background: var(--bs-gradient-bg);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  border: none;
}

.bulk-service {
  background: #fff5f5;
  color: #A81515;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid #fed7d7;
}

.off-css {
  background: linear-gradient(45deg, #ff1744, #ff6b35);
  color: white;
  padding: 1px 9px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 23, 68, 0.4);
  animation: pulse 2s infinite;
  border: 2px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0px;
  width: 90px;
  right: 0;
}

.actual-price {
  text-decoration: line-through;
  opacity: 0.8;
  font-size: 19px;
  font-weight: 500;
  color: #B40404;
}

.offer-rate {
  color: #ffd700;
  font-weight: bold;
}

.news-wrapper {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.header-gradient {
  background: var(--gradient-primary);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.header-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.header-gradient::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.header-content {
  position: relative;
  z-index: 1;
}

.header-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin: 10px 0 0 0;
}

.news-content-area {
  padding: 20px;
}

.main-story {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 322px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.main-story:hover {
  transform: scale(1.02);
}

.main-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.main-story:hover img {
  transform: scale(1.1);
}

.main-story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 40px 30px;
  color: white;
}

.trending-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.main-story-title {
  font-weight: 700;
  line-height: 1.3;
}

.story-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.brdcrumb ul li a,
.dropdown-select a,
.even-odd-tbl thead th a,
.foot-lnk,
.foot-lnk.active:hover,
.gradient-btn,
.hyperlink,
.modal-register,
.read-more,
.share-modal-icon,
.social-btn,
.tbl-data-heading,
.transparent-btn,
.washedblack-btn,
.white-btn {
  text-decoration: none;
}

.foot-lnk:hover,
.read-more:hover {
  text-decoration: underline;
}

.maintopcontent h1:after {
  content: "";
  width: 30%;
  height: 2px;
  margin: auto;
  background: var(--bs-gradient-bg);
  border-radius: 5px;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
}

.maintopcontent h1 {
  position: relative;
  margin-bottom: 12px !important;
  display: inline-block;
  font-size: 26px !important;
}

.maintopcontent p {
    margin-bottom: 0 !important;
}

.details-page p,
.faq-acordion .accordion-body,
.text-justify {
  text-align: justify;
}

.choose-file,
.dropdown-select,
.even-odd-tbl,
.white-btn {
  white-space: nowrap;
}

#scrolltop,
.bg-washed-black,
.even-odd-tbl thead tr,
.footer,
.heading-bdr-black::after,
.heading-bdr-left-black::after {
  background: var(--bs-washed-black);
}

.brdcrumb ul,
.details-page li p,
.faq-acordion .accordion-body p:last-child {
  margin-bottom: 0;
}

.gradient-bg,
.popover-header,
.tab-lnk.active {
  background: var(--bs-gradient-bg) !important;
}

.whatsapp-bg {
  background: #25d366;
}

.gmail-bg {
  background: #4285f4;
}

.google-bg {
  background: #db4a39;
}

.twitter-bg {
  background: #0f1419 !important;
}

.linkdin-bg {
  background: #0072b1 !important;
}

.fb-bg {
  background: #3b5998 !important;
}

.tele-bg {
  background: #08c !important;
}

.reddit-bg {
  background: #ff4500 !important;
}

.pinterest-bg {
  background: #c8232c !important;
}

.youtube-bg {
  background: #cd201f !important;
}

.tab-lnk:hover,
.text-washed-black {
  color: var(--bs-washed-black);
}

.twitter-clr {
  color: #0f1419 !important;
}

.linkdin-clr {
  color: #0072b1 !important;
}

.fb-clr {
  color: #3b5998 !important;
}

.tele-clr {
  color: #08c;
}

.gmail-clr {
  color: #4285f4;
}

.durotar-fire-clr,
.platform-badge,
.read-more,
.read-more:hover,
.section-title,
.social-icon,
.txt-highlight {
  color: var(--bs-durotar-fire);
}

.text-gradient {
  background: var(--bs-gradient-bg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-bdr-clr {
  border-color: #A0330E !important;
}

.invert1 {
  filter: invert(1);
}

.cursor-pointer,
.dropdown-select.open .option,
.noUi-target {
  cursor: pointer;
}

.max-width-250 {
  max-width: 250px;
}

.inset-shadow {
  box-shadow: inset 0 0 20px #ddd;
}

.heading-bdr,
.heading-bdr-left {
  font-weight: 600;
  color: var(--bs-washed-black);
  padding-bottom: 3px;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}

#scrolltop,
.brdcrumb ul li:first-child::before,
.header .dark-logo,
.hidden,
.inverted .light-logo,
.more-content,
.offcanvas-header .dark-logo,
.owl-dots,
.owl-nav {
  display: none;
}

.heading-bdr-left::after,
.heading-bdr::after {
  content: "";
  width: 30%;
  height: 2px;
  margin: auto;
  background: var(--bs-gradient-bg);
  border-radius: 5px;
  position: absolute;
  bottom: -6px;
}

.heading-bdr-left::after {
  left: 0;
  right: auto;
}

.heading-bdr::after {
  left: 0;
  right: 0;
}

.error {
  font-size: 14px;
  color: #dc3545;
}

.w-100px {
  width: 100px !important;
}

.w-130 {
  width: 130px !important;
}

.w-220 {
  width: 220px !important;
}

.navbar-nav .nav-itm {
  margin-left: 5px;
}

.navbar-nav .nav-lnk {
  color: rgba(var(--bs-white-rgb)) !important;
  font-weight: 600;
  margin: 3px 0;
  border-radius: 30px;
}

.navbar-nav .nav-lnk.active,
.navbar-nav .nav-lnk:hover {
  color: var(--bs-white) !important;
  background: var(--bs-gradient-bg) !important;
}

.dropdown-lnk.active,
.dropdown-lnk:active,
.dropdown-lnk:hover {
  color: var(--bs-white) !important;
  background: var(--bs-gradient-bg);
}

.navbar-toggler {
  padding: 0 6px;
  background: #fff;
  border-color: #fff;
  border-radius: 10px;
}

.navbar-toggler-icon {
  background-size: 22px;
}

.inverted {
  background: var(--bs-gradient-bg) !important;
  box-shadow: 0 3px 5px .3px rgba(0, 0, 0, .1);
  transition: .3s ease-in-out;
}

.inverted .navbar-brand {
  color: rgba(var(--bs-white-rgb));
}

.brdcrumb ul li a,
.package-btn:hover {
  color: var(--bs-white);
}

.inverted .invert-content {
  background: var(--bs-white) !important;
}

.inverted .navbar-nav .nav-lnk.active,
.inverted .navbar-nav .nav-lnk:hover {
  background: var(--bs-gradient-bg) !important;
  color: rgba(var(--bs-white-rgb)) !important;
}

.inverted .navbar-toggler {
  border-color: (var(--bs-washed-black));
}

.inverted .dark-logo {
  display: block !important;
}

.hdr-btm-scroll {
  position: absolute;
  z-index: 100;
  bottom: -1px;
  transition: .3s;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--bs-washed-black);
}

.gradient-btn,
.transparent-btn,
.washedblack-btn {
  transition: .3s ease-in-out;
  white-space: nowrap;
}

.brdcrumb ul {
  font-weight: 500;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 10px 0;
}

.brdcrumb ul li::before {
  font-family: Fontawesome;
  font-size: 14px;
  color: white !important;
  content: "\f105" !important;
  margin: 2px 8px 0;
}

.package-btn {
  color: var(--bs-washed-black);
  display: flex;
  text-align: center;
}

.brdcrumb ul li:last-child {
  color: white;
  align-items: center;
  cursor: default;
}

.package-btn,
.project-user-icon {
  justify-content: center;
  text-decoration: none;
}

.package-btn {
  height: 100%;
  font-weight: 600;
  padding: 15px 5px;
  align-items: center;
  background: var(--bs-white);
  border: 1px solid var(--bs-durotar-fire);
  border-radius: 5px;
}

.badge-content,
.benefit-card::before,
.benefit-icon,
.package-btn:hover,
.writers:hover {
  background: var(--bs-gradient-bg);
}

.project-user-icon {
  width: 35px;
  height: 35px;
  font-size: 16px;
  margin: 5px;
  display: flex !important;
  align-items: center;
  border-radius: 50%;
}

.checkbox.style-d,
.gradient-btn,
.transparent-btn,
.washedblack-btn,
.white-btn {
  display: inline-block;
}

.special-offers {
  padding-left: 20px;
  list-style-type: disclosure-closed;
}

.special-offers li::marker {
  color: var(--bs-white);
}

.foot-lnk {
  color: #bbb;
}

.even-odd-tbl thead th a,
.foot-lnk:hover {
  color: #fff;
}

.foot-lnk.active {
  color: #f78f1e;
}

.pulse-prnt {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 89;
}

#scrolltop {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
}

#scrolltop img {
  margin-bottom: 2px;
}

#scrolltop::after,
#scrolltop::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  background: #f78f1e;
  border-radius: 50%;
  z-index: -1;
  animation: 1s ease-in-out infinite grow;
}

#scrolltop::before {
  background: #ef622a;
  animation-delay: -.5s;
}

@keyframes grow{

    0% {
        transform: scale(1, 1);
        opacity: 1
    }

    100% {
        transform: scale(1.8, 1.8);
        opacity: 0
    }

}

.btn-close {
  align-self: flex-start;
  position: absolute;
  right: 13px;
  top: 13px;
  transition: .3s;
}

.modal-register,
.pwd-hide {
  font-size: 14px;
  top: 8px;
  position: absolute;
}

.modal-register {
  font-weight: 700;
  color: var(--bs-washed-black);
  left: 15px;
}

.int-txt {
  width: 100%;
  padding: 6px 16px;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 20px;
}

.pwd-hide {
  color: #8b8b8b;
  background: 0 0;
  border: 0;
  right: 8px;
}

.gradient-btn {
  font-weight: 500;
  color: var(--bs-white);
  background: var(--bs-gradient-bg);
  padding: 6px 16px;
  text-align: center;
  border: 1px solid var(--bs-gradient-bg);
  border-radius: 30px;
}

.gradient-btn:focus,
.gradient-btn:hover {
  background: linear-gradient(135deg, #ef622a, #f78f1e);
}

.white-btn {
  font-weight: 500;
  color: var(--bs-washed-black);
  background: var(--bs-white);
  padding: 5px 16px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 30px;
}

.like,
.white-btn:hover {
  color: var(--bs-white);
  background: var(--bs-gradient-bg);
  border-color: #ef622a;
}

.washedblack-btn {
  font-weight: 500;
  color: var(--bs-white);
  background: var(--bs-washed-black);
  padding: 4px 16px;
  text-align: center;
  border: 1px solid var(--bs-washed-black);
  border-radius: 30px;
}

.washedblack-btn:focus,
.washedblack-btn:hover {
  opacity: .8;
}

.transparent-btn {
  font-weight: 500;
  color: var(--bs-white);
  background: var(--bs-transparent);
  padding: 5px 16px;
  text-align: center;
  border: 1px solid var(--bs-white);
  border-radius: 30px;
}

.floting-int,
.floting-lbl {
  padding-left: 20px !important;
}

.transparent-btn:focus,
.transparent-btn:hover {
  color: #141414;
  background: #fff;
}

.share-modal-icon {
  width: 30px;
  height: 30px;
  font-size: 16px;
  margin: 5px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.share-modal-radius {
  border: 0;
  border-radius: 110px 25px 25px 110px;
}

.envelope-modal.fade .modal-dialog {
  transform: scale(.1);
  transition: .4s cubic-bezier(.47, 1.64, .41, .8);
}

.envelope-modal.fade.show .modal-dialog {
  opacity: 1;
  transform: scale(1);
}

.envelope-modal .modal-content {
  background: 0 0;
  border: none;
}

.envelope-modal .modal-content:after,
.envelope-modal .modal-content:before {
  content: "";
  background-color: var(--bs-washed-black);
  height: 100%;
  width: 90%;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0 100%, 0 30%);
}

.envelope-modal .modal-content:after {
  background-color: var(--bs-white);
  width: 100%;
  height: 86%;
  top: auto;
  bottom: 10px;
  clip-path: polygon(0 0, 50% 10%, 100% 0, 100% 100%, 50% 90%, 0 100%);
}

.envelope-close {
  align-self: flex-start;
  position: absolute;
  right: 5px;
  top: 14%;
}

.btn-close:hover {
  transform: rotate(180deg);
}

.envelope-modal .modal-body,
.social-input,
.writers {
  position: relative;
}

.envelope-modal .modal-content .modal-body {
  padding: 35px 20px 80px;
}

.envelope-modal .modal-register {
  top: 88px;
}

.floting-int {
  padding-right: 20px;
  background: var(--bs-white);
  border-radius: 15px;
}

.floting-int:focus {
  border-color: var(--bs-durotar-fire);
  box-shadow: none;
}

.floting-lbl {
    color: #595959;
}

.form-floating>.form-control:focus~label::after,
.form-floating>.form-control:not(:placeholder-shown)~label::after {
  background: 0 0;
}

.btn-toggle-password {
  position: absolute;
  right: 10px;
  top: 10px;
  border: 0;
}

.checkbox.style-d,
.filter__label {
  position: relative;
  cursor: pointer;
}

.btn-toggle-password:active,
.btn-toggle-password:focus-visible,
.btn-toggle-password:hover {
  color: inherit !important;
  background: 0 0 !important;
  box-shadow: none;
}

.form-floating>textarea {
  height: auto !important;
  min-height: auto;
}

.social-btn {
  display: flex;
  align-items: center;
  width: 260px;
  font-weight: 600;
  color: #f5f8fa;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .5);
  border-radius: 5px;
  height: 75px;
}

.faq-acordion .accordion-body a,
.frm-lbl,
.more-btn {
  color: var(--bs-washed-black);
  font-weight: 600;
}

.social-btn:active {
  transform: translateY(10px);
  box-shadow: none;
}

.social-btn-telegram {
    background: #005C8A;
    box-shadow: 0 5px 0 #083952;
}

.social-btn-email {
    background: #0C51C5;
    box-shadow: 0 5px 0 #183666;
}

.more-btn,
.sidebar-accordion .accordion-item {
  background: 0 0;
  border: 0;
}

.sidebar-accordion .accordion-button {
  font-size: 18px;
  font-weight: 600;
  color: #fff !important;
  padding: 5px 10px;
  background: 0 0 !important;
  box-shadow: none !important;
}

.sidebar-accordion .accordion-button::after {
  filter: brightness(60.5);
}

.checkbox.style-d {
  padding-left: 35px;
  margin: 5px 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox.style-d input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox.style-d input:checked~.checkbox__checkmark {
  background-color: var(--bs-white);
  border-color: var(--bs-white);
}

.checkbox.style-d input:checked~.checkbox__checkmark:after,
.parsley-errors-list.filled {
  opacity: 1;
}

.checkbox.style-d .checkbox__checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 1px solid #999;
  transition: background-color .25s;
  border-radius: 11px;
}

.checkbox.style-d .checkbox__checkmark:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid var(--bs-washed-black);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity .25s;
}

.checkbox.style-d .checkbox__body {
  color: #ddd;
  line-height: 1.4;
}

.partner .checkbox-dark .checkbox.style-d,
.partner .checkbox-light .checkbox.style-d,
.profile .checkbox-light .checkbox.style-d {
  width: 93px;
}

.checkbox-dark .checkbox.style-d,
.checkbox-light .checkbox.style-d {
  padding-left: 28px;
  margin-right: 15px;
}

.checkbox-dark .checkbox.style-d .checkbox__checkmark {
  height: 18px;
  width: 18px;
  border-radius: 0;
}

.checkbox-dark .checkbox.style-d .checkbox__checkmark:after {
  left: 6px;
  top: 2px;
}

.checkbox-light .checkbox.style-d .checkbox__checkmark {
  height: 18px;
  width: 18px;
  background: #fff;
  border: 1px solid #555;
  border-radius: 0;
}

.checkbox-light .checkbox.style-d input:checked~.checkbox__checkmark {
  background: var(--bs-gradient-bg);
  border-color: var(--bs-durotar-fire);
}

.checkbox-light .checkbox.style-d .checkbox__checkmark:after {
  border: solid var(--bs-white);
  border-width: 0 2px 2px 0;
  left: 5px;
  top: 2px;
}

.checkbox-light .checkbox.style-d .checkbox__body {
  color: #555;
}

.list-product .checkbox-width .checkbox.style-d {
  width: 110px;
}

.hyperlink {
  background: var(--bs-washed-black);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
}

.noUi-target :focus {
  outline: 0;
}

.noUi-horizontal {
  height: 9px;
}

.noUi-base {
  background: #dedede;
}

.noUi-horizontal .noUi-handle {
  top: -6px;
  right: -15px;
  width: 22px;
  height: 22px;
  background: var(--bs-washed-black);
  border: 2px solid var(--bs-durotar-fire);
  border-radius: 50%;
  box-shadow: unset;
  cursor: pointer;
  transition: transform .1s;
}

.noUi-horizontal .noUi-handle:after,
.noUi-horizontal .noUi-handle:before {
  content: none;
}

.noUi-horizontal .noUi-handle:hover {
  transform: scale(1.1);
}

.range-filter {
  display: flex;
  justify-content: space-between;
}

.filter__input {
  height: 35px;
  border: 1px solid #777;
  border-radius: 5px;
  padding: 0 10px 0 15px;
  cursor: pointer;
  max-width: 110px;
  background: 0 0;
  color: #000;
}

.filter__input:focus {
  background: rgba(155, 38, 175, .2);
}

.details-page table thead tr th,
.srch-prnt .serch-megnify {
  background: var(--bs-washed-black);
  color: #fff;
}

.faq-acordion .accordion-button:not(.collapsed) {
    background: var(--bs-gradient-bg);
    color: white !important;
}

.filter__slider-price {
  width: 100%;
  margin: 5px 5px 20px;
}

.frm-lbl {
  margin-bottom: 5px;
}

.radio-design label input {
  position: absolute;
  left: -9999px;
}

.radio-design label input:checked+span:before {
  box-shadow: inset 0 0 0 .3875em var(--bs-durotar-fire);
}

.radio-design label span {
  display: flex;
  align-items: center;
  padding: .375em .75em .375em .375em;
  border-radius: 99em;
  transition: .25s;
}

.radio-design label span:before {
  display: flex;
  flex-shrink: 0;
  content: "";
  background-color: #fff;
  width: 1.3em;
  height: 1.3em;
  border-radius: 50%;
  margin-right: .77em;
  transition: .25s;
  box-shadow: inset 0 0 0 1px #555;
}

.int-file {
  width: 112px;
  height: 32px;
  opacity: 0;
  border: 1px solid #000;
}

.choose-file {
  font-weight: 600;
  padding: 3px 15px;
  display: inline-block;
  background-color: #fff;
  border: 1px solid var(--bs-washed-black);
  border-radius: 20px;
  position: absolute;
  left: 0;
}

.three-line-text,
.two-line-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.upload-img {
  width: 50px;
  height: 50px;
  background: var(--bs-dark);
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 50%;
}

.details-page img {
  width: 100%;
  height: 100%;
  margin-bottom: 15px !important;
  border-radius: 10px;
}

.details-page h2,
.details-page h3,
.details-page h4,
.details-page h5,
.details-page h6 {
  color: var(--bs-washed-black);
  font-weight: 600;
  line-height: 1.2;
}

.details-page h1,
.details-page h1 span {
  font-size: 22px !important;
}

.details-page h2,
.details-page h2 span {
  font-size: 20px !important;
}

.details-page h3,
.details-page h3 span {
  font-size: 18px !important;
}

.details-page h4,
.details-page h4 span,
.details-page h5,
.details-page h5 span,
.details-page h6,
.details-page h6 span {
  font-size: 16px !important;
}

.details-page p br,
.details-page p span br {
  display: none;
}

.details-page li {
  margin: 8px 0;
  padding-left: 5px;
  line-height: 1.5;
}

.details-page a {
    color: #A0330E;
    font-weight: 600;
}

.details-page li a strong,
.details-page li::marker {
  font-weight: 600;
  color: #ef622a;
}

.details-page p {
  color: #555;
  line-height: 1.5;
}

.details-page strong,
.details-page table td:first-child {
  font-weight: 600;
}

.details-page table {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 15px;
  border: 1px solid #ddd;
}

.details-page table td,
.details-page table th {
  padding: 8px 10px;
  border: 1px solid #ddd;
}

.social-icon-sticky {
  position: sticky;
  top: 120px;
}

.sticky-sidebar {
  position: sticky;
}

.muted-btn {
  color: #555;
  background: 0 0;
  border: 1px solid transparent;
  border-radius: 30px;
}

.two-line-text {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.three-line-text {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.srch-prnt {
  height: 41px;
  max-width: 500px;
  color: var(--bs-washed-black) !important;
  padding: 5px 60px 5px 12px;
  background: 0 0;
  border: 1px solid #ccc;
  border-radius: 30px;
  position: relative;
  min-width: 230px;
}

.srch-prnt .srch-int {
    width: 100%;
    font-size: 16px;
    line-height: 25px;
    border: 0;
}

.srch-prnt .serch-megnify {
  width: 45px;
  height: 41px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--bs-washed-black);
  border-radius: 0 50px 50px 0;
  position: absolute;
  right: -1px;
  top: -1px;
}

.even-odd-tbl {
  width: 100% !important;
  vertical-align: middle;
  border: 1px solid #dee2e6;
}

.even-odd-tbl thead th {
  font-weight: 500;
  color: #fff;
  background: 0 0;
  padding-top: 8px;
  padding-bottom: 8px;
  vertical-align: middle;
  border: 0;
}

.tbl-data-heading {
  color: #000;
  font-weight: 600;
}

.tbl-data-heading .small {
  font-size: 12px;
  font-weight: 400;
  color: #555;
  margin-left: 3px;
}

.tab-lnk.active,
.writers:hover {
  color: var(--bs-white) !important;
}

.even-odd-tbl tbody td {
  color: var(--bs-washed-black);
  background: 0 0;
  vertical-align: middle;
}

.even-odd-tbl tbody td .hyperlink,
.hyperlink {
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 12px;
  margin: auto;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background: #0d2156;
  border-radius: 50%;
}

.quantity-value {
  width: 30px;
  font-weight: 600;
  text-align: center;
  background: #fff;
  border-radius: 0 !important;
  border: 1px solid #ccc;
  border-collapse: collapse;
}

.coming {
  font-size: 10rem;
  margin-bottom: 0;
}

.tab-lnk {
  font-weight: 600;
  color: var(--bs-washed-black);
  margin: 0 10px;
  padding: 4px 20px;
  border: 1px solid #ccc !important;
  border-radius: 30px !important;
}

.tab-lnk.active {
  border-color: var(--bs-durotar-fire) !important;
}

.faq-acordion .accordion-button {
  font-weight: 600;
  position: relative;
}

.faq-acordion .accordion-button::before {
  width: 4px;
  height: 100%;
  content: "";
  background-color: var(--bs-durotar-fire);
  position: absolute;
  left: 0;
  top: 0;
}

.accordion-button::after {
  filter: brightness(30);
  background-color: #000;
  background-position: center;
  background-size: 12px;
  border-radius: 50%;
}

.faq-acordion .accordion-button:focus {
  border-color: var(--bs-gradient-bg);
  box-shadow: none;
}

.faq-acordion .accordion-button:not(.collapsed)::after {
  filter: brightness(1);
  background-color: white;
}

.faq-acordion .accordion-body p {
  color: black;
}

.faq-acordion .accordion-body ol,
.faq-acordion .accordion-body ul {
  text-align: start;
  padding-left: 20px;
}

.faq-acordion .accordion-body li {
  padding: 5px 10px;
}

.faq-acordion .accordion-body li::marker {
  color: var(--bs-gradient-bg);
  font-weight: 600;
}

.writers:after,
.writers:before {
  content: "";
  border: 3px solid var(--bs-durotar-fire);
  clip-path: polygon(75% 0, 100% 0, 100% 35%, 25% 100%, 0 100%, 0 65%);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.writers:hover:after,
.writers:hover:before {
  border-color: var(--bs-washed-black);
}

html::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

html::-webkit-scrollbar-thumb {
  background: var(--bs-gradient-bg);
  border-radius: 16px;
  box-shadow: inset 2px 2px 2px hsl(0deg 0% 100% / 25%), inset -2px -2px 2px rgb(0 0 0 / 25%);
}

html::-webkit-scrollbar-track {
  background: var(--bs-washed-black);
  box-shadow: inset 2px 2px 2px hsl(0deg 0% 100% / 25%), inset -2px -2px 2px rgb(0 0 0 / 25%);
}

.table::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

.table::-webkit-scrollbar-thumb {
  background: var(--bs-washed-black);
  border-radius: 16px;
  box-shadow: inset 2px 2px 2px hsl(0deg 0% 100% / 25%), inset -2px -2px 2px rgb(0 0 0 / 25%);
}

.table::-webkit-scrollbar-track {
  background: var(--bs-white);
  box-shadow: inset 2px 2px 2px hsl(0deg 0% 100% / 25%), inset -2px -2px 2px rgb(0 0 0 / 25%);
}

.popover {
  border-color: var(--bs-durotar-fire);
}

.popover-header {
  font-size: 14px;
  font-weight: 500;
  color: #fff !important;
  padding: 4px 10px;
  border: 0;
  border-radius: 5px;
}

.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
  border-top-color: var(--bs-durotar-fire);
}

.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
  border-right-color: var(--bs-durotar-fire);
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
  border-bottom-color: var(--bs-durotar-fire);
}

.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
  border-left-color: var(--bs-durotar-fire);
}

.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,
.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,
.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,
.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before {
  border: 0;
}

input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #468847;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #dc3545;
  background-color: #f2dede;
  border: 1px solid #eed3d7;
}

.parsley-errors-list {
  margin: 5px 0 0;
  padding: 0;
  list-style-type: none;
  font-size: .9em;
  line-height: .9em;
  opacity: 0;
  color: #dc3545;
  transition: .3s ease-in;
  -o-transition: .3s ease-in;
  -moz-transition: .3s ease-in;
  -webkit-transition: .3s ease-in;
}

::selection {
  color: #fff;
  background: var(--bs-washed-black);
}

.dropdown-select,
.dropdown-select:focus,
.dropdown-select:hover {
  background-color: #fff;
}

.dropdown-select {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, .25) 0, rgba(255, 255, 255, 0) 100%);
  background-repeat: repeat-x;
  border-radius: 20px;
  border: 1px solid #dee2e6;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  float: left;
  font-size: 14px;
  font-weight: 400;
  height: 42px;
  line-height: 30px;
  outline: 0;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: .2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: auto;
}

.dropdown-select.open,
.dropdown-select:active {
  background-color: #fff !important;
  border-color: #bbb;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .05) inset;
}

.dropdown-select:after {
  height: 0;
  width: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #777;
  -webkit-transform: origin(50% 20%);
  transform: origin(50% 20%);
  transition: 125ms ease-in-out;
  content: "";
  display: block;
  margin-top: -2px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 50%;
}

.dropdown-select.open:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.dropdown-select.open .list {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

.dropdown-select.wide {
  width: 100%;
}

.dropdown-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.dropdown-select .list {
  box-sizing: border-box;
  transition: .15s cubic-bezier(.25, 0, .25, 1.75), opacity .1s linear;
  -webkit-transform: scale(.75);
  transform: scale(.75);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .09);
  background-color: #fff;
  border-radius: 6px;
  margin-top: 4px;
  padding: 3px 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  max-height: 250px;
  overflow: auto;
  border: 1px solid #ddd;
}

.dropdown-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.dropdown-select .dd-search {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: .5rem;
}

.dropdown-select .dd-searchbox {
  width: 100%;
  padding: .5rem;
  border: 1px solid #999;
  border-radius: 4px;
  outline: 0;
}

.dropdown-select .dd-searchbox:focus {
  border-color: #12cbc4;
}

.dropdown-select .list ul {
  padding: 0;
}

.dropdown-select .option {
  cursor: default;
  font-weight: 400;
  line-height: 40px;
  outline: 0;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: .2s;
  list-style: none;
}

.dropdown-select .option:focus,
.dropdown-select .option:hover {
  background-color: #f6f6f6 !important;
}

.dropdown-select .option.selected {
  font-weight: 600;
  color: #12cbc4;
}

.dropdown-select .option.selected:focus {
  background: #f6f6f6;
}

.dropdown-select a {
  color: #aaa;
  transition: .2s ease-in-out;
}

.dropdown-select a:hover {
  color: #666;
}

span.cart_item_count {
  position: absolute;
  bottom: 11px;
  right: -11px;
  background: #f16a28;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.partner-bg {
  background: linear-gradient(to right, #f9e8e1, #f3dfb3);
}

.partner-bg td {
  background: linear-gradient(to right, #f9e8e1, #f3dfb3) !important;
  border-color: #777;
}

.advertisment-tbl tbody tr:hover td,
.advertisment-tbl th {
  background: var(--bs-light);
}

.premium-bg {
  background: linear-gradient(to right, #ff1493, #ff6f61);
  line-height: 1.8;
  border: none;
  color: #fff !important;
}

.partner-bg .like {
  background: #fff !important;
  border: 1px solid #fff !important;
}

.partner-bg .hyperlink {
  color: #0d2156 !important;
  background: #fff !important;
}

.partner-bg .tbl-data-heading,
.partner-bg .tbl-data-heading small,
.partner-bg td,
.social-media-cont:hover .fb-socl,
.social-media-cont:hover .reddit-socl,
.social-media-cont:hover .socl-flwr,
.social-media-cont:hover .socl-flwr-vlue,
.social-media-cont:hover .x-socl {
  color: #000 !important;
}

.faq-right {
  padding: 2rem;
  background: var(--bs-gradient-bg);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.icon-faq {
  width: 120px;
  height: 120px;
  border: 3px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
}

.faq-que {
  font-size: 4rem;
  font-weight: 300;
  color: var(--bs-white);
  font-family: Georgia, serif;
}

.testimonial-card {
  background: #ffccb826;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
  transition: .3s;
  position: relative;
  z-index: 2;
  border-left: 4px solid var(--bs-durotar-fire);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.client-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bs-gradient-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-white);
  font-weight: 600;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.client-details h5 {
  margin: 0;
  color: #2c3e50;
  font-weight: 600;
  font-size: 1.1rem;
}

.client-date {
  color: #6c757d;
  font-size: .9rem;
  margin: 0;
}

.rating {
  margin-bottom: 20px;
}

.rating i {
  color: #ffc107;
  font-size: 1.1rem;
  margin-right: 2px;
}

.testimonial-text {
  color: #2c3e50;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 500;
}

.testimonial-description {
  color: #6c757d;
  font-size: .9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.read-more {
  font-weight: 500;
  font-size: .9rem;
  transition: color .3s;
}

.platform-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(247, 143, 30, .1);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 500;
}

.premium-bg:hover {
  background-color: #ff1493;
  color: #fff;
}

.fs-10 {
  font-size: 10px;
}

.fs-12 {
  font-size: 12px;
}

.section-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0;
  border-bottom: 2px solid var(--bs-durotar-fire);
  padding-bottom: 8px;
}

.social-icon {
  position: absolute;
  left: 10px;
  top: 60%;
}

.social-input .form-control {
  padding-left: 35px;
  height: calc(1.5em + .75rem + 2px);
}

.article-item {
  background: rgba(247, 143, 30, .05);
  border-left: 4px solid var(--bs-durotar-fire);
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 5px;
}

.social-input select.form-control {
  padding-right: .75rem;
}

.li-css h3,
.li-css span {
  margin-bottom: 4px;
  padding-left: 5px;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.txt-highlight {
  font-weight: 600;
  margin: 0 2px;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 20px 18px;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #812536, #b97962);
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: #9E300F;
  box-shadow: 0 15px 40px rgba(247, 143, 30, 0.2);
}

.benefit-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 19px;
  transition: all 0.3s ease;
  background: linear-gradient(45deg, #812536, #b97962);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-title {
  color: #9E300F;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
}

.benefit-description {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.highlight-text {
  color: var(--bs-durotar-fire);
  font-weight: 600;
}

.size-icon {
  width: 55px;
  height: 55px;
  font-size: 22px;
  margin-bottom: 10px;
}

.badge-content {
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  margin: .25rem;
  display: inline-block;
}

.seo-head {
  font-size: 16px;
  font-weight: 700;
  color: #A0330E;
}

.bottomleftstickybanner,
.bottomrightstickybanner {
  position: fixed;
  bottom: 80px;
  z-index: 99999;
}

.bottomrightstickybanner {
  right: 40px;
}

.bottomleftstickybanner {
  left: 40px;
}

.bottomleftstickybanner img,
.bottomrightstickybanner img {
  box-shadow: 0 0 10px #aaa;
  border-radius: 15px;
}

.close-banner-btn {
  font-size: 30px;
  font-weight: 600;
  color: #777;
  padding: 0;
  line-height: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  right: -18px;
  top: -10px;
}

.sticky-ad-bottom-right {
  display: none !important;
}

.close-banner-btn span {
  font-size: 27px !important;
}

.topstickybanner {
  width: 100%;
  margin: 0 auto;
  animation: 2s ease-out slideInFromLeft;
}

.brremove p br {
  display: none;
}

.slide-container .next,
.slide-container .prev {
  cursor: pointer;
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 16px;
  color: #fff;
  background-color: rgba(0, 0, 0, .4);
  font-weight: 700;
  font-size: 16px;
  transition: .6s;
  border-radius: 50%;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-container .next:hover,
.slide-container .prev:hover {
  background-color: rgba(0, 0, 0, .8);
  color: #fff;
}

.slide-container .prev {
  left: 10px;
}

.slide-container .next {
  right: 10px;
}

.slide-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: auto;
  position: relative;
}

.borderleftorange {
  border-left: 5px solid #f06828;
}

.booknowtabs .nav-tabs .nav-link:hover {
  background: var(--bs-gradient-bg) !important;
  color: #fff;
  border: 1px solid #f06b27;
}

.booknowtabs .nav-tabs .nav-link {
  color: #f16c27;
  border: 1px solid #f06b27;
  margin-right: 5px;
}

.booknowtabs .nav-tabs .nav-item.show .nav-link,
.booknowtabs .nav-tabs .nav-link.active {
  border: 1px solid #f06b27;
  background: var(--bs-gradient-bg) !important;
  color: #fff;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.heading_page h1,
.heading_page h2,
.heading_page h3,
.heading_page h4,
.heading_page h5,
.heading_page h6 {
  color: #000;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.heading_page h1:after,
.heading_page h2:after,
.heading_page h3:after,
.heading_page h4:after,
.heading_page h5:after,
.heading_page h6:after {
  content: "";
  width: 40%;
  background: #f16c27;
  position: absolute;
  height: 3px;
  display: block;
  margin-top: 4px;
}

.heading_page {
  background: #fff5f0;
  padding: 15px;
  border-top: 5px solid #f06729;
  border-radius: 10px;
}

.heading_page table {
  margin-top: 15px;
}

.heading_page h1,
.heading_page h1 span {
  font-size: 22px !important;
}

.heading_page h2,
.heading_page h2 span {
  font-size: 20px !important;
}

.heading_page h3,
.heading_page h3 span {
  font-size: 18px !important;
}

.heading_page h4,
.heading_page h4 span,
.heading_page h5,
.heading_page h5 span,
.heading_page h6,
.heading_page h6 span {
  font-size: 16px !important;
}

.selectBox {
  position: relative;
}

.selectBox select {
  width: 100%;
  font-weight: bold;
}

.overSelect {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#checkboxes1,
    #checkboxes2,
    #checkboxes3 {
  display: none;
  border: 1px #dadada solid;
  position: absolute;
  width: 100%;
  background: #fff;
}

#checkboxes1 label,
    #checkboxes2 label,
    #checkboxes3 label {
  display: block;
  padding: 7px 10px;
}

#checkboxes1 label:hover,
    #checkboxes2 label:hover,
    #checkboxes3 label:hover {
  background-color: #1e90ff;
}

.section-label {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.section-label i {
  margin-right: 0.5rem;
  color: #ff6b35;
}

.radio-group {
  gap: 1.2rem;
}

.radio-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid #2a3f5f;
  border-radius: 50%;
  margin-right: 0.5rem;
  position: relative;
  cursor: pointer;
}

.radio-option input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #ff6b35;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radio-option label {
  font-size: 0.95rem;
  color: #333;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #000 !important;
}

.small-icon {
  width: 25px;
  height: 25px;
  font-size: 13px;
}

.insta-bg {
  background: radial-gradient(circle at 30% 107%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%) !important;
}

.highlight {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.highlight-addon {
  background: #a35b38;
  color: white;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}

.counteroffer-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #e9ecef;
  border-radius: 15px;
  padding: 12px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.counteroffer-card:hover {
  border-color: var(--bs-durotar-fire);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.counteroffer-amount {
  font-size: 25px;
  font-weight: 800;
  color: var(--bs-durotar-fire);
  margin: 0;
}

.counteroffer-label {
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.swal2-confirm {
  font-weight: 500;
  color: var(--bs-white);
  background: var(--bs-gradient-bg);
  padding: 6px 16px;
  text-align: center;
  border: 1px solid var(--bs-gradient-bg);
  border-radius: 30px;
}

.select2-container--default .select2-selection--multiple {
  border: solid #d7d7d7 1px !important;
  border-radius: 20px !important;
  padding-left: 5px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid #d7d7d7 1px !important;
  border-radius: 20px !important;
}

.loader-overlay-row td {
  border: none;
}

.claim-status-btn {
  font-weight: 500;
  color: var(--bs-white);
  padding: 6px 16px;
  text-align: center;
  border: 1px solid var(--bs-gradient-bg);
  border-radius: 30px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #212529;
}

.gradient-bg {
  background: linear-gradient(135deg, #f78f1e 0%, #ef622a 100%);
}

.coupon-card {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.verified-badge {
  background: #28a745;
  color: white;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 12px;
}

.staff-pick {
  background: #dc3545;
  color: white;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 5px;
}

.star-rating {
  color: #ffc107;
}

.btn-deal {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border: none;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(40, 167, 69, 0.3);
  transition: all 0.3s ease;
}

.btn-deal:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(40, 167, 69, 0.4);
}

.icon-small {
  font-size: 0.8rem;
  opacity: 0.7;
}

.compact-text {
  font-size: 0.85rem;
  line-height: 1.3;
}

.brand-name {
  font-weight: bold;
  font-size: 1.5rem;
  color: #2c3e50;
}

.offer-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c3e50;
  margin: 0;
}

.offer-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  margin: 0;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropdown-item:hover {
  background: var(--bs-gradient-bg) !important;
  color: #fff;
}

.dropdown-item:focus {
  background: var(--bs-gradient-bg) !important;
  color: #fff !important;
}

.dropdown-submenu>.dropdown-item::after {
  display: inline-block;
  margin-left: 3.255em;
  vertical-align: 0px;
  content: "";
  border-top: .3em solid transparent;
  border-right: 0;
  border-bottom: .3em solid transparent;
  border-left: .3em solid;
}

@keyframes pulse{

        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    
}

.media-highlight {
  background: #ffc27a;
  padding: 2px 7px;
  border-radius: 5px;
  font-weight: 600;
}

.category-highlight {
  background: linear-gradient(45deg, #812536, #b97962);
  padding: 2px 7px;
  border-radius: 5px;
  font-weight: 600;
  margin: 0px 2px;
  color: #fff2f2;
  font-size: 13px;
}

@keyframes pulse{

        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    
}

@media (max-width: 768px) {
  .pricing-card {
    margin-bottom: 2rem;
  }
  
  .current-price {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .header-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .header-gradient {
    padding: 30px 20px;
  }
  
  .news-content-area {
    padding: 20px;
  }
}

@media (min-width:992px) {
  .inverted .navbar-nav .nav-lnk {
    color: #555 !important;
  }
  
  .footer {
    background-position-x: right;
  }
}

@media (min-width:1200px) {
  .sticky-sidebar {
    top: 120px;
  }
}

@media (max-width:1199px) and (min-width:992px) {
  .header-logo {
    width: 150px;
    height: 52px;
  }
  
  .navbar-nav .nav-lnk {
    padding: 4px 16px !important;
  }
  
  .sticky-sidebar {
    top: 90px;
  }
}

@media (max-width:992px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width:991px) {
  .header-logo {
    width: 100px;
    height: 35px;
  }
  
  .modal-content {
    max-height: 95vh;
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .modal-title {
    font-size: 18px;
  }
  
  .specialservices-table {
    font-size: 10px;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
  }
  
  .specialservices-table tbody,
      .specialservices-table td,
      .specialservices-table th,
      .specialservices-table thead,
      .specialservices-table tr {
    display: block;
  }
  
  .specialservices-table tbody {
    max-height: 330px;
  }
  
  .specialservices-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  
  .specialservices-table tr {
    border: 1px solid #e2e8f0;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
  }
  
  .specialservices-table td {
    border: none;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding: 6px 10px 6px 44% !important;
    white-space: normal;
    text-align: left;
    font-size: 14px;
  }
  
  .specialservices-table td:before {
    content: attr(data-label) ": ";
    position: absolute;
    left: 1px;
    width: 42%;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: 700;
    color: #1e293b;
    font-size: 12px;
  }
  
  .specialservices-table td:last-child {
    border-bottom: 0;
  }
  
  .platform-name {
    justify-content: flex-start;
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}

@media (min-width:1400px) {
  .topstickybanner {
    height: 100%;
    max-width: 1120px;
    max-height: 100px;
  }
}

@media (max-width:767px) {
  .full-width {
    width: 100%;
  }

  .share-modal-icon {
    width: 25px;
    height: 25px;
    font-size: 13px;
   }

    .font-md {
        font-size: 15px !important;
    }

  .offer-title {
    font-size: 1.3rem;
  }

  .close-banner-btn {
    color: #fff;
  }
  
  .h_mobile {
    height: 50px;
  }
  
  .topstickybanner img {
    max-width: 100%;
    object-fit: contain !important;
    height: auto;
  }
  
  .bottomleftstickybanner img,
      .bottomrightstickybanner img {
    width: 90px !important;
    height: 90px;
  }
  
  .bottomleftstickybanner,
      .bottomrightstickybanner {
    z-index: 999999;
  }
}

@media (max-width:1399px) and (min-width:1200px) {
  .slide-container .next,
      .slide-container .prev {
    top: 57px;
  }
}

@media (max-width:1199px) and (min-width:992px) {
  .slide-container .next,
      .slide-container .prev {
    top: 37px;
  }
}

@media (max-width:991px) and (min-width:768px) {
  .sticky-sidebar {
    top: 60px;
  }
  
  .slide-container .next,
      .slide-container .prev {
    top: 67px;
  }
}

@media (max-width:767px) and (min-width:576px) {
  .coming {
    font-size: 8rem;
  }
  
  .slide-container .next,
      .slide-container .prev {
    font-size: 12px;
    width: 26px;
    height: 26px;
    top: 47px;
  }
}

@media (max-width:575px) {
  .font-small {
    font-size: 15px;
  }
  
  .gradient-btn {
    font-size: 13px;
    padding: 3px 12px;
  }
  
  .coming {
    font-size: 5rem;
  }
  
  .slide-container .next,
      .slide-container .prev {
    font-size: 12px;
    width: 26px;
    height: 26px;
    top: 36%;
  }
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
  }
  
  .dropdown-item.active,
      .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #f17026;
  }
}

@media (max-width: 768px) {
  .radio-group {
    width: 100%;
    justify-content: space-around;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    margin-bottom: 2rem;
  }
  
  .current-price {
    font-size: 2rem;
  }
}

/* Benefits Accordion */
    .media-item {
        border: none;
        margin-bottom: 0.5rem;
        border-radius: 8px !important;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        transition: all 0.2s ease;
    }

    .media-item:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .mediaitem-button {
        background: white;
        color: #333;
        border: 1px solid #e9ecef;
        font-weight: 600;
        font-size: 1rem;
        padding: 1rem 1.2rem;
        position: relative;
        transition: all 0.2s ease;
    }

    .mediaitem-button:not(.collapsed) {
        background: var(--bs-gradient-bg);
        color: white;
        box-shadow: none;
    }

    .mediaitem-button:focus {
        box-shadow: 0 0 0 3px rgba(247, 143, 30, 0.3);
    }

    .copy-msg {
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #141414;
        color: #fff;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 10;
    }

    .occupancy-badge {
        font-size: 13px;
        padding: 3px 8px;
        border-radius: 12px;
        font-weight: 500;
        text-align: center;
        white-space: nowrap;
    }

    .badge-freelancing {
        background: #E7F4FD;
        color: #105293;
        border: 1px solid #bbdefb;
    }

    .badge-remote {
        background: #F1F9F1;
        color: #265F27;
        border: 1px solid #a5d6a7;
    }

    .badge-ghost {
        background: #f3e5f5;
        color: #7b1fa2;
        border: 1px solid #ce93d8;
    }

    .badge-onsite {
        background: #fff3e0;
        color: #f57c00;
        border: 1px solid #ffcc02;
    }

    .detail-item {
        text-align: center;
        padding: 3px 10px;
        background: rgba(247, 143, 30, 0.05);
        border-radius: 10px;
        border: 1px solid rgba(247, 143, 30, 0.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .detail-label {
        font-size: 12px;
        color: #666;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0px;
    }

    .detail-value {
        font-size: 1rem;
        font-weight: 700;
        color: var(--bs-durotar-fire);
    }

    .drop-tag {
        font-size: 14px;
        color: #ef622a;
    }

    .upload-img.author {
        width: 110px;
        height: 110px;
    }

    .profile-header {
        background: rgba(247, 143, 30, 0.05);
        border-radius: 12px;
        color: #000;
        padding: 1.2rem;
    }

    .badge-custom {
        background: var(--bs-gradient-bg);
        color: #fff;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
        display: inline-block;
    }

    .status-card {
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: none;
        overflow: hidden;
        transition: all 0.3s ease;
        max-width: 900px;
        margin: 0 auto;
    }

    .status-item {
        padding: 6px;
        border-right: 1px solid #f8f9fa;
        transition: all 0.3s ease;
        flex: 1;
    }

    .status-item:last-child {
        border-right: none;
    }

    .status-item:hover {
        background-color: #f8f9fa;
    }

    .status-label {
        color: #6c757d;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0px;
    }

    .status-value {
        color: #333;
        font-size: 15px;
        font-weight: 600;
        margin: 0;
    }

    .status-active {
        color: #11643E;
    }


    .darktext {
        color: #A0330E;
    }

    .info-item {
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .info-item:last-child {
        border-bottom: none;
    }

    .info-label {
        font-weight: 600;
        color: #252626;
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .info-value {
        color: #333;
        font-size: 15px;
    }

    /* TOp article */
    .info-card {
        background: white;
        border-radius: 10px;
        padding: 1rem;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        border: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        /* height: 100%; */
    }

    .article-item {
        background: rgba(247, 143, 30, 0.05);
        border-radius: 6px;
        padding: 0.6rem;
        margin-bottom: 0.5rem;
        border-left: 3px solid var(--bs-durotar-fire);
        transition: all 0.3s ease;
    }

    .article-item:hover {
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .social-link {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.25rem 0.6rem;
        background: #f8f9fa;
        border-radius: 15px;
        text-decoration: none;
        color: #2c3e50;
        margin: 0.1rem;
        transition: all 0.3s ease;
        font-size: 0.75rem;
    }

    .social-link:hover {
        background: var(--bs-durotar-fire);
        color: white;
        transform: translateY(-1px);
    }

    /* Top Article */

    /* Experience */
    .experience-item {
        border-left: 2px solid var(--bs-durotar-fire);
        padding-left: 0.8rem;
        margin-bottom: 0.8rem;
        position: relative;
    }

    .experience-item::before {
        content: '';
        position: absolute;
        left: -5px;
        top: 0.3rem;
        width: 8px;
        height: 8px;
        background: var(--bs-durotar-fire);
        border-radius: 50%;
    }

    /* Experience */

    /* Work Preferences */

    .work-item {
        margin-bottom: 0.8rem;
        padding-bottom: 0.8rem;
        border-bottom: 1px solid #E9ECEF;
    }

    .work-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .work-label {
        font-weight: 600;
        color: #2C3E50;
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .work-value {
        color: #6C757D;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    @media (min-width:768px) {
        .text-lg-start {
            text-align: start !important;
        }
    }

    .page-item.active .page-link {
        background: var(--bs-gradient-bg);
        color: white;
        border: 1px solid var(--bs-durotar-fire);
    }

    .page-item .page-link {
        background: none;
        color: var(--bs-durotar-fire);
    }

    @media (max-width: 1200px) {
    .small-news > .col-lg-6:nth-last-child(-n+2) {
        display: none;
    }
}

.top-12 {
    top: 12% !important
}

/* Fixed height container with vertical scroll */
    .select2-container--default .select2-selection--multiple {
        display: flex !important;
        flex-wrap: wrap !important;
        min-height: 38px !important;
        max-height: 38px !important;
        align-items: center;
    }

    /* rendered area also scrolls */
    .select2-container--default .select2-selection--multiple .select2-selection__rendered {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 4px;
        padding: 0px 6px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        max-height: 38px !important;        /* slightly less than container */
        width: 100%;
        margin-bottom: 0 !important;
    }

    /* tags stay on one line each */
    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        margin-top: 2px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* thin styled scrollbar */
    .select2-container--default .select2-selection--multiple::-webkit-scrollbar {
        width: 4px;
    }
    .select2-container--default .select2-selection--multiple::-webkit-scrollbar-track {
        background: transparent;
    }
    .select2-container--default .select2-selection--multiple::-webkit-scrollbar-thumb {
        background-color: #b0b0b0;
        border-radius: 4px;
    }

    .select2-container {
        width: 100% !important;
        max-width: 306px !important;
    }

    .sticky-media-container {
    overflow: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}

.sticky-media-container * {
    max-width: 100% !important;
}

input.opacity-0.position-absolute {
    pointer-events: none;
}

.col-md-5th {
    flex: 0 0 20%;
    max-width: 20%
}

@media (max-width: 992px) {
  .col-md-5th {
    flex: 0 0 33%;
    max-width: 33%
}
}

@media (max-width: 768px) {
  .col-md-5th {
    flex: 0 0 50%;
    max-width: 50%
}
}

.w-fit {
  width: fit-content;
}
