/* styles for promo.livedentalsurgery.com */
:root {
    --c1-color: #60ccec;
    --c2-color: #5eb0da;
    --c3-color: #52c6d2;
    --grey-color: #666;
    --menu-color: #5eb0da;
    --title-color: #5eb0da;
    --footer-bkgd-color: #52c6d2;
    --footer-text-color: #fff;
    --text-color: #333;
    --text-font: "Nunito", sans-serif;
    --title-font: "Nunito", sans-serif;
    --logo-max-width: 300px;
    --header-height: 200px;
    --max-content-width: 1300px;    
    --back-to-top-rgb: rgba(94, 176, 218,0.50)
}

/* header */
header {
    border-bottom: 2px solid var(--c1-color);
}

/* body styles */
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--text-font);
    color: #333;
    text-align: center;
}

.menu-container {
}
.menu-col {
    display: flex;
    justify-content: flex-end;   /* right */
    align-items: flex-end;       /* bottom */
}

/* media settings for different screen sizes */
/*.videoSection { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; }
.videoSection iframe, .videoSection object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* youtube shorts */
.videoSection {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.videoSection--shorts {
    aspect-ratio: 9 / 16;
}

.videoSection iframe {
    width: 100%;
    height: 100%;
    border: 1px solid var(--c1-color);
    overflow: hidden;
}

/*.videoSection--shorts {
    position: relative;
    padding-bottom: 177.78%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
}

.videoSection--shorts iframe,
.videoSection--shorts object,
.videoSection--shorts embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}*/

#messageDiv {
    background: #fff;
    padding: 20px;
    border-radius: 0.5em;
}
.error, .frmError {
    color: #ff0000;
}
.caution {
    color: #ff6700;
}
.success {
    color: #006600;
}

.bg-top-right {
    background: url("images/lds-icon-background.png") no-repeat top right;
    /* optional: adjust size */
    background-size: 700px auto; /* or 'contain' / 'cover' */
}

.col-vert-center {
    display: flex;
    flex-direction: column; /* stack children vertically */
    justify-content: center; /* vertical centering */
    height: 100%; /* make sure the container has height */
}

/* default links */
a:link, a:active, a:visited {
    color: var(--c1-color);
    text-decoration: none;
    transition: all .5s ease;
}
a:hover {
    color: var(--c3-color);
    text-decoration: underline;
}

/* title fonts */
h1, h2, h3 {
    font-family: var(--title-font);
    color: var(--c1-color);
    text-transform: capitalize;
    padding: 0;
    font-weight: 200;
}
h4 {
    font-family: var(--title-font);
    text-transform: uppercase;
    padding: 0;
    font-weight: 400;  
    font-size: 1.3em;
}
h2 {
    font-size: 2.8em;
    line-height: 42px;
}
h3 {
    font-size: 2.0em;
    line-height: 35px;
}

/* make the parent div relative so the cost container can be absolute inside it */
.col-span-6 > div.membership-content-wrapper {
    position: relative;
    min-height: 300px; /* optional: ensure there’s space */
}

/* cost container at bottom */
.membership-cost-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;       /* optional: stretch full width */
    display: inline-block;
    padding: 20px;
    font-size: 2em;
    line-height: 20px;
    color: var(--c1-color);
    border: 2px solid var(--c3-color);
    border-radius: 0.5em;
    text-align: center; /* optional */
}

.social-media {
    padding: 5px 0 20px 0;
}
a.social-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 2px;
    color: #fff;
    font-size: 1.2em;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background .3s ease, transform .2s ease;
}
a.social-links:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

a.footer-links:link, a.footer-links:active, a.footer-links:visited {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s ease;
}
a.footer-links:hover {
    text-decoration: underline;
}

a.menu-links:link, a.menu-links:active, a.menu-links:visited {
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s ease;
    font-size: 1.2em;
    padding: 0 10px;
}
a.menu-links:hover {
    text-decoration: underline;
}

