
:root {
    /* Text size scale */
    /* https://www.fluid-type-scale.com/calculate?minFontSize=20&minWidth=320&minRatio=1.25&maxFontSize=22&maxWidth=1280&maxRatio=1.333&steps=6%2C5%2C4%2C3%2C2%2C1%2Ctitle&baseStep=4&prefix=h&decimals=2&useRems=on&remValue=16&previewFont=Inter&previewText=Almost+before+we+knew+it%2C+we+had+left+the+ground&previewWidth=900 */
    --text-xs: clamp(0.79rem, -0.01vw + 0.79rem, 0.78rem);
    --text-s: clamp(0.89rem, 0.08vw + 0.87rem, 0.94rem);
    --text-m: clamp(1rem, 0.21vw + 0.96rem, 1.13rem);
    --text-l: clamp(1.13rem, 0.37vw + 1.05rem, 1.35rem);
    --text-xl: clamp(1.27rem, 0.59vw + 1.15rem, 1.62rem);

    /* Heading size scale */
    /* https://www.fluid-type-scale.com/calculate?minFontSize=16&minWidth=320&minRatio=1.125&maxFontSize=18&maxWidth=1280&maxRatio=1.2&steps=xs%2Cs%2Cm%2Cl%2Cxl&baseStep=m&prefix=text&decimals=2&useRems=on&remValue=16&previewFont=Inter&previewText=Almost+before+we+knew+it%2C+we+had+left+the+ground&previewWidth=900 */
    --h6: clamp(0.8rem, -0.04vw + 0.81rem, 0.77rem);
    --h5: clamp(1rem, 0.05vw + 0.99rem, 1.03rem);
    --h4: clamp(1.25rem, 0.21vw + 1.21rem, 1.38rem);
    --h3: clamp(1.56rem, 0.45vw + 1.47rem, 1.83rem);
    --h2: clamp(1.95rem, 0.82vw + 1.79rem, 2.44rem);
    --h1: clamp(2.44rem, 1.36vw + 2.17rem, 3.26rem);
    --h-title: clamp(3.05rem, 2.15vw + 2.62rem, 4.34rem);
}

.my-0 {
    margin-top: 0!important;
    margin-bottom: 0!important;
}
.my-1 {
    margin-top: 0.25rem!important;
    margin-bottom: 0.25rem!important;
}
.my-2 {
    margin-top: 0.5rem!important;
    margin-bottom: 0.5rem!important;
}
.my-3 {
    margin-top: 1rem!important;
    margin-bottom: 1rem!important;
}
.my-4 {
    margin-top: 1.5rem!important;
    margin-bottom: 1.5rem!important;
}
.my-5 {
    margin-top: 3rem!important;
    margin-bottom: 3rem!important;
}
.mt-0 {
    margin-top: 0!important;
}
.mt-1 {
    margin-top: 0.25rem!important;
}
.mt-2 {
    margin-top: 0.5rem!important;
}
.mt-3 {
    margin-top: 1rem!important;
}
.mt-4 {
    margin-top: 1.5rem!important;
}
.mt-5 {
    margin-top: 3rem!important;
}
.mb-0 {
    margin-bottom: 0!important;
}
.mb-1 {
    margin-bottom: 0.25rem!important;
}
.mb-2 {
    margin-bottom: 0.5rem!important;
}
.mb-3 {
    margin-bottom: 1rem!important;
}
.mb-4 {
    margin-bottom: 1.5rem!important;
}
.mb-5 {
    margin-bottom: 3rem!important;
}
.px-0 {
    padding-right: 0!important;
    padding-left: 0!important;
}
.px-1 {
    padding-right: 0.25rem!important;
    padding-left: 0.25rem!important;
}
.px-2 {
    padding-right: 0.5rem!important;
    padding-left: 0.5rem!important;
}
.px-3 {
    padding-right: 1rem!important;
    padding-left: 1rem!important;
}
.px-4 {
    padding-right: 1.5rem!important;
    padding-left: 1.5rem!important;
}
.px-5 {
    padding-right: 3rem!important;
    padding-left: 3rem!important;
}
.pt-0 {
    padding-top: 0!important;
}
.pt-1 {
    padding-top: 0.25rem!important;
}
.pt-2 {
    padding-top: 0.5rem!important;
}
.pt-3,.py-3 {
    padding-top: 1rem!important;
}
.pt-4 {
    padding-top: 1.5rem!important;
}
.pt-5 {
    padding-top: 3rem!important;
}
.pr-0, .px-0 {
    padding-right: 0 !important;
}
.pb-0 {
    padding-bottom: 0!important;
}
.pb-1 {
    padding-bottom: 0.25rem!important;
}
.pb-2 {
    padding-bottom: 0.5rem!important;
}
.pb-3,.py-3 {
    padding-bottom: 1rem!important;
}
.pb-4 {
    padding-bottom: 1.5rem!important;
}
.pb-5 {
    padding-bottom: 3rem!important;
}
.w-100 {
    width: 100% !important;
}

