/*--------------------------------------------------------
	FONT ASSIGNMENTS
--------------------------------------------------------*/

:root {
    --pink: #f7efef;
    --gray: #f1f1f1;
    --red: #AE0E0D;
    --text: #4D4D4D;
    --radius: 12px;
    --gap: 80px;
    --side-margin: calc((100vw - var(--page-width)) / -2);
    --header-height: 85px;
    --footer-height: 730px;
    font-size: 16px;
    overflow-x: clip;
}

@media (max-width: 768px) {
    :root {
        --page-width: 100vw;
        --side-margin: 0px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    :root {
        --page-width: 750px;
    }
}


/* this is only used on the capterra page but no longer needed */


/* @media (max-width:990px) {
    :root {
        --side-margin: 0px;
    }
} */

@media (min-width:992px) and (max-width: 1201px) {
    :root {
        --page-width: 970px;
    }
}

@media (min-width:1201px) {
    :root {
        --page-width: 1170px;
    }
}

body,
html {
    /*height: 100%;*/
}

body {
    background-color: white;
    /* font-family: 'PT Sans', sans-serif; */
    font-family: "Inter", serif;
    font-weight: 400;
    font-size: inherit;
}

p {
    margin-bottom: .75em;
}


/* p+p {
    margin: 5px 0 10px;
} */

p+div,
p+table {
    /*This style says that anytime a div or table follows a <p> there will be 30px below the paragraph*/
    margin-top: 30px;
}

p+ul {
    /*Pulls <ul> closer to paragraph making text look like it belongs with <p>*/
    margin-top: -5px;
}


/* Lists */

#subpage-content ul:not([class]):not([id]) li {
    margin-bottom: 8px;
}


/*--------------------------------------------------------
	H1 - H6
--------------------------------------------------------*/

h1,
h2,
h3,
h4 {
    margin: 0px;
    padding: 0px;
    font-family: "Inter", serif;
    color: #666;
    font-weight: 600;
}

@media (max-width: 450px) {
    h1,
    h2,
    h3,
    h4 {
        line-height: 1;
    }
}

h1 {
    font-size: 30px;
    color: #ae0e0d;
    margin-bottom: .75em;
    font-weight: 700;
}

h1.title {
    margin-bottom: 2rem;
}

h2 {
    font-size: 26px;
    font-weight: 700;
}

h3 {
    font-size: 23px;
}

h4 {
    font-size: 20px;
}

@media (max-width: 450px) {
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 22px;
    }
    h4 {
        font-size: 20px;
    }
}

#subpage-content *+h1,
#subpage-content *:not(h1)+h2,
#subpage-content *:not(h2)+h3,
#subpage-content *:not(h3)+h4:not(.estimator-page h4) {
    margin-top: 30px;
}

#subpage-content h2:not(#feature-heading-row h2, #trust-row h2, #subpage-content .review-row h2, #software-row h2, #demo-row h2, #estimate-row h2, .estimator-page h2, #avocado-row h2),
#subpage-content h3,
#subpage-content h4:not(.estimator-page h4, #accordion-row h4) {
    margin-bottom: 10px;
}


/*--------------------------------------------------------
	LINKS
--------------------------------------------------------*/

a {
    text-decoration: none;
    color: var(--red);
    /* was #337ab7 */
    /* #3C8786 */
}

a:hover,
a:focus {
    text-decoration: underline;
    color: #db7575;
    /* was #23527c */
}


/* this was a gray button */


/* a.ml-button {
    color: #222222;
    background-color: #DDDDDD;
    font-family: "Inter", serif;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
}

a.ml-button:hover {
    background-color: #EEEEEE;
} */


/* white button */

a.ml-button {
    margin-bottom: 25px;
    background-color: white;
    color: #ae0e0d;
    box-shadow: 0 0 0 1px var(--red);
    font-size: 20px;
    font-size: inherit;
    font-family: inherit;
    font-weight: 700;
    font-weight: inherit;
    padding: .75em 1ch;
    border-radius: 5px;
    display: inline-block;
    line-height: 1;
    transition: .125s color ease-in-out, .125s background-color ease-in-out, box-shadow ease-in-out;
    width: fit-content;
    white-space: nowrap;
}

a.ml-button:is(:focus, :hover) {
    background-color: #AE0E0D;
    color: #FFFFFF;
    text-decoration: none;
    /* border-radius: 9px;
    border: 1px solid #ae0e0d; */
}


/* red button */

.button-link {
    background-color: #AE0E0D;
    color: #FFFFFF;
    font-size: 20px;
    font-family: inherit;
    font-weight: 700;
    padding: .75em 2ch;
    border-radius: 5px;
    display: inline-block;
    line-height: 1;
    transition: .125s color ease-in-out, .125s background-color ease-in-out, box-shadow ease-in-out;
    white-space: nowrap;
}

.button-link:is(:focus, :hover) {
    text-decoration: none;
    color: #ae0e0d;
    background-color: white;
    box-shadow: 0 0 0 1px var(--red);
    /* border-radius: 9px;
    border: 1px solid #ae0e0d; */
}


/* button list for when there are buttons next to each other */

.button-list {
    padding-inline-start: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


a.button {
    color: #ae0e0d;
    background-color: white;
    border-radius: 9px;
    border: 1px solid #ae0e0d;
    display: inline-block;
    font-size: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    min-width: 220px;
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
    text-decoration: none;
}

a.button:hover {
    color: white;
    background-color: #ae0e0d;
}



/*--------------------------------------------------------
	IMAGES, Objects
--------------------------------------------------------*/

img {
    border: 0px;
}

.img-standard {
    border-radius: var(--radius);
}

.footer-badges {
    display: flex;
    list-style: none;
    gap: 1em;
    align-items: center;
    margin: 35px auto 0;
    padding: 0;
    padding-top: 35px;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid #eee;
    padding-inline: 15px;
}

.footer-badges img {
    width: 120px;
    max-width: 100%;
    display: block;
    max-height: 100px;
    object-fit: contain;
}


/*--------------------------------------------------------
						HEADER
--------------------------------------------------------*/

#sticky-header {
    background: white;
    height: 85px;
    padding-bottom: 13px;
    /*margin-bottom: 30px;*/
    box-shadow: 2.08px 3.12px 20.8px rgba(0, 0, 0, 0.2);
    filter: progid: DXImageTransform.Microsoft.dropshadow(OffX=2.08, OffY=3.12, Color='#000000');
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 105;
}

@media (max-width: 991px) {
    #sticky-header {
        height: 60px;
    }
}

@media (max-width: 767px) {
    #sticky-header {
        padding-top: 0px;
    }
}

#body-wrapper {
    padding-top: 85px;
    /* Compensates for sticky header @ 990px and larger*/
    min-height: calc( 100vh - 109px);
    /*Fixes footer to bottom of screen @ 990px and larger*/
}

@media (max-width: 991px) {
    #body-wrapper {
        padding-top: 60px;
        /* Compensates for sticky header @ 990px and below*/
        min-height: calc( 100vh - 109px);
        /*Fixes footer to bottom of screen @ 990px and larger*/
    }
}

@media (max-width: 715px) {
    /*Footer height grows as text breaks to a new line*/
    #body-wrapper {
        min-height: calc( 100vh - 131px);
        /*Overwrites 990px style since the entire page isn't going to be */
    }
}

#logo-col a {
    display: inline-block;
    margin-top: 20px;
}

@media (max-width: 991px) {
    #logo-col a {
        margin-top: 12px;
    }
}

#logo-col svg,
#logo-col img {
    position: relative;
    display: block;
    max-width: 100%;
    height: auto;
    top: 0;
    width: 210px;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    #logo-col svg,
    #logo-col img {
        height: 48px;
    }
    /*Fixes IE10/11 quirks*/
}

@media (max-width: 991px) {
    #logo-col svg,
    #logo-col img {
        top: 0;
        width: 190px;
    }
}

@media (max-width: 767px) {
    #logo-col svg,
    #logo-col img {
        position: relative;
        left: 0px;
        max-width: calc( 100% - 22px);
        /*Width of the containing div minus the width of the mobile toggle plus 15px padding*/
    }
}


/*--------------------------------------------------------
					Desktop Navigation
--------------------------------------------------------*/

#nav_menu .navbar-nav {
    position: absolute;
    right: 13px;
    bottom: -105px;
    top: 23px;
}

#nav_menu .navbar-nav>li a {
    color: #ae0e0d;
    font-family: 'PT Sans', sans-serif;
    text-decoration: none;
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#nav_menu .navbar-nav>li:last-of-type a:hover {
    color: #ae0e0d;
    background-color: white;
    border-radius: 9px;
    border: 1px solid #ae0e0d;
}

#nav_menu .navbar-nav>li:last-of-type a {
    color: white;
    background-color: #ae0e0d;
    border-radius: 5px;
    border: 1px solid #ae0e0d;
    margin-left: 15px;
}

.nav>li>a:hover,
.nav>li>a:focus {
    background-color: transparent;
    color: #ae0e0d;
}

#nav_menu .caret {
    margin-left: 3px;
}

@media (max-width:1200px) and (min-width:990px) {
    #nav_menu .navbar-nav>li a {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (min-width: 991px) and (max-width: 1200px) {
    #nav_menu .navbar-nav>li a {
        font-size: 16px;
    }
}


/*--------------------------------------------------------
					Mobile Navigation
--------------------------------------------------------*/

#mobileMenuWrapper {
    box-shadow: 2.08px 3.12px 20.8px rgba(0, 0, 0, 0.4);
    filter: progid: DXImageTransform.Microsoft.dropshadow(OffX=2.08, OffY=3.12, Color='#000000');
}


/* All Mobile Menu Links*/

#mobileMenuWrapper #mobile-menu a {
    display: inline-block;
    width: 100%;
    min-height: 32px;
    margin-bottom: 6px;
    background-color: transparent;
    padding-left: 8px;
    padding-top: 10px;
    padding-right: 5px;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
}


/*Top Level Mobile Menu Links*/

#mobileMenuWrapper #mobile-menu>li>a {
    color: #ae0e0d;
    padding-top: 13px;
    padding-bottom: 13px;
}


/* Mobile Menu Dropdown Only */

#mobileMenuWrapper .mDropdown a {
    padding: 8px;
    margin-bottom: 10px;
}

#mobile-menu>li>ul {
    background-color: rgba(0, 0, 0, .04);
}


/*-------------------------------------toggle*/

button#mobile-toggle {
    width: 37px;
    height: 37px;
    position: absolute;
    right: 0px;
    bottom: 0px;
    border: none;
    border-radius: 4px;
    padding: 15px 5px;
    background-color: white;
    /* box-shadow: 0px 1.5px 1px rgba(0, 0, 0, 0.3); */
    top: 20px;
    width: 48px;
    height: 48px;
}

@media (max-width: 991px) {
    button#mobile-toggle {
        display: inline-block;
        top: -50px;
    }
}

@media (max-width: 767px) {
    button#mobile-toggle {
        display: inline-block;
        top: -45px;
    }
}

button#mobile-toggle:focus {
    outline: none;
}

button#mobile-toggle:active {
    /* box-shadow: 0px -1.5px 0px rgba(0, 0, 0, 0.1); */
}

button#mobile-toggle svg * {
    fill: #ae0e0d;
}




/*--------------------------------end--toggle*/


/*--------------------------------------------------------
	INDEX / MAIN BODY
--------------------------------------------------------*/


/* #subpage-content>.row {
    padding-block: var(--gap);
}

@media (max-width: 767px) {
    #subpage-content {
        --gap: 50px;
    }
} */


/*----------------Slideshow----------*/


/*Fade Styles*/

#index-slideshow-container .carousel-inner .item {
    opacity: 0;
    max-width: 100vw;
    overflow: hidden;
    -webkit-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
}

#index-slideshow-container .carousel-inner .active {
    opacity: 1;
}

#index-slideshow-container .carousel-inner .active.left,
#index-slideshow-container .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

#index-slideshow-container .carousel-inner .next.left,
#index-slideshow-container .carousel-inner .prev.right {
    opacity: 1;
}

#index-slideshow-container .carousel-control {
    z-index: 2;
}


/*End Fade Styles*/

#index-slideshow-container {
    padding: 0px;
    background: #333333;
    /*Adds background color so slideshow fade doesn't show a flash of white*/
}

#index-slideshow-container .item {
    height: 360px;
}

div#index-slideshow-container img {
    width: 100%;
}

#index-slideshow-container .carousel-indicators {
    display: none;
}

.carousel-inner a {
    color: inherit;
}

#index-slideshow-container .carousel-control.left,
#index-slideshow-container .carousel-control.right {
    display: none;
}


/*----------------Slideshow Caption----------*/

.carousel-caption {
    top: auto;
    bottom: 0px;
    left: inherit;
    right: inherit;
    width: 100%;
    background: rgba(35, 31, 32, .5);
    padding-bottom: 70px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 1);
}

