:root {
    --a-bg-color: lightgrey;
    --a-bg-pattern: url("/images/bg_pattern.webp");

    --a-max-width: 1400px;
    --a-topbar-horizontal-margin: 16px;
    --a-topbar-max-width: 1520px;

    --a-topbar-horizontal-spacing: 16px;
    --a-topbar-border-radius: 16px;

    --a-content-bg-color: #ffffff;
    --a-text-color: black;

    --a-highlight-color: #30404D;
    --a-text-on-highlight-color: white;

    --a-fancy-button-gradient-color-a: #d0e0eD;
    --a-fancy-button-gradient-color-b: #fafdff;

    --a-footer-color: var(--a-highlight-color);
    --a-text-on-footer-color: var(--a-text-on-highlight-color);

    --a-menu-background-unselected: var(--a-highlight-color);
    --a-menu-text-color-unselected: var(--a-text-on-highlight-color);

    // --a-menu-background-unselected-gradient-outer: var(--a-menu-background-unselected);
    // --a-menu-background-unselected-gradient-inner: #6b7183;

    
    --a-menu-background-selected: #b1b9c1; // #9ca7b3;
    --a-menu-text-color-selected: black;

    --a-menu-background-selected-gradient-outer: var(--a-menu-background-selected);
    --a-menu-background-selected-gradient-inner: #dbdbdb;

    
    // --a-menu-background-hover: #485769;
    --a-menu-background-hover: #6F757F;
    --a-menu-text-color-hover: white;

    // --a-menu-background-hover-gradient-outer: #485769;
    // --a-menu-background-hover-gradient-inner: #8897A9;

    // --a-menu-img-background-hover-gradient-outer: #485769;
    // --a-menu-img-background-hover-gradient-inner: #8897A9;

    
    --a-menu-text-font-size: 17px;
    --a-menu-text-padding-top: 15px;
    --a-menu-text-padding-bottom: 19px;

    --a-menu-img-background-unselected: var(--a-menu-background-unselected);
    --a-menu-img-background-selected: #72879e;
    --a-menu-img-background-hover: var(--a-menu-background-hover);

    // --a-menu-img-background-unselected-gradient-outer: var(--a-menu-background-unselected-gradient-outer);
    // --a-menu-img-background-unselected-gradient-inner: var(--a-menu-background-unselected-gradient-inner);

    --a-menu-img-background-selected-gradient-outer: var(--a-menu-background-selected-gradient-outer);
    --a-menu-img-background-selected-gradient-inner: #dbdbdb;

    --a-submenu-background: var(--a-highlight-color);
    --a-submenu-text-color: var(--a-text-on-highlight-color);

    --a-submenu-background-hover: var(--a-menu-background-hover);
    --a-submenu-text-color-hover: var(--a-menu-text-color-hover);

    --a-table-background-color: var(--a-highlight-color);
    --a-table-text-color: var(--a-text-on-highlight-color);

    /* Roboto, Mada, Varta, Yantramanav */
    --a-font-primary: "Roboto";
    --a-font-secondary: "Yantramanav";
    --a-font-tertiary: sans-serif;
}


.a-solid a {
    color:#964863!important;
}


#pricing-table {
        margin: auto;
        margin-top: 10px;
        text-align: center;
        /* width: 670px; */ /* total computed width = 222 x 3 + 226 or 222 x 5 + 4*/

}

#pricing-table .plan {
        font: 12px var(--a-font-primary), var(--a-font-secondary), var(--a-font-tertiary), 'Lucida Sans', 'trebuchet MS', Arial, Helvetica;
        text-shadow: 0 1px rgba(255,255,255,.8);
        background: #fff;
        border: 1px solid #ddd;
        color: #333;
        padding: 20px;
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 40px;
        width: 230px; /* plan width = 180 + 20 + 20 + 1 + 1 = 222px */
        float: left;
        position: relative;


        -moz-box-shadow: 20px 0px 10px -10px rgba(0, 0, 0, .15), -20px 0px 10px -10px rgba(0, 0, 0, .15), 0px 15px 10px -10px rgba(0, 0, 0, .15);
        -webkit-box-shadow: 20px 0px 10px -10px rgba(0, 0, 0, .15), -20px 0px 10px -10px rgba(0, 0, 0, .15), 0px 15px 10px -10px rgba(0, 0, 0, .15);
        box-shadow: 20px 0px 10px -10px rgba(0, 0, 0, .15), -20px 0px 10px -10px rgba(0, 0, 0, .15), 0px 15px 10px -10px rgba(0, 0, 0, .15);

}