/* Site Wrapper */
.site-wrapper {
    width: 100%;
    max-width: 1920px;
    margin-inline: auto;
}

.ar-16-9 {
    aspect-ratio: 16/9;
}
.ar-9-16 {
    aspect-ratio: 9/16;
}
.ar-4-3 {
    aspect-ratio: 4/3;
}
.ar-3-4 {
    aspect-ratio: 3/4;
}
.ar-1-1 {
    aspect-ratio: 1/1;
}
a {
    color: inherit;
}
a, a:hover, a:focus, a:active {
    text-decoration-thickness: 1px;
}
a img {
    display: block;
}
.d-block {
    display: block;
}
.d-inline-block {
    display: inline-block;
}
.d-flex {
    display: flex;
}
.font-weight-bold {
    font-weight: bold;
}
.align-items-center {
    align-items: center;
}
.justify-content-space-between {
    justify-content: space-between;
}
.text-right {
    text-align: right !important;
}
.text-center {
    text-align: center !important;
}

/* Visually Hidden */
.visually-hidden:not(:focus):not(:active) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}
.d-none {
    display: none !important;
}
/* No Underline */
.no-ul, .no-ul a {
    text-decoration: none;
}

input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
    border-radius: 3px;
}

.site-header .header-image {
    max-width: 304px;
    width: 100%;
}
#site-navigation {
    margin-bottom: 24px;
}
#site-navigation ul.sub-menu {
    display: block;
}
#site-navigation li:hover .gp-icon svg {
    transform: rotate(180deg);
}
#site-navigation li:hover .sub-menu {
    visibility: visible;
}

/* Remove bottom margin on last paragraph */
.gb-container p:last-child:last-of-type {
    margin-bottom: 0px;
}
.block-editor-block-list__layout .gb-container p:nth-last-child(2) {
    margin-bottom: 0px;
}
.separate-containers .inside-article, .separate-containers .comments-area, .separate-containers .page-header,
.separate-containers .paging-navigation, .one-container .site-content, .inside-page-header {
    /*padding-left: 20px;*/
    /*padding-right: 20px;*/
}
.archive #main .generate-columns-container {
    margin-left: -24px;
}
.archive #main .generate-columns-container .generate-columns {
    padding-left: 24px;
}

.lazy-bg-img, .lazy-bg-img.elementor-widget-spacer > .elementor-widget-container,
.lazy-bg-img.elementor-inner-column > .elementor-widget-wrap {
    background-image: none !important;
}

.inside-navigation .menu-bar-items, .upcoming-event-venue {
    display: none;
}
nav.slideout-navigation .inside-navigation {
    padding-top: 80px !important;
}
nav.slideout-navigation.do-overlay .slideout-menu li a {
    display: block;
    text-align: left;
}
nav.slideout-navigation.do-overlay .slideout-exit {
    font-size: 16px;
    position: absolute;
    top: 12px;
}
.slideout-navigation .wp-block-search {
    margin-bottom: 16px;
}
.slideout-navigation .wp-block-search__label, .gb-navigation--mobile .wp-block-search__label {
    display: none;
}
.slideout-navigation .wp-block-search input {
    border-radius: 3px;
}
.slideout-navigation .wp-block-search__button, .gb-navigation--mobile .wp-block-search__button {
    border-radius: 3px;
    background-color: #00040a;
    font-weight: 700;
}
nav.gb-navigation--mobile .gb-menu li {
    width: 100%;
}
.wpforms-form button[type=submit] {
    font-family: Raleway, sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-transform: uppercase;
    padding: 16px 32px !important;
    height: auto !important;
}
.rank-math-breadcrumb p {
    margin-bottom: 0;
}
.separate-containers.archive .site-main>.generate-columns-container {
    padding-left: 10px;
    padding-right: 10px;
}
.site-main .load-more {
    margin-top: 8px;
    margin-bottom: 32px !important;
}
.formFieldContainer {
    display: flex;
    gap: 10px 20px;
    flex-wrap: wrap;
}
.alm-listing.alm-ajax {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sf-custom-fields .form-row .list-item input, .sf_registration_form_agreement input {
    float: left;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-top: 2px;
}
.sf-custom-fields .form-row .list-item-label, .sf_registration_form_agreement label {
    display: block;
    padding-left: 24px;
    vertical-align: middle;
}
#leaky-paywall-account-wrapper {
    gap: 20px;
}
.leaky-paywall-account-navigation-wrapper, #leaky-paywall-account-wrapper .leaky-paywall-account-navigation-wrapper {
    background: #fff;
}
.leaky-paywall-account-navigation-wrapper ul {
    border: 1px solid var(--sky-blue);
    margin: 0;
    padding: 0;
    list-style: none;
}
.leaky-paywall-account-navigation-wrapper a,
#leaky-paywall-account-wrapper .leaky-paywall-account-navigation-wrapper a {
    color: #000;
    background: #fff;
    padding: 16px 20px;
    display: block;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
