:root {
    --a-bg-color: lightgrey;
	--a-bg-pattern: url("/site-assets/image/bg_pattern.png");

	--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: #fbfbfb;
    --a-text-color: black;

    --a-highlight-color: #026a02;
    --a-text-on-highlight-color: white;

    --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-selected: white;
    --a-menu-text-color-selected: black;

    --a-menu-background-hover: black;
    --a-menu-text-color-hover: white;

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

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

    --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: "Yantramanav";
	--a-font-secondary: "Varta";
	--a-font-tertiary: sans-serif;
}



#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: 20px;
        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: #3c6fb5;
        background-image: -moz-linear-gradient(#4c7fc5, #3c6fb5);
        background-image: -webkit-gradient(linear, left top, left bottom, from(#4c7fc5), to(#3c6fb5));
        background-image: -webkit-linear-gradient(#4c7fc5, #3c6fb5);
        background-image: -o-linear-gradient(#4c7fc5, #3c6fb5);
        background-image: -ms-linear-gradient(#4c7fc5, #3c6fb5);
        background-image: linear-gradient(#4c7fc5, #3c6fb5);
        -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(#3c6fb5, #4c7fc5);
        background-image: -webkit-gradient(linear, left top, left bottom, from(#3c6fb5), to(#4c7fc5));
        background-image: -webkit-linear-gradient(#3c6fb5, #4c7fc5);
        background-image: -o-linear-gradient(#3c6fb5, #4c7fc5);
        background-image: -ms-linear-gradient(#3c6fb5, #4c7fc5);
        background-image: linear-gradient(#3c6fb5, #4c7fc5);
}

#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
}





/* legacy buttons */

div.hoverBtn {
	position: 		relative;
	background-attachment: scroll;
	background-image: url(/site/images/navBG.png);
	background-repeat: repeat-x;
	background-position: center center;
	text-align: center;
	float: right;
	right: 122px;
	color: #FFF;
}
div.hoverBtn a {
	position: 		relative;
	z-index: 		2;
	display: 		block;
	width: 			356px;
	height: 		94px;
	line-height: 		94px;
	text-align: 		center;
	font-size:		1.1em;
	text-decoration:	none;
	color:			#CCC;
	background:		transparent none repeat-x 0 0 scroll;
	padding-top: 20px;
}
div.hoverBtn div {
	display:		none;
	position: 		absolute;
	z-index: 		1;
	top: 			0px;
	background-attachment: scroll;
	background-image: url(/site/images/navHover.png);
	background-repeat: repeat-x;
	background-position: center center;
	text-align: center;
}




div.hoverBtnbuy {
	position: 		relative;
	background-attachment: scroll;
	background-image: url(/site/images/navBG_buy.png);
	background-repeat: repeat-x;
	background-position: center center;
	text-align: center;
	float: right;
	right: 122px;
	color: #FFF;
}
div.hoverBtnbuy a {
	position: 		relative;
	z-index: 		2;
	display: 		block;
	width: 			356px;
	height: 		94px;
	line-height: 		94px;
	text-align: 		center;
	font-size:		1.1em;
	text-decoration:	none;
	color:			#CCC;
	background:		transparent none repeat-x 0 0 scroll;
	padding-top: 20px;
}
div.hoverBtnbuy div {
	display:		none;
	position: 		absolute;
	z-index: 		1;
	top: 			0px;
	background-attachment: scroll;
	background-image: url(/site/images/navHover_buy.png);
	background-repeat: repeat-x;
	background-position: center center;
	text-align: center;
}











div.hoverBtnCs {
	position: 		relative;
	background-attachment: scroll;
	background-image: url(/site/images/cs/navbg.png);
	background-repeat: repeat-x;
	background-position: center center;
	text-align: center;
	float: right;
	right: 122px;
	color: #FFF;
}
div.hoverBtnCs a {
	position: 		relative;
	z-index: 		2;
	display: 		block;
	width: 			356px;
	height: 		94px;
	line-height: 		94px;
	text-align: 		center;
	font-size:		1.1em;
	text-decoration:	none;
	color:			#CCC;
	background:		transparent none repeat-x 0 0 scroll;
	padding-top: 20px;
}
div.hoverBtnCs div {
	display:		none;
	position: 		absolute;
	z-index: 		1;
	top: 			0px;
	background-attachment: scroll;
	background-image: url(/site/images/cs/navhover.png);
	background-repeat: repeat-x;
	background-position: center center;
	text-align: center;
}




div.hoverBtnbuyCs {
	position: 		relative;
	background-attachment: scroll;
	background-image: url(/site/images/cs/navbg_buy.png);
	background-repeat: repeat-x;
	background-position: center center;
	text-align: center;
	float: right;
	right: 122px;
	color: #FFF;
}
div.hoverBtnbuyCs a {
	position: 		relative;
	z-index: 		2;
	display: 		block;
	width: 			356px;
	height: 		94px;
	line-height: 		94px;
	text-align: 		center;
	font-size:		1.1em;
	text-decoration:	none;
	color:			#CCC;
	background:		transparent none repeat-x 0 0 scroll;
	padding-top: 20px;
}
div.hoverBtnbuyCs div {
	display:		none;
	position: 		absolute;
	z-index: 		1;
	top: 			0px;
	background-attachment: scroll;
	background-image: url(/site/images/cs/navhover_buy.png);
	background-repeat: repeat-x;
	background-position: center center;
	text-align: center;
}


/* fancy download button */
#wrap {
    margin: 20px auto;
    text-align: center;
}

.btn-slide, .btn-slide2 {
    position: relative;
    display: inline-block;
    height: 60px;
    width: 200px;
    line-height: 50px;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 0px;
    padding-right: 0px;
    border-radius: 50px;
    background: #fdfdfd;
    border: 2px solid #0099cc;
    margin: 10px;
    transition: .5s;
    box-shadow: 4px 10px 10px #888888;
}

.btn-slide2 {
    border: 2px solid #ff0000;
}

.btn-slide:hover {
    background-color: #0099cc;
}

.btn-slide2:hover {
    background-color: #ff0000;
}

.btn-slide:hover span.circle, .btn-slide2:hover span.circle2 {
    left: 100%;
    margin-left: -45px;
    background-color: #fdfdfd;
    color: #0099cc;
}

.btn-slide2:hover span.circle2 {
    color: #ff0000;
}

.btn-slide:hover span.title, .btn-slide2:hover span.title2 {
    left: 40px;
    opacity: 0;
}

.btn-slide:hover span.title-hover, .btn-slide2:hover span.title-hover2 {
    opacity: 1;
    left: 40px;
}

.btn-slide span.circle, .btn-slide2 span.circle2 {
    display: block;
    background-color: #0099cc;
    color: #fff;
    position: absolute;
    float: left;
    margin: 8px;
    line-height: 42px;
    height: 40px;
    width: 40px;
    top: 0;
    left: 0;
    transition: .5s;
    border-radius: 50%;
}

.btn-slide2 span.circle2 {
    background-color: #ff0000;
}

.btn-slide span.title,
  .btn-slide span.title-hover, .btn-slide2 span.title2,
  .btn-slide2 span.title-hover2 {
    position: absolute;
    left: 90px;
    text-align: center;
    margin: 0 auto;
    font-size: 20px;
    font-weight: bold;
    color: #30abd5;
    transition: .5s;
}

.btn-slide2 span.title2,
  .btn-slide2 span.title-hover2 {
    color: #ff0000;
    left: 80px;
  }

.btn-slide span.title-hover, .btn-slide2 span.title-hover2 {
    left: 80px;
    opacity: 0;
}

.btn-slide span.title-hover, .btn-slide2 span.title-hover2 {
    color: #fff;
}





.bg {
  position: fixed; 
  top: -50%; 
  left: -50%; 
  width: 200%; 
  height: 200%;
  z-index:-2;

  filter: opacity(16%) saturate(70%) brightness(70%);
}

.bg img {
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  margin: auto; 
  min-width: 50%;
  min-height: 50%;
  z-index:-2;
}



/* Framework migration hardening */
.bb-form input[type="submit"],
.bb-form button[type="submit"] {
  border: 0;
  border-radius: var(--radius-button, .75rem);
  background: var(--form-submit-bg, linear-gradient(120deg, #0d5414, #1f7c2c));
  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(9, 62, 16, .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 {
  background: var(--form-submit-bg-hover, linear-gradient(120deg, #11661b, #239936));
  transform: translateY(-1px);
  box-shadow: 0 22px 34px rgba(9, 62, 16, .36);
}

.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;
}

.footer-content__block,
.prefooter-content__block {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-content__block img,
.prefooter-content__block img,
.footer-content__block video,
.prefooter-content__block video,
.footer-content__block iframe,
.prefooter-content__block iframe {
  max-width: 100%;
  height: auto;
}

.cs-screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.35rem;
}

.cs-screenshot-grid .affiliate-zoom-container.cs-screenshot-item {
  float: none !important;
  width: 100%;
  --affiliate-zoom-width: 100%;
  margin: 0 !important;
}

.cs-screenshot-grid .cs-screenshot-link {
  display: block;
  width: 100%;
}

.cs-screenshot-grid .affiliate-zoom-container img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media (max-width: 700px) {
  .cs-screenshot-grid {
    grid-template-columns: 1fr;
  }
}
