/*
Theme Name: Workweek
Version: 1.0
Description:
template: bb-theme
*/

/* Fonts */

@font-face {
    font-family: 'FK Screamer';
    src: url('fonts/FKScreamer-Black.woff2') format('woff2'),
        url('fonts/FKScreamer-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Headings */

h1, h2 {
    font-family: 'FK Screamer';
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1em !important;
}

/* W Background */

.w-bg {
    background-image: url(images/w-bg.svg);
    background-size: 1440px auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #111;
}

@media screen and (max-width: 769px) {
    .w-bg {
        background-image: none;
        background-color: #FBC504;
    }
}

/* Buttons */

.button-standard {
    padding: 16px 32px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.25s, box-shadow 0.25s;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    border: 3px solid transparent;
    box-shadow: 0 0 0 1px transparent;
    display: inline-block;
}

.button-standard.white {
    background-color: #fff;
    color: #000;
    border: 3px solid #000;
}

.button-standard:hover {
    box-shadow: 0 0 0 1px #000;
    text-decoration: none;
}

.button-standard.white:hover {
    box-shadow: 0 0 0 1px #fff;
}

.scotch-br:after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -35px;
    background-image: url('images/scotch-br.png');
    width: 123px;
    height: 72px;
    background-size: contain;
    background-position: center center;
    mix-blend-mode: screen;
    background-repeat: no-repeat;
}

.scotch-tl:after {
    content: '';
    position: absolute;
    left: -40px;
    top: -35px;
    background-image: url('images/scotch-br.png');
    width: 123px;
    height: 72px;
    background-size: contain;
    background-position: center center;
    mix-blend-mode: screen;
    background-repeat: no-repeat;
}

.arrow {
    position: relative;
    width: 19px;
    height: 19px;
    background: #111;
    border-radius: 20px;
    margin-left: 12px;
}

.arrow:before, .arrow:after {
    content: '';
    width: 7px;
    height: 2px;
    transform: rotate(45deg);
    background-color: #fff;
    position: absolute;
    transform-origin: center;
}

.arrow:before {
    transform: rotate(45deg);
    top: 9px;
    left: 4px;
}

.arrow:after {
    transform: rotate(-45deg);
    top: 9px;
    right: 4px;
}


.close .arrow:before, .close .arrow:after {
    right: 5px;
    left: 5px;
    width: 9px;
}

.signup-options {
    width: 100%;
    max-width: 880px;
    padding: 40px;
}

.signup-options input[type="radio"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: var(--form-background);
    /* Not removed via appearance */
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 0.76em;
    height: 0.76em;
    border: 0.1em solid currentColor;
    border-radius: 0.1em;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

.signup-options input[type="radio"]:checked {
    background-color: #FBC504;
}
  
.signup-options input[type="radio"]::before {
    content: "";
    width: 0.35em;
    height: 0.35em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #111;
    /* Windows High Contrast Mode */
    background-color: #111;
    display: block;
    margin-top: 5px;
    margin-left: 5px;
}
  
.signup-options input[type="radio"]:checked::before {
    transform: scale(1);
}
  
.signup-options input[type="radio"]:focus {
    outline: none;
    outline-offset: none;
}
  
.signup-options input[type="radio"]:disabled {
    --form-control-color: var(--form-control-disabled);
    color: var(--form-control-disabled);
    cursor: not-allowed;
}

.signup-options input[type="email"] {
    border-radius: 5px;
    background: #fff;
    color: #111;
    font-size: 14px;
    padding: 16px 20px;
    border: 0;
    margin-bottom: 32px;
}

.signup-options input[type="submit"] {
    border-radius: 10px;
    background: #111111;
    color: #FBC504;
    font-size: 48px;
    padding: 16px 20px;
    border: 3px solid #FBC504;
    box-shadow: 0 0 0 1px transparent;
    font-family: 'FK Screamer';
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1em !important;
    background-image: url('images/mega-phone.svg');
    padding: 16px 64px 16px 24px;
    background-position: 87% center;
    background-size: 36px auto;
    background-repeat: no-repeat;
    transition: box-shadow 0.25s;
}

.signup-options input[type="submit"]:hover {
    border-radius: 10px;
    border: 3px solid #FBC504;
    background-color: #111111;
    color: #FBC504;
    box-shadow: 0 0 0 1px #111;
}

@media screen and (max-width: 769px) {
    .button-standard {
        font-size: 18px;
    }
}

/* Logo & Navigation */

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.aligni-center {
   align-items: center;
}

.cntr {
    max-width: 1920px;
    margin: auto;
    padding: 0;
}

.ww-logo {
    margin: 0;
    width: auto;
    height: auto;
    padding: 30px 4px 30px 48px;
    font-size: 40px;
    font-family: 'FK Screamer';
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1em !important;
    letter-spacing: 0px;
    color: #111;
    display: block;
}

.header-menu {
    margin-right: auto;
    margin-left: 0;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s, visibility 0.25s;
}

.site-header {
    border-bottom: 1px solid #e4e4e4;
    background-color: #fff;
}

.site-header li {
    margin-left: 24px;
    position: relative;
}

.header-menu li a {
    padding: 12px 0;
    color: #333;
    font-size: 18px;
    font-weight: normal;
}

.header-menu li.big-menu-item a {
    font-weight: bold;
    color: #111;
}

.header-menu li.menu-item-has-children a:after {
    content: none;
}

.header-menu li a:after {
    content: '';
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #111;
    width: 0;
    transition: width 0.25s;
}

.header-menu li:hover a:after {
    width: 100%;
}

.header-menu li:hover a {
    color: inherit;
    text-decoration: none;
}

.header-menu li a:hover {
    background-color: transparent;
}

.site-header .round-button a {
    border-radius: 40px;
    font-size: 16px;
    margin-top: 1px;
    padding: 13px 32px 17px;
    color: #fff;
    line-height: 24px;
    transition: background-color 0.25s;
    font-weight: 500;
}

.site-header .round-button.navy-bg a {
    background-color: #0D0B3F;
}

.site-header .round-button.navy-bg:hover a {
    background-color: #3A5AFD;
}

.site-header .round-button.blue-bg a {
    background-color: #3A5AFD;
}

.site-header .round-button.blue-bg:hover a {
    background-color: #0D0B3F;
}

.site-header .sub-menu {
    position: absolute;
    overflow: hidden;
    z-index: 5;
    padding: 8px 0 0 0;
    margin: 0;
    list-style: none;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1)) drop-shadow(0px 4px 24px rgba(0, 0, 0, 0.05));
    width: 250px;
    opacity: 0;
    visibility: hidden;
    background-image: url(images/sub-arrow.svg);
    background-position: 24px top;
    background-size: auto 8px;
    background-repeat: no-repeat;
    transition: opacity 0.25s, visibility 0.25s;
}

