@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
body {
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  background-color: var(--body-bg);
  color: var(--text-color);
}
a,
a:hover {
  text-decoration: none;
  color: var(--text-color);
}

:root {
  --bringle: #1c2237;
  --sidebar-bg: #1c2237;
  --sidebar-text: #ffffff;
  --sidebar-text-muted: #9ca3af;
  --sidebar-hover: #252a3a;
  --black: #252525;
  --body-bg: #ffffff;
  --card-bg: #ffffff;
  --text-color: #333333;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  --accent-color: #1c2237;
  --red: #dc3545;
  --light-bg: #f7f9fc;
  --light_pink: #f0f7ff;
}
.ct_red_text {
  color: var(--red);
}
ul {
  margin-bottom: 0px;
  list-style: none;
  padding-left: 0px;
}

.ct_light_pink {
  background-color: var(--light-bg);
}
.ct_text_black {
  color: var(--text-color);
}
.ct_dark_bringle_bg {
  background-color: var(--bringle);
}

.ct_text_bringle {
  color: var(--accent-color);
}

.ct_fs_64 {
  font-size: 36px;
  line-height: 45px;
}
.ct_fs_48 {
  font-size: 48px;
  line-height: 60px;
}
.CT_fs_18 {
  font-size: 18px;
  line-height: 30px;
}

.ct_mt_32 {
  margin-top: 32px;
}

.ct_mb_32 {
  margin-bottom: 32px;
}
.ct_fs_15 {
  font-size: 15px;
}
.ct_fs_24 {
  font-size: 24px;
}
.ct_fs_20 {
  font-size: 20px;
  line-height: 32px;
}
.ct_mt_15 {
  margin-top: 15px;
}

.ct_fs_58 {
  font-size: 35px;
  line-height: 45px;
}

.ct_fs_14 {
  font-size: 14px;
  line-height: 22px;
}

.ct_fs_28 {
  font-size: 28px;
  line-height: 32px;
}
.ct_fs_22 {
  font-size: 22px;
}

.ct_fs_34px {
  font-size: 34px;
  line-height: 48px;
}

.ct_mt_50 {
  margin-top: 50px;
}
.ct_mt_30 {
  margin-top: 30px;
}

.ct_fw_400 {
  font-weight: 400;
}

.ct_fw_500 {
  font-weight: 500 !important;
}
.ct_fw_600 {
  font-weight: 600;
}
.ct_fw_700 {
  font-weight: 700;
}
.ct_py_100 {
  padding-block: 100px;
}
/* Header Css S */
.ct_home_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 42px;
  border-bottom: 1px solid #e4e4e4;
}
.ct_right_header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ct_bringle_btn {
  padding: 8px 25px;
  border-radius: 100px;
  font-size: 16px;
  background-color: var(--bringle);
  color: #fff;
  transition: 0.4s ease all;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--bringle);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;

}
.ct_bringle_btn:hover{
  color: #fff !important;
}
.ct_outline_bringle_btn:hover {
  color: #fff;
}
.ct_outline_bringle_btn {
  background-color: transparent;
  color: var(--bringle);
}
.ct_outline_bringle_btn:hover{
  color: #fff !important;
}
.ct_bringle_btn_fill:before{
  background-color: #fff !important;
}

.ct_bringle_btn_fill:hover{
  color: var(--bringle) !important;
}