@media (max-width: 767px) {
    .carousel-caption/*Resets .carousel-caption properties so div can be styled along with content boxes at this size */
    {
        background: transparent;
        position: relative;
        top: 0px;
        bottom: 0px;
        padding-left: 15px;
        /*Mimics padding on .content-box*/
        padding-right: 15px;
        /*Mimics padding on .content-box*/
        padding-top: 20px;
        /*Mimics padding on .content-box-container*/
        padding-bottom: 20px;
        /*Mimics padding on .content-box-container*/
        text-shadow: none;
        float: none;
        /*#mobile-caption for some reason needs this to overwrite the float that the .col-xs-12 class adds to it in order to center*/
    }
}

.carousel-caption a {
    text-decoration: none;
}

.carousel-caption p,
.carousel-caption p.caption-text {
    font-size: 33px;
    font-weight: bold;
    position: relative;
    background: transparent;
    margin: 0px;
    padding: 0px;
    line-height: 35px;
    display: block;
    left: inherit;
}

.carousel-caption p.alt-text {
    margin-top: 0px;
    font-weight: 300;
    font-size: 26px;
}

@media (max-width: 767px) {
    .carousel-caption p {
        font-size: 25px;
        margin: 0px;
        line-height: 30px;
        min-height: 0px;
        color: inherit;
        text-shadow: none;
    }
    .carousel-caption p.caption-text {
        font-size: 50px;
        /*Fallback for browsers that don't know calc*/
        font-size: calc( 12vw - 15px);
        line-height: 50px;
        /*Fallback for browsers that don't know calc*/
        line-height: calc( 12vw - 15px);
        margin-bottom: 10px;
        /*Fallback for browsers that don't know calc*/
        margin-bottom: calc( 4vw - 15px);
    }
}

@media (max-width: 500px) {
    .carousel-caption p.caption-text {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 10px;
    }
}


/*Slideshow Media Queries*/


/*Large Monitors*/

@media (min-width: 1680px) {
    /*Img's are targeted by their src attribute to keep styles from applying if new slides are uploaded. This will also ensure that style still applies if slides are re-ordered.*/
    /*Macro Gears Slide*/
    img[src="https://www.memberleap.com/slideshows/images/LEAP/default/LEAP_1505238262.png"] {
        position: absolute;
        top: -80px;
    }
}

@media (min-width: 1630px) {
    /*Blurry Crowd of People Slide*/
    img[src="https://www.memberleap.com/slideshows/images/LEAP/default/LEAP_1505837111.21.png"] {
        position: absolute;
        top: -70px;
    }
}

@media (min-width: 1440px) {
    /*Presenter Giving a Speech Slide*/
    img[src="https://www.memberleap.com/slideshows/images/LEAP/default/LEAP_1505838125.68.png"] {}
}

@media (min-width: 1555px) {
    /*Satelitte Dishes Slide*/
    img[src="https://www.memberleap.com/slideshows/images/LEAP/default/LEAP_1505838295.92.png"] {
        position: absolute;
        top: -50px;
    }
}


/*The slides are 1350px x 360px. We start forcing the height of the slides at this width so that the image fills the slide row vertically*/

@media (max-width: 1350px) {
    div#index-slideshow-container img {
        height: 360px;
        /*width: inherit;*/
        /*Overwrites the non-media queried value. I'd use initial instead if IE didn't choke on it.*/
        /*max-width: inherit;*/
        /*Overwrites Bootstrap's .carousel img value. I'd use initial instead if IE didn't choke on it.*/
        width: auto;
        max-width: none;
    }
}


/* @ 767px The slideshow position stays fixed and the slides change based on the scroll position*/

@media (max-width: 767px) {
    #index-slideshow-container {
        position: fixed;
    }
    #index-slideshow-container:after/*Transparent overlay for making slideshow recede into the background*/
    {
        content: "";
        background: rgba(35, 31, 32, .5);
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: 1;
        width: 100vw;
        height: 100vh;
    }
    #index-slideshow-container .item,
    div#index-slideshow-container img {
        height: 100vh;
        /*Sets slideshow image as background for entire screen*/
    }
    div#index-slideshow-container img {
        /*height: 100vh;*/
    }
    #index-slideshow-container .carousel-caption {
        display: none;
        /*Hides the captions from inside of the carousel*/
    }
    div#index-slideshow-container img[src="https://www.memberleap.com/slideshows/images/LEAP/default/LEAP_1505238262.png"] {
        /*Photo of gears*/
        margin-left: -1450px;
    }
    div#index-slideshow-container img[src="https://www.memberleap.com/slideshows/images/LEAP/default/LEAP_1505837111.21.png"] {
        /*Photo of crowd*/
        /*margin-left: -1450px;*/
    }
    div#index-slideshow-container img[src="https://www.memberleap.com/slideshows/images/LEAP/default/LEAP_1505838125.68.png"] {
        /*Photo of conference speaker*/
        margin-left: -830px;
    }
    div#index-slideshow-container img[src="https://www.memberleap.com/slideshows/images/LEAP/default/LEAP_1505838295.92.png"] {
        /*Photo of satelitte dishes*/
        /*margin-left: -1450px;*/
    }
}

@media (max-width: 400px) {
    div#index-slideshow-container img[src="https://www.memberleap.com/slideshows/images/LEAP/default/LEAP_1505238262.png"] {
        /*Photo of gears*/
        /*margin-left: -1450px;*/
    }
    div#index-slideshow-container img[src="https://www.memberleap.com/slideshows/images/LEAP/default/LEAP_1505837111.21.png"] {
        /*Photo of crowd*/
        /*margin-left: -1450px;*/
    }
    div#index-slideshow-container img[src="https://www.memberleap.com/slideshows/images/LEAP/default/LEAP_1505838125.68.png"] {
        /*Photo of conference speaker*/
        /*margin-left: -830px;*/
    }
    div#index-slideshow-container img[src="https://www.memberleap.com/slideshows/images/LEAP/default/LEAP_1505838295.92.png"] {
        /*Photo of satelitte dishes*/
        /*margin-left: -1450px;*/
    }
}


/*----------------End Slideshow------*/


/*----------------New Homepage Styles ---------------*/


/* full-width row and background-row */

.full-width,
.background-row {
    position: relative;
    padding-top: 25px;
    padding-bottom: 25px;
}

.full-width {
    /* Make an element span the width of the viewport */
    position: relative;
    left: var(--side-margin);
    right: var(--side-margin);
    width: calc(100vw + var(--scrollbarWidth));
}

main:is(#homepage-main, #subpage-main) .full-width>.column {
    padding-left: 0;
    padding-right: 0;
}

#gm-canvas .full-width,
#gm-canvas .background-row {
    left: unset;
    right: unset;
    width: unset;
}

.background-row:not(#mycanvas .background-row)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: var(--pink);
}

.background-row.gray-row:not(#mycanvas .background-row)::before {
    background: var(--gray);
}

#subpage-main:has(.background-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>.background-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}


/* if you remove the title from a page and apply this class to the top row, it will move the row up so there is no whitespace above it. */

.row.moveup {
    margin-top: -50px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.row.moveup .row {
    margin-bottom: 0 !important;
}


/* ------Home Page Styling ------- */


/* #welcome-row */

#welcome-row {
    position: relative;
    padding: 75px 0px;
}

#welcome-row:not(#mycanvas #welcome-row)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: url(../images/vieth-pink-background.png);
    background-size: cover;
    background-position: center center;
    /* background: var(--pink); */
}

#gm-canvas #welcome-row {
    left: unset;
    right: unset;
    width: unset;
}

#subpage-main:has(#welcome-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>#welcome-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

#welcome-row h1 {
    margin-top: 0;
    font-size: 42px;
    color: black;
}

#welcome-row p {
    font-size: 20px
}

#welcome-row p:first-of-type {
    margin-bottom: 1.75em;
}

#welcome-row .button-link {
    margin-bottom: 0;
}

@media (min-width: 991px) and (max-width: 1201px) {
    #welcome-row h1 {
        font-size: 38px;
    }
    
    #welcome-row p {
        font-size: 18px;
    }

}

@media (max-width: 991px) {
    #welcome-row .column:not(:first-child) {
        margin-top: var(--gap);
    }
}



/* trust-row */

#trust-row {
    margin-top: var(--gap);
    margin-bottom: 2em;
}

#trust-row h2 {
    margin-bottom: 0;
}

/* #org-row */

#org-row:not(#gm-canvas #org-row) {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: var(--gap);
}

#org-row:before,
#org-row:after {
    display: none;
}

#org-row .column:not(#gm-canvas #org-row .column) {
    width: 100%;
    aspect-ratio: 1/1;
    margin: 0px auto;
    border: 2px solid var(--gray);
    border-radius: var(--radius);
    padding: 30px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991px) {
    #org-row {
        flex-wrap: wrap;
    }

    #org-row .column {
        margin: 0px auto;
    }
}

@media (min-width: 600px) and (max-width: 991px) {
    #org-row {
        padding-inline: 15px;
    }

    #org-row:not(#gm-canvas #org-row) {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    #org-row:not(#gm-canvas #org-row) {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 400px) and (max-width: 600px) {
    #org-row .column:not(#gm-canvas #org-row .column) {
        width: 50%;
    }

    #org-row {
        padding-inline: 30px;
    }
}

@media (min-width: 320px) and (max-width: 400px) {
    #org-row .column:not(#gm-canvas #org-row .column) {
        width: 75%;
    }

    #org-row {
        padding-inline: 30px;
    }
}

@media (max-width: 320px) {
    #org-row {
        padding-inline: 15px;
    }
}




/* #quote-row */

#quote-header-row {
    position: relative;
    padding: 75px 0px;
}

#quote-header-row:not(#mycanvas #quote-header-row):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: #333333;
    background: url(../images/vieth-black-background.png);
    background-size: cover;
    background-position: center center;
}

#gm-canvas #quote-header-row {
    left: unset;
    right: unset;
    width: unset;
}

#subpage-main:has(#quote-header-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>#quote-header-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

#quote-header-row .column:not(#gm-canvas #quote-header-row .column) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 770px) {
    #quote-header-row .column:not(#gm-canvas #quote-header-row .column) {
        flex-direction: column;
        gap: 25px;
    }
}

#quote-header-row:not(#gm-canvas #quote-header-row) .column h2 {
    color: white;
    margin-top: 0px;
    margin-bottom: 10px;
}

#quote-header-row:not(#gm-canvas #quote-header-row) .column p {
    color: white;
    margin-top: 0px;
    margin-bottom: 0px;
    max-width: 700px;
}

#quote-row:not(#gm-canvas #quote-row) {
    margin-top: -60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 991px) {
    #quote-row:not(#gm-canvas #quote-row) {
        flex-wrap: wrap;
        margin-top: -80px;
    }
}

#quote-row .column {
    background-color: var(--pink);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 800px) {
    #quote-row .column {
        margin: 0px 25px;
    }
}

#quote-row img {
    margin-bottom: 25px;
}

#quote-row .column div:first-of-type p {
    margin-bottom: 70px;
}


/* capterra-row */

#capterra-row {
    margin-block: var(--gap);
}

#capterra-row .footer-badges {
    margin-top: 0;
    padding-top: 0;
    border: none;
}


/* #metrics-row */

#metrics-row:not(#gm-canvas #metrics-row) {
    position: relative;
    padding: 75px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
}

#metrics-row:not(#mycanvas #metrics-row)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: url(../images/vieth-red-background.png);
    background-size: cover;
    background-position: center center;
    /* background: var(--red); */
}

#gm-canvas #metrics-row {
    left: unset;
    right: unset;
    width: unset;
}

#subpage-main:has(#metrics-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>#metrics-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

#metrics-row .column {
    background-color: white;
    border-radius: var(--radius);
    padding: 50px 30px;
    margin: 0px 20px;
}

#metrics-row .column p:first-child {
    margin-bottom: calc(var(--gap) / 4);
    font-size: 55px;
    line-height: 1;
    color: var(--red);
    white-space: nowrap;
}

#metrics-row .column p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    #metrics-row {
        flex-wrap: wrap;
    }
}


/* features-heading-row */

#feature-heading-row {
    margin-top: var(--gap);
    margin-bottom: 2em;
}

#feature-heading-row h2 {
    margin-bottom: 0;
}

/* #feature-row */

#feature-row:not(#mycanvas #feature-row) {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: var(--gap);
}

#feature-row .column {
    background-color: var(--pink);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 991px) {
    #feature-row {
        flex-wrap: wrap;
    }
    #feature-row .column {
        margin: 0px 10px;
    }
    #feature-row .column img {
        max-width: 150px;
        max-height: 50px;
    }
}

@media (min-width: 480px) and (max-width: 991px) {
    #feature-row:not(#mycanvas #feature-row) .column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    #feature-row .column {
        display: block;
    }
}

#feature-row h3 {
    margin-bottom: 25px;
}

#feature-row ul {
    padding-inline-start: 0;
    margin-bottom: 25px;
}

#feature-row p:not(:has(.button-link)) {
    margin-bottom: 20px;
}


/* Check-list - red check marks for bullets in lists*/