.site-header .sub-menu li {
    border-bottom: 1px solid #d0d0d0;
    padding: 11px 24px 14px;
    background: #fff;
    margin: 0;
}

.site-header .sub-menu li:first-of-type {
    border-radius: 8px 8px 0 0;
}

.site-header .sub-menu li:last-of-type {
    border-bottom: 0;
    border-radius: 0 0 8px 8px;
} 

.header-menu li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.cta-menu {
    padding: 0;
}

.cta-menu {
    padding: 18px 24px;
    color: #111;
    background-color: transparent;
    font-weight: bold;
    margin-right: 48px;
    border-radius: 10px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px transparent;
    font-size: 18px;
    transition: background-color 0.25s, color 0.2s, box-shadow 0.25s;
    background-color: #FBC504;
}

.cta-menu:hover {
    background-color: #FBC504;
    box-shadow: 0 0 0 1px #0E231C;
}

.cta-menu:before {
    content: '';
    width: 20px;
    height: 16px;
    background-image: url(images/megaphone.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 8px;
}

.mobmenu {
    display: none;
}

/* Homepage Signup button */

.signup-home {
    position: absolute;
    right: 40px;
    top: 40px;
    z-index: 99;
    background: none;
    border: 0;
}

.signup-home .button-standard, .signup-cover .close {
    margin-top: 0;
    font-size: 18px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border: 3px solid #111;
    box-shadow: 0 0 0 1px transparent;
    transition: box-shadow 0.25s;
    border-radius: 10px;
}

.signup-cover {
    position: fixed;
    background: #111;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    height: 100vh;
    min-height: 540px;
}

.signup-cover .close {
    position: absolute;
    right: 40px;
    top: 40px;
    z-index: 103;
}

.logged-in .signup-cover {
    top: 32px;
}

.signup-cover .logo {
    position: absolute;
    left: 30px;
    top: 38px;
    z-index: 103;
    width: 160px;
    height: auto;
}

.signup-options .gfield_radio {
    display: flex;
    flex-wrap: wrap;
}

.signup-options .gfield_radio li {
    flex: 1 0 50%;
    color: #FBC504;
    font-size: 48px;
    font-family: 'FK Screamer';
    font-weight: 900;
    text-transform: uppercase;
}

.signup-options .gform_wrapper .gfield_radio li label {
    font-size: 48px;
    font-family: 'FK Screamer';
    font-weight: 900;
}

.signup-options .gform_wrapper form {
    position: relative;
}

.signup-options .gform_wrapper .gform_footer {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    margin: 0;
    padding: 0;
}

.signup-options .gfield_label {
    display: none;
}

.signup-options .gform_wrapper .gform_footer .gform_button {
    background: #fff;
    border: 0;
    padding: 19px 24px;
    font-size: 24px;
    color: #111;
    border-radius: 5px;
    width: 150px;
}

.signup-options .gform_wrapper.gform_validation_error .top_label input.medium, .signup-options .gform_wrapper.gform_validation_error .top_label select.medium {
    width: calc(100% - 174px);
}

.signup-options .gform_wrapper .gform_body input[type="text"] {
    width: calc(100% - 174px);
    padding: 20px 24px !important;
    font-size: 14px !important;
    text-transform: uppercase;
    font-weight: bold;
}

.signup-options .gform_validation_error .gform_footer {
    bottom: 37px;
}

.gform_wrapper li.gfield.gfield_error, .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
    background-color: transparent !important;
    border: 0 !important;
    padding: 0 !important;
}

