
:root {
    --primary: #0b4396;
    --primary-rgb: 11, 67, 150;
    --primary-active: #0f3264;
    --primarybsig: #6aa193;
    --secondary: #00b8ee;
    --secondary-rgb: 0, 184, 238;
    --secondary-active: #0b86ab;
    --secondarybsig: #4a3781;
    --tertiary: #002c6e;
    --tertiary-rgb: 0, 44, 110;
    --tertiary-active: #0d2446;
}

/*-----------------------------------------------------------------------------------------------*/

h1 {
    margin: 1rem 0rem;
    font-size: 2.5rem;
    line-height: 1.2em;
    color: var(--primary);
}

h2 {
    margin: 1rem 0rem;
    font-size: 2rem;
    line-height: 1.2em;
    color: var(--secondary);
}

h3 {
    margin: 1rem 0rem;
    font-size: 1.7rem;
    line-height: 1.2em;
    color: var(--tertiary);
}

h4 {
    margin: 1rem 0rem;
    font-size: 1.3rem;
    line-height: 1.2em;
}

h5 {
    margin: 14px 0px;
    font-size: 1.2rem;
    line-height: 1.2em;
}

h6 {
    margin: 14px 0px;
    font-size: 1.1rem;
    line-height: 1.2em;
}

p {
    margin: 1rem 0rem;
}

.notice {
    clear: both;
    padding: 10px 15px;
    font-weight: 600;
    background-color: #D8D8D8;
}

.notice a {
    text-decoration: underline;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
p:first-child {
    margin-top: 0px;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
    margin-bottom: 0px;
}

/*--------------------------------------------*/

a:link,
a:active,
a:visited {
    text-decoration: none;
}

a.btn.btn-primary,
a.btn.btn-secondary,
a.btn.btn-danger,
a.btn.btn-warning,
a.btn.btn-info,
a.btn.btn-success {
    color: white;
}

a {
    color: var(--secondary);
    transition: color 0.3s linear;
}

a:focus,
a:hover {
    color: var(--primary);
}

h1 a:not([href]),
h2 a:not([href]),
h3 a:not([href]),
h4 a:not([href]),
h5 a:not([href]),
h6 a:not([href]) {
    color: inherit;
}

h1 a:not([href]):hover,
h2 a:not([href]):hover,
h3 a:not([href]):hover,
h4 a:not([href]):hover,
h5 a:not([href]):hover,
h6 a:not([href]):hover {
    text-decoration: none;
}

a.external_link:after {
    position: relative;
    display: inline-block;
    content: "\e164";
    top: 1px;
    padding-left: 5px;
    font-weight: 400;
    font-style: normal;
    font-size: 0.9em;
    line-height: 1em;
    font-family: 'Glyphicons Halflings';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a.pdf,
a.word,
a.ppt,
a.video,
a.document,
a.audio {
    display: inline-block;
    padding-left: 22px;
}

a.pdf {
    background: url("../../images/pdf.png") left 2px no-repeat;
}

a.word {
    background: url("../../images/icon_doc.png") left 2px no-repeat;
}

a.ppt {
    background: url("../../images/icon_ppt.png") left 2px no-repeat;
}

a.video {
    background: url("../../images/icon_youtube.png") left 2px no-repeat;
}

a.document {
    background: url("../../images/icon_document.png") left 2px no-repeat;
}

a.audio {
    background: url("../../images/icon_audio.png") left 2px no-repeat;
}

.btn_block {
    clear: both;
    display: block;
    float: none;
}

a.link_block {
    clear: both;
    position: relative;
    display: block;
    margin-top: 5px;
    padding: 8px 15px;
    text-decoration: none;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

a.link_block:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

a.link_block .glyphicon-chevron-right,
a.link_block_lg .glyphicon-chevron-right,
a.link_block_md .glyphicon-chevron-right,
a.link_block_sm .glyphicon-chevron-right,
a.link_block_xs .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -0.5em;
}

/*--------------------------------------------*/

[class*="btn-"]:not(.btn-group) {
    position: relative;
    padding: 8px 15px;
    margin: 0;
    text-decoration: none !important;
    display: inline-block;
    color: #fff;
    border: 0;
    border-radius: 0;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.2em;
    z-index: 1;
    text-shadow: none;
    box-shadow: none;
    transition: background 0.3s linear, color 0.3s linear;
}

[class*="btn-"]:not(.btn-group):hover,
[class*="btn-"]:not(.btn-group):focus {
    color: #fff !important;
}

.btn-primary {
    background: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-active);
}

.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary[disabled] {
    background-color: rgba(var(--primary-rgb), 0.75);
    border-color: rgba(var(--primary-rgb), 0.75);
}

.btn-default {
    background: var(--secondary);
}

.btn-default:hover,
.btn-default:focus {
    background: var(--secondary-active);
}

.btn-default.disabled,
.btn-default:disabled,
.btn-default[disabled] {
    background-color: rgba(var(--secondary-rgb), 0.75);
    border-color: rgba(var(--secondary-rgb), 0.75);
}

.btn-success {
    background: var(--tertiary);
}

.btn-success:hover,
.btn-success:focus {
    background: var(--tertiary-active);
}

.btn-success.disabled,
.btn-success:disabled,
.btn-success[disabled] {
    background-color: rgba(var(--tertiary-rgb), 0.75);
    border-color: rgba(var(--tertiary-rgb), 0.75);
}

.btn-danger {
    background: #c9302c;
}

.btn-danger:hover,
.btn-danger:focus {
    background: #9b1815;
}

.btn-secondary {
    background: var(--secondary);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--secondary-active);
}