.check-list ul {
    /* list-style-image: url('../images/check-marker.svg'); */
    list-style-type: none;
}

.check-list svg {
    margin-right: .5ch;
}


/* Check-list Animations */

.check-list li:nth-child(1) {
    --delay: 1;
}

.check-list li:nth-child(2) {
    --delay: 2;
}

.check-list li:nth-child(3) {
    --delay: 3;
}

.check-list li:nth-child(4) {
    --delay: 4;
}

.check-list li:nth-child(5) {
    --delay: 5;
}

.check-list li:nth-child(6) {
    --delay: 6;
}

.check-list li:nth-child(7) {
    --delay: 7;
}

.check-list li:nth-child(8) {
    --delay: 8;
}

.check-list li:nth-child(9) {
    --delay: 9;
}

.check-list li:nth-child(10) {
    --delay: 10;
}

.check-list li:nth-child(11) {
    --delay: 11;
}

.check-list li:nth-child(12) {
    --delay: 12;
}

.check-list li:nth-child(13) {
    --delay: 13;
}

.check-list li:nth-child(14) {
    --delay: 14;
}

.check-list li:nth-child(15) {
    --delay: 15;
}

.check-marker polyline {
    stroke-dasharray: 20;
    transition: .25s stroke-dashoffset ease-in-out;
    transition-delay: calc(.125s * var(--delay));
    stroke-dashoffset: -20;
}

.onscreen .check-marker polyline {
    stroke-dashoffset: 0;
}


/* p.onscreen {
    color: blue;
} */


/* Support Row */

#support-row {
    margin-block: var(--gap);
    display: flex;
    gap: 30px;
}

@media (max-width: 700px) {
    #support-row {
        flex-direction: column;
    }
}

#support-row h2 {
    font-size: 42px;
    margin-bottom: 35px !important;
}

#support-row .column:first-of-type {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

#support-row .column:first-of-type p {
    font-size: 1.1em;
}

#support-row .column:last-of-type {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    background-color: var(--pink);
    border-radius: var(--radius);
    padding: 50px 30px;
}

#support-row .column:last-of-type img {
    margin-bottom: 20px;
}

#support-row .column:last-of-type div:first-of-type p {
    font-size: 20px;
}


/* bio-row */

#bio-header-row {
    position: relative;
    padding: 75px 0px;
}

#bio-header-row:not(#mycanvas #bio-header-row)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    /* background: #333333; */
    background: url(../images/vieth-black-background.png);
    background-size: cover;
    background-position: center center;
}

#gm-canvas #bio-header-row {
    left: unset;
    right: unset;
    width: unset;
}

#subpage-main:has(#bio-header-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>#bio-header-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

@media (max-width: 991px) {
    #bio-row .column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

#bio-header-row .column h2 {
    color: white;
}

#bio-row {
    margin-bottom: var(--gap);
}

#bio-row .column:first-child {
    margin-top: -95px;
}

#bio-row .column .vieth-green-logo {
    background-color: #EDF3ED;
    border-radius: var(--radius);
    padding: 40px 30px;
    margin-bottom: 35px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 361px;
}

@media (min-width: 375px) and (max-width: 991px) {
    #bio-row .column .vieth-green-logo {
        padding: 40px 60px;
    }
}

@media (max-width: 375px) {
    #bio-row .column .vieth-green-logo {
        padding: 40px 30px;
    }
}

#bio-row .column:first-child p:first-of-type {
    margin-top: 15px;
    font-size: 20px;
}

#bio-row .column h2 {
    margin-top: 40px;
}


/* demo-row */

#demo-row {
    position: relative;
    padding: 80px 0px;
    /* margin-bottom: -39px; */
}

#demo-row:not(#mycanvas #demo-row)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: url(../images/memberleap-laptop-background-new-2.png);
    background-size: cover;
    background-position: center center;
    box-shadow: inset 0 0 0 1000px rgb(230 229 235 / 85%);
}

#gm-canvas #demo-row {
    left: unset;
    right: unset;
    width: unset;
}

#subpage-main:has(#demo-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>#demo-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

#demo-row h2 {
    font-size: 42px;
    margin-bottom: 42px;
}


/* hide the embed rows on the page */

.embed-row:not(#gm-canvas .embed-row) {
    margin-bottom: 0;
    display: none;
}

.embed-row::after,
.embed-row::before {
    display: none;
}


/* Animations */


/* CONTAINER SLIDE IN FROM LEFT */

.slide-in-left {
    /* opacity: 0; */
    transition: .8s all ease;
    transform: translate3d(-100%, 0, 0);
}

.slide-in-left.active {
    opacity: 1;
    transform: none;
}


/* CONTAINER SLIDE IN FROM RIGHT */


/* commmented out because it causes horizontal scroll bar currently */

.slide-in-right {
    opacity: 0;
    transition: .8s all ease;
    transform: translate3d(100%, 0, 0);
}

.slide-in-right.active {
    opacity: 1;
    transform: none;
}


/* delay for use in a row with more than one column */

.delay-two {
    transition: 1s all ease;
}

.delay-three {
    transition: 1.2s all ease;
}


/* pulse throb */

.pulse:not(#mycanvas .pulse) {
    transition: .8s transform ease, .125s background-color ease-in-out, box-shadow ease-in-out;
    /* transform: scale(.8); */
}

.pulse.active {
    animation: pulse .5s;
    animation-delay: .5s;
}

@keyframes pulse {
    25% {
        transform: scale(.8)
    }
    50% {
        transform: none;
    }
    75% {
        transform: scale(.8)
    }
    100% {
        transform: none;
    }
}


/*----------------------------------Primary-Content*/

#content-boxes-row {
    margin-top: -50px;
}

@supports (display: -webkit-box) or (display: -moz-box) or (display: -ms-flexbox) or (display: -webkit-flex) or (display: flex) {
    #content-boxes-row {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
    }
    .content-box-container {
        height: 100%;
    }
}

@supports :not(display: -webkit-box, display: -moz-box, display: -ms-flexbox, display: -webkit-flex, display: flex) {
    #content-boxes-row {
        min-height: 311px;
        /*Fallback for browsers without Flexbox support. This value will have to be updated based on the longest line of content*/
    }
}

@media (max-width: 767px) {
    #content-boxes-row {
        margin-top: 0px;
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    @supports (display: -webkit-box) or (display: -moz-box) or (display: -ms-flexbox) or (display: -webkit-flex) or (display: flex) {
        #content-boxes-row {
            display: block;
        }
    }
}

.content-box {
    margin-top: 0px;
    /*Makes more sense to apply the negative margin to the row than the individual boxes*/
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    /*IE10/11 makes children of a parent that is lower than another div show above it if it gets a higher z-index*/
    .content-box {
        z-index: 101;
    }
}

@media (max-width: 990px) and (min-width: 767px) {
    .content-box {
        padding-left: 0px;
        padding-right: 0px;
    }
    .content-box.active {
        z-index: 100;
    }
}

@media (min-width: 767px) {
    .content-box:hover {
        cursor: pointer;
    }
}

.content-box-background {
    height: 100%;
}

.content-box-container {
    background-color: white;
    box-shadow: 2.08px 3.12px 20.8px rgba(0, 0, 0, 0.2);
    filter: progid: DXImageTransform.Microsoft.dropshadow(OffX=2.08, OffY=3.12, Color='#000000');
    -webkit-transition: box-shadow .3s ease-in-out;
    -o-transition: box-shadow .3s ease-in-out;
    transition: box-shadow .3s ease-in-out;
    padding: 20px 20px 20px;
    -webkit-transition: padding .3s ease-in-out;
    -o-transition: padding .3s ease-in-out;
    transition: padding .3s ease-in-out;
    margin-top: 0px;
    -webkit-transition: margin-top .3s ease-in-out;
    -o-transition: margin-top .3s ease-in-out;
    transition: margin-top .3s ease-in-out;
    border-bottom: 4px solid white;
    -webkit-transition: border-bottom .5s ease-in-out;
    -o-transition: border-bottom .5s ease-in-out;
    transition: border-bottom .5s ease-in-out;
}

.content-box.active .content-box-container {
    border-bottom: 4px solid #ae0e0d;
    box-shadow: 1.08px 3.12px 40.8px 5px rgba(0, 0, 0, 0.15);
    /*horizontal position, vertical position, blur, spread*/
    filter: progid: DXImageTransform.Microsoft.dropshadow(OffX=2.08, OffY=3.12, Color='#000000');
}

@media (max-width: 990px) and (min-width: 767px) {
    .content-box-container {
        box-shadow: 1.08px 3.12px 40.8px 5px rgba(0, 0, 0, 0);
        padding-left: 25px;
        padding-right: 25px;
    }
    .content-box.active .content-box-container {
        padding-top: 25px;
        margin-top: -5px;
        box-shadow: 1.08px 3.12px 40.8px 5px rgba(0, 0, 0, 0.075);
    }
}


/*@media (max-width: 990px){
	.content-box-container{
		padding: 30px 0px 0px;
		box-shadow: none;
	}
}*/


/*Content areas media queries*/

@media (max-width: 767px) {
    .content-box,
    #mobile-caption {
        margin: 0px auto;
        max-width: 100%;
        background: transparent;
        min-height: 100vh;
        /* Sets the height of the div that will trigger the slide change to be the height of the screen*/
    }
    .content-box .content-box-background,
    #mobile-caption .caption-wrapper {
        /* Sets the height of the div containing the trigger for each slide to the full height of the screen*/
        position: absolute;
        margin: auto;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        height: 364px;
        /*Set manually to contain all content for fallback if browser doesn't support min-content*/
        /*^^ based on content 9-25*/
    }
    @supports (height: min-content) {
        .content-box .content-box-background,
        #mobile-caption .caption-wrapper {
            height: min-content;
        }
    }
    .content-box .content-box-background {
        /*background: transparent;
		-webkit-transition: background .3s ease-in-out;
		-o-transition: background .3s ease-in-out;
		transition: background .3s ease-in-out;*/
        /*Chris doesn't like the fade in*/
        background: white;
        padding: 20px;
        box-sizing: content-box;
    }
    .content-box.active .content-box-background {
        background: white;
    }
    .caption-wrapper {
        padding: 0px 10px;
    }
    .content-box .content-box-container {
        max-width: 100%;
        width: 400px;
        background: transparent;
        margin: 0px auto;
        padding: 0px;
        border-bottom: none;
        height: auto;
        /*Required for height: min-content; to work on .content-box .content-box-background, #mobile-caption .caption-wrapper*/
    }
    .content-box-container {
        /*Resets larger screen styles*/
        box-shadow: 2.08px 3.12px 20.8px 0px rgba(0, 0, 0, 0.0);
        background: transparent;
    }
    .content-box.active .content-box-container {
        /*Resets larger screen styles*/
        box-shadow: 2.08px 3.12px 20.8px 0px rgba(0, 0, 0, 0.0);
        border-bottom: none;
    }
}

@media (max-width: 440px) {
    .content-box .content-box-background,
    #mobile-caption .caption-wrapper {
        /* Sets the height of the div containing the trigger for each slide to the full height of the screen*/
        height: 385px;
        /*Set manually to contain all content for fallback if browser doesn't support min-content*/
        /*^^ based on content 9-25*/
    }
    @supports (height: min-content) {
        .content-box .content-box-background,
        #mobile-caption .caption-wrapper {
            height: min-content;
        }
    }
}

@media (max-width: 300px) {
    .content-box .content-box-background,
    #mobile-caption .caption-wrapper {
        /* Sets the height of the div containing the trigger for each slide to the full height of the screen*/
        height: 4805px;
        /*Set manually to contain all content for fallback if browser doesn't support min-content*/
        /*^^ based on content 9-25*/
    }
    @supports (height: min-content) {
        .content-box .content-box-background,
        #mobile-caption .caption-wrapper {
            height: min-content;
        }
    }
}


/*End Content box media queries*/


/*Contents of Content Boxes*/

.content-box a {
    text-decoration: none;
    /*color: #333;*/
}


/*^^ Overwrites the link style since the entire content box becomes a link to trigger the slides of the slideshow*/

.content-box-container h1 a {
    text-decoration: none;
    /*Chris doesn't like underlines on headings*/
    color: #555;
    /*Overwrites the style that switches text in these boxes wrapped inside of an <a> to still be black*/
    -webkit-transition: color .3s ease-in-out, text-decoration .4s ease-in-out;
    -o-transition: color .3s ease-in-out, text-decoration .4s ease-in-out;
    transition: color .3s ease-in-out, text-decoration .4s ease-in-out;
}

.content-box.active .content-box-container h1 a {
    text-decoration: underline;
    color: #ae0e0d;
    /*Overwrites the style that switches text in these boxes wrapped inside of an <a> to still be black*/
}

.content-box-container h1 a:hover {
    text-decoration: underline;
}

.content-box svg {
    margin: 0px auto;
    display: block;
}

.content-box svg * {
    fill: #6D6E71;
}

.content-box.active svg * {
    fill: #ae0e0d;
}