.gform_wrapper .top_label li ul.gfield_checkbox, .gform_wrapper .top_label li ul.gfield_radio {
    width: 100% !important;
}

.gform_validation_errors {
    display: none;
}

/* Beaver Builder Custom Styles */

.section-heading .fl-heading-text {
    display: flex;
    align-items: center;
}

.section-heading .fl-heading-text span {
    font-family: Helvetica, arial, sans-serif;
    font-size: 18px;
    font-weight: normal;
    text-transform: none;
    margin-left: 16px;
}

.latest-card {
    justify-content: space-between;
    margin-left: -24px;
    margin-right: -24px;
}

.latest-card .fl-post-image, .latest-card .fl-post-text {
    flex: 1 1 50%;
    padding: 24px;
}

.latest-card .fl-post-text {
    padding: 18px 24px 24px 24px;
} 

.latest-card .fl-post-image img {
    width: 100%;
    height: calc(33vw * 0.65);
    object-fit: cover;
}

.latest-card .fl-post-title {
    font-size: 36px;
    line-height: 1.2;
    font-family: Helvetica, arial, sans-serif;
    text-transform: none;
    margin-bottom: 10px;
}

.latest-card .fl-post-meta {
    font-size: 16px;
    color: #777;
}

.latest-card .fl-post-meta a {
    color: #111;
    font-weight: bold;
}

.fl-post-feed-post {
    border: 0 !important;
}

.creator-logo-cover img {
    position: absolute;
    right: -70px;
    bottom: -25px;
    mix-blend-mode: lighten;
}

.creator-logo-text {
    position: relative;
}

.gform_confirmation_message {
    color: #FBC504;
}

.fl-row .creator-subscribe .gform_wrapper .gfield input[type="text"] {
    border-radius: 5px;
    background: #fff;
    color: #111;
    font-size: 14px;
    padding: 16px 20px;
    border: 0;
    margin-bottom: 0;
    height: 52px;
}

.creator-subscribe .gform_footer {
    padding: 0 !important;
    margin: 0 !important;
}

.creator-subscribe {
    position: relative;
}