.leaky-paywall-account-navigation-wrapper a.active,
#leaky-paywall-account-wrapper .leaky-paywall-account-navigation-wrapper a.active {
    color: #ffffff;
    background: var(--sky-blue);
}
.leaky-paywall-account-navigation-wrapper a:hover,
#leaky-paywall-account-wrapper .leaky-paywall-account-navigation-wrapper a:hover {
    background: var(--sky-blue);
    color: #ffffff;
}
#loginform input[type=submit], .leaky-paywall-payment-button a, .sfFormWrap input[type=submit],
form .leaky-paywall-checkout-button button[type=submit], #leaky-paywall-registration-next,
#leaky-paywall-account-edit-profile-form input[type=submit], .sf_newsletter_preferences_wrap input[type=submit] {
    background-color: var(--sky-blue);
    color: var(--white);
    padding: 12px 48px;
    border-radius: 3px;
}
#loginform input[type=submit]:hover, #loginform input[type=submit]:focus,
.leaky-paywall-payment-button a:hover, .leaky-paywall-payment-button a:focus,
.sfFormWrap input[type=submit]:hover, .sfFormWrap input[type=submit]:focus,
form .leaky-paywall-checkout-button button[type=submit]:hover, form .leaky-paywall-checkout-button button[type=submit]:focus,
#leaky-paywall-registration-next:hover, #leaky-paywall-registration-next:focus,
#leaky-paywall-account-edit-profile-form input[type=submit]:hover, #leaky-paywall-account-edit-profile-form input[type=submit]:focus {
    background-color: var(--deep-purple) !important;
    /*color: #000;*/
}

#leaky-paywall-login-form {
    border: none;
    padding: 0;
    max-width: 398px;
    box-shadow: none;
    margin: 0 auto;
}
.linkedin_login {
    border-bottom: 1px solid rgba(149, 149, 149, 0.28);
    padding-bottom: 24px;
    margin: 0 auto 16px;
    max-width: 398px;
}
#lp_login_modal .linkedin_login {
    max-width: unset;
}
#lp_login_modal .linkedin_login .linkedin_login_inner, #lp_login_modal .lp_login_heading {
    max-width: 398px;
    margin: 0 auto;
}
.linkedin_login button {
    border: none;
    color: #fff;
    font-weight: 300;
    width: 100%;
    padding: 16px 20px;
}
.linkedin_login button:hover, .linkedin_login button:focus {
    background-color: var(--grey) !important;
    color: #fff;
}
.linkedin_login .li_name {
    background: transparent url(../img/linkedin_logo.png) no-repeat left center;
    padding-left: 28px;
    background-size: 21px;
    margin-left: 10px;
}
form .field-title, .linkedin_login .field-title, #lp_login_modal .lp_login_heading h2 {
    display: inline-block;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 20px;
}
form .field-title.login_with_account {
    margin-bottom: 16px;
}
#loginform p label {
    color: #000000;
    font-size: 16px;
    font-weight: 300;
    line-height: 15.21px;
    margin-bottom: 8px;
}
#loginform input.input {
    /*height: 60px;*/
    /*border-radius: 30px;*/
}
#loginform .login-submit {
    margin-bottom: 16px;
}
#leaky-paywall-lost-password-link {
    display: none !important;
    width: 0;
    height: 0;
}
.sf-lost-password-link-wrap, .sf-registration-link-wrap {
    color: #000000;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
}
.sf-lost-password-link-wrap span, .sf-registration-link-wrap span {
    margin-right: 4px;
    font-weight: 700;
}
.sf-lost-password-link-wrap a, .sf-registration-link-wrap a {
    font-weight: 300;
}

.modal-open {
    overflow: hidden;
}
.modal-backdrop {
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 150ms ease-in-out;
    padding: 2em;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    /*background: rgba(0, 0, 0, .5);*/
    width: 100vw;
    min-height: 100vh;
    pointer-events: none;
    z-index: 100002;
    display: none;
}
.modal-backdrop.show {
    opacity: 1;
    pointer-events: auto;
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
    background-color: transparent;
}
.center-modal.modal-backdrop:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -5px;
}
.modal-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #00000088;
}
.modal-content {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1140px;
    display: inline-block;
    text-align: initial;
}
#login-modal .modal-content {
    max-width: 480px;
}
#agendaPopup .modal-content {
    background-color: #ffffff;
    padding: 24px;
}