svg#content-box1-icon {
    width: 40.98px;
    height: auto;
    margin-top: -3px;
    /*Adjusts for rounded top edge*/
    margin-bottom: 3px;
    /*Adjusts for rounded top edge*/
}

svg#content-box2-icon {
    width: 34.64px;
    height: auto;
}

svg#content-box3-icon {
    width: 45.14px;
    height: auto;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    /*Fixes IE10/11 SVG rendering quirks*/
    svg[id^=content-box] {
        height: 54px !important;
    }
}

.content-box h1 {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin: 10px 0px 10px;
}

.content-box:nth-of-type(2) h1 {
    padding-top: 4px;
    /*Adjusts for the size difference in the SVGs*/
}

.content-box ul {
    padding-left: 10px;
    line-height: 19px;
}

.content-box li {
    margin-bottom: 8px;
    list-style-type: none;
}

.content-box li:before {
    content: "\2022";
    font-size: 20px;
    color: #555555;
    -webkit-transition: color .3s ease-in-out, text-decoration .4s ease-in-out;
    -o-transition: color .3s ease-in-out, text-decoration .4s ease-in-out;
    transition: color .3s ease-in-out, text-decoration .4s ease-in-out;
    margin-left: -20px;
    margin-right: 11px;
}

.content-box.active li:before {
    color: #ae0e0d;
}

@media (max-width: 990px) {
    .content-box ul {
        padding-left: 0px;
        line-height: 19px;
    }
    .content-box li {
        margin-bottom: 10px;
    }
    .content-box li:before {
        font-size: 14px;
        margin-left: -14px;
        margin-right: 7px;
    }
}


/*--------------------------------------------------------
	CSS STYLE FOR INNER PAGES
--------------------------------------------------------*/

#body-container {
    margin-top: 0px;
}

#subpage-content {
    min-height: calc(100vh - 319px);
    margin-top: 50px;
}

#subpage-content .row:not(#support-row, #feature-heading-row, #quote-row, .row.embed-row, .row#demo-row, .row#capterra-row, .row#capterra-section, #capterra-section .capterra-contact-form .row, #estimate-row, #software-row, .row.primary-capterra-section, .row#welcome-row, .background-row, #video-row, .estimator-page #modules_included_id .row, .estimator-page #modules_carte_id, .estimator-page .submission-area, .estimator-page .row, .row:has(#modules_included_display_id), #trust-row) {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    #subpage-content > .row:not(#support-row, #feature-row, #metrics-row, #welcome-row, #quote-row, .gray-bg-row, .embed-row, #demo-row, #capterra-row, #capterra-section, #capterra-section .capterra-contact-form .row, #estimate-row, #software-row, .primary-capterra-section, #welcome-row, .background-row, #video-row, .estimator-page #modules_included_id .row, .estimator-page #modules_carte_id, .estimator-page .submission-area, .estimator-page .row, .row:has(#modules_included_display_id)) > .column:not(:first-child) {
        margin-top: var(--gap);
    }
}

.sharethis-inline-share-buttons::before {
    content: 'Share this page';
    /* font-family: 'PT Sans', sans-serif; */
    font-family: "Inter", serif;
    vertical-align: middle;
    padding-right: 1ch;
    position: relative;
    top: 2px;
}

.sharethis-inline-share-buttons .st-btn:hover {
    top: initial !important;
}

#st-1 .st-btn>svg {
    transform: scale(1.5);
}

@media (max-width: 767px) {
    #overview-page img/*Add other pages if it makes sense*/
    {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }
}

.important {
    color: #ae0e0d;
    font-weight: 700;
}

ul.long-list {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
}

ul.long-list li {
    white-space: nowrap;
}

@media (max-width: 1200px) {
    ul.long-list {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
    }
}

@media (max-width: 990px) {
    ul.long-list {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}

@media (max-width: 767px) {
    ul.long-list {
        -webkit-column-count: inherit;
        -moz-column-count: inherit;
        column-count: inherit;
        overflow-y: scroll;
        max-height: 50vh;
        padding-top: 10px;
        /*padding-bottom: 10px;*/
    }
    ul.long-list::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 10px;
    }
    ul.long-list::-webkit-scrollbar-thumb {
        border-radius: 0px;
        background-color: rgba(109, 110, 113, .2);
        /*-webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);*/
    }
}

ul.long-list-detailed {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 80px;
    -moz-column-gap: 80px;
    column-gap: 80px;
}

@media (max-width: 990px) {
    ul.long-list-detailed {
        -webkit-column-gap: 60px;
        -moz-column-gap: 60px;
        column-gap: 60px;
    }
}

@media (max-width: 767px) {
    ul.long-list-detailed {
        -webkit-column-count: inherit;
        -moz-column-count: inherit;
        column-count: inherit;
        overflow-y: scroll;
        max-height: 50vh;
        padding-top: 10px;
        /*padding-bottom: 10px;*/
    }
    ul.long-list-detailed::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 10px;
    }
    ul.long-list-detailed::-webkit-scrollbar-thumb {
        border-radius: 0px;
        background-color: rgba(109, 110, 113, .2);
        /*-webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);*/
    }
}


/* admin and members menu page */

.pink-bg-row:not(#gm-canvas .pink-bg-row) {
    display: flex;
    gap: 30px;
    margin-top: var(--gap);
    margin-bottom: var(--gap);
    background-color: var(--pink);
    border-radius: var(--radius);
}

.pink-bg-row .column {
    padding: 30px;
}

@media (max-width: 991px) {
    .pink-bg-row:not(#gm-canvas .pink-bg-row) {
        flex-direction: column;
    }
}

.pink-bg-row img {
    border-radius: var(--radius);
}

.pink-bg-row .column:has(img) p {
    margin-top: 25px;
}

.gray-bg-row:not(#gm-canvas .gray-bg-row) {
    display: flex;
    gap: 30px;
    margin-top: var(--gap);
    margin-bottom: var(--gap);
    background-color: var(--gray);
    border-radius: var(--radius);
}

.gray-bg-row .column {
    padding: 30px;
}

@media (max-width: 991px) {
    .gray-bg-row:not(#gm-canvas .gray-bg-row) {
        flex-direction: column;
    }
}

.gray-bg-row img {
    border-radius: var(--radius);
    margin-bottom: 10px;
}

.gray-bg-row .column:has(img) p {
    margin-top: 25px;
}

.two-col-list {
    columns: 2;
    column-gap: 40px;
}

@media (max-width: 630px) {
    .two-col-list {
        columns: 1;
    }
}


/* Software > Chapter Page */

.chapter-row>.column>.row {
    display: flex;
    gap: 30px;
}

.chapter-row>.column>.row>.column {
    background-color: white;
    border-radius: var(--radius);
}

@media (max-width: 767px) {
    .chapter-row>.column>.row {
        flex-direction: column;
    }
}


/* custom website page*/

.gray-col {
    background-color: var(--gray);
    border-radius: var(--radius);
    padding: 25px;
}

.gray-col img {
    margin-bottom: 25px;
}


/* Comparison Page */

#accordion-row .panel {
    margin-top: 0;
    /* border-radius: var(--radius); */
    border: none;
    border-bottom-right-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
    box-shadow: none;
}

#accordion-row .panel-default:first-of-type>.panel-heading {
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

#accordion-row .panel-default:last-of-type>.panel-heading {
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
}

#accordion-row .panel-default>.panel-heading {
    position: relative;
    background-color: var(--pink);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: none;
    border-bottom: solid 2px white;
}

#accordion-row .panel-default>.panel-heading:has(.panel-title a[aria-expanded="false"]) {
    background-color: var(--pink);
}

#accordion-row .panel-title {
    margin-bottom: 0;
    margin-bottom: 0;
    color: var(--text);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
}

#accordion-row .panel-title a:is(:hover, :focus) {
    text-decoration: none;
    color: var(--text);
}

#accordion-row .panel-title a::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#accordion-row .panel-body {
    border-top: none;
    border-right: 1px solid var(--gray);
    border-bottom: none;
    border-left: 1px solid var(--gray);
}

#accordion-row .panel:last-of-type .panel-body {
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    border-bottom: solid 1px var(--gray);
    margin-top: -8px;
}


/* red numbered "list" used on the old comparison page  */

div.red-numbered-list {
    counter-reset: list-number;
}

div.red-numbered-list div {
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
    border-radius: 6px;
    padding: 20px;
    display: flex;
    gap: 25px;
}

div.red-numbered-list div p {
    display: inline;
}

div.red-numbered-list div:before {
    counter-increment: list-number;
    content: counter(list-number);
    margin-right: 15px;
    margin-bottom: 0px;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background-color: #ae0e0d;
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
}


/*----------Table Styles----------*/

.table {
    margin-top: 10px;
}

p+.table {
    margin-top: 30px;
}


/*Changes margin-top from 10px to 30px when .table follows a <p>*/

.table em {
    margin-left: -1px;
}


/*Adjusts for the perceived gap with the slanted text*/

.table-striped {
    border-bottom: 1px solid #dddddd;
}

.table>tbody>tr:first-of-type {
    font-weight: 700;
}


/*Table labels row*/

.table img {
    display: block;
    margin: 0px auto;
}

@media (max-width: 450px) {
    .table {
        font-size: 14px;
    }
    .table>tbody>tr>td {
        padding-left: 3px;
        padding-right: 3px;
    }
    .table>tbody>tr>td,
    .table>tbody>tr>th,
    .table>tfoot>tr>td,
    .table>tfoot>tr>th,
    .table>thead>tr>td,
    .table>thead>tr>th {
        line-height: 16px;
        min-width: 49px;
    }
    .table img {
        width: 18px;
        height: auto;
        margin: 0px;
        margin-left: 8px;
    }
    .table ul {
        padding-left: 10px;
    }
    .table li {
        margin-top: 10px;
        list-style-type: none;
    }
    .table li:before {
        content: "\2022";
        font-size: 14px;
        margin-left: -8px;
        margin-right: 3px;
    }
}


/* association_management_software.php table Temporary fix*/

@media (max-width: 550px) {
    /* Fix tables breaking on smaller screens */
     :is(.association-management-software-page) table tr {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 0;
    }
     :is(.association-management-software-page) .table>tbody>tr>td {
        padding: 3px;
    }
     :is(.association-management-software-page) .feature:is(td, th) {
        /* Hide "Features and Benefits" label */
        position: absolute;
        left: -666vw;
    }
     :is(.association-management-software-page) .table>tbody>tr>td:is([class*="feature-list"]) {
        grid-column: 1 / -1;
        padding-block: 10px 20px;
        width: 100%;
    }
}


/* monthly_memberleap_lease.php table Temporary fix*/

@media (max-width: 550px) {
     :is(.monthly-memberleap-lease-page) tr:nth-child(2) {
        /* Hide row with descriptive text */
        position: absolute;
        left: -666vw;
    }
}


/*----------Client Websites Page----------*/


/*----------Responsive Nivo*/

#slider-container-FD6,
#slider_FD6,
div[id^=slider-container-FD],
div[id^=slider_FD],
.nivoSlider img {
    max-width: 100% !important;
    height: auto !important;
}


/*----------Nivo Controls*/

.nivo-prevNav,
.nivo-nextNav {
    background-image: none !important;
    width: 25px !important;
    top: 25% !important;
    /*Fallback for browsers that don't support calc*/
    top: calc( 50% - 50px) !important;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 75px;
    font-family: Arial, sans-serif;
    text-shadow: 0px 0px 10px rgba(51, 51, 51, 0.4);
}

.nivo-prevNav:hover,
.nivo-nextNav:hover {
    text-decoration: none;
    color: #ae0e0d;
    text-shadow: none;
}

.nivo-prevNav {
    left: 10px !important;
}

.nivo-nextNav {
    right: 10px !important;
}

.nivo-prevNav:after {
    content: "‹";
}

.nivo-nextNav:after {
    content: "›";
}


/*----------Slides*/

#slider-container-FD2 {
    margin-top: 30px !important;
}

@media (max-width: 450px) {
    #slider-container-FD2 {
        margin-top: 20px !important;
    }
}

.nivoSlider img {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
}


/* ---------Interior Pages -------------*/


/*----------Testimonials Page----------*/

#testimonials {
    position: relative;
}

#testimonials .review-site-wrapper {
    position: absolute;
    top: -3em;
    right: 0;
}

@media (max-width: 690px) {
    #testimonials .review-site-wrapper {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0;
    }
}

#testimonials img.review-img {
    width: auto;
    height: 70px;
    margin-left: 10px;
    display: inline-block;
}

@media (max-width: 690px) {
    #testimonials img.review-img {
        margin-right: 10px;
        margin-left: 0;
    }
}

#testimonials .testimonial-wrapper {
    /*border-top: 1px solid #eee;*/
    border-bottom: 1px solid #eee;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}


/*#testimonials .testimonial-wrapper:nth-of-type(2) {
	margin-top: 50px;
}*/

#testimonials .testimonial-text {
    padding-left: 0px;
}

#testimonials .testimonial-image {
    padding-right: 0px;
    max-height: 180px;
    overflow-y: hidden;
    float: right;
}