.fl-row .creator-subscribe input[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 5px;
    color: #111111;
    background: #FBC504;
    font-size: 20px;
    padding: 12px 20px;
    border: 0;
    font-family: 'FK Screamer';
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1em !important;
    background-position: 87% center;
    background-size: 36px auto;
    background-repeat: no-repeat;
    outline-color: transparent;
    transition: outline-color 0.25s;
    outline-offset: 5px;
    outline-style: solid;
    outline-width: 1px;
    height: 52px;
}

@media screen and (min-width: 992px) {
    .long-mrec {
        display: unset !important;
    }
    .long-mrec .fl-col-content {
        position: sticky;
        top: 24px;
    }
}

/* Mobile Menu */

.mobmenu {
    -webkit-appearance: none;
    border: 0;
    margin-left: auto;
    background: transparent;
    color: #0D0B3F;
    padding: 0;
    visibility: visible;
    opacity: 1;
    margin-right: 24px;
    transition: opacity 0.25s, visibility 0.25s;
}

.mobmenu:focus, .mobmenu:active, .mobmenu:visited {
    -webkit-appearance: none;
    background: none;
    border: 0;
    color: #0D0B3F;
    padding: 0;
    top: 0;
    right: 0;
    outline: none;
}

.mobmenu .burger {
    position: relative;
    width: 14px;
    height: 12px;
    margin-left: 12px;
    display: inline-block;
    margin-left: 8px;
}

.mobmenu .burger:after, .mobmenu .burger:before, .mobmenu .burger span {
    content: '';
    height: 2px;
    width: 16px;
    position: absolute;
    background-color: #0D0B3F;
    border-radius: 2px;
    left: 0;
    opacity: 1;
    visibility: visible;
    transition: transform 0.15s, visibility 0.15s, opacity 0.15s, top 0.15s, bottom 0.15s;
    transform-origin: center;
}

.mobmenu .burger span {
    top: 5px;
}

.mobmenu .burger:before {
    top: 0;
}

.mobmenu .burger:after {
    bottom: 0;
}

.mobmenu.is-active .burger:before {
    transform: rotate(45deg);
    top: 5px;
}

.mobmenu.is-active .burger:after {
    transform: rotate(-45deg);
    bottom: 5px;
}

.mobmenu.is-active .burger span {
    opacity: 0;
    visibility: hidden;
}

.mobmenu:hover {
    border: 0;
    background: transparent;
    color: #0D0B3F;
}

/* Footer Subscribe */

.footer-sub {
    text-align: center;
}

/* custom twitter feed */

.ctf-tweet-content a {
    color: #111;
    text-decoration: underline;
}

.ctf-header, .ctf-more, .ctf-out-of-tweets {
    display: none !important;
}