.ct_bringle_btn:hover svg{
  fill: var(--bringle);
}
.ct_bringle_btn:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #000;
  width: 0%;
  height: 100%;
  transition: 0.4s ease all;
  z-index: -1;
}
.ct_bringle_btn:hover:before {
  width: 100%;
}
.ct_iiner_header {
  padding: 19px 42px;
  border-bottom: 1px solid #e4e4e4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ct_inner_right_menu,
.ct_inner_left_menu {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ct_inner_right_menu li,
.ct_inner_left_menu li {
  font-weight: 500;
  color: #000;
}
.ct_inner_right_menu li a,
.ct_inner_left_menu li a {
  color: #000;
  font-weight: 500;
}
.ct_transparent_select {
  border: transparent;
  font-weight: 500;
  outline: none;
}
/* Header Css E */
/* Banner css S */
.ct_right_banner_img ul {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.ct_right_banner_img ul li img{
  width: 100%;
  max-width: 140px;
}
.ct_right_banner_img ul li {
  font-weight: 600;
  font-weight: 500;
}
.ct_px_42 {
  padding-inline: 42px;
}

.ct_right_banner_img > img {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  display: block;
  object-fit: contain;
}
/* Banner css E */

/* Section 2 Css S */
.ct_section_2_card {
  /* padding-right: 86px; */
  border-top: 1px solid #252525cc;
  padding-top: 32px;
  width: 100%;
  max-width: 520px;
  margin-left: 0;
}
.ct_mb_140 {
  margin-bottom: 140px;
}

.ct_py_158 {
  padding-block: 158px;
}
/* Section 2 Css E */

/* section 3 Section S */
.ct_dark_grey_bg {
  background-color: #f7f9fc;
}
.ct_happy_women_img img {
  width: 100%;
  max-width: 668px;
  height: auto;
  max-height: 640px;
  object-fit: cover;
  border-radius: 12px;
}
.ct_pt_128 {
  padding-top: 128px;
}
.ct_pb_70 {
  padding-bottom: 70px;
}
.ct_border_bottom {
  border-bottom: 1px solid #25252580;
}
.ct_mb_20 {
  margin-bottom: 20px;
}
.ct_pt_70 {
  padding-top: 70px;
}
.ct_mb_30 {
  margin-bottom: 30px;
}
.ct_mt_20 {
  margin-top: 20px;
}
.ct_fs_16 {
  font-size: 16px;
}
.ct_invoice_img img {
  width: 100%;
  /* max-width: 586px; */
  height: auto;
  max-height: 526px;
  object-fit: cover;
  border-radius: 12px;
}
.ct_eliminating_hasle_img img {
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: cover;
  border-radius: 12px;
  max-width: 689px;
}
.ct_step_point_list li i {
  font-size: 20px;
  line-height: 26px;
  color: #27d935;
}
.ct_step_point_list li {
  display: grid;
  grid-template-columns: 20px auto;
  gap: 10px;
}
.ct_step_point_list li + li {
  margin-top: 24px;
}
.ct_py_125 {
  padding-block: 125px;
}

.ct_toggle_checkbox {
  display: none;
}

.ct_toggle_slider {
  width: 50px;
  height: 25px;
  background-color: #c3b1d4;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: 0.3s;
  cursor: pointer;
}

.ct_toggle_slider::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: translateX(-25px);
  border-radius: 20px;
  transition: 0.3s;
}

.ct_toggle_checkbox:checked ~ .ct_toggle_slider::before {
  transform: translateX(25px);
}

.ct_toggle_checkbox:checked ~ .ct_toggle_slider {
  background-color: var(--bringle);
}

.ct_toggle_checkbox:active ~ .ct_toggle_slider::before {
  transform: translate(0);
}
.ct_price_toggle_flex {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: end;
}

.ct_price_card {
  padding: 24px 24px;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
}
.ct_px_111 {
  padding-inline: 111px;
}
.ct_price_card p {
  color: #606571;
  text-align: left;
}
.ct_price_card li {
  display: flex;
  /* align-items: center; */
  gap: 10px;
}

.ct_price_card li + li {
  margin-top: 12px;
}
.ct_price_card li i {
  color: var(--bringle);
}

.ct_light_grey_text {
  color: #9ea4b2;
}
.ct_new_letter_bg {
  background-image: url("../img/newsletter_bg.png");
  padding-block: 52px;
}
.ct_pt_109 {
  padding-top: 109px;
}
.ct_pb_90 {
  padding-bottom: 90px;
}

.ct_new_letter_bg {
  background-image: url(../img/newsletter_bg.png);
  padding: 52px;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.ct_white_btn {
  background-color: #fff;
  border-color: #fff;
}
.ct_white_btn:hover {
  color: #fff;
}
.ct_white_btn:before {
  background-color: #000;
}

.ct_footer_logo p {
  color: #52525b;
}
.ct_ftr_social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ct_ftr_social li a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d4d4d8;
  transition: 0.4s ease all;
  z-index: 1;
  position: relative;
  color: #090914;
  border-radius: 100px;
  font-size: 14px;
}
.ct_ftr_social li a:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  z-index: -1;
  transform: scale(0);
  transform-origin: top;
  transition: 0.4s ease all;
}
.ct_ftr_social li:nth-child(1) a:before {
  background-color: #1c9cea;
}

.ct_ftr_social li:nth-child(2) a:before {
  background-color: #1a1f2e;
}
.ct_ftr_social li:nth-child(3) a:before {
  background-color: #f70065;
}
.ct_ftr_social li:nth-child(4) a:before {
  background-color: #333333;
}
.ct_ftr_social li a:hover:before {
  transform: scale(1);
}
.ct_ftr_social li a:hover {
  color: #fff;
}
.ct_ftr_link li + li {
  margin-top: 20px;
}
.ct_ftr_link li a {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  transition: 0.4s ease all;
}
.ct_inner_ftr {
  padding-block: 39px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  margin-top: 94px;
}
/* section 3 Section E */

.ct_home_header.ct_sticky_menu {
  position: fixed;
  background-color: #fff;
  width: 100%;
  top: 0px;
  z-index: 9;
  animation: slideDown 0.35s ease-out;
  left: 0px;
  padding-inline: 120px;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.ct_pt_28 {
  padding-top: 28px;
}

.ct_main_bg_clr {
  background-color: #f4f4f4;
  min-height: 100vh;
}
.ct_eye_show {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  cursor: pointer;
}
.ct_forgot_link {
  text-align: end;
  margin-top: 8px;
  font-weight: 400;
}

.ct_forgot_link a {
  color: #000;
}

.ct_border_radius_5 {
  border-radius: 5px;
}
.ct_fs_12 {
  font-size: 12px;
}
.ct_receipt_icon {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  border: 2px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct_grid_2 {
  display: grid;
  grid-template-columns: 50px auto;
  gap: 10px;
  align-items: center;
}

.ct_green_btn {
  background-color: #2b8000;
  border-color: #2b8000;
}

.ct_signup_grid_2 {
  display: grid;
  grid-template-columns: 110px auto;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.ct_signup_left {
  background-color: var(--bringle);
  padding: 92px;
  min-height: 100vh;
  height: 100%;
}

.ct_img_110 {
  width: 110px;
  height: 110px;
  border-radius: 100px;
}

.ct_mt_42 {
  margin-top: 42px;
}
.ct_signup_left_w_50 {
  max-width: 100%;
  margin-inline: auto;
}
.ct_img_w_261 {
  max-width: 261px;
  width: 100%;
  object-fit: contain;
}
.ct_line_h_46 {
  line-height: 34px;
}

/* Sigup Form Css S */
/*form styles*/
#msform {
  /* max-width: 700px; */
  width: 100%;
  margin: 30px auto;
  position: relative;
}
#msform fieldset {
  max-width: 80%;
  width: 100%;
  /* margin: 0 13.5%; */
  margin: 0 auto;
  position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}
/*inputs*/

/*buttons*/
#msform .action-button {
  width: 100px;
  background: #27ae60;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 1px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}
#msform .action-button:hover,
#msform .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #27ae60;
}
/*headings*/

/*progressbar*/
#progressbar {
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
#progressbar li {
  list-style-type: none;
  color: white;
  text-transform: uppercase;
  font-size: 9px;
  width: 20%; /*25%;*/ /*33.33%;*/
  float: left;
  position: relative;
}
#progressbar li:before {
  content: "\f00c";
  counter-increment: step;
  width: 34px;
  display: block;
  font-family: "Font Awesome 6 Free"; /* Make sure this matches your Font Awesome version */
  font-weight: 900; /* Some versions of Font Awesome require this for solid icons */
  font-size: 10px;
  color: #333;
  background: #f4f4f4;
  border-radius: 3px;
  margin: 0 auto 5px auto;
  position: relative;
  z-index: 11;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 2px solid #d1d5db;
}

