* { padding: 0; margin: 0; }

:root {
    --text-font: PolymathWeb, serif;
    --text-font-condensed: PolymathWeb, sans-serif;
    --text-accent-font: PolymathWeb, sans-serif;
    --accent-font: PolymathWeb, sans-serif;
    --headline-font: PolymathWeb, sans-serif;
    --mono-font: PolymathWeb, "CovikSansMono-Web", monospace;
    --maxwidth: 1200px;
}

body {
    background: #aaa;
    font-family: var(--text-font);
}

i {
    font-style: normal;
}

#outer {
    background: white;
    overflow: hidden;
}

header {
    position: relative;
    text-align: center;
    /* box-shadow: 0 0 20px rgba(0,0,0,0.2); */
    z-index: 100;
    margin-bottom: 0px;
    background-color: whitesmoke;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid #ccc;
    background-image: url("../GoodhertzRepeatingLogoPattern.08148c302007.png");
    background-size: 500px 150px;
}

header .pattern-bg {
    opacity: 0.25;
    background-size: 100px 100px;
}

#main {
    position: relative;
    z-index: 0;
    max-width: var(--maxwidth);
    margin: auto auto;
    padding: 10px;
    box-sizing: border-box;
}

.account-info-bg {
    background: #eee;
    background-image: url("../GoodhertzRepeatingLogoPattern2.54fa0dabbd2c.png");
    background-size: 500px 100px;
    border-bottom: 1px solid #ddd;
}

.account-info {
    text-align: right;
    color: #555;
    height: 30px;
    font-size: 0.85rem;
    position: relative;
    z-index: 10;
    font-variation-settings: "wght" 700, "ital" 0, "opsz" 0;
    max-width: var(--maxwidth);
    margin: auto auto;
    position: relative;
}

.account-info .account-info-inner {
    position: absolute;
    top: 7px;
    right: 36px;
}

.account-info a {
    text-decoration: underline;
    color: royalblue;
}

.account-info .sep {
    color: #ccc;
    display: inline-block;
    margin: 0 10px;
}

.main-nav .circle-logo {
    display: block;
    text-decoration: none;
    z-index: 100;
    position: absolute;
    top: -20px;
    left: 20px;
    height: 135px;
    width: 135px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border: 1px solid #ccc;
    /* transform: rotate(-2deg); */
}

.main-nav .circle-logo img {
    width: 100%;
}

.main-nav .logo svg {
    margin: auto auto;
}

#gordy {
    transform: translate(10px, 0px);
    margin: auto auto;
}

header .headers {
    height: 88px;
    position: relative;
    max-width: var(--maxwidth);
    margin: auto auto;
}

header .top-nav {
    display: flex;
    gap: 4px;
    position: absolute;
    top: 26px;
    right: 28px;
}

header .top-nav li {
    list-style: none;
    background: none;
}

header .top-nav li a {
    position: relative;
    display: block;
    text-decoration: none;
    text-decoration-thickness: 3px;
    text-underline-offset: 2px;
    font-variation-settings: "wght" 300;
    font-variation-settings: "wght" 550, "opsz" 24;
    /* text-transform: uppercase; */
    color: royalblue;
    padding: 6px 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    background: white;
}

header .top-nav li a.heavy {
    /* font-variation-settings: "wght" 750, "ital" 1; */
}

header .top-nav li a#current-page {
   text-decoration: underline;
   text-decoration-style: solid;
}

header .top-nav li a:hover {
    background-color: royalblue;
    color: white;
    border-color: royalblue;
    /* text-decoration: underline; */
}

@media (max-width: 650px) {
    .account-identifier {
        display: none;
    }

    header .headers {
        height: 130px;
    }

    header .top-nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    header .top-nav li a {
        font-size: 1em;
    }
    
    #content .plugin-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 500px) {
    header .headers {
        height: 154px;
    }

    header .top-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

#content .plugin-list {
    padding: 0;
    margin: 10px 0 0 0;
}

#content .plugin-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
    list-style-type: none;
    align-items: center;
    margin: auto auto;
}

#content .plugin-list .nameplate-wrapper {
    width: 100%;
}