.subscribe-menu ul {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.subscribe-menu li {
    color: #FBC504;
    font-size: 42px;
    font-family: 'FK Screamer';
    font-weight: 900;
    text-transform: uppercase;
    transition: color 0.25s;
}

.subscribe-menu li a:hover, .subscribe-menu li a:focus {
    color: #fff;
}

.subscribe-menu li a:hover, .subscribe-menu li a:focus {
    background: transparent;
}

.gform_widget .gform_footer input[type="submit"] {
    border-radius: 5px;
    color: #111111;
    background: #FBC504;
    font-size: 20px;
    padding: 12px 20px;
    border: 0;
    font-family: 'FK Screamer';
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1em !important;
    height: 52px;
}

.gform_widget .gform_footer .gfield input {
    border-radius: 5px;
    -webkit-appearance: none;
    border: 1px solid #111;
    padding: 8px 12px;
}

.gform_widget .gform_footer .gfield select {
    border: 1px solid #111;
    border-radius: 5px;
}

@media screen and (max-width: 1024px) {
    .subscribe-menu li {
        font-size: 32px;
    }
    .cta-menu:before {
        margin-top: 4px;
    }
    .site-header.internal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
    }
    .site-header.internal li {
        margin-left: 0;
    }
    .site-header.internal li a {
        margin-right: 24px;
    }
    .site-header.internal .cntr {
        height: 94px;
    }
    .fl-page {
        padding-top: 95px;
    }
    .home .fl-page, .fl-page.no-header {
        padding-top: 0px;
    }
    .header-menu {
        opacity: 0;
        visibility: hidden;
        position: absolute;
    }
    .mobmenu {
        display: block;
        margin-left: auto;
    }
    .site-header.internal .header-menu, .site-header.internal .sub-menu {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        right: 0;
        left: 0;
        bottom: 0;
        top: 0;
        background: #fff;
        align-items:unset;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        margin: 0;
        padding: 16px 0 0;
    }
    .site-header.internal .header-menu li {
        margin: 0;
    }
    .site-header.internal .header-menu li a {
        padding: 20px 48px;
        font-size: 16px;
        margin-right: 0;
    }
    .site-header.internal .mobmenu, .site-header.internal .cta-menu {
        z-index: 2;
    }
    .site-header.is-active .header-menu {
        visibility: visible;
        top: 95px;
        opacity: 1;
    }
    .site-header.is-active .sub-menu {
        padding-top: 60px;
    }
    .is-active .cta-menu {
        position: fixed;
        bottom: 36px;
        left: 36px;
        right: 36px;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
    }
    .is-active .cta-menu {
        flex: 1 1 auto;
        padding: 12px;
        text-align: center;
        margin: 0;
    }
    .site-header.internal .sub-menu {
        list-style: none;
        transition: opacity 0.25s, visibility 0.25s;
    }
    .header-menu .sub-menu.show-sub-menu {
        opacity: 1;
        visibility: visible;
    }
    .site-header.internal .sub-menu li a {
        padding: 20px 48px;
        font-size: 16px;
        display: block;
        position: relative;
    }
    .site-header.internal .current-menu-item {
        font-weight: bold;
    }
    .site-header.internal li.menu-item-has-children:after {
        content: '';
        background-image: url(images/right-sub.svg);
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        width: 8px;
        height: 16px;
        position: absolute;
        right: 48px;
        top: 24px;
    }
    .header-menu li.mob-back {
        font-weight: 600;
        font-size: 14px;
    }
    .site-header .header-menu li.mob-back a {
        padding: 20px 24px 20px 48px;
    }
    .header-menu li.mob-back:before {
        content: '';
        background-image: url(images/arrow-left.svg);
        width: 12px;
        height: 15px;
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        position: absolute;
        left: 24px;
        top: 24px;
    }
    .signup-cover {
        min-height: 600px;
    }
    .signup-home, .signup-cover .close {
        right: 36px;
        top: 36px;
    }
    .signup-home {
        top: calc(0.3 * 100vw);
        transform: rotate(3deg);
    }
}

@media screen and (max-width: 992px) {
    .latest-card {
        flex-direction: column;
    }
    .latest-card .fl-post-image img {
        height: calc(50vw * 0.65);
    }
    .latest-card .fl-post-meta {
        font-size: 14px;
        padding-bottom: 10px;
    }
    .latest-card .fl-post-title {
        margin-bottom: 8px;
        padding: 0;
    }
    .latest-card .fl-post-excerpt p {
        font-size: 16px;
    }
    .latest-card .fl-post-text {
        padding-top: 0;
    }
    .fl-post-feed-post {
        max-width: 100% !important;
    }
    .cta-menu {
        padding: 12px 16px 12px 16px;
        margin-right: 24px;
    }
    .cta-menu:before {
        display: none;
    }
    .navbar-nav {
        margin: 0;
    }
}