/*progressbar connectors*/
#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #d1d5db;
  position: absolute;
  left: -50%;
  top: 15px;
  /* z-index: -1; */
}
#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
  background: var(--bringle);
  color: white;
  border-color: var(--bringle);
}

#progressbar li.active:after {
  z-index: auto;
}

.ct_signup_input {
  height: 48px;
  border-radius: 5px;
  border: 2px solid var(--bringle);
  background-color: transparent;
}
.ct_signup_form_main {
  margin-top: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100vh - 188px)
}
/* .ct_signup_form_main {
  min-height: calc(100vh - 327px);
  overflow-y: auto;
  height: 100%;
  overflow-x: hidden;
  max-height: calc(100vh - 150px);
} */
.ct_green_text {
  color: #2b8000;
}

.ct_input_h_60 {
  height: 60px;
}
.form-control {
  appearance: auto;
}
.form-control:focus {
  box-shadow: unset;
}
.ct_card_icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}
.ct_text_indent_30 {
  padding-left: 40px;
}
/* Old sidebar styles removed - using modern-sidebar.css */
.ct_input_border_2 {
  border: 2px solid #e1e5ea !important;
}
/* Sigup Form Css E */

.ct_input_w_200 {
  max-width: 200px;
}
.ct_img_150{
  max-width: 150px;
  width: 100%;
}
.ct_list_style_dot{
  list-style: disc;
}

.ct_width_fit{
  width: fit-content;
}