.btn-secondary.disabled,
.btn-secondary:disabled,
.btn-secondary[disabled] {
    background-color: rgba(var(--secondary-rgb), 0.75);
    border-color: rgba(var(--secondary-rgb), 0.75);
}

/*--------------------------------------------*/

.clearer {
    clear: both;
    height: 0px;
    overflow: hidden;
    font-size: 0px;
    line-height: 0px;
}

.clear:after {
    content: " ";
    clear: both;
    display: block;
}

hr {
    height: 1px;
    overflow: hidden;
    color: var(--secondary);
    border: none;
    background-color: var(--secondary);
}

.popover {
    min-width: 300px;
}

/*--------------------------------------------*/

.spacing {
    margin-top: 15px;
    margin-bottom: 15px;
}

.spacing_top {
    margin-top: 15px;
}

.spacing_bottom {
    margin-bottom: 15px;
}

.padding {
    padding-left: 15px;
    padding-right: 15px;
}

.padding_left {
    padding-left: 15px;
}

.padding_right {
    padding-right: 15px;
}

.padding_top {
    padding-top: 15px;
}

.padding_bottom {
    padding-bottom: 15px;
}

.nopadding {
    padding: 0px;
}

.nopadding_right {
    padding-right: 0px;
}

.nopadding_left {
    padding-left: 0px;
}

/*--------------------------------------------*/

.push_right {
    float: right;
}

.push_left {
    float: left;
}

/*--------------------------------------------*/

img.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 4px;
    display: block;
}

img.aligncenter {
    text-align: center;
    margin: 1em auto 5px auto;
    clear: both;
    display: block;
}

img.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 4px;
    display: block;
}

img.fullwidth {
    margin: 0px;
    display: block;
}

img.drop_shadow {
    border: 1px solid #AAAAAA;
    -webkit-box-shadow: 5px 5px 5px #AAAAAA;
    -moz-box-shadow: 5px 5px 5px #AAAAAA;
    box-shadow: 5px 5px 5px #AAAAAA;
}

/*--------------------------------------------*/

.section {
    padding-bottom: 50px;
    padding-top: 50px;
}

.section header {
    margin-bottom: 25px;
}

/*--------------------------------------------*/

[data-twttr-id] .twitterborderhide {
    position: relative;
    top: -6px;
    border-top: 1px solid #fff;
}

/*-----------------------------------------------------------------------------------------------*/