#testimonials .testimonial-image img {
    width: 100%;
}

@media (max-width: 767px) {
    #testimonials .testimonial-image {
        width: 25%;
        margin-left: 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 500px) {
    #testimonials .testimonial-image {
        float: left;
        width: 100%;
    }
    #testimonials .testimonial-image img {
        width: 150px;
        margin: 5px auto;
        left: -15px;
        position: relative;
    }
    #testimonials .testimonial-text {
        width: 100%;
    }
}

#testimonials .testimonial-author {
    clear: both;
    margin-top: 20px;
    font-weight: 600;
    color: #6D6E71;
}

a.img-links {
    text-decoration: none;
}


/* Contact Us page */

#contact_us button.g-recaptcha {
    margin-left: -15px;
    margin-top: 15px;
    background-color: var(--red);
    color: white;
    /* font-weight: 600; */
    padding: .75em 2ch;
    font-size: 16px;
    border: none;
    border-radius: 5px;
}

#contact_us button.g-recaptcha:is(:hover, :focus) {
    background-color: white;
    color: var(--red);
    box-shadow: 0 0 0 1px var(--red);
}

#contact_us .form-group:not(:has([for="how_did_you_find"])) br {
    display: none;
}


/* Demo request page */

#demo-request-page .background-row:not(#mycanvas .background-row)::before {
    left: calc(var(--side-margin) - 15px);
    right: calc(var(--side-margin) - 15px);
}

#demo-request-page form {
    margin-top: 50px;
}

#demo-request-page form #submit_btn {
    margin-top: 15px;
    background-color: var(--red);
    color: white;
    /* font-weight: 600; */
    padding: .75em 2ch;
    font-size: 16px;
    border: none;
    border-radius: 5px;
}

#demo-request-page form #submit_btn:is(:hover, :focus) {
    background-color: white;
    color: var(--red);
    box-shadow: 0 0 0 1px var(--red);
}


/* Testimonials New Test Page*/

#top-review:not(#gm-canvas #top-review) {
    display: flex;
    justify-content: end;
    align-items: center;
}

#top-review img {
    display: inline;
    margin-right: 25px;
    max-height: 70px;
}

.review-row {
    margin-top: 66px;
    background-color: var(--pink);
    padding: 25px;
    border-radius: var(--radius);
}

.review-row:nth-child(odd) {
    background-color: var(--gray);
}

.review-row.gray {
    /* background-color: var(--gray); */
}

.review-row h2 {
    margin-bottom: 40px;
}

.review-row p {
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .review-row img {
        max-width: 200px;
    }
}

.review-row .highlight-quote {
    font-size: 1.2rem;
    font-weight: 600;
    overflow: hidden;
}

.review-row .highlight-quote::before {
    content: url(../images/quote-icon.svg);
}

.review-row .review-content {
    overflow: hidden;
}

.review-row .read-button {
    border: none;
    background: #b97f7f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.2rem;
}

.review-row .read-button:is(:hover, :focus) {
    background: #cc9292;
}

.review-row.gray .read-button {
    background: #969191;
}

.review-row.gray .read-button:is(:hover, :focus) {
    background: #a9a2a2;
}


/*----------Capterra Page----------*/

@media (max-width:990px) {
    #capterra-content .primary-capterra-section {
        flex-direction: column;
    }
    .screenshot3 {
        display: none;
    }
    #capterra-content h1 {
        margin-top: 10px !important;
    }
    .primary-capterra-section::before {
        zoom: 1.75 !important;
    }
}

#capterra-content {
    margin-top: -50px;
    line-height: 1.5em;
}

#capterra-content:not(#gm-canvas #capterra-content) h1:not(#capterra-section h1) {
    color: white;
    font-size: 3em;
    margin-top: 80px;
    /*newly added */
}

#capterra-content h2:not(#capterra-section h2, #software-row h2, #demo-row h2, #estimate-row h2, #feature-header h2) {
    color: black;
    font-size: 2.5em;
    line-height: 1.3em;
}

#capterra-content h3:not(#feature-row h3) {
    color: black;
    font-size: 2.25rem;
    line-height: 1.5em;
}


/* #capterra-content h4{
    color: var(--red);
    font-size: 2.25rem;
} */

#capterra-content .primary-capterra-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    z-index: -5;
    background-image: linear-gradient(rgb(0 0 0 / 36%), rgb(0 0 0 / 36%)), url(../images/speaker-banner.jpg);
    background-size: cover;
    /*background-position: top;*/
    /*zoom: 1.75;*/
    zoom: 0;
}

#capterra-content .primary-capterra-section {
    position: relative;
    display: flex;
}

@media (min-width:991px) {
    #capterra-content .primary-capterra-content:not(.gm-editing, #capterra-section .primary-capterra-content) {
        margin-top: -21em;
    }
}

#capterra-content .primary-capterra-section p {
    color: white;
    font-size: 1.3rem;
}

#capterra-content .primary-capterra-section {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

#capterra-content .capterra-contact-form:not(#capterra-section .capterra-contact-form) {
    background: lightgray;
    padding: 10px 15px 30px;
}

#capterra-content .capterra-contact-form p {
    color: var(--text);
}

#capterra-content form .row {
    margin-bottom: 0;
}


/* capterra page copy form changes */

.capterra-contact-form>p {
    font-size: 18px;
}

.capterra-contact-form>form>div>label {
    margin-bottom: 0px;
}

.capterra-contact-form>form>.form-group {
    margin-bottom: 10px;
}

#capterra-content .tworow {
    float: left;
    width: 50%;
}

#capterra-content .first>div>input,
#capterra-content .first>div>select,
#capterra-content .first>div>textarea {
    width: calc(100% - 10px);
    margin-right: 10px;
}

@media (max-width:767px) {
    #capterra-content .tworow {
        width: 100%;
        float: none;
    }
    #capterra-content .first>div>input,
    #capterra-content .first>div>select,
    #capterra-content .first>div>textarea {
        width: 100%;
        margin-right: 0px;
    }
    #capterra-content .form-button {
        margin-top: 0px !important;
    }
}

#capterra-content .c-form-row>.col-md-12,
#capterra-content .c-form-row>.col-sm-12 {
    padding-left: 0px !important;
}

#capterra-content .center-button {
    display: flex;
    justify-content: center;
}

#capterra-content .form-button {
    background: #AE0E0D;
    color: #FFFFFF;
    font-size: 2rem;
    /* font-family: "PT Sans"; */
    font-family: inherit;
    font-weight: 700;
    width: 13em;
    border-radius: 5px;
    display: inline-block;
    line-height: 4.1rem;
    margin-top: 25px;
}


/*  Old Capterra Page accent row */

#capterra-content .accent-row::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    z-index: -1;
    background: #f7f7f7;
}

#capterra-content .accent-row {
    position: relative;
    padding: 4em 0;
}

#capterra-content .capterra-cta-row {
    margin-top: 0;
}

.capterra-cta-row svg {
    display: block;
    margin: 0 auto;
}

.capterra-cta-row .cls-3 {
    fill: #6d6e71;
}

.quote-mark {
    display: inline;
    margin-bottom: 10px;
}

.bottom-capterra-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    z-index: -1;
    background-image: linear-gradient(rgb(0 0 0 / 69%), rgb(0 0 0 / 69%)), url(../images/crowd.jpg);
    background-position: center;
    background-size: cover;
    min-height: 250px;
}

.bottom-capterra-section {
    position: relative;
    padding: 5em 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bottom-capterra-section h2 {
    color: white !important;
}

#gm-controls {
    position: relative;
    z-index: 5;
}


/* Old Capterra Page Quote Row */

#cap-quote-row {
    display: flex;
    gap: 30px;
    justify-content: space-around;
}

@media (max-width: 800px) {
    #cap-quote-row {
        flex-direction: column;
    }
}

#cap-quote-row::before,
#cap-quote-row::after {
    display: none;
}

#cap-quote-row>.column {
    width: unset;
    float: unset;
    background-color: #f7f7f7;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    padding: 25px;
}

@media (min-width: 800px) and (max-width: 991px) {
    #cap-quote-row>.column:first-of-type>.row>.column img {
        margin: 15px auto;
    }
}

#cap-quote-row>.column>.row {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

@media (min-width: 800px) and (max-width: 991px) {
    #cap-quote-row>.column>.row {
        margin-top: 0;
        margin-bottom: 0;
        flex-direction: column;
        gap: 25px;
        justify-content: space-between;
    }
}


/* ------Capterra Redesign Styles------ */


/* first row and form */

#capterra-section {
    position: relative;
    padding: 50px 0;
    margin-bottom: 0;
}

#capterra-section:not(#mycanvas #capterra-section)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: url(../images/vieth-pink-background.png);
    background-size: cover;
    background-position: center center;
    /* background: var(--pink); */
    background-attachment: fixed;
}

#gm-canvas #capterra-section {
    left: unset;
    right: unset;
    width: unset;
}

#subpage-main:has(#capterra-section:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>#capterra-section:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

@media (max-width: 991px) {
    #capterra-section .column:not(:first-child) {
        margin-top: var(--gap);
    }
}


/* left of form - sticky scroll */

#capterra-section .primary-capterra-content {
    position: sticky;
    top: calc(var(--header-height) + 50px);
    padding-right: 25px;
}

@media (max-width: 991px) {
    #capterra-section .primary-capterra-content {
        position: relative;
        top: 0;
    }
}

#capterra-section h1 {
    font-size: 42px;
    color: var(--text);
}

#capterra-section h1+p {
    color: var(--text);
}

#capterra-section .primary-capterra-content p {
    font-size: 20px
}


/* form */

#capterra-section p {
    font-size: 16px;
}

#capterra-section .capterra-contact-form {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 2.08px 3.12px 20.8px rgba(0, 0, 0, 0.2);
}

#capterra-section .capterra-contact-form label {
    margin-bottom: 5px;
    color: var(--text);
}

#capterra-section .capterra-contact-form .form-group {
    margin-bottom: 15px;
}

#capterra-section .capterra-contact-form .row {
    margin-bottom: 15px;
}

#capterra-section .capterra-contact-form div.checkbox-center {
    display: flex;
    align-items: center;
    margin-top: 2px;
}

#capterra-section .capterra-contact-form input[type="checkbox"] {
    margin-top: 0;
    margin-right: 6px;
    margin-bottom: 2px;
    width: 20px;
    height: 20px;
}

#capterra-section .form-group.tworow textarea {
    width: calc(166% - 15px);
    margin-right: 15px;
}

@media (min-width: 991px) and (max-width: 1201px) {
    #capterra-section .form-group.tworow textarea {
        width: calc(160% - 15px);
        margin-right: 15px;
    }
}

@media (min-width: 767px) and (max-width: 991px) {
    #capterra-section .form-group.tworow textarea {
        width: calc(169% - 15px);
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    #capterra-section .form-group.tworow textarea {
        width: calc(100%);
        margin-right: 15px;
    }
}

.threerow {
    float: left;
    width: 33.3%;
}

@media (max-width: 767px) {
    .threerow {
        float: unset;
        width: 100%;
    }
}

#capterra-section .center-button {
    justify-content: flex-end;
}

#capterra-section .capterra-contact-form .form-button {
    margin-top: 37px;
    margin-right: -15px;
    border: none;
    font-size: 1rem;
    width: unset;
    padding: 15px 25px;
    line-height: 1;
}


/* Shorter version of the form */

@media (min-width: 991px) {
    #capterra-section h1 {
        font-size: 38px;
    }
}

@media (max-width: 530px) {
    #capterra-section h1 {
        font-size: 38px;
    }
}

#capterra-section .cap-expand {
    display: flex !important;
    width: 100%;
    display: block;
}

#capterra-section .cap-expand p {
    float: left;
}

#capterra-section .cap-expand #button-expand {
    font-weight: 600;
    color: var(--red);
    text-decoration: underline;
    cursor: pointer;
}

#capterra-section .cap-expand #button-expand:is(:hover, :focus) {
    color: #db7575;
}

#capterra-section #cap-hidden {
    /* display: none; */
    width: 100%
}

#capterra-section.short-cap .center-button {
    justify-content: flex-start;
}

#capterra-section.short-cap .form-button {
    margin-top: 0;
    margin-bottom: 10px;
}


/* Quote-row modifcation for the new capterra page */

#quote-header-row-cap {
    margin-top: 0 !important;
    position: relative;
    padding: 75px 0px 90px;
}

#quote-header-row-cap:not(#mycanvas #quote-header-row-cap):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: #333333;
    background-size: cover;
    background-position: center center;
}

#gm-canvas #quote-header-row-cap {
    left: unset;
    right: unset;
    width: unset;
}

#subpage-main:has(#quote-header-row-cap:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>#quote-header-row-cap:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

#quote-header-row-cap .column:not(#gm-canvas #quote-header-row-cap .column) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 770px) {
    #quote-header-row-cap .column:not(#gm-canvas #quote-header-row-cap .column) {
        flex-direction: column;
        gap: 25px;
    }
}