a.white-button {
    position: relative;
    display: inline-block;
    margin: 2% 0;
    padding: 10px 20px;
    color: var(--c1-color);
    background: #fff;
    text-decoration: none;
    font-size: 1.0em;
    font-weight: 300;
    text-transform: uppercase;
    border-radius: .3em;
    transition: all .4s ease;   
}
a.white-button:hover,
a.white-button:active {
    color: #333;
    background: #c2c8ca;
}

a.button {
    position: relative;
    display: inline-block;
    margin: 2% 0;
    padding: 10px 20px;
    color: #fff;
    background: var(--c1-color);
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 300;
    text-transform: uppercase;
    border-radius: .3em;
    transition: all .4s ease;
}

a.button:hover,
a.button:active {
    color: #333;
    background: #c2c8ca;
}

input.registration-form, select.registration-form {
    position: relative;
    width: 100%;
    border: none;
    padding: 10px;
    margin: 1% 0 1% 0;
    background: #fff;
    /*font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;*/
    color: #333;
    outline: 0;
    font-size: 1.1em;
    border: 1px solid #ccc;
    border-radius: .3em;
    box-sizing: border-box;
    height: 50px;
    border: 1px solid var(--c1-color);
    transition: all 0.5s ease
}
input.registration-form:hover, select.registration-form:hover {
    background: #fafafa;
    border: 1px solid var(--c2-color);
}
.registration-form-button {
        position: relative;
        display: inline-block;
        box-sizing: border-box;
        margin: 1% 0;
        cursor: pointer;
        color: var(--c1-color);
        padding: 14px 5% 13px 5%;
        background: #fff;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        outline: 0;
        border: none;
        font-size: 1.1em;
        text-transform: uppercase;
        font-weight: 600;
        text-align: center;
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        -o-transition: all .4s ease;
        -ms-transition: all .4s ease;
        transition: all .4s ease;
        border-radius: .3em;
    }
.registration-form-button:hover {
    color: #333;
    background: var(--grey-color);
}

/* desktop view */
@media screen and (min-width: 701px) {

}

/* phones and tablets */
@media screen and (max-width: 700px) {

}

/* important general behaviour */
ul.align-left {
    list-style: none; /* remove bullets */
    padding-left: 0;  /* remove default indent */
    margin-left: 0;   /* optional: remove extra spacing */
}
ul.align-left li {
    display: flex;
    align-items: center;
    gap: 0.5em; /* space between check icon and text */
}

.blue {
    color: var(--c1-color);
}
.bg-blue {
    background: var(--c1-color);
    color: #fff;
}
.bg-blue h2, .bg-blue h3 {
    color: #fff;
}
.align-left {
    text-align: left;
}
img.full-width {
    width: 100%;
    position: relative;
    display: inline-block;
}
.large-padding {
    padding: 40px;
}
.padded {
    padding: 20px;
}
.no-padding {
    padding: 0;
}
.no-margin {
    margin: 0;
}
.small {
    font-size: 11pt;
}
.medium {
    font-size: 14pt;
}
.large {
    font-size: 18pt;
}
.fullWidthPanelContainer {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    text-align: center;
    font-size: 0;
    overflow: hidden;
    float: left
}

.insidePanelContainer {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: var(--max-content-width);
    padding: 0 4%;
    margin: 0
} 

.logoImage {
    width: 100%;
    z-index: 50;
    max-width: var(--logo-max-width);
    position: relative;
    display: inline-block;
    padding-top: 10px
}

#page-container {
    position: relative;
    width: 100%;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
    top: 0;
}

h1#logo-title {
    position: absolute;
    left: -9999px
}

.hideMobile {
    display: none !important;
}

*, :after, :before {
    box-sizing: border-box
}

.ui-effects-wrapper  {
    display: inline;
}
.clear {
    clear: both
}

.back-to-top {
    position: fixed;
    display: inline-block;
    bottom: 0;
    right: 50%;
    text-decoration: none;
    color: #000;
    background: var(--back-to-top-rgb);
    font-size: 12px;
    padding: 10px 15px 10px 15px;
    display: none;
    z-index: 100;
    width: 80px;
    text-align: center;
    margin-right: -40px
}
.back-to-top:hover {
    bottom: 0;
    background: rgba(0, 0, 0, .5)
}

/* end styles */