/*tidy up bullet list indents etc*/
body .entry-content ul 
{
    margin-left: 4px;
}

/* add to row with equal column height to vertially center in visual builder */
.ds-vertical-align {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*add this class to get rid of borders on tables*/
.dyg-table tr td,.dyg-table table, .dyg-table td, .dyg-table th, .dyg-table tr {
    border: none !important;
    table-layout: auto;
    border-collapse: collapse;
    width: auto !important;
    padding-left: 0px !important;
    vertical-align: middle;
}

/* dynamically resize the menu font to fit when screen sizes are smaller.  Need to adjust the max-width based on menu size and 450px to width of logo*/
@media only screen and (min-width: 981px) and (max-width: 1333px)  {
    #top-menu li a {
        font-size: calc(calc(100vw - 450px) / 50);
    }
}
/*fixes the search icon crashing into menu issue*/
button.et_pb_menu__icon{ 
  padding-left: 11px;
}


body blockquote {
    background: var(--dygiphy-theme-color-extra-extra-light);
    border-left: 10px solid var(--dygiphy-theme-color);
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C""\201D""\2018""\2019";
}
body blockquote:before {
    content: open-quote;
    font-family: serif;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    color: var(--dygiphy-theme-color-dark);
    vertical-align: bottom;
    top: 0.1em;
    position: relative;
}
body blockquote:after {
    content: close-quote;
    font-family: serif;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    color: var(--dygiphy-theme-color-dark);
    vertical-align: bottom;
    top: 0.1em;
    position: relative;
}
body blockquote p {
    display: inline;
}

/*force svg meny logos in divi builder to 100% of container size.  Size can be modified using the builder max-width slider.*/
.et_pb_menu__logo img {
    /*width: 100%*/
}
/*right align menu text to container*/
.et_pb_menu .et_pb_menu__wrap {
    /*justify-content: flex-end;*/
}

/*force hamburger to be centered below 980*/
@media (max-width: 980px) {
    .dyg-center-hamburger .et_pb_menu__wrap {
        justify-content: center !important;
    }
}

.grecaptcha-badge {
    display:none !important;
}