html {
    font-size: 16px;
}

body {
    margin: 0px;
    color: #000000;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.5em;
    font-family: 'Barlow', Helvetica, Arial, Sans-Serif;
    min-height: 100vh;
}

body > form {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.blur {
    -webkit-filter: blur(7px);
    -moz-filter: blur(7px);
    filter: blur(7px);
}

.page_inset {
    padding: 30px;
    background-color: #FFFFFF;
    border: 1px solid rgba(156, 175, 176, 0.8);
}

/*-----------------------------------------------------------------------------------------------*/

.alert-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    background: #000;
    color: #fff;
    padding: .75em;
    text-align: center;
    gap: 1.5em;
    z-index: 1;
}

.alert-bar a {
    color: #fff;
    font-weight: bold;
}

.alert-bar .btn + .btn {
    margin-left: 5px;
}

    .alert-bar.updates {
        background-color: #6aa193;
/*        position:absolute;*/
    }

/*-----------------------------------------------------------------------------------------------*/

#back-to-top {
    position: fixed;
    bottom: 0;
    right: 15px;
    z-index: 9999;
    text-align: center;
    line-height: 30px;
    background: var(--secondary);
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 0;
    text-decoration: none;
    padding: 5px 15px;
    opacity: 0;
    box-shadow: 1px 0px 2px #fff;
    -webkit-box-shadow: 1px 0px 2px #fff;
    -moz-box-shadow: 1px 0px 2px #fff;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

#back-to-top:hover {
    background: var(--primary);
    padding: 5px 15px 15px;
}

#back-to-top.show {
    opacity: 1;
}

#back-to-top > span {
    position: relative;
    transform: rotate(90deg);
}

/*-----------------------------------------------------------------------------------------------*/

#header {
    position: sticky;
    padding: 30px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75), transparent);
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

#header.compressed {
    background: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0.25));
}

#header .container {
    position: relative;
}

#header .header-container {
    display: flex;
}

#header .header-container > .header-container-col {
    display: flex;
    align-items: center;
    flex: 1;
}

#header .logo {
    margin: 0;
    z-index: 99;
}

#header .header-content {
    width: 100%;
}

    #header .header-description {
        padding: 0 0 30px;
        text-align: right;
        font-size: 1.5rem;
        line-height: 1.2em;
        display: flex;
        justify-content: end;
        gap: 10px;
    }

#header .header-actions {
    width: 100%;
    text-align: right;
}

#header .header-actions > .btn + .btn {
    margin: 0 0 0 5px;
}

#header a:not([class*="btn-"]) {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s linear;
}

#header a:not([class*="btn-"]):hover {
    color: var(--secondary);
}

/*-----------------------------------------------------------------------------------------------*/

#wrapper {
    flex-grow: 1;
}

#page {
    margin: -182px 0 0;
}

#content {
    margin-top: 30px;
    min-height: 400px;
}

/*-----------------------------------------------------------------------------------------------*/

.interactive-panels-container {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    overflow: hidden;
}

.interactive-panel {
    position: relative;
    flex-grow: 1;
    width: 25%;
    height: 700px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    cursor: pointer;
    transition: all 0.3s linear;
}

.interactive-panel:nth-child(odd) {
    background-color: rgba(var(--primary-rgb), 0.2);
}

.interactive-panel:nth-child(even) {
    background-color: rgba(var(--primary-rgb), 0.3);
}

.interactive-panel .interactive-panel-body {
    position: relative;
    padding: 30px;
    text-align: left;
    min-height: 250px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.interactive-panel .interactive-panel-body::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: background 0.3s linear;
}

.interactive-panel:hover .interactive-panel-body::after,
.interactive-panel.active .interactive-panel-body::after {
    background: rgba(0, 0, 0, 0.5);
}

.interactive-panel .interactive-panel-body .interactive-panel-link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
}

.interactive-panel .interactive-panel-body .interactive-panel-body-content {
    z-index: 9;
}