#content .plugin-list a {
    color: rgba(255,255,255,0.75);
    display: flex;
    flex-direction: column;
    margin: auto;
    height: 124px;
    max-width: 420px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
    transition: 0.15s;
}

#content .plugin-list a:hover {
    color: rgba(255,255,255,1.0);
    transform: scale(1.03, 1.03);
}

#content .plugin-list a img {
    display: block;
    margin: auto auto;
    max-height: 100px;
    /* margin-top: -6px; */
    margin-bottom: -10px;
}

#content .plugin-list a .tagline {
    padding: 0px 20px 4px;
    font-variation-settings: 'wght' 400, 'ital' 1;
    text-align: center;
    font-size: 16px;
    margin: auto;
}

@media (max-width: 400px) {
    #content .plugin-list a {
        height: 120px; 
    }

    #content .plugin-list a img {
        max-height: 88px;
    }
}

#text {
    max-width: 700px;
    margin: auto auto;
    /* margin-top: 20px; */
    /* display: grid; */
    /* grid-template-columns: 1fr; */
    /* grid-template-areas: "a" "c"; */
    padding: 40px 10px;
}

#text.narrow {
    max-width: 500px;
    margin: auto auto;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 200px;
}

#text.form {
    max-width: 750px;
    margin: auto auto;
    text-align: center;
}

#text.has-sidebar {
    max-width: 800px;
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    grid-template-areas: "x a a a a" "b c c c c";
    grid-column-gap: 20px;
}

@media (max-width:650px) {
    #text.has-sidebar {
        grid-template-columns: 100%;
        grid-template-areas: "x" "a" "b" "c";
    }

    #text .content {
        margin-top: 60px;
    }
}

#text .title {
    grid-area: a;
}

#text .sidebar {
    /* border-top: 2px solid #eee; */
    grid-area: b;
}

#text .sidebar ul {
    padding: 0;
}

#text .sidebar .toc li {
    font-family: var(--accent-font);
    font-size: 16px;
    list-style: none;
}

#text .sidebar .toc li a {
    border-bottom: none;
    display: block;
    border-bottom: 1px solid #ccc;
    padding: 20px 10px 20px;
}

#text .sidebar .toc li a:hover {
    background: #eee;
}

#text .content {
    grid-area: c;
}

#content .big-plugin-link {
    position: relative;
    text-decoration: none;
    color: royalblue;
    font-size: 24px;
    font-family: var(--accent-font);
    margin-bottom: 1px;
}

#content .big-plugin-link .pattern-bg {
    opacity: 0.2;
    background-size: 50%;
}

.center {
    text-align: center !important;
}

#content h1, #content h2, #content h3, #content h4, #content h5, #content h6 { margin-bottom: 20px; color: #222; }

#content h1 { font-variation-settings: 'opsz' 18, 'wght' 800; font-size: 3em; line-height: 100%; margin-bottom: 60px; }

#content h2 { font-variation-settings: 'opsz' 16, 'wght' 750; font-size: 2.5em; line-height: 100%; margin-bottom: 30px; }
#content h2:not(:first-child) { margin-top: 60px; }
#content h3 { font-variation-settings: 'opsz' 12, 'wght' 725; font-size: 1.3em; line-height: 100%; }
#content h4 { font-variation-settings: 'opsz' 12, 'wght' 700; font-size: 1.2em; line-height: 110%; }
#content h5 { font-variation-settings: 'opsz' 12, 'wght' 775; font-size: 1.1em; line-height: 120%; }
#content h6 { font-variation-settings: 'opsz' 12, 'wght' 700; font-size: 1.05em; line-height: 100%; }

#content h1 em { font-variation-settings: 'opsz' 18, 'wght' 800, 'ital' 1; }
#content h2 em { font-variation-settings: 'opsz' 16, 'wght' 750, 'ital' 1; }
#content h3 em { font-variation-settings: 'opsz' 12, 'wght' 725, 'ital' 1; }
#content h4 em { font-variation-settings: 'opsz' 12, 'wght' 700, 'ital' 1; }
#content h5 em { font-variation-settings: 'opsz' 12, 'wght' 675, 'ital' 1; }
#content h6 em { font-variation-settings: 'opsz' 12, 'wght' 650, 'ital' 1; }

#content ul, #content ol {
    margin-bottom: 20px;
    padding: 0 20px;
}