.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.inside-right-sidebar {
    height: 100%;
}
.widget-area.sidebar > div aside:has(> div.sf_dfp_ad_unit.sf_widget_sticky) {
    position: sticky;
    top: 40px;
}
#leaky_paywall_message {
    border: 1px solid var(--black);
    background-color: var(--light-grey);
    border-radius: 0;
    color: var(--black);
    padding: 20px;
    font-weight: bold;
}
#leaky_paywall_message a {
    border-radius: 30px;
    background-color: var(--white);
    border: 1px solid var(--black);
    padding: 15px 24px;
    display: inline-block;
    vertical-align: middle;
    min-width: 150px;
    text-align: center;
    text-decoration: none;
    margin: 16px 12px 16px 0;
}
#leaky_paywall_message a.lp_login_btn {
    background-color: var(--sky-blue);
    border-color: var(--sky-blue);
    margin-left: 0;
}
#leaky_paywall_message a:hover {
    background-color: var(--sky-blue);
    border-color: var(--sky-blue);
}
.lp_message_or {
    margin: 0 12px 0 0;
}

.leaky-paywall-subscription-details {
    list-style: none;
    margin: 0;
    border: 1px solid var(--light-grey);
    border-bottom: 0;
    background: #fafafa;
}
.leaky-paywall-subscription-details li, .leaky-paywall-subscription-total {
    line-height: 32px;
    border-bottom: 1px solid var(--light-grey);
}
.leaky-paywall-subscription-details li strong, .leaky-paywall-subscription-total strong {
    padding: 8px 16px;
    margin-right: 16px;
    border-right: 1px solid var(--light-grey);
    min-width: 184px;
    display: inline-block;
}
.leaky-paywall-subscription-total {
    border-left: 1px solid var(--light-grey);
    border-right: 1px solid var(--light-grey);
    margin-bottom: 0;
    background: #fafafa;
}
.linkedin_login_registration_form {
    padding-top: 40px;
    border-top: 1px solid var(--light-grey);
}
.linkedin_login_registration_form h2, .subscription-options-title, .leaky-paywall-account-page-title {
    margin-bottom: 24px;
    display: inline-block;
}
.linkedin_login_description, .leaky-paywall-user-fields {
    margin-bottom: 40px;
}
.sf_registration_form_email_below {
    text-align: center;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 0;
}
.btn_favorite_article.is-loading {
    cursor: not-allowed;
    opacity: 0.6;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -16px;
    margin-left: -16px;
}
.col, [class^="col"], [class*=" col-"] {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 16px;
    padding-left: 16px;
}
.row_equal_height > div[class*='col-'] {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.row_content_middle > div[class*='col-'] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}
.col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}
.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}
.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}
.col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.row > div[class*='col'] > .col-inner {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 1;
}
.row_content_middle > div[class*='col-'] > .col-inner {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.column-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 10;
}
.companiesListWrap.grid-col-3 .companiesList {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}
.companyItem.boxed > .vc_column-inner, .companyItem.boxed > .col-inner {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 25px 15px 15px;
    position: relative;
    -webkit-transition: transform .2s ease, -webkit-box-shadow .2s ease;
    transition: transform .2s ease, box-shadow .2s ease;
    top: 0;
}
.companyItem.boxed:hover > .vc_column-inner, .companyItem.boxed:hover > .col-inner {
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
    box-shadow: 0 17px 25px rgba(0, 0, 0, 0.13);
    -webkit-box-shadow: 0 17px 25px rgba(0, 0, 0, 0.13);
}
.bigger.widgetHeader .header_btn {
    float: right;
    font-family: Raleway, serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}
.vcAgendaWrap.collapse_all .widgetHeader .collapse_all {
    display: none !important;
}
.vcAgendaWrap.collapse_all .widgetHeader .expand_all {
    display: inline-block !important;
}