#quote-header-row-cap:not(#gm-canvas #quote-header-row-cap) .column h2 {
    color: white;
    margin-top: 0px;
    margin-bottom: 10px;
}

#quote-header-row-cap:not(#gm-canvas #quote-header-row-cap) .column p {
    color: white;
    margin-top: 0px;
    margin-bottom: 0px;
    max-width: 700px;
}

#quote-row.cap-quote .column {
    background-color: white;
    box-shadow: 2.08px 3.12px 20.8px rgba(0, 0, 0, 0.2);
}


/*  #software-row*/

#software-row {
    position: relative;
    padding: 75px 0px;
    margin-bottom: calc(2rem + 10px);
}

#software-row:not(#mycanvas #software-row)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: url(../images/vieth-red-check-background.png);
    background-size: cover;
    background-position: center center;
}

#gm-canvas #software-row {
    left: unset;
    right: unset;
    width: unset;
}

#subpage-main:has(#software-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>#software-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

@media (max-width: 991px) {
    #software-row .column:not(:first-child) {
        margin-top: 0;
    }
}

#software-row:not(#gm-canvas #software-row) h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: white;
}

#software-row:not(#gm-canvas #software-row) h2+p {
    color: white;
    margin-bottom: 50px;
}

#software-row>.column>.row>.column:first-of-type {
    padding-right: 0;
    padding-left: 0;
}


/* #software-row #screenshot-row */

#screenshot-row .panel-group {
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
}

#screenshot-row .panel {
    margin-top: 0;
    border-radius: 0;
    border: none;
}

#screenshot-row .panel:first-of-type {
    border-top-left-radius: var(--radius);
}

#screenshot-row .panel:last-of-type {
    border-bottom-left-radius: var(--radius);
}

#screenshot-row .panel-default:first-of-type>.panel-heading {
    border-top-left-radius: var(--radius);
}

#screenshot-row .panel-default:last-of-type>.panel-heading {
    border-bottom-left-radius: var(--radius);
}

#screenshot-row .panel-default>.panel-heading {
    position: relative;
    background-color: white;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: none;
    border-bottom: solid 2px white;
}

#screenshot-row .panel-default>.panel-heading:has(.panel-title[aria-expanded="false"]) {
    background-color: var(--pink);
}

#screenshot-row .panel-title {
    margin-bottom: 0;
}

#screenshot-row .panel-title {
    color: var(--text);
    font-size: 20px;
}

#screenshot-row .panel-title::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#screenshot-row .panel-title:is(:hover, :focus) {
    text-decoration: none;
}

#screenshot-row .panel-body {
    display: none;
}


/* #software-row #screenshot-row - accordion div change */

#screenshot-row:not(#gm-canvas #screenshot-row) #screenshots div:not(div:first-of-type) {
    display: none;
}

#screenshot-row:has(#collapseOne[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:first-of-type {
    display: flex;
}

#screenshot-row:has(#collapseOne[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:not(div:first-of-type) {
    display: none;
}

#screenshot-row:has(#collapseTwo[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:nth-child(2) {
    display: flex;
}

#screenshot-row:has(#collapseTwo[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:not(div:nth-child(2)) {
    display: none;
}

#screenshot-row:has(#collapseThree[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:nth-child(3) {
    display: flex;
}

#screenshot-row:has(#collapseThree[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:not(div:nth-child(3)) {
    display: none;
}

#screenshot-row:has(#collapseFour[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:nth-child(4) {
    display: flex;
}

#screenshot-row:has(#collapseFour[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:not(div:nth-child(4)) {
    display: none;
}

#screenshot-row:has(#collapseFive[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:nth-child(5) {
    display: flex;
}

#screenshot-row:has(#collapseFive[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:not(div:nth-child(5)) {
    display: none;
}

#screenshot-row:has(#collapseSix[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:nth-child(6) {
    display: flex;
}

#screenshot-row:has(#collapseSix[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:not(div:nth-child(6)) {
    display: none;
}

#screenshot-row:has(#collapseSeven[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:nth-child(7) {
    display: flex;
}

#screenshot-row:has(#collapseSeven[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:not(div:nth-child(7)) {
    display: none;
}

#screenshot-row:has(#collapseEight[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:nth-child(8) {
    display: flex;
}

#screenshot-row:has(#collapseEight[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:not(div:nth-child(8)) {
    display: none;
}

#screenshot-row:has(#collapseNine[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:nth-child(9) {
    display: flex;
}

#screenshot-row:has(#collapseNine[aria-expanded="true"]):not(#gm-canvas #screenshot-row) #screenshots div:not(div:nth-child(9)) {
    display: none;
}

#screenshot-row img {
    box-shadow: 2.08px 3.12px 20.8px rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);
}

#screenshot-row #screenshots {
    padding: 45px;
    background-color: white;
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
}

#screenshot-row #screenshots div {
    min-height: 441px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#screenshot-row #screenshots p {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    #software-row {
        padding: 35px 10px;
    }
    #screenshot-row .panel-group {
        margin-bottom: 0;
    }
    #screenshot-row .panel-heading {
        padding: 5px 15px;
    }
    #screenshot-row #screenshots p {
        margin-bottom: 15px;
    }
    #screenshot-row .panel:first-of-type {
        border-top-right-radius: var(--radius);
    }
    #screenshot-row .panel-default:first-of-type>.panel-heading {
        border-top-right-radius: var(--radius);
    }
    #screenshot-row .panel:last-of-type {
        border-bottom-left-radius: 0;
    }
    #screenshot-row .panel-default:last-of-type>.panel-heading {
        border-bottom-left-radius: 0;
    }
    #screenshot-row #screenshots {
        border-top-right-radius: 0;
        padding: 5px 25px 25px;
    }
    #screenshot-row #screenshots div {
        min-height: 0px;
    }
    #screenshot-row .panel-title {
        font-size: 16px;
    }
}

@media (min-width: 700px) and (max-width: 991px) {
    #screenshot-row img {
        max-width: 600px;
    }
}


/* #estimate-row  */

#estimate-row {
    position: relative;
    padding: 100px 0px;
}

#estimate-row:not(#mycanvas #estimate-row)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: url(../images/memberleap-laptop-background-new.png);
    background-size: cover;
    background-position: center center;
    box-shadow: inset 0 0 0 1000px rgb(230 229 235 / 85%);
}

#gm-canvas #estimate-row {
    left: unset;
    right: unset;
    width: unset;
}

#subpage-main:has(#estimate-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>#estimate-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

#estimate-row h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

#estimate-row p:not(p:last-of-type) {
    margin-bottom: 50px;
}

#estimate-row p:last-of-type {
    margin-bottom: 0;
}


/* Guided Templating Page */

#temp-screen-row .column:first-of-type {
    padding-right: 0;
}

#temp-screen-row .panel-group {
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
    border: solid 2px var(--gray);
    border-right-width: 0;
}

#temp-screen-row .panel-group:has(.panel-title[aria-expanded="true"]) {
    border-right-width: 2px;
    border-right-color: white;
    margin-right: -3px;
    z-index: 2;
    position: relative;
}

#temp-screen-row .panel {
    margin-top: 0;
    border-radius: 0;
    border: none;
}

#temp-screen-row .panel:first-of-type {
    border-top-left-radius: var(--radius);
}

#temp-screen-row .panel:last-of-type {
    border-bottom-left-radius: var(--radius);
}

#temp-screen-row .panel-default:first-of-type>.panel-heading {
    border-top-left-radius: var(--radius);
}

#temp-screen-row .panel-default:last-of-type>.panel-heading {
    border-bottom-left-radius: var(--radius);
}

#temp-screen-row .panel-default>.panel-heading {
    position: relative;
    background-color: white;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#temp-screen-row .panel-default:not(:last-of-type)>.panel-heading {
    border: none;
    border-bottom: solid 2px var(--gray);
}

#temp-screen-row .panel-default>.panel-heading:has(.panel-title[aria-expanded="false"]) {
    background-color: var(--pink);
}

#temp-screen-row .panel-title {
    margin-bottom: 0;
}

#temp-screen-row .panel-title {
    color: var(--text);
    font-size: 20px;
}

#temp-screen-row .panel-title::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#temp-screen-row .panel-title:is(:hover, :focus) {
    text-decoration: none;
}

#temp-screen-row .panel-heading p a {
    font-size: 16px;
    color: #818181;
}

#temp-screen-row .panel-body {
    display: none;
}


/* #temp-screen-row - accordion div change */

#temp-screen-row:not(#gm-canvas #temp-screen-row) #temp-shots div:not(div:first-of-type) {
    display: none;
}

#temp-screen-row:has(#collapseOne[aria-expanded="true"]):not(#gm-canvas #temp-screen-row) #temp-shots div:first-of-type {
    display: flex;
}

#temp-screen-row:has(#collapseOne[aria-expanded="true"]):not(#gm-canvas #temp-screen-row) #temp-shots div:not(div:first-of-type) {
    display: none;
}

#temp-screen-row:has(#collapseTwo[aria-expanded="true"]):not(#gm-canvas #temp-screen-row) #temp-shots div:nth-child(2) {
    display: flex;
}

#temp-screen-row:has(#collapseTwo[aria-expanded="true"]):not(#gm-canvas #temp-screen-row) #temp-shots div:not(div:nth-child(2)) {
    display: none;
}

#temp-screen-row:has(#collapseThree[aria-expanded="true"]):not(#gm-canvas #temp-screen-row) #temp-shots div:nth-child(3) {
    display: flex;
}

#temp-screen-row:has(#collapseThree[aria-expanded="true"]):not(#gm-canvas #temp-screen-row) #temp-shots div:not(div:nth-child(3)) {
    display: none;
}

#temp-screen-row:has(#collapseFour[aria-expanded="true"]):not(#gm-canvas #temp-screen-row) #temp-shots div:nth-child(4) {
    display: flex;
}

#temp-screen-row:has(#collapseFour[aria-expanded="true"]):not(#gm-canvas #temp-screen-row) #temp-shots div:not(div:nth-child(4)) {
    display: none;
}

#temp-screen-row:has(#collapseFive[aria-expanded="true"]):not(#gm-canvas #temp-screen-row) #temp-shots div:nth-child(5) {
    display: flex;
}

#temp-screen-row:has(#collapseFive[aria-expanded="true"]):not(#gm-canvas #temp-screen-row) #temp-shots div:not(div:nth-child(5)) {
    display: none;
}

#temp-screen-row img {
    margin-top: 10px;
    box-shadow: 2.08px 3.12px 20.8px rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);
    max-width: 100%;
    height: auto;
}

#temp-screen-row #temp-shots {
    padding: 30px 20px;
    background-color: white;
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
    border: 2px solid var(--gray);
}

#temp-screen-row #temp-shots div {
    min-height: 441px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* align-items: center; */
}

#temp-screen-row #temp-shots h2 {
    margin-bottom: 25px !important;
}

@media (max-width: 991px) {
    #temp-screen-row {
        display: flex;
        margin-top: 0 !important;
        padding-inline: 15px;
    }
    #temp-screen-row .column {
        padding-left: 0;
    }
    #temp-screen-row .column:first-of-type {
        width: unset;
    }
    #temp-screen-row .panel-group {
        margin-bottom: 0;
        /* border-top-right-radius: var(--radius); */
        /* border-bottom-left-radius: 0; */
    }
    #temp-screen-row .panel-group:has(.panel-title[aria-expanded="true"]) {
        /* border-right-color: var(--gray); */
        /* margin-right: 0; */
        position: sticky;
        top: 60px;
    }
    #temp-screen-row .panel-default>.panel-heading:has(.panel-title[aria-expanded="false"]) {
        background-color: var(--red);
    }
    #temp-screen-row .panel-default>.panel-heading:has(.panel-title[aria-expanded="false"]) a {
        color: white;
    }
    #temp-screen-row .panel-heading {
        padding: 5px 15px;
    }
    #temp-screen-row #temp-shots p {
        margin-bottom: 15px;
    }
    #temp-screen-row .panel:first-of-type {
        /* border-top-right-radius: var(--radius); */
    }
    #temp-screen-row .panel-default:first-of-type>.panel-heading {
        /* border-top-right-radius: var(--radius); */
    }
    #temp-screen-row .panel:last-of-type {
        /* border-bottom-left-radius: 0; */
    }
    #temp-screen-row .panel-default:last-of-type>.panel-heading {
        /* border-bottom-left-radius: 0; */
    }
    #temp-screen-row .panel-heading p {
        display: none;
    }
    #temp-screen-row #temp-shots {
        /* border-top-right-radius: 0; */
        padding: 5px 15px 25px;
        /* border-top: 0; */
    }
    #temp-screen-row #temp-shots div {
        min-height: 0px;
    }
    #temp-screen-row .panel-title {
        font-size: 16px;
    }
    #temp-screen-row .panel-title span {
        display: none;
    }
    #temp-screen-row #temp-shots h2 {
        margin-top: 25px;
    }
}

@media (min-width: 700px) and (max-width: 991px) {
    #temp-screen-row img {
        max-width: 600px;
    }
}


/* Guided Templating Page - start-row */