#content li {
    margin-bottom: 12px;
    font-variation-settings: "wght" 400, "ital" 0;
    line-height: 140%;
}

#content li ul {
    /* margin-top: 10px; */
    font-size: 0.8em;
    font-variation-settings: "wght" 400, "ital" 1;
}

#content ul li ul {
    margin-top: -6px;
}

#content li ul li {
    margin-bottom: 2px;
}

#content li p:last-of-type {
    margin-bottom: 6px;
}

#content p {
    font-variation-settings: "opsz" 12, "wght" 400;
    margin-bottom: 20px;
    line-height: 150%;
}

#content em {
    font-variation-settings: 'wght' 400, 'ital' 1;
    font-style: normal;
}

#content a {
    color: royalblue;
    text-decoration: underline;
    text-decoration-color: #ddd;
}

#content strong { font-variation-settings: "opsz" 12, "wght" 650; }
#content strong em { font-variation-settings: "opsz" 12, "wght" 650, "ital" 1; }

#content pre,
#content code {
    font-family: var(--mono-font);
}

#content table {
    border: 1px solid #eee;
    padding: 5px;
}

#content table td, #content table th {
    padding: 6px 12px;
}

#content table thead {
    background: #eee;
}

#content table tr:nth-child(even) {
    background: whitesmoke;
}

#content code {
    font-family: var(--mono-font);
    color: darkorchid;
}

#content blockquote {
    font-variation-settings: 'wght' 400, 'ital' 1;
    font-size: 95%;
    padding-left: 20px;
    color: #555;
}

#content cite {
    text-align: right;
    display: block;
    margin-top: -20px;
    font-style: normal;
    font-variation-settings: "wght" 350, "ital" 1, "opsz" 24;
}

footer {
    background: #333;
    color: white;
    text-align: right;
    position: relative;
    border-bottom: 10px solid #111;
}

footer .pattern-bg {
    background-image: url("../footer_pattern_light.a3d486542528.png");
    opacity: 0.05;
    background-size: 200px;
}

.footer-inner {
    display: grid;
    margin: auto auto;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    max-width: var(--maxwidth);
}

.footer-inner .column {
    margin: 5px 4px 20px 0;
    padding: 20px 10px;
    /* border-top: 10px solid rgba(255,255,255,0.3); */
    position: relative;
}

.footer-inner .column:after {
    position: absolute;
    background-image: url("../img/logos/hertz-color-danico-250-lssy-by.324879df5cb0.png");
    background-repeat: no-repeat;
    width: 125px;
    height: 125px;
    background-size: 125px;
    bottom: -22px;
    right: -20px;
}

.footer-inner .column:nth-child(1):after {
    content: "";
}

.footer-inner .column:not(:nth-child(1)):after {
    content: none;
}

#henry-danico {
    width: 125px;
    position: absolute;
    bottom: -25px;
    right: -15px;
}

footer ul {
    list-style: none;
}

footer a {
    color: white;
    text-decoration: none;
    border-bottom: 4px solid rgba(255,255,255,0.3);
    display: inline-block;
    padding: 6px 6px 1px 10px;
}

footer a:hover {
    background-color: none !important;
    border-bottom-color: white;
    /* padding-right: 20px; */
}

@media (max-width: 875px) {
    .footer-inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-inner .column.spacer {
        display: block !important;
    }

    .footer-inner .column:nth-child(4):after {
        content: "";
    }

    .footer-inner .column:not(:nth-child(4)):after {
        content: none;
    }
}

@media (max-width: 500px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner .column:nth-child(5):after {
        content: "";
        left: 8px;
    }

    .footer-inner .column:not(:nth-child(5)):after {
        content: none;
    }

    .footer-inner li {
        margin: 4px 0px;
    }
}


/* generics */

.pattern-bg {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 0;
}

.pattern-fg {
    position: relative;
    z-index: 1;
}

.small-text {
    font-size: 16px;
    line-height: 24px;
}

hr {
    margin-top: 40px;
    margin-bottom: 40px;
    border: 0;
    border-top: 1px solid #eee;
}

form.simple {
    margin: 30px auto 20px auto !important;
    text-align: center;
    max-width: 750px;
}