@media screen and (max-width: 769px) {
    .ww-logo {
        padding-left: 24px;
    }
    .site-header.internal li a {
        margin-right: 0px;
    }
    .site-header.internal li a:after {
        content: none;
    }
    .footer-sub {
        text-align: left;
    }
    .latest-card .fl-post-image img {
        height: calc(90vw * 0.65);
    }
    .long-mrec {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .ww-logo {
        text-indent: -9999px;
        background: url(images/w-dark.png);
        width: 50px;
        height: 30px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        margin-left: 24px;
    }
    .site-header.internal .header-menu li a {
        padding: 16px 24px;
        font-size: 16px;
    }
    .is-active .cta-menu {
        bottom: 24px;
        left: 12px;
        right: 12px;
    }   
    .signup-options .gfield_radio li {
        flex: 1 0 100%;
    }
    .signup-options .gform_wrapper .gform_footer .gform_button {
        margin-bottom: 0;
        min-height: auto !important;
        line-height: inherit !important;
        padding: 14px 20px;
        height: 
    }
    .signup-options input[type="radio"]::before {
        margin-top: 0;
        margin-left: 0;
    }
    .signup-options .gform_wrapper .gform_body input[type="text"] {
        width: 100%;
        padding: 16px 20px;
        min-height: auto !important;
        line-height: inherit !important;
    }
    .signup-options .gform_wrapper.gform_validation_error .top_label input.medium, .signup-options .gform_wrapper.gform_validation_error .top_label select.medium {
        width: 100%;
        margin-bottom: 16px;
    }
    .signup-options .gform_wrapper .field_description_below .gfield_description {
        padding-top: 0;
    }
    .gform_wrapper ul.gform_fields li.gfield.gfield_error+li.gfield.gfield_error {
        margin-top: 16px !important;
        margin-bottom: 0 !important;
    }
    .signup-options .gform_wrapper .gform_footer {
        position: relative;
        width: 100%;
        margin-top: 24px;
    }
    .signup-options .gform_wrapper .gfield_radio li {
        margin: 0;
        line-height: 1;
    }
    .signup-options .gform_wrapper .gfield_radio li label {
        font-size: 32px;
    }
    .signup-options input[type="radio"] {
        width: 0.52em;
        height: 0.52em;
    }
    .signup-options .gform_validation_error .gform_footer {
        bottom: 0;
    }
    .gform_wrapper div.validation_error {
        display: none;
    }
    .signup-cover {
        padding-top: 40px;
    }
}

.footer-sub .gform_body .gfield input[type="text"] {
    border-radius: 5px;
    background: #fff;
    color: #111;
    font-size: 14px;
    padding: 16px 20px;
    border: 0;
    margin-bottom: 12px;
}

.footer-sub input[type="submit"] {
    border-radius: 10px;
    background: #111111;
    color: #FBC504;
    font-size: 48px;
    padding: 16px 20px;
    border: 3px solid #FBC504;
    box-shadow: 0 0 0 1px transparent;
    font-family: 'FK Screamer';
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1em !important;
    background-image: url('images/mega-phone.svg');
    padding: 16px 64px 16px 24px;
    background-position: 87% center;
    background-size: 36px auto;
    background-repeat: no-repeat;
    transition: box-shadow 0.25s;
}

.footer-sub input[type="submit"]:hover {
    border-radius: 10px;
    border: 3px solid #FBC504;
    background-color: #111111;
    color: #FBC504;
    box-shadow: 0 0 0 1px #111;
}

footer .menu li {
    padding: 0 10px;
}

footer .menu li a {
    position: relative;
    padding: 10px 0 !important;
}

footer .menu li a:after {
    position: absolute;
    width: 0;
    height: 2px;
    background: #111;
    bottom: 0;
    left: 0;
    content: '';
    transition: width 0.25s;
}

footer .menu li:hover a:after {
    width: 100%;
}   

.newsletter-list h2 a {
    font-size: 44px;
    line-height: 48px;
    margin-bottom: 16px;
    flex: 1 1 100%;
 }
 
 .newsletter-list.fl-post-text {
    padding: 0 0 20px !important;
    margin: 38px 0 0 !important;
    border-bottom: 1px solid #222;
 }
 
 .newsletter-list.fl-post-text .fl-post-meta, .newsletter-list.fl-post-text p {
    padding-bottom: 0 !important;
 }
 
 .newsletter-list h2 a, .newsletter-list {
    color: #FBC504;
 }
 
 .newsletter-list h2 span {
    font-size: 16px;
    font-family: 'helvetica', sans-serif;
    text-transform: uppercase;
    color: #FBC504;
    flex: 1 0 160px;
 }

.newsletter-archive-list .fl-post-title, .newsletter-archive-list {
    color: #FBC504;
}

@media screen and (max-width: 980px) {
    footer .menu li a:after {
        display: none;
    }
    .newsletter-list h2 {
        flex-direction: column;
    }
    .newsletter-list h2 span {
        flex: 1 1 auto;
    }
    .twitter-container-fix .fl-row-content {
        width: 100%;
    }
}

.creator-subscribe .gfield_checkbox label {
    color: #fff;
    font-weight: normal;
}

.email-pref-centre input[type="email"] {
    padding: 10px 14px;
    font-size: 16px;
}

.email-pref-centre form {
    font-size: 14px;
}

.email-pref-centre p {
    font-size: 14px;
}

.email-pref-centre button {
    padding: 10px 14px;
    border: none;
    color: #111111;
    background: #FBC504;
    font-size: 16px;
    padding: 12px 20px;
    margin-top: 24px;
    font-weight: 900;
}

.fl-module-brand-ticker {
    overflow: hidden;
}

/* Email capture sidebar*/
.c-main-content {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
}

.c-email-captures-sidebar {
    max-width: 22em;
    padding: 1.75em 2.5em 0 1.25em;
    border-left: 1px solid #eee;
}

.c-email-captures-sidebar li {
    list-style: none;
    position: -webkit-sticky;
    position: sticky;
    top: 1em;
}

.c-email-captures-sidebar__header {
    display: none;
}

.c-email-captures-sidebar .colony-c-content.Campaign__content{
    padding: 0;
}

.c-email-captures-sidebar__loading {
    position: relative;
    width: 80px;
    margin: auto;
}
.c-email-captures-sidebar__loading svg{
    position: absolute;
    top: 50px;
    text-align: center;
    width: 100%;
}

.c-email-captures-sidebar .ginput_container.ginput_container_email input{
    height: 45px !important;
    border: 1px solid #979797 !important;
    border-radius: 5px !important;
    background: #fff !important;
}
.c-email-captures-sidebar .gform_footer .button{
    padding: 10px 15px;
    color: #111;
    background-color: transparent;
    border-radius: 10px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px transparent;
    font-size: 16px;
    transition: background-color 0.25s, color 0.2s, box-shadow 0.25s;
    background-color: #FBC504;
    min-width: 100%;
    height: 45px;
    line-height: 1.2 !important;
    margin-top: 5px;
}

.c-email-captures-sidebar .gform_footer .button:hover{
    padding: 10px 15px;
    color: #111;
    background-color: transparent;
    border-radius: 10px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px transparent;
    font-size: 16px;
    transition: background-color 0.25s, color 0.2s, box-shadow 0.25s;
    background-color: #ffd748;
    min-width: 100%;
    height: 45px;
    line-height: 1.2 !important;
    margin-top: 5px;
}

.c-email-captures-sidebar .gfield_description.validation_message.gfield_validation_message{
    padding-top: 8px !important;
    font-size: 15px !important;
    color: #b70000 !important;
    font-weight: 500 !important;
}
@media (max-width: 62em) {
    .c-email-captures-sidebar {
        position: fixed !important;
        bottom: 0;
        left: 0;
        min-width: 100%;
        margin: 0;
        padding: 0;
        background: #fff;
        transform: none;
        border-radius: 30px 30px 0 0;
        box-shadow: 0 0 40px rgb(0 0 0 / 15%);
        z-index: 99;
        cursor: pointer;
    }


    .c-email-captures-sidebar li{
        display: none;
        padding: 0 1em;
    }

    .c-email-captures-sidebar__header {
        display: block;
        position: relative;
        padding: 1em;
    }

    .c-email-captures-sidebar__header-title {
        text-align: center;
    }

    .c-email-captures-sidebar__header:before {
        content: "";
        display: block;
        position: absolute;
        top: 10px;
        left: 50%;
        width: 9px;
        height: 9px;
        margin-left: -4px;
        transform-origin: center;
        transform: rotate(-135deg);
        transition: all 0.25s ease-in-out;
        border-bottom: 2px solid #fbc504;
        border-right: 2px solid #fbc504;
    }

    .c-email-captures-sidebar__header.is-open::before {
        transform: rotate(45deg);
    }
}
/* Email capture sidebar [End]*/

/* Fix Twitter feed UI */
#ctf .ctf-tweet-items {
    overflow: hidden;
}
#ctf .ctf-corner-logo {
    top: 15px;
    right: 0;
}

#ctf.ctf-super-narrow .ctf-author-box {
    padding:0;
    width: 95%;
}

#ctf.ctf-narrow .ctf-context {
    padding: 0;
    width: 80%;
    margin: auto;
    text-align: center;
}
/* Fix Twitter feed UI - End*/