.interactive-panel .interactive-panel-body .interactive-panel-body-content h2 {
    font-size: 2rem;
    line-height: 1.2em;
    margin: 15px 0;
    color: #fff;
    width: calc(25vw - 60px);
}

.interactive-panel .interactive-panel-body .interactive-panel-body-content .interactive-panel-body-snippet {
    max-height: 0;
    overflow: hidden;
    color: #fff;
}

.interactive-panel .interactive-panel-body .interactive-panel-body-content .interactive-panel-body-snippet p {
    width: calc(45vw - 60px);
}

.interactive-panel .interactive-panel-body .interactive-panel-body-content .interactive-panel-body-snippet a {
    z-index: 9;
}

/*-----------------------------------------------------------------------------------------------*/

.intro-section {
    position: relative;
    padding: 30px 0;
    margin: -30px 0 0;
    background: #f5f5f5;
}

.intro-section p {
    font-size: 1.5rem;
    line-height: 1.2em;
}

.intro-section-banner {
    position: relative;
    padding: 15px 15px 15px 25%;
    background-image: url(../../images/lovegumBanner.png);
    min-height: 180px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--primary);
    max-width: 1000px;
    margin: 30px auto 0;
}

.intro-section-banner div:nth-child(2) {
    padding: 0 0 0 68px;
}

.intro-section-banner div:nth-child(3) {
    padding: 0 0 0 260px;
}

/*.intro-section-banner div:nth-child(2) span,
.intro-section-banner div:nth-child(3) span {
    font-size: 2.8rem;
}*/

.intro-section-banner .btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.intro-section-banner span {
    color: var(--primary);
    font-size: 2.8rem;
    line-height: 1.2em;
    font-weight: 600;
}

.journals-section {
    position: relative;
    padding: 30px 0;
    background: #f5f5f5;
}

.journals-section h2 {
    font-size: 2rem;
    line-height: 1.2em;
    color: var(--primary);
    text-align: center;
}

.journals-section .glyphicon {
    margin: 0 0 0 5px;
}

.journals-section .journals-section-journal {
    display: flex;
    gap: 30px;
    margin: 15px 0;
}

.journals-section .journals-section-journal > .journals-section-journal-body {
    flex: 1 0 calc(60% - 15px);
}

.social-section {
    position: relative;
    padding: 30px 0;
    text-align: center;
}

.social-section h2 {
    font-size: 2rem;
    line-height: 1.2em;
    color: #000;
    margin: 0 0 30px;
}

.social-section h2 strong {
    color: var(--primary);
    font-weight: 400;
}

.social-section .social + .social {
    margin: 0 0 0 5px;
}

.social-section .social svg {
    transition: fill 0.3s linear;
}

.social-section .social:nth-child(1) svg {
    fill: #1877f2;
}

.social-section .social:nth-child(2) svg {
    fill: #007bb5;
}

.social-section .social:nth-child(3) svg {
    fill: #1da1f2;
}

.social-section .social:hover svg {
    fill: var(--secondary);
}

.membership-section {
    position: relative;
    margin: 0 0 -30px;
    background: var(--primary);
    color: #fff;
}

.membership-section h1,
.membership-section h2,
.membership-section h3,
.membership-section h4 {
    color: #fff;
}

.membership-section .btn {
    font-size: 1.5rem;
    margin: 0 0 0 30px;
}

#content .membership-section ul.tick-list li::before {
    background-image: url(../../images/tick_w.png);
}

.membership-section .membership-section-container {
    padding: 30px 0 30px 330px;
    background: url(../../images/member_section.png);
    background-repeat: no-repeat;
    background-position: left top 15px;
    background-size: 300px auto;
    min-height: 300px;
}

.membership-icon {
    width: 100%;
    height: 70px;
   
}

/*-----------------------------------------------------------------------------------------------*/

.lower-banner {
    position: relative;
    left: 0;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    flex-direction: column-reverse;
    background-color: rgba(var(--primary-rgb), 0.2);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.lower-banner::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(var(--primary-rgb), 0.5);
}

.lower-banner .container {
    position: relative;
    z-index: 9;
}