form.simple .grid {
    display: grid;
    /*grid-template-columns: calc(50% - 138px) minmax(232px, 320px) auto;*/
    grid-template-columns: minmax(auto, 200px) minmax(232px, 300px) minmax(auto, 140px);
    grid-template-rows: min-content 1fr;
    grid-gap: 0px 8px;
    text-align: left;
    align-items: center;
    place-content: center;
}

@media (max-width: 500px) {
    form.simple .grid {
        grid-gap: 0px 6px;
    }
}

form.simple .grid .column1,
form.simple .grid .column1-label {
    grid-column: 1 / 2;
    text-align: right;
    margin-right: 6px;
}

@media (max-width: 500px) {
    form.simple .grid .column1-label {
        grid-column: 2 / -1;
        text-align: left !important;
        /*margin-left: -20px;*/
    }
}

form.simple .grid .column2,
form.simple .grid .text-field {
    grid-column-start: 2;
}

form.simple .grid .recaptcha {
    grid-column: 2 / 3;
}

@media (max-width: 500px) {
    form.simple .grid .recaptcha {
        margin: auto;
        grid-column: 1 / -1 !important;  
    }
}

form.simple .grid .spacer {
    margin-bottom: 20px;
    grid-column: 1 / -1;
}

form.simple .grid hr {
    grid-column-start: 2;
    margin-top: 10px;
    margin-bottom: 10px;
    border-top: 1px solid #ccc;
}

form.simple .grid .wave {
    grid-column: 1 / -1;
}

form.simple p {
    padding: 4px;
}

form.simple h2 {
    text-align: center;
}

form.simple .grid p.explainer {
    padding: 4px 0px;
    max-width: 440px; 
    margin: auto  !important;
    font-variation-settings: 'wght' 400, 'ital' 1;
    font-size: 14px !important;
    font-size: 0.8em;
}

form.simple label {
    display: block;
    color: #333;
    font-variation-settings: 'wght' 700, 'ital' 1;
    margin-top: 10px;
    margin-bottom: 4px;
    padding-left: 2px;
}

form.simple li {
    text-align: left;
}

form.simple .helptext,
form.simple .errorlist {
    display: block;
    color: hsl(0, 65%, 50%);
    font-size: 14px !important;
    font-variation-settings: 'wght' 400, 'ital' 1;
    font-size: 0.8em;
    line-height: 1.0em;
    text-align: left;
    width: fit-content;
    margin: 4px 0px 10px;
    grid-column-start: 2;
}

form.simple .helptext { /*hide helptext by default*/
    display: none;
}

form.simple .helptext.invalid {
    display: block;
}

form.simple ul.errorlist,
form.simple .helptext ul  {
    margin: 4px 0px 10px !important; 
    padding: 0px !important;
}

form.simple input[type='text'],
form.simple input[type='password'],
form.simple input[type='email'] {
    font-family: var(--text-font);
    font-size: 18px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    margin: 4px auto;
    width: 100%;
    max-height: 40px;
    box-sizing: border-box;
}

@media (max-width: 500px) {
    form.simple input[type='text'],
    form.simple input[type='password'],
    form.simple input[type='email'] {
        font-size: 16px;
    }
}

form.simple .valid-indicator {
    content: "";
    background-image: none;
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    padding: 0;
    margin: 0;
    grid-column-start: 3;
}

form.simple .valid-indicator.valid {
    background-image: url("../icons/ghz_icon_checkmark.dfcbd45f049b.svg");
}

form.simple .valid-indicator.invalid {
    background-image: url("../icons/ghz_icon_xmark.38f6feb3427e.svg");
}

form.simple input[type='checkbox'] {
    -webkit-appearance: none;
    border-radius: 2px;
    background-color: #fff;
    height: 28px;
    width: 28px;
    border: 2px solid #c1c1c1;
    padding: 2px;
    font-size: 24px;
    font-variation-settings: 'wght' 700, 'ital' 1;
    position: relative;
    margin-bottom: -7px;
    margin-left: 12px;
}

form.simple input[type='checkbox']:hover {
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.15);
    border-color: #a9a9a9;
}

