/*======================================
Theme Name: Utility Connect
Theme URI: https://divicake.com/
Description: Utility Connect
Version: 1.0
Author: The First Step
Author URI: https://thefirststep.co.za
Template: Divi
======================================*/


/* You can add your own CSS styles here. Use !important to overwrite styles if needed. */
/*styling of tickbox in the pricing tables*/
.uc-tick-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.uc-tick-list li {
  display: flex;
  align-items: center;
  gap: 8px;              /* space between icon and text */
  padding: 6px 0;        /* vertical spacing between items */
  font-size: 16px;
  line-height: 1.4;
}

.uc-tick-list .et-pb-icon {
  font-family: "ETmodules";
  font-size: 18px;
  color: #1e9cd7;
}
/*END styling of tickbox in the pricing tables*/

/*PRICING TABLES*
 * /* pricing table content padding */
.et_pb_pricing_content {
  padding: 5px;
}

/* reduce menu item spacing */
.et_pb_menu .et-menu > li {
  padding-right: 10px;
  padding-left: 6px;
}



/* -----------------------------------
   PRICING TABLE LAYOUT
----------------------------------- */

/* Desktop: 4 per row */
@media (min-width: 981px) {
    .pricing-space .et_pb_pricing_table {
        width: calc(25% - 20px) !important;
        margin: 10px !important;
        float: left !important;
        clear: none !important;
    }
}

/* Tablet: 2 per row */
@media (min-width: 768px) and (max-width: 980px) {
    .pricing-space .et_pb_pricing_table {
        width: calc(50% - 20px) !important;
        margin: 10px !important;
        float: left !important;
        clear: none !important;
    }
}

/* Mobile: 1 per row */
@media (max-width: 767px) {
    .pricing-space .et_pb_pricing_table {
        width: 100% !important;
        margin: 10px 0 !important;
        float: none !important;
        clear: both !important;
    }
}

/* clearfix */
.pricing-space::after {
    content: "";
    display: block;
    clear: both;
}
/*pricing table aligning 'select package' button to the bottom for all*/
.tfs-pricing-anchor-button .et_pb_pricing_table {
    display: flex;
    flex-direction: column;
}

.tfs-pricing-anchor-button .et_pb_pricing_content {
    flex-grow: 1;
}

.tfs-pricing-anchor-button .et_pb_pricing_button_wrapper {
    margin-top: auto;
}
/*end pricing table aligning 'select package' button to the bottom for all*/

/*end pricing table 4 per row*/
/*END PRICING TABLES*/

/*currency symbol away from price in pricing table*/
/* Increase spacing between currency symbol and price in all Divi Pricing Tables */
.et_pb_dollar_sign {
  font-size: 18px;
  font-weight: 400;
  position: absolute;
  margin-left: -0.6em !important;
}
/* end Increase spacing between currency symbol and price in all Divi Pricing Tables */

/* pricing tabs module header side by side on mobile */
@media (max-width: 767px){
  .pricingTabs ul.et_pb_tabs_controls{
    display: block !important;
    overflow: hidden !important;  /* clears floats */
	  background-color:white !important;
  }

  .pricingTabs ul.et_pb_tabs_controls li{
    float: left !important;
    width: 50% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
	  min-height: 100px !important;
    display: flex !important;
  }

  .pricingTabs ul.et_pb_tabs_controls li a{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
	   width: 100% !important;
    height: 100% !important;
    padding: 12px 10px !important;
    line-height: 1.2 !important;
  }
}
/* end */
/*hide the feint grey line below the first tab*/
.pricingTabs ul.et_pb_tabs_controls:after{
  display: none !important;
}
/*end hide the feint grey line below the first tab*/
/*add tabs hover effect*/
/*.pricingTabs .et_pb_tabs_controls li:hover{
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}*/
/*end add tabs hover effect*/
/*dropdown menu for mobile active item font-weight:normal*/
.et_pb_menu_0_tb_header.et_pb_menu ul li.current-menu-item > a, .et_pb_menu_0_tb_header.et_pb_menu ul li.current-menu-ancestor > a, .et_pb_menu_0_tb_header.et_pb_menu ul:not(.sub-menu) > li.current-menu-ancestor > a {
  color: var(--gcid-primary-color) !important;
  font-weight: normal !important;
}
/*hide google recaptcha badge*/
.grecaptcha-badge {
    visibility: hidden !important;
}
/*stop footer menu collapsing into a hamburger menu*/
@media screen and (max-width: 980px) {
    #footer-menu .et_pb_menu__menu {
        display: block !important; /* Shows the full menu */
    }
    #footer-menu .mobile_menu_bar {
        display: none !important; /* Hides the hamburger icon */
    }
    /* Adjust styling for mobile if needed */
    #footer-menu .et_pb_menu__menu {
        text-align: center;
        /* Add other mobile design tweaks */
    }
}
/*package pages hero section title stop break*/
/* HERO: keep title one line on desktop */
@media (min-width: 981px) {
  .hero-title h2 {
    white-space: nowrap;
  }
}

/* HERO: responsive title sizing so longer headings still fit */
.hero-title h2{
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.05;
}
/*END package pages hero section title stop break*/
/*DO NOT DELETE THE BELOW - fix mobile breakpoint for pricing tables so they stack at 980px*/
@media (max-width: 980px){
  .et_pb_pricing_tables{
    flex-wrap: wrap !important;
  }
  .et_pb_pricing_tables > .et_pb_pricing_table{
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
/*END fix mobile breakpoint for pricing tables so they stack at 980px*/
/*fix message text color for incomplete form actions on product pages*/
.et-pb-contact-message{color:white !important}