/* start-row */

#start-row {
    position: relative;
    padding: 80px 0px;
    /* margin-bottom: -39px; */
    color: white;
    margin-block: 0 !important;
}

#start-row:not(#mycanvas #start-row)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    /* background: var(--pink); */
    background: url(../images/template-bg.png);
    background-size: cover;
    background-position: center center;
    /* box-shadow: inset 0 0 0 1000px rgba(58, 58, 58, 0.918); */
}

#gm-canvas #start-row {
    left: unset;
    right: unset;
    width: unset;
}

#subpage-main:has(#start-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main>#start-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

#start-row h2 {
    font-size: 42px;
    margin-bottom: 42px !important;
    color: white;
}

#start-row p {
    max-width: 991px;
}

#start-row .ml-button {
    margin-top: 25px;
    margin-bottom: 0;
}


/* Payment Processing Page */

#merchant-row {
    display: flex;
    justify-content: space-between;
}

#merchant-row .column:first-of-type {
    padding: 25px;
    background-color: #e6e6e6;
    margin-bottom: 25px;
    border-radius: var(--radius);
    margin-bottom: 0;
}

#merchant-row img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

@media (max-width: 767px) {
    #merchant-row {
        flex-direction: column;
    }
    #merchant-row .column:first-of-type {
        margin: 0 0 25px;
    }
}


/* Video Center */


/* Final Version */

#video-row {
    position: relative;
    padding: calc(var(--gap) + 30px) 0;
    margin-bottom: -39px;
}

#video-row:not(#mycanvas #video-row)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: url(../images/vieth-pink-background.png);
    background-size: cover;
    background-position: center center;
    /* background: var(--red); */
}

#video-row::after {
    /* display: none; */
}

#video-row .panel-heading {
    position: relative;
}

#video-row .panel-title::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#video-row .panel-default>.panel-heading {
    background-color: white;
}

#video-row .panel-default>.panel-heading a:is(:hover, :focus) {
    text-decoration: none;
    color: var(--text);
}

#video-row video,
#video-row iframe,
#video-row .embed-responsive:not(iframe .embed) {
    margin: 0 auto;
    display: block;
}

@media (max-width: 991px) {
    #video-row video {
        width: 100%;
    }
    #video-row .panel-default>.panel-heading:has(.panel-title[aria-expanded="true"]) {
        background-color: var(--gray);
    }
}


/* absolute position the accordion content to the right at wider screens*/

@media (min-width: 991px) {
    #video-row .column:first-of-type {
        position: relative;
        padding: 0;
    }
    #video-row .panel-group {
        filter: drop-shadow(2.08px 3.12px 20.8px rgba(0, 0, 0, 0.2));
    }
    #video-row .panel-default {
        border: none;
    }
    #video-row .panel-default:not(.panel-default:last-of-type) {
        border-bottom: 2px solid white;
    }
    #video-row .panel-group .panel:not(.panel:first-of-type, .panel:last-of-type) {
        border-radius: 0;
    }
    #video-row .panel-heading:has(a[aria-expanded="false"]) {
        background-color: var(--gray);
    }
    #video-row .panel-title[aria-expanded="true"] {
        pointer-events: none;
    }
    #video-row .panel-default:first-of-type,
    #video-row .panel-default:first-of-type .panel-heading {
        border-top-left-radius: var(--radius);
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
    #video-row .panel-default:last-of-type,
    #video-row .panel-default:last-of-type .panel-heading {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: var(--radius);
        border-bottom-right-radius: 0;
    }
    #video-row .panel-group .panel+.panel {
        margin-top: 0;
    }
    #video-row .panel-body {
        position: absolute;
        left: 100%;
        top: 0;
        border-top: none;
        background-color: white;
        border-top-right-radius: var(--radius);
        border-bottom-right-radius: var(--radius);
        border-bottom-left-radius: var(--radius);
        width: calc(var(--page-width) * .666);
        min-height: 720px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
    }
    #video-row .panel-body::before,
    #video-row .panel-body::after {
        display: none;
    }
    #video-row video,
    #video-row iframe,
    #video-row .embed-responsive:not(iframe .embed) {
        margin: unset;
    }
    #video-row video {
        margin: 0 auto;
        display: block;
    }
    #video-row .collapsing {
        display: none;
        -webkit-transition-duration: 0.0s !important;
        -o-transition-duration: 0.0s !important;
        transition-duration: 0.0s !important;
        -webkit-transition-timing-function: unset;
        -o-transition-timing-function: unset;
        transition-timing-function: unset;
        /* height: fit-content; */
    }
}


/* Video Center Final Version - Sub Menu */

#video-row .panel-body>div:not(div:first-of-type, div:nth-child(2)) {
    display: none;
}


/* First Draft of the Video Center Page - doesn't work for mobile - not used on live site - video_center_test.php */

#video-center-row:has(#collapseOne[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:first-of-type {
    display: flex;
}

#video-center-row:has(#collapseOne[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:not(div:first-of-type) {
    display: none;
}

#video-center-row:has(#collapseTwo[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:nth-child(2) {
    display: flex;
}

#video-center-row:has(#collapseTwo[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:not(div:nth-child(2)) {
    display: none;
}

#video-center-row:has(#collapseThree[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:nth-child(3) {
    display: flex;
}

#video-center-row:has(#collapseThree[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:not(div:nth-child(3)) {
    display: none;
}

#video-center-row:has(#collapseFour[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:nth-child(4) {
    display: flex;
}

#video-center-row:has(#collapseFour[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:not(div:nth-child(4)) {
    display: none;
}

#video-center-row:has(#collapseFive[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:nth-child(5) {
    display: flex;
}

#video-center-row:has(#collapseFive[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:not(div:nth-child(5)) {
    display: none;
}

#video-center-row:has(#collapseSix[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:nth-child(6) {
    display: flex;
}

#video-center-row:has(#collapseSix[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:not(div:nth-child(6)) {
    display: none;
}

#video-center-row:has(#collapseSeven[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:nth-child(7) {
    display: flex;
}

#video-center-row:has(#collapseSeven[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:not(div:nth-child(7)) {
    display: none;
}

#video-center-row:has(#collapseEight[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:nth-child(8) {
    display: flex;
}

#video-center-row:has(#collapseEight[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:not(div:nth-child(8)) {
    display: none;
}

#video-center-row:has(#collapseNine[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:nth-child(9) {
    display: flex;
}

#video-center-row:has(#collapseNine[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:not(div:nth-child(9)) {
    display: none;
}

#video-center-row:has(#collapseTen[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:nth-child(10) {
    display: flex;
}

#video-center-row:has(#collapseTen[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:not(div:nth-child(10)) {
    display: none;
}

#video-center-row:has(#collapseEleven[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:nth-child(11) {
    display: flex;
}

#video-center-row:has(#collapseEleven[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:not(div:nth-child(11)) {
    display: none;
}

#video-center-row:has(#collapseTwelve[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:nth-child(12) {
    display: flex;
}

#video-center-row:has(#collapseTwelve[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:not(div:nth-child(12)) {
    display: none;
}

#video-center-row:has(#collapseThirteen[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:nth-child(13) {
    display: flex;
}

#video-center-row:has(#collapseThirteen[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:not(div:nth-child(13)) {
    display: none;
}

#video-center-row:has(#collapseFourteen[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:nth-child(14) {
    display: flex;
}

#video-center-row:has(#collapseFourteen[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:not(div:nth-child(14)) {
    display: none;
}

#video-center-row:has(#collapseFifteen[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:nth-child(15) {
    display: flex;
}

#video-center-row:has(#collapseFifteen[aria-expanded="true"]):not(#gm-canvas #video-center-row) #videos div:not(div:nth-child(15)) {
    display: none;
}

#video-center-row .panel-collapse {
    display: none;
}

#video-center-row:not(#gm-canvas #video-center-row) #videos div:not(div:first-of-type) {
    display: none;
}

#video-center-row #videos div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#video-center-row #videos video {
    width: 100%;
}


/* slideshow-page */

#psty-slide-row .column {
    padding: 0;
}

#psty-slide-row .carousel-inner>.item>img {
    /* object-fit: cover;
    width: 100%; */
}

#psty-slide-row .carousel-caption {
    padding-bottom: 20px;
}

#psty-slide-row .carousel-caption p,
.carousel-caption p.caption-text {
    font-size: 22px;
}

#psty-slide-row .carousel-caption a {
    display: none;
}


/* Estimator Tool Page */

.estimator-page {
    margin-top: 0 !important;
}

.estimator-page .row:has() {}

.estimator-page h1::before {
    content: '';
    position: absolute;
    top: -35px;
    bottom: -60px;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: var(--pink);
    z-index: -1;
}

.estimator-page h1.title {
    margin-left: -15px;
    font-size: 40px;
}

.estimator-page h2 {
    font-size: 30px;
    color: #1A1A1A;
}

.estimator-page form[name="estimator_form"] h2 {
    margin-top: 90px;
}

.estimator-page :is(h2, h3, h4) {
    margin-top: 10px;
    margin-bottom: 30px
}

.estimator-page p {
    font-size: 16px;
}

.estimator-page #integration_radio_label {
    margin-bottom: 10px;
    font-weight: 500;
}

.estimator-page input[type="radio" i] {
    accent-color: var(--red);
}

.estimator-page .checkbox-control {
    accent-color: var(--red);
}

.estimator-page .checkbox-left:not(.form-group:has(#plan_radio_label) .checkbox-left, .form-group:has(#integration_radio_label) .checkbox-left:last-of-type) {
    margin-bottom: 15px;
}

.estimator-page label {
    font-weight: 500;
    font-size: 16px;
}

.estimator-page .form-group.template_ind_class {
    margin-bottom: 0;
}

.estimator-page #template_ind_label+.mms_note {
    margin-left: -30px;
    margin-top: 0;
    text-indent: -30px;
}

.estimator-page .mms_note {
    font-size: 15px;
    font-style: normal;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #666666;
}

.estimator-page .form-group:has(#member_count_text_label) {
    margin-bottom: 35px;
}

.estimator-page .column:has(#plan_radio_label) {
    width: 100%;
    margin-bottom: 20px;
}


/* .estimator-page .form-group:has(#plan_radio_label) {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
} */

.estimator-page .form-group:has(#plan_radio_label) {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px 30px;
    width: 100%;
}

.estimator-page .form-group #plan_radio_label {
    grid-column: 1/-1;
}

@media (min-width:767px) and (max-width: 991px) {
    .estimator-page .form-group:has(#plan_radio_label) {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px 15px;
    }
}

@media (min-width: 630px) and (max-width: 767px) {
    .estimator-page .form-group:has(#plan_radio_label) {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 15px;
    }
}

@media (min-width: 320px) and (max-width: 680px) {
    .estimator-page .form-group:has(#plan_radio_label) {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }
}

@media (max-width: 330px) {
    .estimator-page .form-group:has(#plan_radio_label) {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px 15px;
    }
}

.estimator-page .form-group:has(#plan_radio_label) br {
    display: none;
}

.estimator-page .form-group:has(#plan_radio_label) div:not(.checkbox-left, .checkbox-right) {
    display: flex;
    width: 100%;
}

.estimator-page .form-group:has(#plan_radio_label) .checkbox-left {
    position: relative;
    background-color: var(--gray);
    padding: 15px 0 15px 25px;
    width: unset;
    height: unset;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.estimator-page .form-group:has(#plan_radio_label) .checkbox-left input::before {
    content: '';
    position: absolute;
    top: 0;
    right: -155px;
    bottom: 0;
    left: 0;
    background: transparent;
    background-color: transparent;
}

@media (min-width: 991px) and (max-width: 1201px) {
    .estimator-page .form-group:has(#plan_radio_label) .checkbox-left input::before {
        right: -125px;
    }
}

@media (min-width: 767px) and (max-width: 991px) {
    .estimator-page .form-group:has(#plan_radio_label) .checkbox-left input::before {
        right: -100px;
    }
}

@media (min-width: 680px) and (max-width: 767px) {
    .estimator-page .form-group:has(#plan_radio_label) .checkbox-left input::before {
        right: calc((100vw - 75px) * -.27);
    }
}

@media (min-width: 320px) and (max-width: 680px) {
    .estimator-page .form-group:has(#plan_radio_label) .checkbox-left input::before {
        right: calc((100vw - 150px) * -.50);
    }
}

@media (max-width: 330px) {
    .estimator-page .form-group:has(#plan_radio_label) .checkbox-left input::before {
        right: calc((100vw - 95px) * -1);
    }
}

.estimator-page .form-group:has(#plan_radio_label) .checkbox-right {
    background-color: var(--gray);
    margin-left: 0;
    padding: 15px 25px 15px 0;
    width: unset;
    height: unset;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    width: 100%;
}

.estimator-page .form-group:has(#plan_radio_label) .checkbox-control {
    width: unset;
    height: unset;
    margin-top: 4px !important;
}

.estimator-page .form-group:has(#plan_radio_label) .checkbox-right label {
    margin-bottom: 0;
}

.estimator-page .row:has(#modules_included_display_id) {
    margin-bottom: 0;
}

.estimator-page #modules_included_id {
    margin-left: 15px;
    margin-right: 15px;
}

.estimator-page #modules_included_id h3 {
    font-size: 24px;
}