form.simple input[type='checkbox']:checked:after {
    content: "";
    width: 32px;
    height: 32px;
    position: absolute;
    left: 2px;
    bottom: -1px;
    color: #41c1bc;
    transition: all 0.2s;
    background-image: url("../icons/ghz_icon_checkmark.dfcbd45f049b.svg");
    background-repeat: no-repeat; 
}

form.simple button[type='submit'] {
    display: block;
    font-family: var(--text-font);
    font-variation-settings: 'wght' 700, 'ital' 1;
    font-size: 24px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border: 1px solid white;
    outline: none;
    background: darkorchid;
    color: white;
    width: 240px;
    height: 60px;
    margin: auto;
}

form.simple .grid button {
    margin: 0px;
    grid-column: 2 / 3; 
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

form.simple .grid button:active {
    filter: brightness(0.75);
    transition: all 0.1s ease 0s;
}

form.simple .grid .button-align {
    grid-column-start: 2;
    width: 240px;
    text-align: center;
}

@media (max-width: 500px) {
    form.simple .grid button[type='submit'] {
        margin: auto;
        grid-column: 1 / -1; 
    }

    form.simple .grid .button-align {
        margin: auto;
        grid-column: 1 / -1; 
    }
}

form.simple select[multiple] {
    font-family: var(--text-font-condensed);
    text-align: center;
    font-size: 20px;
    padding: 10px;
    width: 100%;
    /* min-height: 450px; */
}

form.simple select {
    font-family: var(--text-font-condensed);
    text-align: center;
    font-size: 20px;
    padding: 10px;
    width: 100%;
    /* min-height: 450px; */
}

form.checkboxes {
    margin: 30px auto 20px auto !important;
    text-align: center;
    max-width: 750px;
}

form.checkboxes label {
    font-size: 18px;
    font-variation-settings: 'wght' 400, 'ital' 1;
}

form.checkboxes button[type='submit'] {
    display: block;
    font-family: var(--text-font);
    font-variation-settings: 'wght' 700, 'ital' 1;
    font-size: 20px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border: 1px solid white;
    outline: none;
    background: darkorchid;
    color: white;
    padding: 10px 20px;
    margin: auto;
    margin-top: 30px;
}

form.checkboxes input[type='checkbox'] {
    -webkit-appearance: none;
    border-radius: 2px;
    background-color: #fff;
    height: 28px;
    width: 28px;
    border: 2px solid #c1c1c1;
    padding: 2px;
    font-size: 24px;
    font-variation-settings: 'wght' 700, 'ital' 1;
    position: relative;
    margin-bottom: -7px;
    margin-left: 12px;
}

form.checkboxes input[type='checkbox']:hover {
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.15);
    border-color: #a9a9a9;
}

form.checkboxes input[type='checkbox']:checked:after {
    content: "";
    width: 32px;
    height: 32px;
    position: absolute;
    left: 2px;
    bottom: -1px;
    color: #41c1bc;
    transition: all 0.2s;
    background-image: url("../icons/ghz_icon_checkmark.dfcbd45f049b.svg");
    background-repeat: no-repeat; 
}

#text pre {
    overflow: scroll;
    text-align: left;
    font-size: 12px;
    color: darkorchid;
    background: whitesmoke;
    padding: 10px;
}

/* https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php */

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	/* padding-top: 25px; */
    height: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ghz-inline-control {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.ghz-play {
    background-image: url("../icons/ghz_icon_play.bd2c2e86e9b5.svg");
    background-position-y: 3px;
}

.ghz-pause {
    background-image: url("../icons/ghz_icon_pause.c9bb3c655747.svg");
    background-position-y: 3px;
}

.audio-span audio {
    display: none;
}

.audio-span .sep-title.webaudio {
/*font-size: 80%;*/
padding: 0 0px 0 0;
display: inline-block;
border-radius: 4px;
/*box-shadow: 0 0 2px rgba(0,0,0,0.2);*/
position: relative;
cursor: pointer;
/*border: 1px solid #ddd;*/
/*background: white;*/
color: dodgerblue;
margin: 0 1px;
line-height: 161%;
text-indent: 0;
}

.webaudio .progress {
position: absolute;
background: black;
opacity: 0.3;
height: 100%;
width: 40px;
top: 0;
left: 0;
display: none;
}

.webaudio i.fa {
margin-right: 0.5em;
opacity: 0.9;
width: 12px;
text-align: center;
}

.footnote {
    font-size: 0.8em;
}

sup {
    vertical-align: baseline;
}

#content .footnote-ref {
    display: inline-block;
    padding: 0 6px;
    margin: 0 0 0 3px;
    font-size: 0.8em;
    line-height: 150%;
    font-variation-settings: 'wght' 700;
    border: 1px solid #eee;
    background: whitesmoke;
    border-radius: 100%;
    text-decoration: none;
}