#pricing-table #most-popular {
        z-index: 2;
        top: -13px;
        border-width: 3px;
        padding: 30px 20px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        -moz-box-shadow: 20px 0 10px -10px rgba(0, 0, 0, .15), -20px 0 10px -10px rgba(0, 0, 0, .15);
        -webkit-box-shadow: 20px 0 10px -10px rgba(0, 0, 0, .15), -20px 0 10px -10px rgba(0, 0, 0, .15);
        box-shadow: 20px 0 10px -10px rgba(0, 0, 0, .15), -20px 0 10px -10px rgba(0, 0, 0, .15);
}

#pricing-table .plan:nth-child(1) {
        -moz-border-radius: 6px 0 0 6px;
        -webkit-border-radius: 6px 0 0 6px;
        border-radius: 6px 0 0 6px;
}

#pricing-table .plan:nth-last-child(1) {
        -moz-border-radius: 0 6px 6px 0;
        -webkit-border-radius: 0 6px 6px 0;
        border-radius: 0 6px 6px 0;
}

#pricing-table .plan:only-child {
        -moz-border-radius: 6px 6px 6px 6px;
        -webkit-border-radius: 6px 6px 6px 6px;
        border-radius: 6px 6px 6px 6px;
}




/* --------------- */

#pricing-table h3 {
        color: #4a4a4a;
        font-family: var(--a-font-primary), var(--a-font-secondary), var(--a-font-tertiary), 'Lucida Sans', 'trebuchet MS', Arial, Helvetica;
        font-size: 26px;
        font-weight: normal;
        text-shadow: 0px 0px 1px black;
        letter-spacing: 0;
        padding: 20px;
        margin: -20px -20px 50px -20px;
        background-color: #eee;
        background-image: -moz-linear-gradient(#fff,#eee);
        background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
        background-image: -webkit-linear-gradient(#fff, #eee);
        background-image: -o-linear-gradient(#fff, #eee);
        background-image: -ms-linear-gradient(#fff, #eee);
        background-image: linear-gradient(#fff, #eee);
}

#pricing-table #most-popular h3 {
        background-color: #ddd;
        background-image: -moz-linear-gradient(#eee,#ddd);
        background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd));
        background-image: -webkit-linear-gradient(#eee, #ddd);
        background-image: -o-linear-gradient(#eee, #ddd);
        background-image: -ms-linear-gradient(#eee, #ddd);
        background-image: linear-gradient(#eee, #ddd);
        margin-top: -30px;
        padding-top: 30px;
        -moz-border-radius: 5px 5px 0 0;
        -webkit-border-radius: 5px 5px 0 0;
        border-radius: 5px 5px 0 0;
}

#pricing-table .plan:nth-child(1) h3 {
        -moz-border-radius: 5px 0 0 0;
        -webkit-border-radius: 5px 0 0 0;
        border-radius: 5px 0 0 0;
}

#pricing-table .plan:nth-child(4) h3 {
        -moz-border-radius: 0 5px 0 0;
        -webkit-border-radius: 0 5px 0 0;
        border-radius: 0 5px 0 0;
}

#pricing-table h3 span {
        display: block;
        font: bold 25px/165px var(--a-font-primary), var(--a-font-secondary), var(--a-font-tertiary), 'Lucida Sans', 'trebuchet MS';
        font-weight: normal;
        text-shadow: 0px 0px 0px black;
        color: #777;
        background: #fff;
        border: 5px solid #fff;
        height: 180px;
        width: 180px;
        margin: 10px auto -65px;
        -moz-border-radius: 100px;
        -webkit-border-radius: 100px;
        border-radius: 100px;
        -moz-box-shadow: 0 5px 20px #ddd inset, 0 3px 0 #999 inset;
        -webkit-box-shadow: 0 5px 20px #ddd inset, 0 3px 0 #999 inset;
        box-shadow: 0 5px 20px #ddd inset, 0 3px 0 #999 inset;
}

/* --------------- */

#pricing-table ul {
        margin: 20px 0 0 0;
        padding: 0;
        list-style: none;
        font-size: 14px;
}

#pricing-table li {
        border-top: 1px solid #ddd;
        padding: 10px 0;
}

/* --------------- */

#pricing-table .signup {
        position: relative;
        padding: 8px 20px;
        margin: 20px 0 0 0;
        color: #fff;
        font: bold 14px Arial, Helvetica;
        text-decoration: none;
        display: inline-block;
        background-color: #72ce3f;
        background-image: -moz-linear-gradient(#72ce3f, #62bc30);
        background-image: -webkit-gradient(linear, left top, left bottom, from(#72ce3f), to(#62bc30));
        background-image: -webkit-linear-gradient(#72ce3f, #62bc30);
        background-image: -o-linear-gradient(#72ce3f, #62bc30);
        background-image: -ms-linear-gradient(#72ce3f, #62bc30);
        background-image: linear-gradient(#72ce3f, #62bc30);
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        text-shadow: 0 1px 0 rgba(0,0,0,.3);
        -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .5), 0 2px 0 rgba(0, 0, 0, .7);
        -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .5), 0 2px 0 rgba(0, 0, 0, .7);
        box-shadow: 0 1px 0 rgba(255, 255, 255, .5), 0 2px 0 rgba(0, 0, 0, .7);
}

#pricing-table .signup:hover {
        background-color: #62bc30;
        background-image: -moz-linear-gradient(#62bc30, #72ce3f);
        background-image: -webkit-gradient(linear, left top, left bottom, from(#62bc30), to(#72ce3f));
        background-image: -webkit-linear-gradient(#62bc30, #72ce3f);
        background-image: -o-linear-gradient(#62bc30, #72ce3f);
        background-image: -ms-linear-gradient(#62bc30, #72ce3f);
        background-image: linear-gradient(#62bc30, #72ce3f);
}

#pricing-table .signup:active, #pricing-table .signup:focus {
        background: #62bc30;
        top: 2px;
        -moz-box-shadow: 0 0 3px rgba(0, 0, 0, .7) inset;
        -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .7) inset;
        box-shadow: 0 0 3px rgba(0, 0, 0, .7) inset;
}

/* --------------- */

.clear:before, .clear:after {
  content:"";
  display:table
}

.clear:after {
  clear:both
}

.clear {
  zoom:1
}

/* Rating stars (BBCode [stars]) */
.Stars {
  --star-size: 1.1rem;
  --star-color: #f5a623;
  --star-background: rgba(28, 40, 51, 0.22);
  --percent: 0%;
  position: relative;
  display: inline-block;
  font-size: var(--star-size);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 3px;
}

.Stars::before,
.Stars::after {
  content: "★★★★★";
}

.Stars::before {
  color: var(--star-background);
}

.Stars::after {
  position: absolute;
  inset: 0;
  color: var(--star-color);
  width: var(--percent);
  overflow: hidden;
}

/* Keep visual breathing room for stacked right-column cards/products */
.content-columns__col--right .bb-article + .bb-article {
  margin-top: 1rem;
}

/* Legacy home right-column image stacks use centered div wrappers; preserve visual gap */
.content-columns__col--right .bb-article > div[style*="text-align" i][style*="center" i] {
  display: block !important;
  overflow: hidden;
  text-align: center !important;
  margin-bottom: 1rem !important;
}

.content-columns__col--right .bb-article > div[style*="text-align" i][style*="center" i]:last-child {
  margin-bottom: 0;
}

.content-columns__col--right .bb-article > div[style*="text-align" i][style*="center" i] > img {
  float: none !important;
  display: inline-block;
}

.content-columns__col--right .bb-article > div[style*="text-align" i][style*="center" i] + div[style*="text-align" i][style*="center" i] {
  margin-top: 1rem !important;
}

.content-columns__col--right .bb-article > p:empty {
  margin: 0;
  min-height: 0;
}

/* Fallback submit styling for legacy forms without .form-actions wrapper */
.bb-form input[type="submit"],
.bb-form button[type="submit"],
.bb-form input[type="button"],
.bb-form button[type="button"] {
  border: 0;
  border-radius: var(--radius-button, .75rem);
  background: var(--form-submit-bg, linear-gradient(120deg, #163b74, #2b7de1));
  color: var(--form-submit-color, #fff);
  padding: .78rem 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--form-submit-shadow, 0 18px 30px rgba(22, 59, 117, .3));
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.bb-form input[type="submit"]:hover,
.bb-form input[type="submit"]:focus-visible,
.bb-form button[type="submit"]:hover,
.bb-form button[type="submit"]:focus-visible,
.bb-form input[type="button"]:hover,
.bb-form input[type="button"]:focus-visible,
.bb-form button[type="button"]:hover,
.bb-form button[type="button"]:focus-visible {
  background: var(--form-submit-bg-hover, linear-gradient(120deg, #1a427f, #3686e6));
  transform: translateY(-1px);
  box-shadow: 0 22px 34px rgba(22, 59, 117, .35);
}

.bb-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.bb-form .form-check input[type="checkbox"] {
  margin-top: 0.2rem;
  flex: 0 0 auto;
}