.agendaGreyBg {
    background: #F4F4F4;
}
.agendaGreyBg .agendaTime, .agendaGreyBg .agendaTitleWrap h3 {
    /*padding-left: 16px;*/
}
.agendaRow:not(.agendaDayRow) {
    border-bottom: 2px solid #8b8b8b;
    padding: 0 16px;
}
.agendaDayRow a {
    font-size: 20px;
}
.team-member-image img {
    border-radius: 50px;
}
.agendaContentText p {
    margin-bottom: 8px;
}
.toggle h3, .sf_toggle h3.toggle_heading {
    position: relative;
    z-index: 10;
}
.sf_toggle h3.toggle_heading {
    border-bottom: 5px solid var(--sky-blue);
    padding-left: 16px;
    color: #ffffff;
    height: 48px;
    transition: all 0.3s;
}
.toggle:not(.open) h3.agendaItemHeadingRow, .toggle:not(.open) .agendaTimeWrap, .sf_toggle:not(.open) h3.toggle_heading {
    font-weight: 700;
}
.sf_toggle:not(.open) h3.toggle_heading {
    background-color: #ffffff;
    padding-left: 0;
}
.sf_toggle h3.toggle_heading a {
    display: block;
    padding-right: 48px;
}
.agendaMainRow .toggle .agendaInfoWrap h3 {
    padding-right: 32px;
}
.agendaMainRow .toggle h3 i {
    right: -16px;
    margin-top: -12px;
}
.sf_toggle h3.toggle_heading a {
    padding-top: 14px;
    padding-bottom: 9px;
}
.toggle h3 a:hover, .toggle h3 a:focus, .sf_toggle h3.toggle_heading a:hover, .sf_toggle h3.toggle_heading a:focus {
    color: inherit;
}
.toggle h3 i, .sf_toggle h3.toggle_heading i {
    width: 50px;
    height: 48px;
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    /*margin-top: -23px;*/
    /*border: 2px solid #000;*/
    /*border-radius: 30px 30px;*/
    -ms-transition: border-color 0.15s ease;
    transition: border-color 0.15s ease;
    -webkit-transition: border-color 0.15s ease;
}
.toggle h3 i:before, .sf_toggle h3.toggle_heading i:before {
    content: ' ';
    top: 22px;
    left: 17px;
    margin-top: 0;
    width: 15px;
    height: 2px;
    position: absolute;
    background-color: #000;
    -ms-transition: background-color 0.15s ease;
    transition: background-color 0.15s ease;
    -webkit-transition: background-color 0.15s ease;
}
.toggle h3 i:after, .sf_toggle h3.toggle_heading i:after {
    content: ' ';
    top: 15px;
    left: 24px;
    width: 2px;
    margin-left: 0;
    height: 15px;
    position: absolute;
    background-color: #000;
    -ms-transition: transform 0.45s cubic-bezier(.3,.4,.2,1),background-color 0.15s ease;
    transition: transform 0.45s cubic-bezier(.3,.4,.2,1),background-color 0.15s ease;
    -webkit-transition: -webkit-transform 0.45s cubic-bezier(.3,.4,.2,1),background-color 0.15s ease;
}
.sf_toggle h3.toggle_heading i:after,
.sf_toggle h3.toggle_heading i:before {
    background-color: #ffffff;
}
body .sf_agenda_list .toggle h3 i:after, body .sf_agenda_list .sf_toggle h3.toggle_heading i:after {
    -ms-transform: scale(1,0);
    transform: scale(1,0);
    -webkit-transform: scale(1,0);
}
.sf_agenda_list .toggle.open h3 i:after, .sf_agenda_list .sf_toggle.open h3.toggle_heading i:after {
    -ms-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transform: scale(1,1);
}
.personItem {
    margin-bottom: 40px;
}
.personItem .position {
    font-size: 14px;
}
.chairWrap {
    position: relative;
}
.chairWrap .chair {
    position: absolute;
    bottom: -3px;
    font-size: 12px;
    text-align: center;
    color: #ffffff;
    width: 100%;
    padding: 2px 0;
    font-weight: 500;
    text-transform: uppercase;
}
.person_buttons svg {
    width: 24px;
    height: 24px;
}
.papersList {
    row-gap: 24px;
}
.papersList .row {
    gap: 16px;
}
.papersList .gridThumbnail img {
    aspect-ratio: 16/9;
    object-fit: cover;
}
.media_icon.video {
    border: 1px solid;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.media-type-articles .post:hover .media_icon.video svg {
    animation: video_icon_float 1s infinite;
    position: relative;
}
.sf_pagination .pagination {
    display: flex;
    margin-left: 0;
    margin-bottom: 24px;
    justify-content: center;
    list-style: none;
}
.pagination .page-link {
    padding: 8px;
}
.page-link.current {
    font-weight: 700;
}
@keyframes video_icon_float {
    0%,
    60%,
    100% {
        left: 0;
        opacity: 1;
    }
    25% {
        left: 20px;
        opacity: 0.1;
    }
    26% {
        left: -20px;
        opacity: 0.4;
    }
}


.btn.loading {
    background-image: url(../img/loading.gif);
    background-position: 90% center;
    background-size: 24px;
    background-repeat: no-repeat;
    cursor: not-allowed !important;
}
.modal-backdrop .loading {
    background: #00000040 url(../img/loading.gif) no-repeat center;
    background-size: 24px;
    text-align: center;
    padding: 16px 0;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    display: flex;
    cursor: not-allowed;
}
#login-modal .the_champ_login_container ul.the_champ_login_ul li {
    width: 100% !important;
}
ul.the_champ_login_ul i.theChampLogin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    color: #fff;
    border-radius: 30px;
    padding: 8px 24px !important;
    font-style: normal;
    text-transform: uppercase;
}
ul.the_champ_login_ul i.theChampLogin:before {
    content: "Login via";
    display: inline-block;
    margin-right: 4px;
}
ul.the_champ_login_ul i.theChampLogin.theChampLinkedinLogin:after {
    content: "LinkedIn";
    margin-left: 4px;
}
ul.the_champ_login_ul .theChampLogin ss {
    width: 32px;
    height: 32px;
    display: inline-block !important;
    margin-bottom: 2px;
}
.main-article-container .the_champ_sharing_container {
    margin-bottom: 24px;
}
.the_champ_sharing_container .the_champ_facebook .the_champ_svg {
    background: white url(../img/facebookB.svg) no-repeat center !important;
}
.the_champ_sharing_container .the_champ_facebook .the_champ_svg svg {
    display: none !important;
}
div.wpforms-container-full .wpforms-field.wpforms-field-checkbox ul li input+label {
    font-size: 12px;
}
.comment-respond .form-submit {
    text-align: right;
    padding-right: 8px;
    margin-top: -60px;
    position: relative;
    z-index: 1;
}
.modal-content .comment-respond .form-submit {
    margin-top: -56px;
}
.comment-respond textarea {
    padding-bottom: 48px;
    background-color: #f4f4f4;
    max-height: 144px;
}
.comment-form-comment {
    display: flex;
    gap: 24px;
}
.comment-form-comment-field {
    flex-basis: 0;
    flex-grow: 1;
}
.comment-respond .avatar {
    border-radius: 50%;
    height: 100%;
}
.sf-custom-fields .form-row {
    margin-bottom: 24px;
}
.sf-custom-fields .form-row .list-item input, .sf_registration_form_agreement input {
    float: left;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-top: 2px;
}
.sf-custom-fields .form-row .list-item-label, .sf_registration_form_agreement label {
    display: block;
    padding-left: 24px;
    vertical-align: middle;
}
#leaky-paywall-account-edit-profile-form input {
    width: 100%;
}
#leaky-paywall-account-edit-profile-form input[type='checkbox'] {
    width: 16px;
}
form .category_preferences .form-row > label {
    margin-bottom: 16px;
    font-weight: 700;
    display: inline-block;
}
.leaky-paywall-payment-form select, #leaky-paywall-account-wrapper select, #leaky-paywall-profile select {
    border: 1px solid #dbdbdb;
    color: #888888;
    width: 100%;
    height: 48px;
    padding: 13px 16px;
}
form .leaky-paywall-checkout-button button[type=submit],
#leaky-paywall-account-edit-profile-form input[type=submit],
.sf_newsletter_preferences_wrap input[type=submit] {
    max-width: 300px !important;
}
#friends-groups .wpcf7-field-group {
    display: flex;
    gap: 24px;
    align-items: end;
}
.gb-query-loop-pagination .page-numbers {
    border: 1px solid #000;
    display: inline-flex;
}
.gb-query-loop-pagination .page-numbers.current {
    border: 1px solid var(--electric-purple);
    color: var(--electric-purple);
}
.gridThumbnail img {
    width: 100%;
}
.google_search_gcv .gridThumbnail img {
    max-height: 200px;
}
.personSession .personSessionInner {
    background: #f1f1f1;
    height: 100%;
    position: relative;
    padding: 24px 16px;
}
.sessionTime span {
    color: var(--electric-purple);
}
.peoplePopup .personTitle {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--electric-purple);
}
.peoplePopup .row {
    row-gap: 20px;
}
.peoplePopup .linkedin_btn {
    margin-left: 24px;
}
.sidebar .widget .dfp_ad.marginBottom.display-block {
    margin-bottom: 24px;
}
#right-sidebar .inside-right-sidebar > aside.widget {
    height: 100%;
}
.lttemItem {
    border-bottom: 1px solid var(--smoke);
}
.lttemAuthor {
    gap: 16px;
}
.lttemAuthor img {
    border-radius: 50vh;
    width: 48px;
    height: 48px;
}
.filtersList {
    margin: 0;
    list-style: none;
    display: flex;
    gap: 24px;
}
.filtersList a {
    padding: 8px 16px;
    border-radius: 24px;
    border: 1px solid #000;
    display: inline-flex;
}
.filtersList .active a {
    border-color: var(--electric-purple);
}
.google_search_gcv .gridItems {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.wpsqtContactForm {
    padding-top: 8px;
    margin-bottom: 32px;
    padding-bottom: 8px;
}
.wpsqtContactForm .row .col-sm-6 {
    margin-bottom: 16px;
}
.wpsqtContactForm input {
    border: 1px solid var(--electric-purple);
    background-color: #ffffff;
    color: #000000;
}
.wpsqtContactForm select {
    border: 1px solid var(--electric-purple);
    background-color: #ffffff;
    color: #000000;
    padding: 13px 16px;
    width: 100%;
    height: 48px;
}
.wpst_question {
    padding-bottom: 24px;
    padding-top: 32px;
}
.wpst_question + .wpst_question {
    border-top: 2px solid var(--electric-purple);
}
.quizQuestion {
    font-size: 18px;
    margin-bottom: 24px;
}
.quizQuestion font {
    display: none;
}
.quizWrap {
    border-top: 1px solid var(--electric-purple);
    padding-top: 64px;
    margin-top: 40px;
    margin-bottom: 48px;
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
}
.quizWrap > h2 {
    margin-bottom: 32px;
}
.quizWrap .quiz {
    margin-top: 40px;
}
.quiz a.btn {
    display: inline-block;
}
.cpd_p_sign_in {
    color: #ffffff;
    padding: 12px;
    max-width: 290px;
    width: 100%;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    text-align: center;
    text-transform: initial;
    background-color: var(--electric-purple);
    border: 1px solid var(--electric-purple);
    border-radius: 24px;
    font-family: "Roboto Slab", sans-serif;
}
.cpd_p_sign_in:hover {
    color: #ffffff;
}
.wpsqtSignInBtn, .quizWrap button.btnRDPLLogin {
    float: right;
    margin-top: -69px;
}
.wpsqt_multiple_question, .quiz ul {
    margin: 0;
    list-style-type: none;
    list-style-position: inside;
    counter-reset: listStyle;
}
.wpsqt_multiple_question li {
    display: block;
    position: relative;
    counter-increment: listStyle;
}
.wpsqt_multiple_question li:before {
    content: counter(listStyle, upper-alpha);
    background: var(--electric-purple);
    color: #ffffff;
    border-radius: 50%;
    position: absolute;
    margin-top: 7px;
    margin-left: 8px;
    width: 20px;
    height: 20px;
    padding-top: 0;
    padding-left: 5px;
    font-size: 14px;
    font-weight: 700;
}
.wpsqt_multiple_question li input {
    position: absolute;
    margin-top: 10px;
    margin-left: 8px;
    display: none;
}
.wpsqt_multiple_question li label {
    display: block;
    background: transparent;
    padding: 4px 8px 4px 48px;
}
.wpst_question input[type="radio"]:checked + label, .wpst_question input[type="checkbox"]:checked + label {
    background: var(--deep-purple);
    color: #000000;
}
.quizSubmit {
    text-align: right;
}
.quizSubmit input[type=submit] {
    max-width: 208px !important;
}
.quizFinish {
    border: 1px solid var(--electric-purple);
    padding: 16px;
}
.quizFinish h2 {
    margin-bottom: 4px;
}
.wpsqtContactForm {
    padding-top: 8px;
    margin-bottom: 32px;
    padding-bottom: 8px;
}
.wpsqtContactForm .row .col-sm-6 {
    margin-bottom: 16px;
}
.wpsqtContactForm input {
    border: 1px solid var(--electric-purple);
    background-color: #ffffff;
    color: #000000;
}
.wpsqtContactForm select {
    border: 1px solid var(--electric-purple);
    background-color: #ffffff;
    /*border-radius: 4px;*/
    color: #000000;
    padding: 13px 16px;
    width: 100%;
    height: 48px;
}
.wp-block-comment-template {
    margin-left: 0;
}
.wp-block-comment-template .wp-block-columns {
    gap: 16px;
}
.wp-block-comment-template .wp-block-columns .wp-block-column:first-child {
    flex-basis: 50px !important;
}
.wp-block-comment-template .wp-block-columns .wp-block-column:last-child > div:not(.wp-block-comment-reply-link) {
    background-color: #f4f4f4;
    padding-left: 16px;
    padding-right: 16px;
}
.wp-block-comment-template .wp-block-comment-author-name {
    padding-top: 16px;
    font-weight: 700;
    padding-bottom: 4px;
    font-size: 16px !important;
}
.wp-block-comment-template .wp-block-comment-content {
    padding-top: 4px;
    padding-bottom: 16px;
    margin-bottom: 8px;
}
.wp-block-comment-template .comment ol {
    border-left: 1px solid #d0cece;
    padding-left: 16px;
    margin-left: 64px;
}
.wp-block-comment-content p:last-child {
    margin-bottom: 0;
}
.wp-block-avatar img, .comment-body img.avatar {
    border-radius: 50%;
    width: 50px;
}
.comments-hub .pageGridHeader {
    border-bottom: 1px solid #d0cece;
}
.comments-hub .grid-item {
    gap: 24px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #d0cece;
}
.comments-hub .item-image {
    max-width: 100%;
    width: 33.33%;
}
.comments-hub .item-details {
    width: 66.66%;
}
.comments-hub .item-details .item-meta {
    gap: 24px;
    justify-content: space-between;
    align-items: center;
}
.social_share_wrap .the_champ_sharing_title, .comments-area label[for='comment'] {
    display: none;
}
.sortByForm .d-flex {
    gap: 24px;
}
.comment_popup {
    cursor: pointer;
}
#commentPopup .modal-body {
    background: #ffffff;
}
.modal_article_wrap .d-flex, .commentsListWrap .d-flex {
    gap: 24px;
}
.modal_article_wrap .gridThumbnail {
    width: 33%;
}
.modal_article_wrap .gridItemDetailsWrap {
    padding-right: 32px;
}
.commentsListWrap {
    max-width: 844px;
    margin: 0 auto 40px;
    padding: 0 32px;
}
.comment-list {
    margin-left: 0;
    list-style: none;
    padding-bottom: 1px;
}
.comment_content_inner {
    background-color: #f4f4f4;
    padding: 16px;
}
.comment_like_reply {
    padding-left: 16px;
}
.modal-content .comment-respond {
    margin-bottom: 40px;
}
h6.postCat {
    color: var(--electric-purple);
    text-transform: uppercase;
    font-size: 12px;
}
.post-excerpt {
    word-break: break-word;
}
.wp-block-embed__wrapper {
    position: relative;
}
.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before {
    content: "";
    display: block;
    padding-top: 50%;
}
.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
    padding-top: 56.25%;
}
.wp-embed-responsive .wp-has-aspect-ratio iframe {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
.media_playlist_widget_list_inner {
    max-height: 560px;
    overflow-y: auto;
    overflow-x: hidden;
}
.media_playlist_widget_list_inner .media_item.current {
    background-color: #f0f0f0;
}
.media_playlist_widget_list_inner .sfMediaList .media_item.noThumb {
    padding: 16px 8px 0;
    border-bottom: 1px solid #8b8b8b;
    margin-bottom: 0;
    min-height: 114px;
}
.sfMediaList .media_item + .media_item {
    border-top: 1px solid #d0cece;
    padding-top: 24px;
}
.gb-tabs.event_tab .gb-tabs__menu-item {
    text-transform: uppercase;
}
.gb-tabs__menu-item.gb-block-is-current {
    font-weight: 700;
}

.gb-site-header.is-sticky .logo {
    max-width: 144px;
}
.gb-site-header.is-sticky .searchToggle {
    padding: 16px;
}
.gb-site-header {
    width: 100%;
    z-index: 9999;
    transition: box-shadow 0.4s ease;
}
.gb-site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    animation: stickySlideIn 0.3s ease-out;
}
@keyframes stickySlideIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
.gb-site-header.is-sticky .leader-board-wrap {
    display: none !important;
}
.gb-site-header .navigation-row {
    opacity: 1;
    max-height: 100px;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity 0.3s ease,
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gb-site-header.is-sticky.scroll-down .navigation-row {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px); /* Slight lift-up while hiding */
    pointer-events: none;
    visibility: hidden; /* Stops the 'flash' while allowing transitions */
}
.gb-site-header.is-sticky.scroll-up .navigation-row {
    max-height: 100px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}