.warning-box {
    background: deeppink;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    text-align: center;
    color: white;
}

.warning-box .warnings {
    max-width: 800px;
    color: white;
    margin: auto auto;
    padding: 10px 0;
    list-style: none;
    text-align: center;
    font-size: 16px;
    font-variation-settings: 'wght' 400, 'ital' 1;
}

.warning-box h3 { margin-bottom: 10px; }
.warning-box h4 { margin-top: 10px; }

.warning-box ul {
    list-style: none;
}

.message-box {
    background: darkorchid;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.message-box .messages {
    max-width: 500px;
    color: white;
    margin: auto auto;
    padding: 6px 0;
    list-style: none;
    text-align: center;
    font-size: 1.1em;
    font-variation-settings: 'wght' 400, 'ital' 1;
}

.sale-banner {
    border: 5px solid white;
    border-top: none;
    border-left: none;
    border-right: none;
    color: rgb(150, 90, 125);
    background: rgba(255, 0, 120, 0.2);
    background: rgb(150, 60, 145);
    border-color: rgb(100, 30, 125);
    /* color: white; */
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    z-index: 0;
    position: relative;
    padding: 20px 25px;
    font-variation-settings: 'wght' 400, 'ital' 1;
    text-align: center;
    font-size: 1.1em;
}

.sale-banner hr {
    border-color: rgba(0,0,0,0.1);
    padding: 0;
    margin: 8px 20px 3px;
}

.wave {
    margin-top: 30px;
    margin-bottom: 30px;
    height: 20px;
}

.wave canvas {
    height: 50px;
    width: 80px;
    margin: auto auto;
    display: block;
}

#content .free-trial-notice {
    text-align: center;
    font-variation-settings: 'wght' 400, 'ital' 1;
    background: whitesmoke;
    color: #333;
    padding: 20px;
    margin: 0;
    /* display: none; */
}

#content .more-videos {
    text-align: center;
    padding: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-variation-settings: "wght" 300;
}

.ghz-icon {
    max-width: 100px;
    display: block;
    margin: auto auto;
}

#mce-success-response { 
    color: seagreen;
}

#mce-error-response {
    color: firebrick;
}

#text.testimonials .preamble {
    font-variation-settings: 'wght' 400, 'ital' 1;
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 50px;
}

#text .sidebar .toc li {
    margin-bottom: 0px;
}

#text .sidebar .toc li a {
    border: none;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    padding: 5px;
}

#text.testimonials .sidebar .toc li a:hover {
    color: hsl(220, 80%, 50%);
}

#text.testimonials .testimonial {
    padding-top: 40px;
    margin-bottom: 40px;
    border-top: 1px dashed #ccc;
}

#text.testimonials .testifier-link {
    font-variation-settings: 'wght' 700, 'ital' 0;
    font-size: 150%;
    display: block;
    margin-bottom: 8px;
}

#text.testimonials .bio {
    font-variation-settings: 'wght' 400, 'ital' 1;
    font-size: 14px;
    color: #555;
    text-align: left;
    margin-bottom: 20px;
    max-width: 400px;
    display: block;
}

#text.testimonials .quotation {
    font-size: 120%;
}

.embedded-screenshot {
    display: block;
    margin: auto auto;
    /* margin: 10px 10px 10px -20px; */
}

.embedded-screenshot a {
    display: block;
    width: 100%;
}

.embedded-screenshot .caption {
    margin-top: -10px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 90%;
    font-variation-settings: 'wght' 400, 'ital' 1;
    text-align: right;
}

.embedded-screenshot img {
    display: block;
    width: 100%;
}

/* #international-users {
    margin-top: 100px;
} */

.mfp-figure:after {
    background: transparent !important;
    box-shadow: none !important;
}