.lower-banner .container h1,
.lower-banner .container p,
.lower-banner .container span {
    padding: 15px 0;
    margin: 0;
    display: block;
    color: #fff;
    font-size: 3rem;
    line-height: 1.2em;
}

.lower-banner .image_upload {
    width: 100%;
}

.lower-banner .image_upload_instructions {
    z-index: 999;
}

/*-----------------------------------------------------------------------------------------------*/

.breadcrumb {
    padding: 0px;
    background-color: transparent;
}

.breadcrumb > li + li:before {
    color: #000000;
}

.breadcrumb > .active {
    color: #000000;
}

/*-----------------------------------------------------------------------------------------------*/

.expandable {
    clear: both;
    margin-bottom: 15px;
}

.expandable_heading .expandable_title {
    margin: 0px;
    color: #FFFFFF !important;
    text-align: center;
}

.expandable_heading .expandable_title a {
    display: block;
    padding: 10px;
    color: #FFFFFF !important;
    text-decoration: none;
}

.expandable_heading .expandable_title a.collapsed {
    background: none;
}

.expandable_heading .expandable_title a,
.expandable_heading .expandable_title a.collapsed:hover {
    background: rgba(0, 0, 0, 0.2);
}

.expandable_heading .expandable_title .glyphicon {
    float: right;
    transition: transform 0.5s;
    transform: rotate(180deg);
}

.expandable_heading .expandable_title .collapsed .glyphicon {
    transform: rotate(0deg);
}

.expandable_collapse {
    overflow: hidden;
}

.expandable_body {
    padding: 15px;
    font-size: 0.9em;
}

.expandable_body h3.media-heading a {
    color: #000000;
}

/*--------------------------------------------*/

.editable_expandable {
    clear: both;
    margin: 15px 0px;
}

.editable_expandable .expandable_heading,
.editable_expandable .expandable_heading .expandable_title,
.editable_expandable .expandable_heading .expandable_title a {
    background: #F1F1F1 !important;
    color: #444444 !important;
}

.editable_expandable .expandable_heading {
    padding: 10px;
}

.editable_expandable .expandable_heading h4 {
    margin: 0px;
}

.editable_expandable .expandable_title {
    text-align: left;
}

.editable_expandable .expandable_body {
    font-size: 1em;
    border: 1px dashed #CCCCCC;
}

.editable_expandable .expandable_body > :first-child {
    margin-top: 0px;
}

/*--------------------------------------------*/

.master_lower .editable_expandable .expandable_heading,
.lmeditor_inline .editable_expandable .expandable_heading {
    padding: 0px;
}

.master_lower .editable_expandable .expandable_body,
.lmeditor_inline .editable_expandable .expandable_body {
    border: none;
}

/*-----------------------------------------------------------------------------------------------*/

#footer {
    margin: 30px 0 0;
    padding: 30px 0;
    color: #FFFFFF;
    background-color: var(--tertiary);
}

#footer .footer-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

#footer .footer-container + .footer-container {
    padding: 15px 0 0;
}

#footer .footer-container > .footer-container-col {
    flex: 1;
}

#footer .footer-item a {
    color: rgba(var(--secondary-rgb), 0.8);
}

#footer .footer-item + .footer-item {
    margin: 0 0 0 20px;
}

#footer .footer-options {
    text-align: right;
    font-weight: 700;
}

#footer .footer-socials {
    padding: 15px 0 0;
    text-align: right;
}

#footer .footer-social {
    display: inline-block;
    line-height: 1rem;
}

#footer .footer-social + .footer-social {
    margin: 0 0 0 5px;
}

#footer .footer-social svg {
    fill: #FFFFFF;
    transition: fill 0.3s linear;
}

#footer .footer-social:hover svg {
    fill: var(--secondary);
}

#footer a {
    color: #FFFFFF;
    text-decoration: none;
}

#footer a:hover {
    color: var(--secondary);
}

/*-----------------------------------------------------------------------------------------------*/

.invoice .remove_for_print .btn {
    margin-bottom: 5px;
}