/*QBO - connection*/
.waiting i {
  position: relative;
  border-radius: 50%;
  width: 1.75rem;
  height: 1.75rem;
  text-align: center;
  padding: 0.45rem 0;
  background-color: #2c9f1c;
  box-shadow: 0 0.05rem 0.25rem rgb(0 0 0 / 20%);
  color: #fff;
}

.waiting i:before {
  position: absolute;
  content: '';
  width: 40px;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-left: 15px solid #FF595A;
  border-right: 15px solid #2c9f1c;
  box-sizing: content-box;
}

.waiting i:after {
  content: "\f00c";
}

.waiting i.fa-times:after {
  content: "\f00d";
}

.ct-list-item:hover{
  background: #f0f0f0;
  cursor: pointer;
}

.text-primary, 
a.text-primary, 
.text-primary i, 
h5.text-primary, 
h6.text-primary {
  color: var(--accent-color) !important;
}

/* Override any primary button styles to use our dark theme */
.btn-primary,
button.btn-primary {
  background: linear-gradient(180deg, #1c2237 0%, #111827 100%) !important;
  border-color: #111827 !important;
}

.btn-primary:hover,
button.btn-primary:hover {
  background: linear-gradient(180deg, #2c3249 0%, #1c2237 100%) !important;
  border-color: #1c2237 !important;
}

/* Override for bg-primary-lite cards */
.bg-primary-lite,
.card.bg-primary-lite,
.ct_custom_card.bg-primary-lite {
  background-color: rgba(28, 34, 55, 0.05) !important;
}

.bg-primary-lite:hover,
.card.bg-primary-lite:hover,
.ct_custom_card.bg-primary-lite:hover {
  background-color: rgba(28, 34, 55, 0.1) !important;
}

/*EST Changes*/
body {
  height: 100vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

.ct_dashboard_main{
  padding: 0px !important;
  height: 100vh !important;
}

.ct_right_content {
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Mobile Scrolling Fixes */
@media (max-width: 768px) {
  /* Ensure body allows scrolling on mobile */
  body {
    overflow-y: auto !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    height: auto !important;
    min-height: 100vh !important;
  }
  
  /* Fix main dashboard container */
  .ct_dashboard_main {
    overflow: visible !important;
    height: auto !important;
    min-height: 100vh !important;
  }
  
  /* Fix right content area */
  .ct_right_content {
    overflow: visible !important;
    height: auto !important;
    min-height: 100vh !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  /* Fix content main area */
  .ct_rigth_content_main {
    overflow: visible !important;
    height: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  /* Enable touch scrolling for all scrollable containers */
  .table-responsive,
  .modal-body,
  .card-body {
    -webkit-overflow-scrolling: touch !important;
    overflow-y: auto !important;
    overflow-x: auto !important;
    touch-action: pan-x pan-y !important;
  }
  
  /* Ensure proper touch behavior */
  * {
    touch-action: manipulation !important;
  }
  
  /* Specific touch action for scrollable areas */
  [style*="overflow-y: scroll"],
  [style*="overflow-y: auto"] {
    touch-action: pan-x pan-y !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  /* Override all overflow-x hidden declarations for mobile */
  html,
  body,
  .ct_dashboard_main,
  .ct_right_content,
  .ct_rigth_content_main,
  .processing-summary-container,
  .flex.flex-wrap,
  .react-transform-wrapper,
  .react-transform-component,
  .image-scroll-container,
  .table-responsive,
  .modal-body,
  .card-body,
  [style*="overflow-x: hidden"] {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-x pan-y !important;
  }
  
  /* Ensure tables can scroll horizontally */
  .table {
    min-width: 100% !important;
  }
  
  /* Allow horizontal scrolling for any content that might be wider than viewport */
  * {
    max-width: none !important;
  }
}

/* Old sidebar styles removed - using modern-sidebar.css */

.ct_right_dash_header {
  padding: 0.5rem 0rem;
}

.ct_right_content.open{
  width: 100vw !important;
  margin-left: 0 !important;
}

.table-hover tbody tr:hover td {
  cursor: pointer !important;
  background: #f0f7ff !important;
}

.ct_input_h_45 {
  height: 45px;
}

.client-name-box {
  color: var(--accent-color);
  background: var(--light-bg);
  font-weight: 500;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  width: auto;
}

.cursor-pointer:hover{
  cursor: pointer;
}

.ct_label{
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}

.welcomecontainer {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: auto;
  text-align: center;
}

.welcomecontainer > h3 {
  color: #4CAF50;
}

.ct_info_table tbody td{
  font-weight: 500;
  font-size: 14px;
  width: 50%;
  padding: 10px;
}

.plus-center{
  position: relative;
}

.plus-center:before {
  content: "";
  width: 1px;
  height: calc(100% - 30%);
  background-image: linear-gradient(var(--body-bg), var(--accent-color), var(--body-bg));
  position: absolute;
  left: 50%;
  top: 15%;
  transform: translateX(-50%);
}

.plus-center:after {
  content: "";
  width: calc(100% - 50%);
  height: 1px;
  background-image: linear-gradient(to right, var(--body-bg), var(--accent-color), var(--body-bg));
  position: absolute;
  left: 25%;
  top: 54%;
}

.subscription-timeline{
  display: flex;
  justify-content: space-between;
  align-items: start;
  font-size: 12px;
  position: relative;
}

.subscription-timeline:after {
  content: "";
  width: calc(100% - 240px);
  height: 1px;
  background: var(--accent-color);
  position: absolute;
  left: 120px;
  top: 50%;
  transform: translateY(-50%);
}

.subscription-timeline .timeline-duration {
  background-color: var(--light-bg);
  width: 120px;
  padding: 10px;  
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);  
  font-weight: 500;
  display: flex;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  color: var(--text-color);
}

.subscription-timeline .fa{
  font-size: 14px;
}

.subscription-timeline .timeline-dis{
  text-align: center;
  position: relative;
  width: 130px;
}

.subscription-timeline .timeline-dis-content{
  position: absolute;
  top: -40px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  font-size: 11px;
  text-align: center;
  white-space: nowrap;
}

.subscription-timeline .timeline-dis:after {
  content: "";
  width: 0; 
  height: 0; 
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--accent-color);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.client-plan-box{
  font-weight: 500;
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  width: auto;
  margin-left: 1rem;
  color:red;
}


.btn-check:checked + .btn {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.btn-check:not(:checked) + .btn {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}


.panelribbon {
  position: relative;
  width: 100%;
  /* padding: 37px; */
  text-align: center;
  /* padding-left: 0; */
  /* padding-right: 0; */
  margin-bottom: 25%;
  margin-top: 10%;
}

.ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  background-color: green; /* Another ribbon color */
  color: white;
  padding: 8px 20px;
  font-size: 23px;
  border-radius: 5px 5px 0 0;
}

.ribbon::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -9px;
  border-top: 10px solid green;
  border-left: 182px solid transparent;
  border-right: 202px solid transparent;
}

.offerstyle {
  margin-top:15px;
  height:100%
}

.offerstyleborder {
  border: 2px solid green;
}



.ct_price_card {
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
     padding: 0 !important;
    /* border: 2px solid green; */
}

/* Responsive adjustments for sections */
@media (max-width: 768px) {
  .ct_section_2_card { max-width: 100%; }
  .ct_happy_women_img img { max-height: 420px; }
  .ct_eliminating_hasle_img img { max-height: 520px; }
}

@media (min-width: 1280px) {
  .ct_section_2_card { max-width: 640px; }
}

.polygon-shape {
    width: 100%;
    background: green;
    color: #fff;
    font-size: 1.75rem;
    text-transform: uppercase;
    padding-top: 10px;
    line-height: 1.2;
    font-weight: 500;
    position: relative;
}

.polygon-shape:before {
    content: "";
    width: 100%;
    height: 40px;
    background: green;
    position: absolute;
    bottom: -40px;
    left: 0;
    clip-path: polygon(0% 0%, 100% 0%, 50% 50%, 50% 50%, 0% 0%);
}

.swiper-button-next,
.swiper-button-prev {
  color: black; /* or any visible color */
  z-index: 10;
}
/* Balance styling for sidebar - like Paddle */
.ct_sidebar .balance-section {
  padding: 20px 0;
  margin-bottom: 15px;
}

.ct_sidebar .balance-label {
  color: var(--sidebar-text-muted);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}

.ct_sidebar .balance-amount {
  color: var(--sidebar-text);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.verification-banner {
  background-color: rgba(220, 53, 69, 0.3);
  color: #fff;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.verification-banner:hover {
  background-color: rgba(220, 53, 69, 0.4);
}

/* Available Credits Display */
.ct_sidebar .credits-display {
  padding: 8px 10px;
  margin: 15px auto 20px;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 160px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.ct_sidebar .credits-display:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.ct_sidebar .credits-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ct_sidebar .credits-amount {
  color: var(--sidebar-text);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Railey text and credits styling */
.ct_sidebar h1, 
.ct_sidebar h2, 
.ct_sidebar h3,
.ct_sidebar .ct_text_title {
  color: white;
  text-align: center;
  margin-bottom: 5px;
  font-size: 28px;
  font-weight: normal;
}

/* Override for menu item selection with frosted glass effect */
body .ct_sidebar ul li a.active,
html body .ct_sidebar ul li a.active,
body.ct_dashboard_main .ct_sidebar ul li a.active,
.ct_dashboard_main .ct_sidebar ul li a[class*='active'],
.ct_sidebar ul li a.active[href],
#ct_dashboard_wrapper .ct_sidebar ul li a.active {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: white !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border-left: 3px solid white !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  border-radius: 6px !important;
}

/* Fix for SVG icons in active menu items */
body .ct_sidebar ul li a.active svg path,
html body .ct_sidebar ul li a.active svg path,
.ct_dashboard_main .ct_sidebar ul li a.active svg path {
  fill: white !important;
  stroke: white !important;
}

/* Fix for hover styles to prevent white background */
body .ct_sidebar ul li a:hover,
html body .ct_sidebar ul li a:hover,
.ct_dashboard_main .ct_sidebar ul li a:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: white !important;
  border-left: 3px solid rgba(255, 255, 255, 0.2) !important;
}

/* Fix for all sidebar links to be white */
body .ct_sidebar ul li a,
html body .ct_sidebar ul li a,
.ct_dashboard_main .ct_sidebar ul li a {
  color: white !important;
}

/* Fix for hover icons */
body .ct_sidebar ul li a:hover svg path,
html body .ct_sidebar ul li a:hover svg path,
.ct_dashboard_main .ct_sidebar ul li a:hover svg path,
body .ct_sidebar ul li a svg path,
html body .ct_sidebar ul li a svg path,
.ct_dashboard_main .ct_sidebar ul li a svg path {
  fill: white !important;
}

/* Fix for the "Available Credits" styling */
.ct_sidebar .available-credits {
  text-align: center;
  margin: 20px auto;
  max-width: 180px;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.ct_sidebar .available-credits-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.ct_sidebar .available-credits-amount {
  color: white;
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

/* List of Companies Popup Styling */
.ct_company_popup {
  max-width: 90%;
  width: 550px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.ct_company_popup .modal-dialog {
  max-width: 100%;
  margin: 1.75rem auto;
}

.ct_company_popup .modal-content {
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

.ct_company_popup .modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--light-bg);
  position: relative;
}

.ct_company_popup .modal-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 0;
}

.ct_company_popup .modal-body {
  padding: 20px;
}

.ct_company_popup .company-list {
  max-height: 300px;
  overflow-y: auto;
  margin-top: 15px;
  padding-right: 10px;
  margin-bottom: 10px;
}

.ct_company_popup .company-item {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-bottom: 10px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.ct_company_popup .company-item:hover {
  background-color: var(--light-bg);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ct_company_popup .company-name {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-color);
}

.ct_company_popup .company-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.ct_company_popup .company-status {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  background-color: var(--light-bg);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  display: inline-block;
  min-width: 120px;
  text-align: center;
  height: 40px;
  width: 100%;
}

.ct_company_popup .form-select.company-status {
  background-position: right 12px center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ct_company_popup .form-select.company-status:focus {
  border-color: var(--accent-color);
  box-shadow: 0 2px 8px rgba(28, 34, 55, 0.15);
  outline: none;
}

.ct_company_popup .search-input {
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 0 15px;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  width: 100%;
  margin-top: 10px;
}

.ct_company_popup .search-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 2px 8px rgba(28, 34, 55, 0.15);
  outline: none;
}

.ct_company_popup .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 26px;
  height: 26px;
  background-color: var(--light-bg);
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.ct_company_popup .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
  background-color: var(--light-bg);
}

.ct_company_popup .status-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--text-color);
  font-size: 14px;
}

.ct_company_popup .select-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--text-color);
  font-size: 14px;
}

/* Status indicator styles */
.ct_company_popup .status-indicator-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
}

.ct_company_popup .status-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8), 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.ct_company_popup .status-active {
  background-color: #2b8000;
}

.ct_company_popup .status-inactive {
  background-color: var(--red);
}

/* Modal display fix */
.modal.ct_company_popup {
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal.ct_company_popup.fade {
  transition: opacity 0.15s linear;
}

.modal.ct_company_popup .modal-dialog {
  transform: none;
  margin: 1.75rem auto;
  max-width: 550px;
}

@media (max-width: 576px) {
  .ct_company_popup {
    width: 95%;
  }
  
  .modal.ct_company_popup .modal-dialog {
    margin: 0.5rem;
    max-width: calc(100% - 1rem);
  }
  
  .ct_company_popup .modal-body {
    padding: 15px;
  }
}

/* Ready for posting button rounded corners fix */
button.ct_bringle_btn.ct_bringle_btn_fill.ct_border_radius_5.py-2.ready-for-posting-btn {
  border-radius: 5px !important;
  background: linear-gradient(45deg, #ff7700, #ff9948) !important;
  box-shadow: 0 0 0 2px #ff7700, 0 0 15px rgba(255, 119, 0, 0.7) !important;
  color: white !important;
  border: none !important;
}

button.ct_bringle_btn.ct_bringle_btn_fill.ct_border_radius_5.py-2.ready-for-posting-btn::before {
  display: none !important;
}

/* Target the specific Publish button when statusKey is "ready" */
button.ct_bringle_btn.ct_bringle_btn_fill.ct_border_radius_5.py-2.ready-for-posting-btn[data-status="ready"] {
  border-radius: 5px !important;
  background: linear-gradient(45deg, #2BB45C, #00c853) !important;
  box-shadow: 0 0 0 2px #2BB45C, 0 0 15px rgba(43, 180, 92, 0.7) !important;
  color: white !important;
  border: none !important;
}

button.ct_bringle_btn.ct_bringle_btn_fill.ct_border_radius_5.py-2.ready-for-posting-btn[data-status="ready"]::before {
  display: none !important;
}

/* Hover effects for Ready for posting button */
button.ct_bringle_btn.ct_bringle_btn_fill.ct_border_radius_5.py-2.ready-for-posting-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 0 0 2px #ff7700, 0 0 20px rgba(255, 119, 0, 0.9) !important;
  background: linear-gradient(45deg, #ff8820, #ff9948) !important;
}

/* Hover effects for Publish button when statusKey is "ready" */
button.ct_bringle_btn.ct_bringle_btn_fill.ct_border_radius_5.py-2.ready-for-posting-btn[data-status="ready"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 0 0 2px #2BB45C, 0 0 20px rgba(43, 180, 92, 0.9) !important;
  background: linear-gradient(45deg, #00d462, #2BB45C) !important;
}

/* Move to Archive button styles */
button.ct_bringle_btn.ct_outline_bringle_btn.ct_green_border.py-2.ct_border_radius_5.move-to-archive-btn {
  border-radius: 5px !important;
  background: linear-gradient(45deg, #a259e6, #c471ed) !important;
  color: white !important;
  border: none !important;
  padding: 8px 25px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: none !important;
}

button.ct_bringle_btn.ct_outline_bringle_btn.ct_green_border.py-2.ct_border_radius_5.move-to-archive-btn:hover {
  transform: translateY(-2px) !important;
  background: linear-gradient(45deg, #c471ed, #a259e6) !important;
  box-shadow: none !important;
}

button.ct_bringle_btn.ct_outline_bringle_btn.ct_green_border.py-2.ct_border_radius_5.move-to-archive-btn::before {
  display: none !important;
}

/* Mobile Responsiveness Enhancements */
@media (max-width: 768px) {
  /* Home Page Mobile Improvements */
  .ct_home_header {
    padding: 10px 15px;
    flex-direction: column;
    gap: 10px;
  }
  
  .ct_right_header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  
  .ct_right_header a {
    text-align: center;
    padding: 12px 20px;
  }
  
  .ct_iiner_header {
    flex-direction: column;
    padding: 10px 15px;
  }
  
  .ct_inner_left_menu,
  .ct_inner_right_menu {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  
  .ct_inner_right_menu li {
    width: 100%;
  }
  
  .ct_transparent_select {
    width: 100% !important;
    padding: 10px;
  }
  
  /* Hero Section Mobile */
  .ct_hero_section_left h1 {
    font-size: 36px !important;
    line-height: 1.2;
  }
  
  .ct_fs_64 {
    font-size: 36px !important;
  }
  
  .ct_fs_58 {
    font-size: 32px !important;
  }
  
  .ct_fs_48 {
    font-size: 28px !important;
  }
  
  .ct_fs_28 {
    font-size: 24px !important;
  }
  
  .ct_fs_24 {
    font-size: 20px !important;
  }
  
  .ct_px_42 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .ct_py_158 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  
  .ct_py_125 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  
  .ct_pt_128 {
    padding-top: 40px !important;
  }
  
  .ct_pt_70 {
    padding-top: 30px !important;
  }
  
  /* Price Cards Mobile */
  .ct_px_111 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .ct_price_toggle_flex {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  /* Login Page Mobile */
  .ct_left_login_cnt,
  .ct_right_login_cnt {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .ct_grid_2 {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  /* Dashboard Mobile */
  .ct_sidebar {
    width: 100% !important;
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    height: 100vh !important;
    z-index: 1050 !important;
    transition: left 0.3s ease !important;
  }
  
  .ct_sidebar.open {
    left: 0 !important;
  }
  
  .ct_right_content {
    margin-left: 0 !important;
    width: 100% !important;
  }
  
  .ct_right_content.open {
    margin-left: 0 !important;
  }
  
  /* Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: block !important;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1060;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 18px;
  }
  
  /* Tables Mobile */
  .table-responsive {
    border: none;
  }
  
  .table {
    font-size: 14px;
  }
  
  .table th,
  .table td {
    padding: 8px 4px;
    white-space: nowrap;
  }
  
  /* Cards Mobile */
  .glass-card,
  .frosted-glass-card {
    margin-bottom: 20px;
  }
  
  .card-body {
    padding: 15px;
  }
  
  /* Connections Page Mobile */
  .connection-box {
    margin-bottom: 20px;
  }
  
  .connection-box .d-flex {
    flex-direction: column;
    gap: 10px;
  }
  
  .view-list-btn,
  .connect-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
  
  /* Forms Mobile */
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-control {
    padding: 12px 15px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px;
  }
  
  /* Modal Mobile */
  .modal-dialog {
    margin: 10px;
    max-width: calc(100% - 20px);
  }
  
  .modal-body {
    padding: 15px;
  }
  
  /* Filter Controls Mobile */
  .filter-container,
  .bottom-filter-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .filter-group,
  .bottom-filter-group {
    width: 100%;
  }
  
  .filter-control,
  .bottom-filter-control {
    width: 100%;
  }
  
  /* Action Buttons Mobile */
  .action-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .action-buttons .btn {
    width: 100%;
  }
  
  /* Status Cards Mobile */
  .status-cards-section .row {
    margin: 0;
  }
  
  .status-card {
    margin-bottom: 15px;
  }
  
  /* Pagination Mobile */
  .pagination-wrapper {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .pagination {
    justify-content: center;
  }
  
  /* Upload Section Mobile */
  .upload-steps {
    flex-direction: column;
  }
  
  .upload-step {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .modern-upload-area {
    padding: 30px 15px;
  }
  
  /* Subscription Cards Mobile */
  .ct_price_card {
    margin-bottom: 30px;
  }
  
  /* Company List Mobile */
  .ct_company_popup .company-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .ct_company_popup .company-status {
    width: 100%;
  }
  
  /* Credits Display Mobile */
  .ct_sidebar .credits-display,
  .ct_sidebar .available-credits {
    max-width: 200px;
    margin: 15px auto;
  }
  
  /* Header Mobile */
  .ct_right_dash_header {
    padding: 10px 15px;
  }
  
  .ct_right_dash_header .d-flex {
    flex-direction: column;
    gap: 10px;
  }
  
  /* Breadcrumb Mobile */
  .breadcrumb {
    flex-wrap: wrap;
    font-size: 14px;
  }
  
  /* Page Header Mobile */
  .page-header {
    padding: 15px;
    text-align: center;
  }
  
  .modern-header h3 {
    font-size: 24px;
  }
  
  /* Centered Content Mobile */
  .centered-content {
    padding: 15px;
  }
  
  /* Step Point List Mobile */
  .ct_step_point_list li {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .ct_step_point_list li i {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  /* Extra small devices */
  .ct_fs_64 {
    font-size: 28px !important;
  }
  
  .ct_fs_58 {
    font-size: 24px !important;
  }
  
  .ct_fs_48 {
    font-size: 22px !important;
  }
  
  .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .ct_px_42 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  
  .ct_py_158 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  
  .ct_price_card {
    padding: 20px 15px;
  }
  
  .modal-dialog {
    margin: 5px;
    max-width: calc(100% - 10px);
  }
  
  .table th,
  .table td {
    padding: 6px 2px;
    font-size: 12px;
  }
  
  .btn {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .form-control {
    padding: 10px 12px;
  }
}

/* Landscape Mobile Adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .ct_py_158 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  
  .ct_sidebar {
    width: 280px !important;
  }
  
  .modal-dialog {
    margin: 5px auto;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .form-control,
  .ct_bringle_btn {
    min-height: 44px; /* Apple's recommended touch target size */
  }
  
  .table td,
  .table th {
    padding: 12px 8px;
  }
  
  .ct_transparent_select {
    min-height: 44px;
    padding: 10px 15px;
  }
}

.w-35{
  width: 35px;
}

.fa-undo{
  font-size: 12px;
}

.inactive-cost-row {
  background-color: #fff3cd !important; /* Light yellow */
}

.min-model-width{
  min-width: 50em !important;
}

.ct_bringle_btn {
  color: inherit !important;
}