.admin-bar .gb-site-header.is-sticky { top: 32px; }
@media (max-width: 782px) { .admin-bar .gb-site-header.is-sticky { top: 46px; } }
.header-placeholder { visibility: hidden; pointer-events: none; }

@media (min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-sm-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .leaky-paywall-subscription-details li strong, .leaky-paywall-subscription-total strong {
        min-width: 200px;
        margin-right: 32px;
    }
    .companiesListWrap.grid-col-3 .companiesList {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }
    .col-md-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }
    .col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-md-1\/5 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .companiesListWrap.grid-col-3 .companiesList {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1312px) {
    .comment-respond ul.the_champ_login_ul {
        float: right;
        margin-top: -60px !important;
    }
}
@media (min-width: 1400px) {
    .main-article-container .sticky-container {
        width: 38px;
        position: sticky;
        top: 150px;
        margin-left: -40px;
    }
}
@media (max-width: 1399px) {
    .main-article-container .the_champ_sharing_container:after {
        display: block;
        content: '';
        clear: both;
    }
}

@media (max-width: 767px) {
    .main-navigation .main-nav ul li a {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
    .personInfo .col-auto {
        width: 100%;
    }
    .personSessions .personSession {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (max-width: 576px) {
    .team-member-image {
        max-width: 88px;
        margin-bottom: 16px;
    }
    .team-member .personName {
        font-size: 16px;
    }
    .alm-listing.alm-ajax {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}