.estimator-page #modules_included_id .row ul {
    columns: 3;
}

@media (min-width: 435px) and (max-width: 676px) {
    .estimator-page #modules_included_id .row ul {
        columns: 2;
    }
}

@media (max-width: 435px) {
    .estimator-page #modules_included_id .row ul {
        columns: 1;
    }
}

.estimator-page #modules_included_id b {
    font-weight: 500;
    font-size: 24px;
}

.estimator-page #modules_included_id .row {
    margin-top: 5px;
    margin-bottom: 20px;
}

.estimator-page #modules_included_id .row ul li {
    line-height: 2;
    font-size: 16px;
}

.estimator-page #modules_carte_id {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 25px;
    margin-left: 15px;
    margin-right: 15px;
}

@media (min-width: 570px) and (max-width: 991px) {
    .estimator-page #modules_carte_id {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 586px) {
    .estimator-page #modules_carte_id {
        grid-template-columns: repeat(1, 1fr);
    }
}

.estimator-page #modules_carte_id h3 {
    grid-column: 1/-1;
    margin-top: 0;
    margin-bottom: 20px;
}

.estimator-page #modules_carte_id h4 {
    font-weight: 500;
    font-size: 24px;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 20px;
}

.estimator-page .submission-area {
    margin-top: 0;
    position: relative;
}

.estimator-page .submission-area button {
    /* width: 100%; */
    padding: .75em 2ch;
    font-size: 16px;
    border: none;
    background-color: var(--red);
    color: white;
    border-radius: 5px;
    margin-bottom: 50px;
}

.estimator-page .submission-area button:is(:hover, :focus) {
    background-color: white;
    color: var(--red);
    box-shadow: 0 0 0 1px var(--red);
}

@media (max-width: 991px) {
    .estimator-page .submission-area button {
        width: calc(100% - 20px);
        margin-right: 10px;
        margin-left: 10px;
    }
}

.estimator-page .submission-area:last-of-type {
    padding-top: 60px;
    padding-bottom: 60px;
}

.estimator-page .submission-area:last-of-type::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: var(--pink);
}

.estimator-page .submission-area h3 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #1A1A1A;
    font-weight: 400;
}

.estimator-page .submission-area :is(#setup_explain, #monthly_explain) {
    margin-top: -5px;
}

.estimator-page .submission-area hr {
    border-top: 1px solid #d9d9d9;
}

.estimator-page .submission-area #contact_form {
    background-color: white;
    box-shadow: 2.08px 3.12px 20.8px rgba(0, 0, 0, 0.2);
    border-radius: var(--radius);
    padding: 45px 40px;
}

.estimator-page .submission-area #contact_form h2 {
    margin-top: 0;
}

.estimator-page .submission-area #contact_form input {
    width: 100%;
}

.estimator-page .submission-area #contact_form input[type="submit"] {
    width: unset;
    height: unset;
    padding: 10px 25px;
    background-color: var(--red);
    color: white;
    box-shadow: none;
    border: 0;
}


/* avocado page - Website Design Choices*/

#avocado-row:not(#gm-canvas #avocado-row) {
    display: flex;
    gap: 25px;
}

#avocado-row .column {
    background-color: var(--gray);
    border-radius: var(--radius);
    padding: 25px;
}

#avocado-row:not(#gm-canvas #avocado-row) .column div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 25px;
    min-height: 315px;
}

#avocado-row .column div p:first-of-type {
    flex-grow: 1;
}

#avocado-row :is(h2, p, a) {
    margin-bottom: 0;
}

@media (min-width: 991px) and (max-width: 1201px) {
    #avocado-row:not(#gm-canvas #avocado-row) .column div {
        min-height: 360px;
    }
}

@media (max-width: 991px) {
    #avocado-row {
        flex-direction: column;
    }

    #avocado-row:not(#gm-canvas #avocado-row) .column div {
        min-height: unset;
    }

    #avocado-row .column img {
        max-width: 400px;
    }
}

@media (max-width: 450px) {
    #avocado-row .column img {
        max-width: 100%;
    }
}

/* column slide in on load */
#avocado-row:not(#gm-canvas #avocado-row) .column:first-of-type {
    animation: 2s ease-in-out slideIn; 
    animation-delay: 0;
}

#avocado-row:not(#gm-canvas #avocado-row) .column:nth-child(2) {
    animation: 1.5s ease-in-out slideIn; 
    animation-delay: 0;  
}

#avocado-row:not(#gm-canvas #avocado-row) .column:nth-child(3) {
    animation: 1s ease-in-out slideIn; 
    animation-delay: 0;
}

/* slide in column animation */
@keyframes slideIn {
    0% {
        transform: translate3d(-500%, 0, 0);
        opacity: 0;
    }
    100% {
        transform: none;
        opacity: 1;
    }
}

/* button animation */
@media (min-width: 991px) {
    #avocado-row .column:first-of-type .ml-button {
        animation: 1s ease-in-out timedBGColor; 
        animation-delay: 2s;
    }
    #avocado-row .column:nth-child(2) .ml-button {
        animation: 1s ease-in-out timedBGColor; 
        animation-delay: 2.5s;
    }
    #avocado-row .column:nth-child(3) .ml-button {
        animation: 1s ease-in-out timedBGColor; 
        animation-delay: 3s;
    }

    @keyframes timedBGColor {
        0% {
            background-color: var(--red);
            color: white;
        }
        100% {
            background-color: white;
            color: var(--red);
        }
    }
}

/*----------Templates Page----------*/


/*#templates .row{
	margin-bottom: 45px;
}
@media (max-width: 767px) {
	#templates .row{
		margin-bottom: 0px;
	}	
	#templates .col-md-3{
		margin-bottom: 20px;
	}
}
#templates img{
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 5px;
}*/


/*----------Description Pages----------*/


/*#template-descriptions img{
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 5px;
}
@media (max-width: 990px){
	#template-descriptions img{
		margin-bottom: 20px;
	}
}
@media (max-width: 767px){
	#template-descriptions img{
		max-height: 420px;
		margin: 0px auto 20px;
	}
}
#template-descriptions #description p {
	margin-bottom: 20px;
}
#template-descriptions #description a:last-of-type {
	display: block;
}*/


/*----------Contact Page----------*/

@media (max-width: 767px) {
    label[for="contactName"],
    label[for="contactPhone"],
    label[for="contactEmail"] {
        display: none;
    }
}


/*--------------------------------------------------------
	FOOTER
--------------------------------------------------------*/


/* new footer styles */

#footer-container {
    position: relative;
    z-index: 2;
    background: white;
}

footer .footer-badges {
    border-top: 2px solid #E4E4EA !important;
    margin: 0 auto;
}

footer .footer-top-row {
    margin-top: 70px;
    max-width: 1170px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
    display: flex;
    justify-content: space-between;
    gap: 130px;
}

@media (max-width: 1144px) {
    footer .footer-top-row {
        gap: 40px;
    }
}

@media (max-width: 835px) {
    footer .footer-top-row {
        flex-direction: column;
    }
}

@media (min-width: 640px) and (max-width: 835px) {
    footer .footer-top-row {
        padding-right: 60px;
        padding-left: 60px;
    }
}

@media (min-width: 433px) and (max-width: 640px) {
    footer .footer-top-row {
        padding-right: 90px;
        padding-left: 90px;
    }
}

@media (min-width: 375px) and (max-width: 433px) {
    footer .footer-top-row {
        padding-right: 60px;
        padding-left: 60px;
    }
}

footer #footer-top-left-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style-type: none;
    padding-inline-start: 0;
}

footer #footer-top-left-list li:first-of-type svg,
footer #footer-top-left-list li:first-of-type img {
    margin-bottom: 15px;
}

footer #footer-top-left-list svg:not(.footer-social-list svg),
footer #footer-top-left-list img:not(.footer-social-list svg) {
    margin-right: 10px;
}

footer [href="mailto:sales@memberleap.com"]::before {
    content: url(../images/footer-email-icon.svg) / "";
    display: inline-block;
    margin-right: .75ch;
    position: relative;
    top: 2px;
}

footer .footer-social-list {
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    list-style-type: none;
    padding-inline-start: 0;
}

footer .footer-social-list svg:is(:hover, :focus) :is(.footer-facebook-icon .cls-2, .footer-x-icon .cls-2, .footer-instagram-icon .cls-2, .footer-linkedin-icon .cls-2, .footer-youtube-icon .cls-2) {
    fill: var(--red);
}

footer #footer-right-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 65px;
    margin-bottom: 35px;
    list-style-type: none;
    padding-inline-start: 0;
}

@media (min-width: 1192px) and (max-width: 1290px) {
    footer #footer-right-list {
        gap: 50px;
    }
}

@media (max-width: 1192px) {
    footer #footer-right-list {
        gap: 25px;
    }
}

@media (max-width: 640px) {
    footer #footer-right-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

footer #footer-right-list li {
    width: 225px;
}

@media (min-width: 988px) and (max-width: 1055px) {
    footer #footer-right-list li {
        width: 200px;
    }
}

@media (min-width: 910px) and (max-width: 988px) {
    footer #footer-right-list li {
        width: 175px;
    }
}

@media (max-width: 910px) {
    footer #footer-right-list li {
        width: 150px;
    }
}

footer #footer-right-list h2 {
    margin-bottom: 20px;
}

footer .footer-hr {
    margin-top: 30px;
}

footer a {
    color: var(--text);
}

footer a:is(:hover, :focus) {
    color: var(--red);
}

footer .footer-bottom-row {
    border-top: 2px solid #E4E4EA;
    padding: 40px 30px;
}

footer .footer-bottom-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

@media (min-width: 1275px) {
    footer .footer-top-row {
        padding-right: 0;
        padding-left: 0;
    }
    footer .footer-bottom-row {
        padding: 40px 100px;
    }
}


/* take the group of share social icons and hide them except the last one and stretch that over share text */

footer .st-btn:not(:last-of-type) {
    display: none !important;
}

footer #share {
    position: relative;
    margin-top: 0;
    /* margin-left: -100px; */
}

footer #share .sharethis-inline-share-buttons:before {
    display: none;
}

footer #share .sharethis-inline-share-buttons {
    opacity: 0 !important;
    width: 150px !important;
    height: 20px !important;
    position: absolute !important;
    left: -15px;
    top: 0;
}

footer #share .st-btn img {
    width: 150px !important;
    height: 20px !important;
}

footer #share:is(:hover, :focus) p {
    color: var(--red);
    text-decoration: underline;
}


/* ----old footer styles---- */

a#mobile-cta-button.ml-button {
    /* display: none; */
}

@media (max-width: 990px) {
    a#mobile-cta-button.ml-button {
        /* display: block;
        max-width: 90%;
        width: fit-content; */
        /*If fit-content isn't supported in the browser the max-width: 90%; will ensure it doesn't get too big*/
        /* margin: 0px auto 10px;
        text-align: center;
        color: white;
        font-size: 20px;
        font-weight: bold; */
    }
}

@media (max-width: 350px) {
    a#mobile-cta-button.ml-button {
        /* margin-bottom: 30px; */
    }
}

#footer-row {
    /* position: relative;
    bottom: 0px;
    width: 100%;
    padding: 20px 0px;
    left: 15px; */
}

@media (max-width: 767px) {
    #footer-row {
        /* background: white; */
        /*Allows footer to be visible with slideshow background behind it*/
    }
}

#footer-row a {
    /* color: #ae0e0d; */
}


/*--------------------------------------------------------
	UTILITIES
--------------------------------------------------------*/


/*----------Nivo Slider----------*/

#slider-container-FD6,
#slider_FD6,
#slider_FD6 img {
    max-width: 100% !important;
    height: auto !important;
}


/*Fix IE10/11 quirks*/

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    svg {
        height: none;
    }
    #index-slideshow-container {
        z-index: 1;
    }
    #content-boxes-row-wrapper {
        z-index: 2;
    }
}


/*--------------------------------------------------------
	Grid Page Editor
--------------------------------------------------------*/

#content-boxes-row.gm-editing {
    display: block;
    /* .rows need to be display: block in the GPE */
}

#index-slideshow-container.gm-editing {
    background: transparent;
}


/*------------------------------
Google captcha
------------------------------*/

.grecaptcha-badge {
    visibility: hidden;
}


/*-------------------------------
bullet list - add breathing room
---------------------------------*/

ul.ml-list li {
    margin: 15px 0px 15px 0px;
}

ul.ml-list-sm li {
    margin: 10px 0px 10px 0px;
}

ul.ml-list-sm {
    margin: 15px 0px 25px 0px;
}

ol.ml-list li {
    margin: 15px 0px 15px 0px;
}

ol.ml-list-sm li {
    margin: 10px 0px 10px 0px;
}

ol.ml-list-sm {
    margin: 15px 0px 25px 0px;
}