/* ============================================================================
/* Navigation
/* ============================================================================ */

.navigation-wrapper {
}

.navigation {
}

    .navigation > ul {
        position: relative;
        list-style-type: none;
        padding: 0px;
        margin: 0px;
    }

        .navigation > ul > li {
            float: left;
            padding: 0px 11px;
        }

            .navigation > ul > li > a,
            .navigation > ul > li > a:visited,
            .navigation > ul > li > a:hover {
                font: 16px 'quicksandbold', arial, verdana;
                display: inline-block;
                padding-bottom: 4px;
                text-decoration: none;
            }

                .navigation > ul > li > a.red {
                    color: #d50032;
                    border-bottom: 2px solid white;
                }

                    .navigation > ul > li > a.red.selected, .navigation > ul > li > a.red:hover {
                        border-bottom: 2px solid #d50032;
                    }

                .navigation > ul > li > a.green {
                    color: #00ab84;
                    border-bottom: 2px solid white;
                }

                    .navigation > ul > li > a.green.selected, .navigation > ul > li > a.green:hover {
                        border-bottom: 2px solid #00ab84;
                    }

                .navigation > ul > li > a.blue {
                    color: #006ba6;
                    border-bottom: 2px solid white;
                }

                    .navigation > ul > li > a.blue.selected, .navigation > ul > li > a.blue:hover {
                        border-bottom: 2px solid #006ba6;
                    }

                .navigation > ul > li > a.purple {
                    color: #9b26b6;
                    border-bottom: 2px solid white;
                }

                    .navigation > ul > li > a.purple.selected, .navigation > ul > li > a.purple:hover {
                        border-bottom: 2px solid #9b26b6;
                    }

                .navigation > ul > li > a.teal {
                    color: #00ab84;
                    border-bottom: 2px solid white;
                }

                    .navigation > ul > li > a.teal.selected, .navigation > ul > li > a.teal:hover {
                        border-bottom: 2px solid #00ab84;
                    }

                .navigation > ul > li > a.orange {
                    color: #f25a29;
                    border-bottom: 2px solid white;
                }

                    .navigation > ul > li > a.orange.selected, .navigation > ul > li > a.orange:hover {
                        border-bottom: 2px solid #f25a29;
                    }

                .navigation > ul > li > a.pink {
                    color: #ed008c;
                    border-bottom: 2px solid white;
                }

                    .navigation > ul > li > a.pink.selected, .navigation > ul > li > a.pink:hover {
                        border-bottom: 2px solid #ed008c;
                    }


@media only screen and (min-width: 1199px) {
    .navigation > ul > li > a,
    .navigation > ul > li > a:visited,
    .navigation > ul > li > a:hover {
        font-size: 18px;
    }
}

@media only screen and (max-width: 959px) {
    .navigation > ul > li {
        padding: 0px 10px;
    }

        .navigation > ul > li > a,
        .navigation > ul > li > a:visited,
        .navigation > ul > li > a:hover {
            font-size: 13px;
        }
}

.navigation-mega-menu {
    position: absolute;
    z-index: 9999;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    width: 100%;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.95);
    border: 4px solid #5c5c5c;
    transition: opacity 0.15s ease, left 0s linear, top 0s linear;
}

li:hover .navigation-mega-menu {
    opacity: 1;
    left: 0;
    top: 24px;
    transition-delay: 0.25s;
}

.navigation-mega-menu-column {
    float: left;
    padding: 10px 20px;
    width: 100%;
}

    .navigation-mega-menu-column.half {
        width: 50%;
    }

    .navigation-mega-menu-column.third {
        width: 33%;
    }

    .navigation-mega-menu-column.quarter {
        width: 25%;
    }

    .navigation-mega-menu-column.fifth {
        width: 20%;
    }

    .navigation-mega-menu-column.bordered {
        border-left: 2px solid #5c5c5c;
        border-right: 2px solid #5c5c5c;
        background-color: #cc2127;
        background-color: rgba(204, 33, 39, 0.07);
    }

    .navigation-mega-menu-column:first-child.bordered {
        border-right-width: 0px;
    }

    .navigation-mega-menu-column:last-child.bordered {
        border-right-width: 0px;
    }

.navigation-feature {
    background-color: #dae6f6;
    padding: 10px 20px 20px 20px;
}

    .navigation-feature .navigation-feature-image {
        float: right;
        margin: -10px -20px 10px 10px;
        width: 25%;
        border-width: 0px 0px 1px 1px;
    }


/* ============================================================================
/* Memberszone Navigation
/* ============================================================================ */

.memberszone-nav {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.memberszone-nav__item {
    font-family: 'gilroy-extrabold', Verdana, Arial;
}

    .memberszone-nav__item a {
        display: block;
        padding: 15px;
        color: #ffffff;
        text-decoration: none;
        width: 90%;
        font-weight: bold;
        background-color: #99d1e8;
        border-bottom-right-radius: 5px;
        border-top-right-radius: 5px;
        margin-bottom: 5px !important;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }


        .memberszone-nav__item a.selected,
        .memberszone-nav__item a:hover {
            background-color: #006ba6;
            width: 100%;
            color: #ffffff;
        }

    .memberszone-nav__item ul {
        list-style-type: none;
    }

/*.memberszone-nav__item li a  {
        color: #006ba6;
        background-color: #ffffff;
        font-weight: bold;
    }

    .memberszone-nav__item li a:hover  {
        color: #006ba6;
        background-color: #e8f7ff;
        font-weight: bold;
    }*/

/* ============================================================================
/* Overrides
/* ============================================================================ */

.ccl-pathway-header {
    overflow: hidden;
    max-height: 220px;
}

.breadcrumb {
    color: #2087c5;
}

.breadcrumb-container {
    position: fixed;
    width: 100%;
    z-index: 7777;
    margin-top: -37px;
    background-color: #f0f0f0;
    border-radius: 5px;
}

    .breadcrumb-container .breadcrumb {
        margin: 0px !important;
    }

.resource-box-link-container {
    width: 90%;
    padding: 20px 0 30px 0;
}

.container {
    max-width: 1400px !important;
    margin-left: auto;
    margin-right: auto;
}

.text--large {
    font: 32px;
}

.text--medium {
    font: 26px;
}

.text--gilroy {
    font-family: 'gilroy-extrabold', Arial;
}

.form-button,
.form-button:hover {
    display: inline-block;
    border: none;
    border-bottom: 5px solid #006f9e;
    border-radius: 3px;
    padding: 7px 20px 5px 20px;
    font: 16px 'gilroy-extrabold', Arial, Sans-serif, times;
    color: white;
    text-decoration: none;
    opacity: 0.85;
    cursor: pointer;
}

    .form-button.with-arrow {
        background: #006ba6 url(../images/button-arrow.png) no-repeat right;
        padding: 7px 30px 5px 20px;
    }

    .form-button:hover {
        opacity: 1.0;
    }

@media all and (max-width: 959px) {
    .form-button, .form-button:visited, .form-button:hover {
        font-size: 15px;
    }
}

.red .form-button, .red .form-button:visited, .red .form-button:hover,
.form-button.red, .form-button.red:visited, .form-button.red:hover {
    color: white;
    background-color: #d50032;
    border-bottom-color: #be1741;
}

.orange .form-button, .orange .form-button:visited, .orange .form-button:hover,
.form-button.orange, .form-button.orange:visited, .form-button.orange:hover {
    color: white;
    background-color: #f25a29;
    border-bottom-color: #c24821;
}

.pink .form-button, .pink .form-button:visited, .pink .form-button:hover,
.form-button.pink, .form-button.pink:visited, .form-button.pink:hover {
    color: white;
    background-color: #ed008c;
    border-bottom-color: #be0070;
}

.teal .form-button, .teal .form-button:visited, .teal .form-button:hover,
.form-button.teal, .form-button.teal:visited, .form-button.teal:hover {
    color: white;
    background-color: #00ab84;
    border-bottom-color: #008470;
}

.blue .form-button, .blue .form-button:visited, .blue .form-button:hover,
.form-button.blue, .form-button.blue:visited, .form-button.blue:hover {
    color: white;
    background-color: #2087c3;
    border-bottom-color: #1a6c9c;
}

.purple .form-button, .purple .form-button:visited, .purple .form-button:hover,
.form-button.purple, .form-button.purple:visited, .form-button.purple:hover {
    color: white;
    background-color: #9b26b6;
    border-bottom-color: #663b7d;
}

.green .form-button, .green .form-button:visited, .green .form-button:hover,
.form-button.green, .form-button.green:visited, .form-button.green:hover {
    color: white;
    background-color: #00ab84;
    border-bottom-color: #007636;
}

/* ============================================================================
/* Reusables
/* ============================================================================ */

.form-panel {
    background-color: #709ad1;
    padding: 20px;
    color: #fff;
    font-size: 0.9em;
}

    .form-panel a {
        color: #dde7f5;
    }

        .form-panel a:hover {
            color: #fff;
        }

    .form-panel h1 {
        color: #fff !important;
        font: 27px 'gilroy-extrabold', times;
        margin: 0px 0px 13px 0px;
    }

    .form-panel h2 {
        color: #fff !important;
        font: 25px 'gilroy-extrabold', times;
        margin: 0px 0px 20px 0px;
        opacity: 1.0;
    }

    .form-panel h3 {
        color: #fff !important;
        font: 20px 'gilroy-extrabold', times;
        margin: 0px 0px 10px 0px;
    }

.container-wrapper {
    background-color: #cce8f4;
    border-top: 10px solid #b1d5ea;
    border-bottom: 10px solid #b1d5ea;
    padding: 40px 0px 40px 0px;
    margin: 0px 0px 40px 0px;
}

    .red .container-wrapper, .container-wrapper.red.red {
        background-color: #fde8ed;
        border-color: #fbd3dd;
    }

    .green .container-wrapper, .container-wrapper.green.green {
        background-color: #cceee8;
        border-color: #ade0d7;
    }

    .blue .container-wrapper, .container-wrapper.blue.green {
        background-color: #cce8f4;
        border-color: #b3dced;
    }

    .purple .container-wrapper, .container-wrapper.purple.purple {
        background-color: #e5dbeb;
        border-color: #d2c0dc;
    }

    .orange .container-wrapper, .container-wrapper.orange.orange {
        background-color: #fddfd6;
        border-color: #fac5b4;
    }

    .pink .container-wrapper, .container-wrapper.pink.pink {
        background-color: #fccee9;
        border-color: #f9a6d7;
    }

    .teal .container-wrapper, .container-wrapper.teal.teal {
        background-color: #e5f6f3;
        border-color: #b7e5dd;
    }

.container-block {
    background-color: #fff;
    border: 3px solid #cce8f4;
    /*border-bottom: 5px solid #b1d5ea;*/
    border-radius: 5px;
    padding: 20px;
}

    .red .wrapper, .container-block.red.red { /*background-color: #fde8ed;*/
        background-color: #fff;
        border-color: #fbd3dd;
    }

    .green .wrapper, .container-block.green.green { /*background-color: #cceee8;*/
        background-color: #fff;
        border-color: #ade0d7;
    }

    .blue .wrapper, .container-block.blue.blue { /*background-color: #cce8f4;*/
        background-color: #fff;
        border-color: #b3dced;
    }

    .purple .wrapper, .container-block.purple.purple { /*background-color: #e5dbeb;*/
        background-color: #fff;
        border-color: #d2c0dc;
    }

    .orange .wrapper, .container-block.orange.orange { /*background-color: #fddfd6;*/
        background-color: #fff;
        border-color: #fac5b4;
    }

    .pink .wrapper, .container-block.pink.pink { /*background-color: #fccee9;*/
        background-color: #fff;
        border-color: #f9a6d7;
    }

    .teal .wrapper, .container-block.teal.teal { /*background-color: #fccee9;*/
        background-color: #fff;
        border-color: #b7e5dd;
    }


.container-block-small {
    background-color: #fff;
    border: 3px solid #cce8f4;
    /*border-bottom: 5px solid #b1d5ea;*/
    border-radius: 5px;
    padding: 8px;
}

.red .wrapper, .container-block.red.red { /*background-color: #fde8ed;*/
    background-color: #fff;
    border-color: #fbd3dd;
}

.green .wrapper, .container-block.green.green { /*background-color: #cceee8;*/
    background-color: #fff;
    border-color: #ade0d7;
}

.blue .wrapper, .container-block.blue.blue { /*background-color: #cce8f4;*/
    background-color: #fff;
    border-color: #b3dced;
}

.purple .wrapper, .container-block.purple.purple { /*background-color: #e5dbeb;*/
    background-color: #fff;
    border-color: #d2c0dc;
}

.orange .wrapper, .container-block.orange.orange { /*background-color: #fddfd6;*/
    background-color: #fff;
    border-color: #fac5b4;
}

.pink .wrapper, .container-block.pink.pink { /*background-color: #fccee9;*/
    background-color: #fff;
    border-color: #f9a6d7;
}

.teal .wrapper, .container-block.teal.teal { /*background-color: #fccee9;*/
    background-color: #fff;
    border-color: #b7e5dd;
}

.highlight-block {
    background-color: #cce8f4;
    /*border: 3px solid #cce8f4;*/
    border-bottom: 5px solid #b1d5ea;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px !important;
}

    .red .wrapper, .highlight-block.red.red {
        background-color: #fde8ed; /*background-color: #fff;*/
        border-color: #fbd3dd;
    }

    .green .wrapper, .highlight-block.green.green {
        background-color: #cceee8; /*background-color: #fff;*/
        border-color: #ade0d7;
    }

    .blue .wrapper, .highlight-block.blue.blue {
        background-color: #cce8f4; /*background-color: #fff;*/
        border-color: #b3dced;
    }

    .purple .wrapper, .highlight-block.purple.purple {
        background-color: #e5dbeb; /*background-color: #fff;*/
        border-color: #d2c0dc;
    }

    .orange .wrapper, .highlight-block.orange.orange {
        background-color: #fddfd6; /*background-color: #fff;*/
        border-color: #fac5b4;
    }

    .pink .wrapper, .highlight-block.pink.pink {
        background-color: #fccee9; /*background-color: #fff;*/
        border-color: #f9a6d7;
    }

    .teal .wrapper, .highlight-block.teal.teal {
        background-color: #e5f6f3; /*background-color: #fff;*/
        border-color: #b7e5dd;
    }

.why-join-block {
    background-color: #8ef2e0;
    /*border: 3px solid #cce8f4;*/
    color: #000000;
    border-bottom: 5px solid #72c2b3;
    border-radius: 5px;
    padding: 10px 10px 8px 10px;
    margin-bottom: 20px !important;
}

    .why-join-block h3 {
        color: #00ab84;
        font-size: 31px;
        padding-bottom: 15px;
    }

.opacity-hover {
    opacity: 0.7;
}

    .opacity-hover:hover {
        opacity: 1.0;
        transition: opacity .25s ease-in-out;
        -moz-transition: opacity .25s ease-in-out;
        -webkit-transition: opacity .25s ease-in-out;
    }

.container-splitter {
    border-top: 10px solid #e5f3f9;
    margin: 0px 0px 30px 0px;
}

    .red .container-splitter, .container-splitter.red.red {
        border-color: #fde8ed;
    }

    .green .container-splitter, .container-splitter.green.green {
        border-color: #cceee8;
    }

    .blue .container-splitter, .container-splitter.blue.green {
        border-color: #e5f3f9;
    }

    .purple .container-splitter, .container-splitter.purple.purple {
        border-color: #f2edf5;
    }

    .orange .container-splitter, .container-splitter.orange.orange {
        border-color: #feeee9;
    }

    .pink .container-splitter, .container-splitter.pink.pink {
        border-color: #fef4f9;
    }

    .teal .container-splitter, .container-splitter.teal.teal {
        border-color: #e5f6f3;
    }

.contact-quote {
    background-color: #e1e1e1;
    border-radius: 8px;
    padding: 20px;
}

    .red .contact-quote, .contact-quote.red.red {
        background-color: #fde8ed;
    }

    .green .contact-quote, .contact-quote.green.green {
        background-color: #cceee8;
    }

    .blue .contact-quote, .contact-quote.blue.green {
        background-color: #e5f3f9;
    }

    .purple .contact-quote, .contact-quote.purple.purple {
        background-color: #f2edf5;
    }

.orange .contact-quote, .contact-quoter.orange.orange {
    background-color: #feeee9;
}

.pink .contact-quote, .contact-quote.pink.pink {
    background-color: #fef4f9;
}

.teal .contact-quote, .contact-quote.teal.teal {
    background-color: #e5f6f3;
}

.contact-quote-bottom {
    border-top: 35px solid #e1e1e1;
    border-left: 35px solid transparent;
    height: 0px;
    margin-left: 72%;
    width: 0px;
    margin-bottom: 20px;
}

    .red .contact-quote-bottom, .contact-quote-bottom.red.red {
        border-top: 35px solid #fde8ed;
    }

    .green .contact-quote-bottom, .contact-quote-bottom.green.green {
        border-top: 35px solid #cceee8;
    }

    .blue .contact-quote-bottom, .contact-quote-bottom.blue.green {
        border-top: 35px solid #e5f3f9;
    }

    .purple .contact-quote-bottom, .contact-quote-bottom.purple.purple {
        border-top: 35px solid #f2edf5;
    }

.orange .contact-quote-bottom, .contact-quote-bottomr.orange.orange {
    border-top: 35px solid #feeee9;
}

.pink .contact-quote-bottom, .contact-quote-bottom.pink.pink {
    border-top: 35px solid #fef4f9;
}

.teal .contact-quote-bottom, .contact-quote-bottom.teal.teal {
    border-top: 35px solid #e5f6f3;
}

.no-underline {
    text-decoration: none;
}

/* ============================================================================
/* Header
/* ============================================================================ */

.header {
    margin-top: 20px;
}

.header-call-now {
    font: 20px 'gilroy-extrabold', arial, sans-serif;
    color: #ed008c;
}

.header-call-now-number {
    font: 26px 'gilroy-extrabold', arial, sans-serif;
}

.header-login-button {
    height: 50px;
    vertical-align: bottom;
    height: auto;
}

.header-button {
    max-height: 50px;
    vertical-align: bottom;
    height: auto;
    border: 0px solid #ffffff !important;
    padding: 0px !important;
    cursor: pointer;
}

    .header-button.login {
        max-width: 30%;
    }

    .header-button.social {
        max-width: 10.5%;
    }

    .header-button.dashboard {
        max-width: 40%;
    }

.navigation-column-heading {
    display: block;
    font: 20px 'gilroy-extrabold', arial, verdana;
    color: #cc2127;
    margin-bottom: 5px;
}

@media all and (max-width: 767px) {
    .header {
        display: none;
    }
}

/* ============================================================================
/* Lists
/* ============================================================================ */

.resource-box ul,
ul.purple-stars {
    list-style-image: url('../Images/purple-star.png');
}

ul li:last-child.purple-stars {
    margin-bottom: 0px !important;
}

/* ============================================================================
/* Navigation (main control over this is in Navigation.css)
/* ============================================================================ */

.navigation-column-list {
    list-style-type: none;
    padding: 0px;
    margin: 0px 0px;
}

    .navigation-column-list li {
        margin-bottom: 5px;
    }

        .navigation-column-list li a,
        .navigation-column-list li a:visited {
            color: #454545;
            text-decoration: none;
        }

            .navigation-column-list li a:hover {
                color: #cc2127;
                text-decoration: underline;
            }

/* ============================================================================
/* Footer
/* ============================================================================ */

.footer {
    padding: 40px 0px;
    background-color: #21242b;
    color: #fff;
}

.red .footer {
    background-color: #d50032 !important;
}

.green .footer {
    background-color: #00ab84 !important;
}

.blue .footer {
    background-color: #006ba6 !important;
}

.purple .footer {
    background-color: #9b26b6 !important;
}

.orange .footer {
    background-color: #f25a29 !important;
}

.pink .footer {
    background-color: #ed008c !important;
}

.teal .footer {
    background-color: #00ab84 !important;
}


.footer a,
.footer a:visited {
    color: #fff !important;
}

    .footer a:hover {
        color: #a9dbf1 !important;
    }

.footer-logo {
    float: left;
    width: 22%;
}

    .footer-logo img {
        max-width: 200px;
    }

.footer-living-wage {
    float: left;
    width: 7%;
    margin: 0px 2% 0px 2%;
    text-align: center;
}

.footer-living-wage-mobile {
    width: 45%;
    margin: 25px auto;
    text-align: center;
}

.footer-oscr {
    float: left;
    width: 6%;
    margin: 0px 3% 0px 3%;
    text-align: center;
}

.footer-oscr-mobile {
    width: 45%;
    margin: 25px auto;
    text-align: center;
}


/*.footer-investor-in-people {
    float: left;
    width: 15%;
    margin: 0px 3% 0px 3%;
    text-align: center;
}*/

.footer-investor-in-people-mobile {
    width: 45%;
    margin: 25px auto;
    text-align: center;
}

.footer-scotfund {
    float: left;
    width: 12%;
    margin: 0px 0%;
    text-align: center;
}

.footer-scotfund-mobile {
    width: 50%;
    margin: 25px auto;
    text-align: center;
}

.footer-social-media {
    float: right;
    width: 30%;
    text-align: right;
}

.footer-navigation {
    clear: both;
    overflow: auto;
    padding: 40px 0px;
}

    .footer-navigation ul {
        list-style: none;
        padding: 0px;
        margin: 0px;
    }

        .footer-navigation ul li {
            float: left;
            margin-right: 30px;
        }

            .footer-navigation ul li a,
            .footer-navigation ul li a:visited,
            .footer-navigation ul li a:hover {
                color: white;
                font: 17px 'gilroy-extrabold', arial, verdana;
                text-decoration: none;
            }

                .footer-navigation ul li a.footer-navigation-sublink,
                .footer-navigation ul li a.footer-navigation-sublink:visited {
                    font: 17px arial, verdana !important;
                    margin-bottom: 5px;
                    color: #ffffff;
                    text-decoration: none;
                }

                    .footer-navigation ul li a.footer-navigation-sublink:hover {
                        color: white;
                        text-decoration: underline;
                    }

                    .red .footer-navigation ul li a.footer-navigation-sublink, .footer-navigation ul li a.footer-navigation-sublink:visited {
                        color: #fde8ed;
                    }

                    .green .footer-navigation ul li a.footer-navigation-sublink, .footer-navigation ul li a.footer-navigation-sublink:visited {
                        color: #cceee8;
                    }

                    .blue .footer-navigation ul li a.footer-navigation-sublink, .footer-navigation ul li a.footer-navigation-sublink:visited {
                        color: #e5f3f9;
                    }

                    .purple .footer-navigation ul li a.footer-navigation-sublink, .footer-navigation ul li a.footer-navigation-sublink:visited {
                        color: #f2edf5;
                    }

                    .orange .footer-navigation ul li a.footer-navigation-sublink, .footer-navigation ul li a.footer-navigation-sublink:visited {
                        color: #feeee9;
                    }

                    .pink .footer-navigation ul li a.footer-navigation-sublink, .footer-navigation ul li a.footer-navigation-sublink:visited {
                        color: #fef4f9;
                    }

                    .teal .footer-navigation ul li a.footer-navigation-sublink, .footer-navigation ul li a.footer-navigation-sublink:visited {
                        color: #e5f6f3;
                    }

.footer-extra {
    clear: both;
    margin-bottom: 20px;
}

.footer-payment-logos {
    float: left;
    width: 80%;
    padding-right: 30%;
}

.footer-powered-by {
    float: left;
    width: 20%;
    text-align: right;
}

@media all and (max-width: 959px) {
    .footer-navigation ul li a, .footer-navigation ul li a:visited, .footer-navigation ul li a:hover {
        font-size: 17px;
    }
}

@media all and (max-width: 1179px) {
    .footer-logo {
        /*width: 40%;
        margin: 0 10% 0 0;*/
        text-align: center;
        width: 100%;
        margin: 0 0 30px 0;
    }

    /*.footer-investor-in-people {
        width: 20%;
        margin: 0 0 0 40%;
    }*/

    .footer-scotfund {
        margin: 0px 55px 0px 20px !important;
        width: 18%;
        float: right;
    }

    .footer-oscr {
        margin: 0px 0px 0px 55px !important;
        width: 12%;
        float: left;
    }

    .footer-living-wage {
        margin: 0px 0px 0px 55px !important;
        width: 14%;
        float: left;
    }

    .footer-social-media {
        width: 100%;
        margin: 20px 0px;
        text-align: center;
    }

    .footer-navigation {
        /*clear: none;
        float: left;
        width: 60%;*/
        padding: 20px 0px 20px 0px;
        text-align: center;
    }

        .footer-navigation ul li {
            float: none;
            margin: 8px 0px;
        }

    .footer-extra {
        padding: 20px;
        border-radius: 5px;
    }

        .footer-extra span:not(.not-mobile) {
            display: block;
            text-align: center;
            margin: 2px 0px;
        }

    .footer-payment-logos {
        float: none;
        width: 100%;
        padding-right: 0;
        margin-bottom: 10px;
        text-align: center;
    }

    .footer-powered-by {
        float: none;
        width: 100%;
        text-align: center;
    }
}

@media all and (max-width: 767px) {
    .footer-logo {
        text-align: center;
        width: 100%;
    }
}

/* ============================================================================
/* Navigation
/* ============================================================================ */

.navigation-wrapper {
}

.navigation {
}

    .navigation > ul {
        position: relative;
        list-style-type: none;
        padding: 0px;
        margin: 0px;
    }

        .navigation > ul > li {
            float: left;
            padding: 0px 11px;
        }

            .navigation > ul > li > a,
            .navigation > ul > li > a:visited,
            .navigation > ul > li > a:hover {
                font: 16px 'quicksandbold', arial, verdana;
                display: inline-block;
                padding-bottom: 4px;
                text-decoration: none;
            }

                .navigation > ul > li > a.red {
                    color: #d50032;
                    border-bottom: 4px solid white;
                }

                    .navigation > ul > li > a.red.selected, .navigation > ul > li > a.red:hover {
                        border-bottom: 4px solid #d50032;
                    }

                .navigation > ul > li > a.green {
                    color: #00ab84;
                    border-bottom: 4px solid white;
                }

                    .navigation > ul > li > a.green.selected, .navigation > ul > li > a.green:hover {
                        border-bottom: 4px solid #00ab84;
                    }

                .navigation > ul > li > a.blue {
                    color: #006ba6;
                    border-bottom: 4px solid white;
                }

                    .navigation > ul > li > a.blue.selected, .navigation > ul > li > a.blue:hover {
                        border-bottom: 4px solid #006ba6;
                    }

                .navigation > ul > li > a.purple {
                    color: #9b26b6;
                    border-bottom: 4px solid white;
                }

                    .navigation > ul > li > a.purple.selected, .navigation > ul > li > a.purple:hover {
                        border-bottom: 4px solid #9b26b6;
                    }

                .navigation > ul > li > a.teal {
                    color: #00ab84;
                    border-bottom: 4px solid white;
                }

                    .navigation > ul > li > a.teal.selected, .navigation > ul > li > a.teal:hover {
                        border-bottom: 4px solid #00ab84;
                    }

                .navigation > ul > li > a.orange {
                    color: #f25a29;
                    border-bottom: 4px solid white;
                }

                    .navigation > ul > li > a.orange.selected, .navigation > ul > li > a.orange:hover {
                        border-bottom: 4px solid #f25a29;
                    }

                .navigation > ul > li > a.pink {
                    color: #ed008c;
                    border-bottom: 4px solid white;
                }

                    .navigation > ul > li > a.pink.selected, .navigation > ul > li > a.pink:hover {
                        border-bottom: 4px solid #ed008c;
                    }


@media only screen and (min-width: 1199px) {
    .navigation > ul > li > a,
    .navigation > ul > li > a:visited,
    .navigation > ul > li > a:hover {
        font-size: 18px;
    }
}

@media only screen and (max-width: 959px) {
    .navigation > ul > li {
        padding: 0px 10px;
    }

        .navigation > ul > li > a,
        .navigation > ul > li > a:visited,
        .navigation > ul > li > a:hover {
            font-size: 13px;
        }
}

.navigation-mega-menu {
    position: absolute;
    z-index: 9999;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    width: 100%;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.95);
    border: 4px solid #5c5c5c;
    transition: opacity 0.15s ease, left 0s linear, top 0s linear;
}

li:hover .navigation-mega-menu {
    opacity: 1;
    left: 0;
    top: 24px;
    transition-delay: 0.25s;
}

.navigation-mega-menu-column {
    float: left;
    padding: 10px 20px;
    width: 100%;
}

    .navigation-mega-menu-column.half {
        width: 50%;
    }

    .navigation-mega-menu-column.third {
        width: 33%;
    }

    .navigation-mega-menu-column.quarter {
        width: 25%;
    }

    .navigation-mega-menu-column.fifth {
        width: 20%;
    }

    .navigation-mega-menu-column.bordered {
        border-left: 2px solid #5c5c5c;
        border-right: 2px solid #5c5c5c;
        background-color: #cc2127;
        background-color: rgba(204, 33, 39, 0.07);
    }

    .navigation-mega-menu-column:first-child.bordered {
        border-right-width: 0px;
    }

    .navigation-mega-menu-column:last-child.bordered {
        border-right-width: 0px;
    }

.navigation-feature {
    background-color: #dae6f6;
    padding: 10px 20px 20px 20px;
}

    .navigation-feature .navigation-feature-image {
        float: right;
        margin: -10px -20px 10px 10px;
        width: 25%;
        border-width: 0px 0px 1px 1px;
    }

/* ============================================================================
/* Breadcrumb
/* ============================================================================ */

.breadcrumb {
    padding: 10px;
    margin: 10px 0px 20px 0px;
    color: #343434;
    background-color: #f0f0f0;
}

    .breadcrumb a,
    .breadcrumb a:visited {
        color: #343434;
        text-decoration: none;
    }

        .breadcrumb a:hover {
            color: #343434;
            text-decoration: underline;
        }

/* ============================================================================
/* Homepage
/* ============================================================================ */

.homepage-slider {
    height: 300px;
    overflow: hidden;
}

.homepage-slider-slide {
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

    /* This code forces the skeleton grid container and column to be 100% height so we can align homepage-slider-slide-text below to the bottom of the slide */
    .homepage-slider-slide .container {
        height: 100%;
    }

    .homepage-slider-slide .columns {
        height: 100%;
    }

.homepage-slider-slide-text {
    position: absolute;
    max-width: 50%;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 10px;
    font: 20px 'gilroy-extrabold', times;
    left: 10px;
    right: 10px;
    bottom: 0px;
    margin-bottom: 50px;
}

.homepage-slider .homepage-slider-slide.red .homepage-slider-slide-text {
    color: #d50032;
}

.homepage-slider .homepage-slider-slide.green .homepage-slider-slide-text {
    color: #00ab84;
}

.homepage-slider .homepage-slider-slide.blue .homepage-slider-slide-text {
    color: #006ba6;
}

.homepage-slider .homepage-slider-slide.purple .homepage-slider-slide-text {
    color: #9b26b6;
}

.homepage-slider .homepage-slider-slide.teal .homepage-slider-slide-text {
    color: #00ab84;
}

.homepage-slider .homepage-slider-slide.pink .homepage-slider-slide-text {
    color: #ed008c;
}

.homepage-slider .homepage-slider-slide.orange .homepage-slider-slide-text {
    color: #f25a29;
}

.homepage-slider-slide-link,
.homepage-slider-slide-link:visited,
.homepage-slider-slide-link:hover {
    position: absolute;
    color: white;
    border-radius: 5px;
    font: 20px 'gilroy-extrabold', times;
    padding: 10px;
    right: 10px;
    bottom: 0px;
    margin-bottom: 50px;
    text-decoration: none;
}

.homepage-slider .homepage-slider-slide.red .homepage-slider-slide-link {
    background-color: #d50032;
    background-color: rgba(237, 29, 81, 0.8);
    color: #FFFFFF;
}

.homepage-slider .homepage-slider-slide.green .homepage-slider-slide-link {
    background-color: #00ab84;
    background-color: rgba(0, 147, 67, 0.8);
    color: #FFFFFF;
}

.homepage-slider .homepage-slider-slide.blue .homepage-slider-slide-link {
    background-color: #006ba6;
    background-color: rgba(0, 139, 198, 0.8);
    color: #FFFFFF;
}

.homepage-slider .homepage-slider-slide.purple .homepage-slider-slide-link {
    background-color: #9b26b6;
    background-color: rgba(127, 74, 156, 0.8);
    color: #FFFFFF;
}

.homepage-slider .homepage-slider-slide.teal .homepage-slider-slide-link {
    background-color: #00ab84;
    background-color: rgba(0, 165, 140, 0.8);
    color: #FFFFFF;
}

.homepage-slider .homepage-slider-slide.pink .homepage-slider-slide-link {
    background-color: #ed008c;
    background-color: rgba(237, 0, 140, 0.8);
    color: #FFFFFF;
}

.homepage-slider .homepage-slider-slide.orange .homepage-slider-slide-link {
    background-color: #f25a29;
    background-color: rgba(242, 90, 41, 0.8);
    color: #FFFFFF;
}

/* BX Slider adds a clone element to the start so we start nth-child at 2 here */
/*.homepage-slider .homepage-slider-slide:nth-child(2) .homepage-slider-slide-text { color: #006ba6; }
        .homepage-slider .homepage-slider-slide:nth-child(3) .homepage-slider-slide-text { color: #00ab84; }
        .homepage-slider .homepage-slider-slide:nth-child(4) .homepage-slider-slide-text { color: #d50032; }
        .homepage-slider .homepage-slider-slide:nth-child(5) .homepage-slider-slide-text { color: #f25a29; }*/


.homepage-slider-controls {
    margin-top: -40px;
    margin-bottom: 20px;
}

.homepage-slider-controls-button,
.homepage-slider-controls-button:visited,
.homepage-slider-controls-button:hover {
    display: block;
    border-radius: 5px 5px 0px 0px;
    padding: 5px 15px;
    font: 16px 'gilroy-extrabold', times;
    letter-spacing: -1px;
    color: white;
    text-decoration: none;
    position: relative;
    height: 40px;
    z-index: 999;
}

.homepage-slider-controls .columns.red .homepage-slider-controls-button {
    background-color: #d50032;
    background-color: rgba(237, 29, 81, 0.8);
    color: #FFFFFF;
}

.homepage-slider-controls .columns.green .homepage-slider-controls-button {
    background-color: #00ab84;
    background-color: rgba(0, 147, 67, 0.8);
    color: #FFFFFF;
}

.homepage-slider-controls .columns.blue .homepage-slider-controls-button {
    background-color: #006ba6;
    background-color: rgba(0, 139, 198, 0.8);
    color: #FFFFFF;
}

.homepage-slider-controls .columns.purple .homepage-slider-controls-button {
    background-color: #9b26b6;
    background-color: rgba(127, 74, 156, 0.8);
    color: #FFFFFF;
}

.homepage-slider-controls .columns.teal .homepage-slider-controls-button {
    background-color: #00ab84;
    background-color: rgba(0, 165, 140, 0.8);
    color: #FFFFFF;
}

.homepage-slider-controls .columns.pink .homepage-slider-controls-button {
    background-color: #ed008c;
    background-color: rgba(237, 0, 140, 0.8);
    color: #FFFFFF;
}

.homepage-slider-controls .columns.orange .homepage-slider-controls-button {
    background-color: #f25a29;
    background-color: rgba(242, 90, 41, 0.8);
    color: #FFFFFF;
}


@media all and (min-width: 1199px) {
    .homepage-slider {
        height: 400px;
    }
}

@media all and (min-width: 768px) and (max-width: 959px) {
    .homepage-slider-controls-button, .homepage-slider-controls-button:visited, .homepage-slider-controls-button:hover {
        font-size: 14px;
    }
}

@media all and (max-width: 767px) {
    .homepage-slider {
        height: 200px;
    }

    .homepage-slider-slide-text {
        max-width: none;
        margin-bottom: 20px;
        font-size: 15px;
    }

    .homepage-slider-slide-link, .homepage-slider-slide-link:visited, .homepage-slider-slide-link:hover {
        top: 10px;
        bottom: initial;
        font-size: 15px;
    }

    .homepage-slider-controls {
        margin-top: 0;
    }

    .homepage-slider-controls-button, .homepage-slider-controls-button:visited, .homepage-slider-controls-button:hover {
        border-radius: 0px;
        height: 28px;
        margin-top: 1px;
    }
}

/* ============================================================================ */

.homepage-help {
    padding: 20px;
    margin: 0px 10px;
    text-align: center;
}

.homepage-help-question {
    display: block;
    color: #006ba6;
    font: 35px 'gilroy-extrabold', times;
    margin: 0px 0px 10px 0px;
    letter-spacing: -2px;
}

.homepage-help-links {
}

    .homepage-help-links a,
    .homepage-help-links a:visited,
    .homepage-help-links a:hover {
        display: inline-block;
        height: 70px;
        width: 200px;
        background-color: #006ba6;
        border-bottom: 2px solid #005275;
        border-radius: 5px;
        font: 20px 'gilroy-extrabold', times;
        color: white;
        text-decoration: none;
        margin: 5px;
    }

        .homepage-help-links a:before {
            content: '';
            display: inline-block;
            height: 100%;
            vertical-align: middle;
            margin-right: -0.25em; /* Adjusts for spacing */
        }

        .homepage-help-links a.green {
            background-color: #00ab84;
            border-bottom-color: #007636;
        }

        .homepage-help-links a.red {
            background-color: #d50032;
            border-bottom-color: #be1741;
        }

        .homepage-help-links a.orange {
            background-color: #f25a29;
            border-bottom-color: #c24821;
        }

        .homepage-help-links a.teal {
            background-color: #00ab84;
            border-bottom-color: #008470;
        }

        .homepage-help-links a .centered {
            display: inline-block;
            vertical-align: middle;
            width: 100%;
        }

/* ============================================================================ */

.homepage-twitter-item:not(:last-child) {
    margin-bottom: 20px;
}


/* ============================================================================
/* Childminder Search Widget
/* ============================================================================ */

.childminder-search-widget {
    /*background-color: #006ba6;*/
    background: url("../images/childminder-search-bg.png") no-repeat;
    border-bottom: 5px solid #006f9e;
    border-radius: 5px;
    padding: 20px;
}

    .childminder-search-widget.pink.pink {
        background-color: #d50032;
        border-bottom-color: #be1741;
    }

.childminder-search-widget-title {
    color: white;
    font: 26px 'gilroy-extrabold', arial, sans-serif;
    padding: 2px 0px 0px 35px;
    /*background: transparent url(../images/icon-search.png) no-repeat left top;*/
    margin-bottom: 15px;
}

.childminder-search-widget input,
.childminder-search-widget select {
    display: block;
    width: 100%;
    border: none;
    padding: 8px;
    margin: 0px;
    background-color: white;
    border-radius: 5px;
    outline: none;
}

.childminder-search-widget-postcode {
    margin-top: 15px;
}

.childminder-search-widget-postcode-input {
    overflow: auto;
    margin: 0px;
    padding: 0px;
}

.childminder-search-widget-postcode a,
.childminder-search-widget-postcode a:visited,
.childminder-search-widget-postcode a:hover {
    float: right;
    background-color: #00335c;
    color: white;
    text-decoration: none;
    font: 20px 'gilroy-extrabold', arial, sans-serif;
    padding: 5px 10px;
    vertical-align: bottom;
    border-radius: 5px;
    margin-left: 15px;
}

.childminder-search-widget.pink.pink {
    background-color: #f26186;
}


/* ============================================================================
/* Childminder Search 
/* ============================================================================ */

.childminder-search {
    background-color: #006ba6;
    border-bottom: 5px solid #006f9e;
    border-radius: 5px;
    padding: 20px;
    color: white;
}

.teal .childminder-search {
    background-color: #27b29d;
    border-color: #279685;
}

.purple .childminder-search {
    background-color: #9b26b6;
    border-color: #663b7d;
}

.childminder-search input[type=text] .childminder-search textarea,
.childminder-search select {
    display: block;
    width: 100%;
    border: none;
    padding: 8px;
    margin: 0px;
    background-color: white;
    border-radius: 5px;
    outline: none;
}

.childminder-search a,
.childminder-search a:visited,
.childminder-search a:hover {
    display: block;
    background-color: #00335c;
    color: white;
    text-decoration: none;
    font: 20px 'gilroy-extrabold', arial, sans-serif;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.teal .childminder-search a,
.teal .childminder-search a:visited,
.teal .childminder-search a:hover {
    background-color: #05433a;
}

.purple .childminder-search a,
.purple .childminder-search a:visited,
.purple .childminder-search a:hover {
    background-color: #592972;
}

.childminder-search-results {
    border: 3px solid #e2eef8;
    border-radius: 8px;
}

.teal .childminder-search-results {
    border-color: #d1f5f0;
}

.purple .childminder-search-results {
    border-color: #cab4d6;
}

.childminder-search-results-item {
    padding: 10px;
}

    .childminder-search-results-item:nth-child(odd) {
        background-color: #f2f9fc;
        border-top: 1px solid #e2eef8;
        border-bottom: 1px solid #e2eef8;
    }

.teal .childminder-search-results-item:nth-child(odd) {
    background-color: #f4fbfa;
    border-color: #d1f5f0;
}

.purple .childminder-search-results-item:nth-child(odd) {
    background-color: #f8f6fa;
    border-color: #cab4d6;
}

.childminder-search-results-item-name {
    margin-bottom: 10px;
    font-size: 14px;
}

.childminder-search-results-item-address {
    text-align: right;
}

/* ============================================================================
/* Pager
/* ============================================================================ */

.pager {
    color: #ffffff;
    background-color: #006ba6;
    border-radius: 5px;
}

.teal .pager {
    background-color: #27b29d;
}

.purple .pager {
    background-color: #9b26b6;
}

.pager-stats {
    padding: 10px;
    border-bottom: 1px solid white;
}

.pager-controls {
    padding: 10px;
}

    .pager-controls a,
    .pager-controls a:visited,
    .pager-controls a:hover {
        display: inline-block;
        padding: 3px;
        color: white;
        opacity: 0.8;
        text-decoration: none;
    }

.pagerlinks_selected {
    font-weight: bold;
    color: #ffffff;
}

/* ============================================================================
/* Details Table
/* ============================================================================ */

.details-table {
    width: 100%;
    background-color: #f2f9fc;
    border: 3px solid #c6e3ef;
    border-radius: 8px;
}

.teal .details-table {
    background-color: #f4fbfa;
    border-color: #d1f5f0;
}

.purple .details-table {
    background-color: #f8f6fa;
    border-color: #cab4d6;
}

.details-table tr td {
    padding: 10px;
    vertical-align: top;
}

    .details-table tr td:first-child {
        background-color: #e5f3f9;
        font-weight: bold;
    }

.teal .details-table tr td:first-child {
    background-color: #e9f7f5;
    font-weight: bold;
}

.purple .details-table tr td:first-child {
    background-color: #f2edf5;
    font-weight: bold;
}

.details-table tr:nth-child(odd) td {
    border-top: 1px solid #c6e3ef;
    border-bottom: 1px solid #c6e3ef;
}

.teal .details-table tr:nth-child(odd) td {
    border-color: #d1f5f0;
}

.purple .details-table tr:nth-child(odd) td {
    border-color: #cab4d6;
}


/* ============================================================================
/* Sample Code
/* ============================================================================ */

.homepage-upcoming-courses {
}

.homepage-upcoming-courses-heading {
    text-align: center;
    font: 25px 'gilroy-extrabold', arial, sans-serif;
    background-color: #cc2127;
    color: white;
    padding: 4px 0px 8px 0px;
}

.homepage-upcoming-courses-item {
    background-color: white;
    padding: 15px;
}

    .homepage-upcoming-courses-item:not(:last-child) {
        margin-bottom: 8px;
    }

.homepage-upcoming-courses-item-date {
    margin-top: 5px;
    font: 18px 'gilroy-extrabold', Arial, Verdana, sans-serif;
    color: #cc2127;
    text-transform: uppercase;
    overflow: auto;
}

.homepage-upcoming-courses-item-price {
    float: right;
    font: 18px 'gilroy-extrabold', Arial, Verdana, sans-serif;
    color: #cc2127;
    text-transform: uppercase;
    margin: 0px 15px;
}

.homepage-upcoming-courses-item-view {
    float: right;
    margin-top: -3px;
}

@media all and (max-width: 959px) {
    .homepage-upcoming-courses-heading {
        font-size: 17px;
    }

    .homepage-upcoming-courses-item {
        padding: 8px;
    }

    .homepage-upcoming-courses-item-date {
        font-size: 15px;
    }

    .homepage-upcoming-courses-item-price {
        font-size: 15px;
    }
}

.homepage-features {
}

.homepage-features-item,
.homepage-features-item:visited,
.homepage-features-item:hover {
    float: left;
    width: 33.333%;
    border-width: 0px 10px 20px 10px;
    border-style: solid;
    border-color: white;
    display: block;
    color: #000000;
    text-decoration: none;
    background-color: #efefef;
}

    .homepage-features-item:hover {
        background-color: #f7f7f7;
        transition: background 0.5s;
    }

.homepage-features-item-heading {
    font: 24px 'gilroy-extrabold', Arial, Verdana, sans-serif;
    text-align: center;
    padding: 10px 20px;
}

.homepage-features-item-content {
    padding: 20px;
    height: 170px;
}

.homepage-features-item-link {
    font: 18px 'gilroy-extrabold', Arial, Verdana, sans-serif;
    text-align: right;
    padding: 10px 20px;
    background-color: #e4e4e4;
    text-transform: uppercase;
}

@media all and (max-width: 1199px) {
    .homepage-features-item-content {
        height: 200px;
    }
}

@media all and (max-width: 959px) {
    .homepage-features-item-heading {
        font-size: 18px;
    }

    .homepage-features-item-content {
        height: 250px;
    }
}


/* ============================================================================
/* Memberszone
/* ============================================================================ */

.my-dashboard-header {
}

.my-dashboard-header--text {
    background: url(../Images/blue-dashboard.png) no-repeat;
    background-position: center left;
    font-family: 'gilroy-extrabold', Arial;
    padding-left: 45px;
    font-size: 2.4rem;
    color: #006ba6;
}

@media all and (max-width: 959px) {
    .my-dashboard-header--text {
        font-size: 1.6rem;
    }
}

.my-dashboard-header--text.purple {
    background: url(../Images/purple-dashboard.png) no-repeat;
    background-position: center left;
    color: #9b26b6;
}

a.my-dashboard-header--link {
    background-color: #006ba6;
    background-image: url(../Images/dashboard.png);
    background-repeat: no-repeat;
    background-position: 10px;
    font: 20px 'gilroy-extrabold', times;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    padding-left: 45px;
    padding: 10px;
    padding-left: 45px;
    color: #ffffff !important;
    border-bottom: 3px solid #035582;
    transition: all 0.3s ease 0s;
}

    a.my-dashboard-header--link:hover {
        color: white !important;
        background-color: #035582;
    }

    a.my-dashboard-header--link.purple:hover {
        color: white !important;
        background-color: #721a86;
    }

    a.my-dashboard-header--link.purple {
        background-color: #9b26b6;
        border-bottom: 3px solid #721a86;
    }

.my-membership-header {
    background-color: #006ba6;
    font: 26px 'gilroy-extrabold', times;
    border-radius: 5px;
    text-align: center;
    padding: 15px;
    color: #ffffff;
    margin-bottom: 20px !important;
    margin-top: 20px !important;
}

@media all and (max-width: 959px) {
    .my-membership-header {
        font: 20px 'gilroy-extrabold', times;
    }
}



.my-membership-header.purple {
    background-color: #9b26b6;
}

.my-learning-item,
.my-membership-item {
    background-color: #006ba6;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 15px;
}

    .my-learning-item.purple,
    .my-membership-item.purple {
        background-color: #9b26b6;
    }

    .my-learning-item.fixed-height,
    .my-membership-item.fixed-height {
        height: 220px;
    }

    .my-learning-item.summer-sunset,
    .my-membership-item.summer-sunset {
        background-color: #f67e1f;
    }

    .my-learning-item.orange,
    .my-membership-item.orange {
        background-color: #f25a29;
    }

    .my-learning-item.green,
    .my-membership-item.green {
        background-color: #00ab84;
    }

    .my-learning-item.red,
    .my-membership-item.red {
        background-color: #d50032;
    }

    .my-learning-item.margin0,
    .my-membership-item.margin0 {
        margin-bottom: 0px;
    }


.my-learning-item-title,
.my-membership-item-title {
    color: #ffffff;
    font: 18px 'gilroy-extrabold', times;
    padding: 5px 0 10px 10px;
}

.purple .my-learning-item-title,
.purple .my-membership-item-title {
    color: #ffffff;
}

.my-learning-item-title.fixed-height,
.my-membership-item-title.fixed-height {
    height: 70px;
}

.my-learning-item-highlight,
.my-membership-item-highlight {
    border-radius: 5px;
    background-color: #d50032;
    border-bottom-color: #be1741;
    text-align: center;
    color: #ffffff;
    font: 18px 'gilroy-extrabold', times;
    padding: 10px 20px 10px 20px;
    display: inline-block;
    margin: auto;
}

.my-learning-item-content,
.my-membership-item-content {
    background-color: #ffffff;
    border-radius: 0px;
    padding: 10px;
}

    .my-learning-item-content.faq,
    .my-membership-item-content.faq {
        max-height: 573px;
        overflow-y: hidden;
        border-radius: 0px;
    }

        .my-learning-item-content.faq .accordion-content,
        .my-membership-item-content.faq .accordion-content {
            position: absolute;
            z-index: 200;
            background: white;
            margin-right: 28px;
            border: 1px solid #55acee;
        }


    .my-learning-item-content.faq-buttons,
    .my-membership-item-content.faq-buttons {
        background-color: white;
        border-radius: 0px;
    }

    .my-learning-item-content.fixed-height,
    .my-membership-item-content.fixed-height {
        min-height: 230px;
        max-height: 100%;
    }

.my-learning-item-percentage {
    color: #9b26b6;
    font: 22px 'gilroy-extrabold', times;
}

    .my-learning-item-percentage.large {
        font: 50px 'gilroy-extrabold', times;
    }

.data {
    /*position: relative;*/
}

.my-learning-item-splitter,
.my-membership-item-splitter {
    border-bottom: 4px solid #e5f3f9;
    margin: 5px 0px 5px 0px;
}

    .my-membership-item-splitter:last-child {
        border-bottom: 0px;
    }

.my-learning-item-table,
.my-membership-item-table {
    display: table;
    border-collapse: collapse;
}

.my-learning-item-row,
.my-membership-item-row {
    display: table-row;
    margin-bottom: 20px;
}

.my-learning-item-column,
.my-membership-item-column {
    display: table-cell;
    padding-right: 10px;
}

.my-learning-item-column-centre,
.my-membership-item-column-centre {
    display: table-cell;
    padding-right: 10px;
    text-align: center;
    width: 100%;
}

.my-learning-textbox,
.my-membership-textbox {
    border-radius: 5px;
    padding: 6px;
    width: 100%;
    font: 16px Arial, Sans-serif, times;
}

.my-learning-button,
.my-membership-button {
    display: inline-block;
    border: none;
    border-bottom: 2px solid #008672;
    border-radius: 3px;
    padding: 10px 20px 10px 20px;
    margin-top: 5px;
    font: 18px 'gilroy-extrabold', times;
    color: white !important;
    text-decoration: none;
    background-color: #00a88e;
    opacity: 0.85;
    transition: all ease-in 0.15s;
}

    .my-learning-button.green,
    .my-membership-button.green {
        background-color: #00ab84;
    }



    .my-learning-button:hover,
    .my-membership-button:hover {
        display: inline-block;
        border: none;
        border-bottom: 2px solid #005649;
        border-radius: 3px;
        padding: 10px 20px 10px 20px;
        margin-top: 5px;
        cursor: pointer;
        color: white;
        text-decoration: none;
        background-color: #008672;
        opacity: 1.0;
    }

    .my-learning-button.small,
    .my-membership-button.small {
        font: 18px 'gilroy-extrabold', times;
        padding: 2.5px 5px 2.5px 5px;
        max-width: 100%;
    }

        .my-learning-button.small.shop,
        .my-membership-button.small.shop {
            float: right;
            display: inline-block;
        }

.my-learning-button--white,
.my-learning-button--white:visited,
.my-membership-button--white,
.my-membership-button--white:visited {
    color: #006ba6 !important;
    background-color: #ffffff;
    border-bottom-color: #d9d9d9;
}

    .my-learning-button--white:hover,
    .my-membership-button--white:hover {
        color: white;
        background-color: #d9d9d9;
        border-bottom-color: #d9d9d9;
    }

.my-learning-button.orange,
.my-membership-button.orange {
    background-color: #f25a29;
    border-bottom-color: #c24821;
}

.my-learning-item-certificate {
    color: #00ab84;
    font: 18px 'gilroy-extrabold', times;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 38px;
    padding-left: 47px;
    background-image: url(../images/certificate.png);
    display: block;
    text-decoration: none;
}

.my-learning-item-funding {
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 45px;
    padding-left: 50px;
}

    .my-learning-item-funding.self-pay-paid {
        background-image: url(../images/self-pay-paid.png);
    }

    .my-learning-item-funding.self-pay-unpaid {
        background-image: url(../images/self-pay-unpaid.png);
    }

    .my-learning-item-funding.funding-awaiting-funding {
        background-image: url(../images/funding-awaiting-funding.png);
    }

    .my-learning-item-funding.funding-funded {
        background-image: url(../images/funding-funded.png);
    }


.size-guide-button {
    display: inline-block;
    border: none;
    border-bottom: 5px solid #006f9e;
    border-radius: 3px;
    padding: 6px 15px 6px 40px;
    margin-top: 5px;
    font: 17px 'gilroy-extrabold', times;
    color: white !important;
    text-decoration: none;
    border-bottom-color: #a93f1d;
    opacity: 0.85;
    background: url(../images/size-guide.png) #f25a29 no-repeat 10px 10px;
}

    .size-guide-button:hover {
        display: inline-block;
        cursor: pointer;
        color: white !important;
        background: url(../images/size-guide.png) #ef4821 no-repeat 10px 10px;
        border-bottom-color: #983217;
    }

.scroll-up, .scroll-down, .auto-scroll {
    display: block;
    width: 22px;
    height: 22px;
    float: left;
    margin: 0 0 0 2px;
    background: url(/EtellectCommon/Js/SocialStream/images/controls.png) no-repeat 0 0;
}

.scroll-up {
    background-position: -66px 0;
}

    .scroll-up:hover {
        background-position: -66px -22px;
    }

.scroll-down {
    background-position: -44px 0;
}

    .scroll-down:hover {
        background-position: -44px -22px;
    }

.auto-scroll {
    background-position: -22px 0;
}

    .auto-scroll:hover {
        background-position: -22px -22px;
    }

    .auto-scroll.paused {
        background-position: 0 0;
    }

        .auto-scroll.paused:hover {
            background-position: 0 -22px;
        }


.my-membership-shop-tab {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #FF8533;
    border: none;
    color: #ffffff;
    font: 20px 'gilroy-extrabold', times;
    display: inline-block;
    width: 50%;
    text-align: center;
    padding: 7px 10px 7px 10px;
    text-decoration: none;
    white-space: normal;
    cursor: pointer;
}

    .my-membership-shop-tab.right {
        float: right;
    }

    .my-membership-shop-tab:hover, .my-membership-shop-tab.click {
        color: #f25a29;
        background-color: #ffffff;
    }

.my-membership-shop-item {
    display: inline-block;
    width: 65%;
}

@media all and (max-width: 1199px) {
    .my-learning-item-content,
    .my-membership-item-content {
        font-size: 16px;
    }
}

@media all and (max-width: 959px) and (min-width:768px) {
    .my-learning-button,
    .my-membership-button {
        font-size: 16px;
        padding: 5px 10px 5px 10px;
    }

        .my-learning-button:hover,
        .my-membership-button:hover {
            font-size: 16px;
            padding: 5px 10px 5px 10px;
        }

        .my-learning-button.small,
        .my-membership-button.small {
            font-size: 14px;
            padding: 2.5px 5px 2.5px 5px;
        }

    .my-learning-item-highlight,
    .my-membership-item-highlight {
        font-size: 16px;
        padding: 5px 10px 5px 10px;
    }

    .my-learning-item-content,
    .my-membership-item-content {
        font-size: 13px;
    }

    .my-membership-shop-tab {
        font-size: 13px;
    }

    .my-membership-button.small.shop {
        display: block;
    }

    .my-membership-shop-item {
        display: block;
    }
}

@media all and (max-width: 1199px) and (min-width:960px) {
    .my-membership-shop-tab {
        font-size: 16px;
    }

    .my-membership-button.small.shop {
        display: block;
    }

    .my-membership-shop-item {
        display: block;
    }
}

.overflow--unset {
    overflow: unset !important;
}

.my-membership-panel a {
    text-decoration: none;
}

/* ============================================================================
/* Contact Us
/* ============================================================================ */

.staff-list {
}

.staff-list-item {
    border-bottom: 4px solid #fef4f9;
    margin: 5px 0px;
    padding: 10px 0px;
}

    .staff-list-item:last-child {
        border-bottom: none;
    }

.staff-list-item-title {
    color: #ed008c;
}

.staff-list-item-label {
    font-weight: bold;
    color: #ed008c;
}


/* ============================================================================
/* Login
/* ============================================================================ */

.login-form {
    background: #2087c3 url(../images/login-background2.png) repeat;
    border-bottom: 5px solid rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 30px;
    color: white;
}

    .login-form .error {
        color: yellow;
    }

    .login-form a {
        color: white;
        /*margin-top: 15px;*/
    }

        .login-form a:hover {
            color: #c1e1f3;
        }

    .login-form .button--primary,
    .login-form .button--primary:visited,
    .login-form .button--primary:focus {
        background-color: #00335c;
        /*border-bottom: 2px solid rgba(0, 0, 0, 0.30);*/
        border-radius: 3px;
        padding: 9px 22px 7px 22px;
        margin: 5px 0px;
        font-size: 22px;
        font: 22px 'gilroy-extrabold', arial, verdana;
        /*float: right;*/
    }

        .login-form .button--primary:hover {
            background-color: #002644;
            color: #ffffff;
        }

    /*.login-form label {
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .login-form.green {
        background-color: #cceee8;
        color: #676767;
        border-bottom: 5px solid #ade0d7;
    }

    .login-form.no-background {
        background: none;
        color: #676767;
        padding: 0px;
        border-bottom: none;
        max-width: 100%;
    }
    */

    .login-form input[type=text],
    .login-form input[type=password],
    .login-form input[type=textarea],
    .login-form select {
        /*display: block;
        width: 100%;*/
        border: none;
        padding: 10px;
        /*margin: 0px 0px 15px 0px;*/
        background-color: white;
        border-radius: 5px;
        outline: none;
        vertical-align: middle;
    }
/*

    .login-form input[type=submit] {
        display: inline-block;
        border: none;
        background-color: #00335c;
        border-bottom: 2px solid rgba(0, 0, 0, 0.30);
        border-radius: 3px;
        padding: 7px 20px 5px 20px;
        font: 16px Arial, Sans-serif, times;
        color: white;
        text-decoration: none;
        max-width: 100%;
        white-space: normal;
        transition: all 0.3s ease 0s;
        cursor: pointer;
    }

        .login-form input[type=submit]:hover {
            background-color: #002644;
            border-bottom: 2px solid rgba(0, 0, 0, 0.30);
        }*/


a.facebook-button, facebook-button {
    display: inline-block;
    border: none;
    border-radius: 3px;
    padding: 7px 114px 5px 20px;
    font: 16px Arial, Sans-serif, times;
    color: white;
    text-decoration: none;
    max-width: 100%;
    background: url('/Local/Themes/Default/Images/facebook-button.png') no-repeat 90% 44% #3a5ead;
    border-bottom: 2px solid rgba(0, 0, 0, 0.30);
    display: table-cell;
    white-space: nowrap;
    transition: all 0.3s ease 0s;
}

    a.facebook-button:hover, facebook-button:hover {
        background: url('/Local/Themes/Default/Images/facebook-button.png') no-repeat 90% 44% #234592;
        border-bottom: 2px solid rgba(0, 0, 0, 0.30);
    }

.login-form.no-background input[type=text],
.login-form.no-background input[type=password],
.login-form.no-background input[type=textarea],
.login-form.no-background select {
    border: 1px solid #676767;
}

.login-form.no-background select {
    display: inline-block;
}

.login-form.green input[type=submit] {
    background-color: #00ab84;
    border-color: #00ab84;
}

.login-form-item {
    border: none;
    display: block;
    padding: 8px;
    margin: 0px;
    width: 100%;
    background-color: white;
    border-radius: 5px;
    outline: none;
}

    .login-form-item.border {
        border: 1px solid #676767;
        margin-left: 5px;
    }

.login-form .rememberlogin {
    padding-top: 10px;
    padding-bottom: 20px;
}

@media all and (max-width: 959px) {
    .login-form input[type=submit].facebook-button {
        margin-left: 0px;
    }
}

.login-form h3 {
    color: white !important;
    padding-top: 10px;
}

input[type='checkbox'] {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 3px;
    border: 2px solid #006ba6;
    /*margin: 5px 5px 5px 0;*/
    text-align: left;
    cursor: pointer;
}

input.riTextBox,
input.rcbInput,
textarea.riTextBox {
    font: 14px/1.42857143 "Helvetica Neue", Helvetica, Arial, sans-serif!important;
    }

input:focus[type='checkbox'] {
    border: 2px solid #006ba6;
}

    input[type='checkbox']:checked {
        background: url(/Local/Themes/Default/Images/green-tick.png) no-repeat #00ab84 center center;
        border: 2px solid #00ab84;
    }


input[type='radio'] {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 15px;
    border: 1px solid #006ba6;
    /*margin: 5px;*/
    text-align: left;
    cursor: pointer;
}

    input[type='radio']:checked {
        background: url(/Local/Themes/Default/Images/green-circle.png) no-repeat #FFFFFF center center;
        border: 3px solid #00ab84;
    }


/* ============================================================================
/* My Profile
/* ============================================================================ */

.my-profile-wrapper {
    background-color: #006ba6;
    border-radius: 0px;
    padding: 0px;
    margin-bottom: 15px !important;
}

.my-profile-header {
    color: #ffffff;
    font: 20px 'gilroy-extrabold', times;
    margin-bottom: 5px;
    padding: 10px;
}

.my-profile-content-form {
    background-color: #ffffff;
    border-radius: 0px;
    padding-top: 15px;
    margin-top: 0px;
}

    .my-profile-content-form.blue {
    }

    .my-profile-content-form.no-padding {
        padding: 0px;
    }

    .my-profile-content-form input[type=text],
    .my-profile-content-form input[type=password],
    .my-profile-content-form input[type=textarea],
    .my-profile-content-form select {
        display: block;
        width: 100%;
        padding: 8px;
        margin: 0px;
        background-color: white;
        border-radius: 5px;
        outline: none;
    }

    .my-profile-content-form input[type=submit] {
        display: block;
        background-color: #00335c;
        border-color: #00335c;
        color: white;
        text-decoration: none;
        font: 20px 'gilroy-extrabold', arial, sans-serif;
        padding: 5px 10px;
        border-radius: 3px;
        margin-top: 20px;
        margin-right: 10px;
        max-width: 200px;
        text-align: center;
        transition: all ease-in 0.15s;
    }

        .my-profile-content-form input[type=submit]:hover {
            background-color: #16609a;
            border-color: #16609a;
        }

/* ============================================================================
/* Training List
/* ============================================================================ */

.my-membership-page-header {
    background-color: #006ba6;
    font: 20px 'gilroy-extrabold', times;
    border-radius: 5px;
    text-align: left;
    padding: 10px;
    color: #ffffff;
    margin-bottom: 20px !important;
}

    .my-membership-page-header.purple {
        background-color: #C0A6CF;
    }

.my-training-list {
    border: 5px solid #006ba6;
    border-radius: 5px;
    margin-bottom: 10px;
}

    .my-training-list.orange {
        border: 5px solid #f25a29;
    }

.my-training-list-header {
    background-color: #006ba6;
    font: 20px 'gilroy-extrabold', times;
    padding: 10px;
    color: #ffffff;
    line-height: 38px;
}

    .my-training-list-header.orange {
        background-color: #f25a29;
    }

.my-training-list-item {
    padding: 10px;
    border-radius: 5px;
}

.my-training-list-item-container {
    font-size: 14px;
    padding: 10px;
}

.my-training-list-item:nth-child(odd), .my-training-list-item:first-child {
    border-top: 1px solid #70b1d8;
}

.my-training-list-item:nth-child(odd) {
    background-color: #e7f2f8;
}

.my-training-list-item:nth-child(odd), .my-training-list-results-item:last-child {
    border-bottom: 1px solid #70b1d8;
}

.my-training-list .my-training-list-item-name {
    margin-bottom: 10px;
}

.my-training-list-item-address {
    text-align: right;
}

/* ############################################################################ */
/* Responsive Two Block Grid                                                  */
/* ############################################################################ */

.two-block-grid .two-block-item {
    float: left;
    margin: 0px 0px 20px 20px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .two-block-grid .two-block-item.bordered {
        padding: 10px 20px;
        border: 3px solid #006ba6;
        border-radius: 5px;
    }

    .two-block-grid .two-block-item a,
    .two-block-grid .two-block-item a:hover {
        text-decoration: none;
    }

@media only screen and (min-width: 768px) {
    .two-block-grid .two-block-item {
        width: calc(50% - 10px);
    }

        .two-block-grid .two-block-item:nth-child(2n+1) {
            margin-left: 0px;
        }
}

@media only screen and (max-width: 767px) {
    .two-block-grid .two-block-item {
        margin-left: 0px;
        width: 100%;
    }
}

/* ############################################################################ */
/* Responsive Three Block Grid                                                  */
/* ############################################################################ */

.order-payment-failure {
    color: #CC0000;
    font-weight: bold;
}

.order-payment-success {
    color: #3ebd26;
    font-weight: bold;
}

.three-block-grid .three-block-item {
    float: left;
    margin: 0px 0px 20px 20px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.three-block-item.bordered {
    padding: 10px 20px;
    border: 3px solid #006ba6;
    border-radius: 5px;
}

.three-block-item a,
.three-block-item a:hover {
    text-decoration: none;
}


@media only screen and (min-width: 1200px) {
    .three-block-grid .three-block-item {
        width: calc(33% - 10px);
    }

        .three-block-grid .three-block-item:nth-child(3n+1) {
            margin-left: 0px;
        }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
    .three-block-grid .three-block-item {
        width: calc(50% - 10px);
    }

        .three-block-grid .three-block-item:nth-child(2n+1) {
            margin-left: 0px;
        }
}

@media only screen and (max-width: 767px) {
    .three-block-grid .three-block-item {
        margin-left: 0px;
        width: 100%;
    }
}

/* ============================================================================
/* Shop
/* ============================================================================ */


.product-image {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

    .product-image:hover {
        cursor: pointer;
    }

.product-price {
    font: 24px 'gilroy-extrabold', times;
    color: #d50032;
    font-weight: bold;
}

/* ============================================================================
/* Checkout
/* ============================================================================ */

.checkout-price {
    font: 20px 'gilroy-extrabold', times;
}

    .checkout-price.large {
        font-size: 26px;
        font-weight: bold;
        padding-left: 5px;
    }

.checkout-label {
    font: 20px 'gilroy-extrabold', times;
    color: #f25a29;
}

    .checkout-label.large {
        font-size: 26px;
        font-weight: bold;
    }

.checkout-item-container {
    margin: 20px 0px 20px 0px;
    font-size: 16px;
}

.checkout-form-item {
    display: block;
    padding: 8px;
    margin: 0px;
    width: 100%;
    background-color: white;
    border-radius: 5px;
    outline: none;
}

    .checkout-form-item.large {
        max-width: 40%;
        min-height: 200px;
    }

    .checkout-form-item.small {
        max-width: 120px;
    }


.checkout-product-list {
    border: 5px solid #f25a29;
    border-radius: 5px;
    margin-bottom: 10px;
}

    .checkout-product-list td {
        padding: 5px;
    }

.checkout-product-list-header {
    background-color: #f25a29;
    font: 20px 'gilroy-extrabold', times;
    color: #ffffff;
    line-height: 38px;
}

.checkout-product-list-item {
    margin-bottom: 5px;
}

.checkout-product-list-item-container {
    font-size: 14px;
    padding: 10px;
}

@media all and (max-width: 767px) {
    .checkout-product-list-header {
        font-size: 14px;
    }

    .checkout-product-list-item {
        font-size: 14px;
    }

    .checkout-form-item.large {
        max-width: 100%;
    }

    .checkout-product-list {
        overflow-x: scroll;
    }
}

@media all and (max-width: 479px) {
    .checkout-product-list {
        overflow-x: scroll;
    }
}

/* ============================================================================
/* Shopping Cart
/* ============================================================================ */

.inline-container {
    display: inline-block;
    margin-right: 20px;
}

.shopping-cart-button {
    display: inline-block;
    border: none;
    border-bottom: 5px solid #006f9e;
    border-radius: 3px;
    padding: 10px 20px 10px 20px;
    margin-top: 5px;
    font: 20px 'gilroy-extrabold', times;
    color: white;
    text-decoration: none;
    background-color: #00a88e;
    border-bottom-color: #008672;
    opacity: 0.85;
}

    .shopping-cart-button:hover {
        display: inline-block;
        border: none;
        border-bottom: 5px solid #006f9e;
        border-radius: 3px;
        padding: 10px 20px 10px 20px;
        margin-top: 5px;
        cursor: pointer;
        font: 20px 'gilroy-extrabold', times;
        color: white;
        text-decoration: none;
        background-color: #008672;
        border-bottom-color: #008672;
        opacity: 1.0;
    }

@media all and (max-width: 959px) and (min-width:768px) {
    .shopping-cart-button {
        font-size: 16px;
        padding: 5px 10px 5px 10px;
    }

        .shopping-cart-button:hover {
            font-size: 16px;
            padding: 5px 10px 5px 10px;
        }
}

@media all and (max-width: 767px) {
    .shopping-cart-button {
        width: 100%;
    }

        .shopping-cart-button:hover {
            width: 100%;
        }

    .inline-container {
        display: block;
        margin-right: 0px;
    }
}



/* ============================================================================
/* Downloads
/* ============================================================================ */

.downloads-form-item {
    display: block;
    padding: 8px;
    margin: 0px;
    background-color: white;
    border-radius: 5px;
    outline: none;
}

/* ============================================================================
/* Join Now 
/* ============================================================================ */

.green-title {
    color: #00ab84;
    font: 35px 'gilroy-extrabold', times;
    margin: 0px 0px 13px 0px;
}

.join-now-question {
    background-color: #8ef2e0;
    font: 20px 'gilroy-extrabold', times;
    border-radius: 5px;
    text-align: center;
    padding: 10px;
    color: #00ab84;
    margin-bottom: 20px !important;
    margin-top: 20px !important;
}

.join-now-button {
    display: inline-block;
    border: none;
    border-radius: 3px;
    padding: 9px 22px 7px 22px;
    font: 22px 'gilroy-extrabold', times;
    color: white;
    text-decoration: none;
    opacity: 0.85;
    max-width: 100%;
    background-color: #00ab84;
    white-space: normal;
    transition: all 0.3s ease 0s;
}

a.join-now-button {
    color: white !important;
}

.join-now-button:hover {
    color: white;
    cursor: pointer;
    opacity: 1.0;
}

.join-now-button.small {
    padding: 4px 12px 4px 12px;
}

.join-now-button.orange {
    background-color: #f25a29;
    border-bottom-color: #c24821;
}

.join-now-button.grey {
    background-color: #9f9f9f;
    border-bottom-color: #878787;
}

.join-now-button.green {
    background-color: #00ab84;
    border-bottom-color: #007636;
}

.join-now-button.right {
    float: right;
    margin-left: 5px;
}

/* ============================================================================ */
/* ACCORDION                                                                    */
/* ============================================================================ */

.accordion-toggle {
    display: block;
    font: 22px 'gilroy-extrabold', times;
    cursor: pointer;
    margin: 10px 0px 0px 0px;
    color: #79b8e7;
    border-radius: 4px;
    padding: 3px 12px;
    background: url('/Local/Themes/Default/Images/icon-arrow-down.png') no-repeat 98% center;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-bottom: 1px solid #cce8f4;
}

    .accordion-toggle:hover {
        color: #006ba6;
    }

    .accordion-toggle.open {
        color: #ffffff;
        background: #55acee url('/Local/Themes/Default/Images/icon-arrow-up.png') no-repeat 98% center;
        padding: 6px 12px;
        border-bottom: 0px solid transparent;
    }

.accordion-content {
    padding: 20px;
    color: #676767;
    /*-webkit-transition: top .50s linear; -moz-transition: top .50s linear; -o-transition: top .50s linear; transition: top .50s linear;*/
}


/* ============================================================================ */
/* SHOP                                                                         */
/* ============================================================================ */

.shop-link {
    background-color: #fddfd6;
    padding: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #f25a29;
    width: 100%;
    display: block;
    font: 18px 'gilroy-extrabold', times;
    text-decoration: none;
}

/* ============================================================================
/* Elected Members
/* ============================================================================ */

.elected-members-list {
    border: 4px solid #006ba6;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 10px;
    overflow: auto;
}

.elected-members-list-item {
    border-bottom: 4px solid #e5f3f9;
    height: 80px;
    width: 100%;
}

.elected-members-list-item-title {
    color: #006ba6;
}

.elected-members-item-title-bold {
    color: #006ba6;
    font-size: 19px;
    font-weight: bold;
}

.elected-members-list-item-label {
    font-weight: bold;
    color: #006ba6;
}

.elected-members-link-title {
    font-weight: bold;
    color: #006ba6;
    padding-bottom: 5px;
}

.elected-members-link {
    font-size: 15px;
    text-decoration: underline !important;
}

.elected-members-header {
    background-color: #006ba6;
    font: 20px 'gilroy-extrabold', times;
    text-align: center;
    padding: 10px;
    color: #ffffff;
}

.elected-members-tab {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font: 20px 'gilroy-extrabold', times;
    display: inline-block;
    width: 45%;
    text-align: center;
    padding: 7px 10px 7px 10px;
    text-decoration: none;
    white-space: normal;
    color: #006ba6;
    background-color: #ffffff;
    border: 2px solid #006ba6;
    border-bottom: none;
}

    .elected-members-tab.right {
        float: right;
    }

    .elected-members-tab:hover, .elected-members-tab.click {
        background-color: #006ba6;
        color: #ffffff;
    }

@media all and (max-width: 959px) and (min-width:768px) {
    .elected-members-list-item {
        font-size: 15px;
    }

    .elected-members-item-title-bold {
        font-size: 17px;
    }
}
/* ============================================================================
/* Diary
/* ============================================================================ */

.diary-text {
    font-size: 13px;
    line-height: 18px;
}

/* ============================================================================ */
/* Notifictations                                                                 */
/* ============================================================================ */

.notification-item {
    width: calc(50% - 10px);
    background-color: #006ba6;
    border-radius: 4px;
    padding: 10px;
    display: inline-block;
    vertical-align: top;
}

    .notification-item.right {
        float: right;
    }

.notification-item-container {
    width: 100%;
    display: inline-block;
    text-align: left;
    vertical-align: top;
}

@media all and (max-width: 767px) {
    .notification-item {
        width: 100%;
        margin-bottom: 15px;
    }

        .notification-item:last-child {
            margin: 0px;
        }
}

/* ============================================================================ */
/* Image Link Columns                                                 */
/* ============================================================================ */

.image-column {
    float: left;
    margin-left: 10px;
    margin-right: 10px;
}

    .image-column.two {
        width: calc(50% - 20px);
    }

    .image-column.three {
        width: calc(33.333% - 20px);
    }

    .image-column.four {
        width: calc(25% - 20px);
    }

@media all and (max-width:767px) {
    .image-column {
        float: none;
        margin-left: 0px;
        margin-right: 0px;
    }

        .image-column.two {
            width: 100%;
        }

        .image-column.three {
            width: 100%;
        }

        .image-column.four {
            width: 100%;
        }
}

/* ============================================================================ */
/* Conference                                                                 */
/* ============================================================================ */

.conference-link {
    font: 28px 'gilroy-extrabold', times;
    margin: 0px 0px 20px 0px;
    opacity: 0.6;
}

    .conference-link.small {
        font-size: 22px;
        margin: 0px 0px 10px 0px;
        opacity: 1;
    }

.conference-link-container {
    padding: 10px 15px;
    border: 1px solid;
    background-color: rgb(198, 217, 240);
    text-align: center;
}

.conference-material-toggle {
    display: block;
    font: 28px 'gilroy-extrabold', times;
    cursor: pointer;
    margin: 10px 0px 0px 0px;
    color: #79b8e7;
    border-radius: 4px;
    padding: 6px 12px;
    background: url('/Local/Themes/Default/Images/icon-arrow-down.png') no-repeat 98% center;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-bottom: 1px solid #cce8f4;
}

    .conference-material-toggle:hover {
        color: #006ba6;
    }

    .conference-material-toggle.open {
        color: #ffffff;
        background: #55acee url('/Local/Themes/Default/Images/icon-arrow-up.png') no-repeat 98% center;
        padding: 6px 12px;
        border-bottom: 0px solid transparent;
    }

.conference-material-content {
    padding: 20px;
    color: #676767;
}

.conference-material-image {
    width: calc(30% - 10px);
    margin-right: 10px;
    float: left;
}

    .conference-material-image img {
        width: 100%;
    }

.conference-material-inner.with-image {
    width: 70%;
    float: left;
}

@media all and (max-width:767px) {
    .conference-material-image {
        width: 100%;
        margin-right: 0px;
        float: none;
    }

    .conference-material-inner.with-image {
        width: 100%;
        float: none;
    }
}

/* ============================================================================ */
/* Social Stream Override                                                       */
/* ============================================================================ */

.stream li.dcsns-facebook .section-thumb img {
    max-width: 130px;
}

/* ============================================================================ */
/* Dashboard Tabs                                                */
/* ============================================================================ */

a.dashboard-tab, a.dashboard-tab-panel {
    color: #ffffff;
    /*background-color: rgba(6,59,120,0.4);*/
    background-color: #4a70a1;
    padding: 10px 30px;
    font: 17px 'open_sansregular', arial, verdana;
    text-decoration: none;
    -webkit-transition: background .25s ease-in-out;
    -moz-transition: background .25s ease-in-out;
    -o-transition: background .25s ease-in-out;
    transition: background .25s ease-in-out;
}

    a.dashboard-tab:hover {
        background-color: #009591;
        cursor: pointer;
        color: #ffffff;
    }

    a.dashboard-tab.open, .dashboard-tab-panel.open {
        background-color: #009591;
        color: #ffffff;
    }

    a.dashboard-tab:not(:last-of-type) {
        margin-right: 10px;
    }

.dashboard-tab-panel {
    display: none;
    background: rgba(6,59,120,0.4) url('/Local/Images/icon-arrow-up-white.png') no-repeat 96% center;
}

    .dashboard-tab-panel:not(:last-of-type) {
        border-bottom: 1px solid #51637b;
    }

    .dashboard-tab-panel:hover {
        /*background-color:#889ab0;*/
        background-color: #009591;
    }

    .dashboard-tab-panel.open {
        background-image: url('/Local/Images/icon-arrow-down-white.png');
        border-bottom: none;
    }

@media only screen and (max-width: 959px) and (min-width: 768px) {
    a.dashboard-tab {
        padding: 10px 25px;
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .dashboard-tab {
        display: none;
    }

    .dashboard-tab-panel {
        display: block;
        width: 100%;
    }
}

/*
    ==================================================================================== 
    Pledge Items
    ==================================================================================== 
 */

.container-wrapper-pledge {
    padding: 40px 0px 40px 0px;
    margin: 0px 0px 40px 0px;
}

/*.pledge-form input[type=submit]{
  background: #fff;
  border: 1px solid #000;
  text-shadow: 1px 1px 1px #000;
}*/

.pledge-form input {
    padding: 10px;
    border-radius: 3px;
}

.pledge-form select {
    padding: 10px;
    border-radius: 3px;
}

.side-bar p {
    line-height: 19px;
    font-size: 13px;
}

.side-bar p {
    line-height: 19px;
    font-size: 13px;
}

.side-bar h1, h2, h3, h4 {
    margin-bottom: 20px !important;
}

.side-bar h2, h3, h4 {
    margin-bottom: 8px !important;
}

/*.side-bar p:not(:last-child):last-of-type{
    margin-bottom: 35px !important;
}*/


.highlight-box {
    background-color: #006ba6;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
    transition: background-color 0.25s ease;
}

    .highlight-box:hover {
        color: #ffffff;
        text-decoration: none !important;
    }

    .highlight-box a {
        text-decoration: none !important;
    }

        .highlight-box a:hover {
            color: #ffffff;
            text-decoration: none !important;
        }

    .highlight-box:hover {
        background-color: #0071a1;
        color: #ffffff;
        text-decoration: none !important;
    }

    .highlight-box p {
        color: #ffffff;
        font-size: 16px;
    }

    .highlight-box h2 {
        color: #ffffff !important;
        font-size: 20px;
        text-align: center;
        margin-bottom: 15px;
        opacity: 0.8;
    }

.highlight-box-2 {
    background-color: #ed008c;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: center;
    transition: background-color 0.25s ease;
}

    .highlight-box-2 a:hover {
        color: #ffffff;
        text-decoration: none !important;
    }

    .highlight-box-2 a:hover {
        color: #ffffff;
        text-decoration: none !important;
    }

    .highlight-box-2:hover {
        background-color: #b5006b;
        color: #ffffff;
        text-decoration: none !important;
    }

    .highlight-box-2 p {
        color: #ffffff;
        font-size: 16px;
    }

    .highlight-box-2 h2 {
        color: #ffffff !important;
        font-size: 20px;
        text-align: center;
        margin-bottom: 10px;
        opacity: 0.8;
    }

/*
    ==================================================================================== 
    Pledge Gallery
    ==================================================================================== 
 */

.pledge-gallery {
    margin-left: auto;
    margin-right: auto;
    /*padding: 0px 20px;*/
}

/* item is invisible, but used for layout - required to make items animate - see masonry faqs */
.pledge-gallery__item {
    float: left;
    /*width: PLEASE SPECIFY WIDTH in element class for example (etellect-gallery__item w50 w50--m w100--t) */
    /*padding: 5px;*/
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

    .pledge-gallery__item a {
        display: block;
        position: relative;
        overflow: hidden;
    }

.pledge-info {
    position: absolute;
    top: 0;
    display: block;
    z-index: 9999999999;
    left: 0;
    right: 0;
    background-color: #006ba6;
    color: #ffffff;
    padding: 10px;
    text-align: center;
}

.pledge-gallery__item__name {
    text-align: center;
    position: absolute;
    padding: 7px;
    font-size: 22px;
    color: #ffffff;
    z-index: 100;
    bottom: 0%;
    margin: auto;
    left: 0px;
    right: 0px;
    background-color: rgba(0, 139, 198, 0.65);
    font-family: 'gilroy-extrabold';
}

.pledge-gallery__item__content__hoverstate {
    position: absolute;
    margin: 5px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition: background 0.4s ease-in-out;
    -moz-transition: background 0.4s ease-in-out;
    -ms-transition: background 0.4s ease-in-out;
    -o-transition: background 0.4s ease-in-out;
    transition: background 0.4s ease-in-out;
}

.pledge-gallery__item:hover .pledge-gallery__item__content__hoverstate {
}


.pledge-gallery__item img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-transition: transform 0.4s ease-in-out;
    -moz-transition: transform 0.4s ease-in-out;
    -ms-transition: transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
}

.pledge-gallery__item:hover img {
    transform: scale(1.2);
}

.pledge__gallery-sizer {
    display: inline-block;
    width: 25%;
}

@media all and (max-width: 959px) {
    .pledge__gallery-sizer {
        display: inline-block;
        width: 100%;
    }
}

.pledge-tabs {
}

.pledge-tabs__tab {
    background-color: #bad5ca;
    color: #006ba6;
    border-radius: 5px 5px 0px 0px;
    padding: 15px 20px;
    font-size: 18px;
    text-align: center;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    font-family: 'gilroy-extrabold';
}

    .pledge-tabs__tab:hover {
        cursor: pointer;
    }

    .pledge-tabs__tab.click {
        background-color: #006ba6;
        color: #ffffff;
    }

.pledge-tabs__content {
    background-color: #006ba6;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 0px 5px 5px 5px;
    font-family: 'gilroy-extrabold';
}

.pledge-tabs__count {
    font-size: 40px;
    font-family: 'gilroy-extrabold';
    font-weight: normal;
}

.make-a-pledge {
    display: block;
    text-align: center;
    padding: 15px;
    color: #ffffff;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.5);
}

    .make-a-pledge,
    .make-a-pledge:hover,
    .make-a-pledge:visited {
        text-decoration: none;
        color: white;
    }

@media all and (max-width: 767px) {
    .pledge-tabs__tab {
        font-size: 14px;
    }
}

/*
    ==================================================================================== 
    Image Uploader/Cropper
    ==================================================================================== 
 */

.dropzone {
    background: url('/EtellectCommon/Automate/images/holders/dropzone.jpg') no-repeat center center #eeeeee;
    height: 150px;
    border: solid 1px #c6c6c6;
    padding: 20px;
    margin-bottom: -1px;
}

.preview {
    overflow: hidden;
}

/* 
==================================================================================== 
Resource Boxes
==================================================================================== 
*/

.my-membership .resource-box {
    background-color: #ffffff;
}

    .my-membership .resource-box:hover {
        background-color: #eee;
    }

.my-membership .resource-box-title {
    text-align: center;
    font-family: 'gilroy-extrabold';
    color: #006ba6;
    padding: 12px 22px;
}

.resource-box {
    background-color: #efefef;
    transition: all ease-in 0.15s;
}

    .resource-box:hover {
        background-color: #d8d8d8;
    }

.resource-box-title {
    text-align: center;
    font-family: 'gilroy-extrabold';
    color: #9b26b6;
    padding: 12px 22px;
}

.resource-box-image {
    position: relative;
    left: 50%;
    margin: auto;
    -webkit-transform: translateX(-50%);
}

.resource-box-details {
    padding: 12px 22px;
    color: black !important;
}

.resource-box-link {
    background-color: #01ab86 !important;
    border-radius: 4px;
    border-bottom: 2px solid rgba(0,0,0,0.3);
}

.resource-box-link-button {
    color: white !important;
    border: none !important;
    font-family: 'gilroy-extrabold';
    font-size: 20px;
    background-color: #01ab86 !important;
    transition: background-color 0.25s ease;
}

    .resource-box-link-button:hover {
        background-color: #00876a !important;
    }

/* 
==================================================================================== 
Business Partners Logos
==================================================================================== 
*/

.business-partners-logos-container {
    padding: 60px 0px 0px 0px;
}

.business-partners-logos-item {
    display: inline-block;
    padding: 20px;
}

.business-partners-logos-text {
    font-size: 1.2rem;
    font-family: 'gilroy-extrabold';
    font-weight: 900;
    color: #9b26b6;
}

/* 
==================================================================================== 
Text and Image with Background
==================================================================================== 
*/

.bottom-right {
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.txtimgbg-image {
    position: relative;
    top: 12px;
}

.background-text-block-container, .background-text-block-container--m {
    height: 100%;
    color: #ffffff;
    font-family: 'gilroy-extrabold', Arial;
}

    .background-text-block-container h1, .background-text-block-container h2, .background-text-block-container--m h1, .background-text-block-container--m h2 {
        color: #ffffff !important;
    }

.left25 {
    left: 25%;
}

.left20 {
    left: 20%;
}

@media only screen and (max-width: 767px) {
    .banner-text-mobile {
        position: static;
        margin: initial;
        -webkit-transform: initial;
    }
}

/* 
==================================================================================== 
HomePage
==================================================================================== 
*/

.home-join-now-text {
    font-family: 'gilroy-extrabold', Arial;
}

.home-join-now-button {
    background-color: #f12a51 !important;
    border: 0px solid transparent;
    color: white !important;
    font-family: 'gilroy-extrabold', Arial;
    padding: 12px 28px;
    font-size: 1.2rem;
}

    .home-join-now-button a {
        text-decoration: none;
        color: white !important;
        font-family: 'gilroy-extrabold', Arial;
    }

    .home-join-now-button:hover {
        background-color: #c81639 !important;
        color: white !important;
    }

    .home-join-now-button a:hover {
        color: white !important;
    }

.pledge-banner .ecc__page-divider-with-content__content {
    margin-left: 0px;
    margin-top: -10px;
}

.pledge-banner .ecc__page-divider-with-content__content__title {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 2vw;
    letter-spacing: 3px;
    color: #00a58d;
    margin-bottom: 30px;
}

.pledge-banner .ecc__page-divider-with-content__content__body {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.4vw;
    letter-spacing: 2px;
    color: #008bc7;
    margin-top: -30px;
}

.pledge-banner .ecc__page-divider-with-content__content__link {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1vw;
    background-color: #20bbfd;
    color: white;
    border-radius: 5px;
    letter-spacing: 1px;
    margin-top: -20px;
}

.pledge-banner .ecc__page-divider-with-content {
    background-size: contain;
}

.pledge-banner-mobile .ecc__page-divider-with-content__content {
    margin-left: 0px;
    margin-top: -10px;
}

.pledge-banner-mobile .ecc__page-divider-with-content__content__title {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 4vw;
    letter-spacing: 3px;
    color: #00a58d;
    margin-bottom: 30px;
}

.pledge-banner-mobile .ecc__page-divider-with-content__content__body {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 3.2vw;
    letter-spacing: 2px;
    color: #008bc7;
    margin-top: -30px;
    padding: 0px 100px;
}

@media all and (max-width: 400px) {
    .pledge-banner-mobile .ecc__page-divider-with-content__content__body {
        padding: 0px;
    }
}

.pledge-banner-mobile .ecc__page-divider-with-content__content__link {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 2.4vw;
    background-color: #20bbfd;
    color: white;
    border-radius: 5px;
    letter-spacing: 1px;
    margin-top: -20px;
}

.pledge-banner-mobile .ecc__page-divider-with-content {
    background-size: contain;
}

/* 
==================================================================================== 
Latest News
==================================================================================== 
*/


.latest-news-block {
    background-color: #ebebeb;
    font-family: 'gilroy-extrabold', Arial;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px !important;
}

    .latest-news-block img {
        max-height: 90px;
    }

.latest-news-header {
    padding: 20px;
    margin-bottom: 40px;
}

.latest-news-title {
    font-size: 28px;
    color: #f12a51;
}

.latest-news-block-item {
    margin-top: 5px;
    background-color: white;
}

    .latest-news-block-item a {
        color: #f12a51;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
    }

.latest-news-block-item-date {
    font-size: 18px;
    background-color: #f12a51;
    color: white;
    text-align: center;
    padding: 8px;
}

.latest-news-block-item-date-day {
    font-size: 22px;
}

.latest-news-block-item-date-title {
    padding: 12px;
}

.latest-news-button {
    display: inline-block;
    border: none;
    border-radius: 3px;
    padding: 7px 20px 5px 20px;
    font-family: 'gilroy-extrabold', Arial;
    font-size: 16px;
    color: white;
    text-decoration: none;
    opacity: 0.85;
    max-width: 100%;
    background-color: #f12a51;
    white-space: normal;
    transition: all 0.3s ease 0s;
}

a.latest-news-button {
    color: white !important;
}

.latest-news-button:hover {
    color: white;
    cursor: pointer;
    opacity: 1.0;
}

/* 
==================================================================================== 
About Us
==================================================================================== 
*/

.red-panel-with-dividers {
    background-color: #f9d9e0;
    color: #d50032;
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.8rem;
    text-align: center;
    padding: 40px;
}

.about-us-text-button--text {
    color: #006ba6;
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.8rem;
}

.about-us-text-button--button {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.6rem;
    background-color: #00ab84;
    color: white;
}

    .about-us-text-button--button:hover {
        background-color: green;
    }

    .about-us-text-button--button a {
        text-decoration: none;
        color: white !important;
    }

        .about-us-text-button--button a:hover {
            color: white !important;
        }

.about-us-text-below--header {
    color: #d50032;
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.8rem;
    padding: 40px 40px 10px 40px;
}

.about-us-text-below--main {
    padding: 10px 40px 40px 40px;
}

.about-us-text-button-image--image--mobile {
    display: block;
    margin: auto;
    margin-top: -40px;
    margin-bottom: 20px;
}

.about-us-text-button-image--button {
    background-color: #11345c !important;
    color: white;
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.2rem;
    clear: left;
    position: absolute;
    bottom: 12px;
    left: 20px;
}

@media all and (max-width: 1149px) {
    .about-us-text-button-image--button {
        padding: 8px !important;
        bottom: 12px !important;
        left: 8px !important;
    }
}

@media all and (max-width: 767px) {
    .about-us-text-button-image--button {
        padding: 10px !important;
        bottom: 12px !important;
        left: 20px !important;
    }
}

.about-us-text-button-image--button--mobile {
    background-color: #11345c !important;
    color: white;
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.2rem;
    display: block;
    margin-left: 60px !important;
    margin-right: 60px !important;
    float: none !important;
    clear: left !important;
}

    .about-us-text-button-image--button:hover, .about-us-text-button-image--button--mobile:hover {
        background-color: #1f4d98 !important;
    }

    .about-us-text-button-image--button a, .about-us-text-button-image--button--mobile a {
        text-decoration: none;
        color: white !important;
    }

        .about-us-text-button-image--button a:hover, .about-us-text-button-image--button--mobile a:hover {
            color: white !important;
        }

/* 
==================================================================================== 
Recruitment Form
==================================================================================== 
*/

.recruitment { }

.recruitment-banner {
    /*background-image: url('/Local/Themes/Website/Images/LocalAuthorityRecruitment/banner2023.jpg');*/
    background-size: cover;
    background-position: center center;
    }

    .recruitment-banner__content {
        text-align: center;
        padding: 200px 20px;
        }

@media all and (max-width: 769px) {
    .recruitment-banner__content { padding: 100px 20px; }
    }

@media all and (max-width: 479px) {
    .recruitment-banner { background-position: -600px center; }
    }

.recruitment-form {
    background-color: #8e3b89;
    padding: 20px;
    border-radius: 5px;
    color: white;
    }

    .recruitment-form .recruitment-form-intro { font-family: 'gilroy-extrabold'; }

    .recruitment-form h2 { color: #fab708!important; opacity: 1; }

    .recruitment-form input[type='checkbox'] { border: 0; }
    .recruitment-form input[type='checkbox']:checked { background-color: white; }

    .recruitment-form .error[style*="inline"] { display: block!important; font-weight: normal; margin-top: 3px; color: yellow; }

.recruitment .bubble {
    background-color: #d31129;
    color: white;
    text-align: left;
    }

    .recruitment .bubble.bubble-bottom-left:before {
        border-left-color: #d31129;
        border-top-color: #d31129;
    }

.recruitment .area-link {
    display: block!important;
    text-align: center;
    padding: 15px 25px;
    background-color: #0365a2;
    color: #ffffff;
    font-size: 1.2em;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.25s ease;
    display: inline-block;
    }

    .recruitment .area-link .area-link__title {
        font: 18px 'gilroy-extrabold', times;
        color: #f9b400;
        }

    .recruitment .elc-button:hover {
        background-color: #2d87b9;
        color: #ffffff;
        text-decoration: none;
        }

.recruitment .my-membership-separator {
    background-color: #0365a2;
    height: 1px;
    }

.recruitment .accordion-toggle { color: #0365a2; }
.recruitment .accordion-toggle:hover{ color: #f9b400; }
.recruitment .accordion-toggle.open { color: #f9b400; background-color: #0365a2; }
.accordion-content { color: #676767; }

/* 
==================================================================================== 
Become a Childminder
==================================================================================== 
*/

.become-childminder-download-guide-form {
    background-color: #00ab84;
    padding: 20px;
}

.become-childminder-download-guide-form.become-childminder-download-guide-form--blue {
    background-color: #006ba6;
    }

.become-childminder-download-guide-form-textbox {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    margin: 4px;
}

.become-childminder-download-guide-form-button {
    background-color: #11345c !important;
    color: white !important;
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.2rem;
    margin-top: 10px;
    padding: 10px 20px;
    border: none !important;
    text-decoration: none;
}

    .become-childminder-download-guide-form-button:hover {
        background-color: #1f4d98 !important;
    }

    .become-childminder-download-guide-form-button a {
        text-decoration: none;
        color: white !important;
    }

        .become-childminder-download-guide-form-button a:hover {
            color: white !important;
        }

.become-childminder-separator {
    height: 8px;
    background-color: #bfeae0;
}

.become-childminder-section-title {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 2rem;
    color: #00ab84;
}

.become-childminder-list {
    color: #00ab84;
}

.become-childminder-list-tilde li {
    list-style: none;
}

    .become-childminder-list-tilde li:before {
        content: "~ ";
    }

.become-childminder-button-green {
    background-color: #00ab84 !important;
    color: white;
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.2rem;
    border-radius: 4px;
}

    .become-childminder-button-green:hover {
        background-color: green !important;
    }

    .become-childminder-button-green a {
        text-decoration: none;
        color: white !important;
    }

        .become-childminder-button-green a:hover {
            color: white !important;
        }

.become-childminder-panel-title {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
}

.become-childminder-panel-text {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 15px;
}

@media all and (max-width: 1149px) {
    .become-childminder-panel-title {
        font-size: 1.6rem;
    }
}

.become-childminder--large-purple-letters {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.8rem;
    text-align: center;
    color: #9b26b6;
    padding-top: 20px;
    padding-bottom: 20px;
}

.become-childminder--green-background-white-letters {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.6rem;
    text-align: center;
    background-color: #00ab84;
    color: white;
    padding: 10px;
}

.become-childminder--large-green-letters {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.8rem;
    text-align: center;
    color: #00ab84;
}

.become-childminder-telephone-link {
    font-size: 2.4rem;
    text-decoration: none;
    color: white !important;
}

li:last-child {
    margin-bottom: 20px;
}

/* 
==================================================================================== 
My Membership
==================================================================================== 
*/

.my-membership-header-title {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 2.4rem;
    color: #006ba6;
}

.my-membership-header-subtitle {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.6rem;
    color: #72b5dc;
}

.my-membership-speech-bubble-text {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.4rem;
    color: #006ba6;
}

.my-membership-separator {
    height: 8px;
    background-color: #bfdae9;
}

.my-membership-section-title {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 2.2rem;
    color: #006ba6;
}

.my-membership-section-panel {
    font-family: 'gilroy-extrabold', Arial;
    text-align: center;
    background-color: #d9e9f2;
    margin: -8px 0px;
    padding: 20px;
}

.my-membership-section-panel-title {
    font-size: 2rem;
    color: #006ba6;
}

.my-membership-section-panel-text {
    font-size: 1.6rem;
}

/* 
==================================================================================== 
Specialist Services
==================================================================================== 
*/

.specialist-services-header-title {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 2.4rem;
    color: #003c71;
}

.specialist-services-header-subtitle {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.6rem;
    color: #5988b2;
}

.specialist-services-header-bold-text {
    text-align: center;
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.6rem;
    color: #003c71;
}

.specialist-services-text-button-title {
    text-align: center;
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.6rem;
    color: #003c71;
}

.specialist-services-text-button-button {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.6rem;
    color: #003c71 !important;
    background-color: #00ab84;
    padding: 12px 0px;
    margin-top: 10px !important;
    border-radius: 3px;
    border-bottom: 2px solid rgba(0,0,0,0.3);
    transition: all ease-in 0.15s;
}

    .specialist-services-text-button-button:hover {
        background-color: #008762;
    }

    .specialist-services-text-button-button a {
        display: block;
        text-decoration: none;
        color: white !important;
    }

        .specialist-services-text-button-button a:hover {
            color: white !important;
        }

.specialist-services-separator {
    height: 8px;
    background-color: #a3b9cc;
}

.specialist-services-section-panel {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.6rem;
    color: #003c71 !important;
    text-align: center;
    background-color: #d9e2ea;
    margin: -8px 0px;
    padding: 20px;
}

    .specialist-services-section-panel a {
        color: #003c71 !important;
    }

        .specialist-services-section-panel a:hover {
            color: #003c71 !important;
        }

.specialist-services-separator {
    height: 8px;
    background-color: #a3b9cc;
}

.specialist-services--green-background-white-letters {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.6rem;
    text-align: center;
    background-color: #00ab84;
    color: white;
    padding: 10px;
}

.specialist-services-speech-bubble-text {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.4rem;
    color: #003c71;
}

/* 
==================================================================================== 
Contact Us
==================================================================================== 
*/

.contact-us-header-title {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 2rem;
    color: #dc4405;
}

.contact-us-section-title {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.6rem;
    color: #dc4405;
}

.contact-us-panel {
    background-color: #dc4405;
    color: white;
    font-family: 'gilroy-extrabold', Arial;
    padding: 10px;
}

.contact-us-in-panel-section-title {
    font-size: 1.6rem;
}

    .contact-us-in-panel-section-title a {
        text-decoration: none;
        color: white !important;
    }

        .contact-us-in-panel-section-title a:hover {
            color: white !important;
        }

.contact-us-in-panel-section-text {
    font-size: 1.4rem;
}

.contact-us-in-panel-image {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 10px;
}

@media all and (max-width: 629px) {
    .contact-us-in-panel-image {
        display: none;
    }
}

.contact-us-separator {
    height: 8px;
    background-color: #f6d0c0;
}

.contact-us-box {
    border: 2px solid #dc4405;
    padding: 10px;
}

.contact-us-contact-title {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.2rem;
    color: #dc4405;
}

.contact-us-box-telephone {
    /*text-decoration: none;*/
    color: black;
}

/*.contact-us-box-telephone:hover {
        color: black;
    }*/

/* 
==================================================================================== 
News
==================================================================================== 
*/

.news-header {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 2.4rem;
    color: #d50032;
}

.year-picker-selected-heading {
    font-family: 'gilroy-extrabold', Arial;
    background-color: #e66684;
    color: white;
}

.news-row-news {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.2rem;
}

.news-picker-item-content-title,
.news-picker-item-content-title:hover,
.news-picker-item-content-title:visited {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.6rem;
    color: #d50032;
    text-decoration: none;
}

.news-picker-toggle {
    background: #f68ea8 url("/Local/Themes/Website/Images/news-icon-picker-closed.png") no-repeat 96% center;
}

    .news-picker-toggle.open {
        background-image: url("/Local/Themes/Website/Images/news-icon-picker-open.png");
    }

.news-button-read-more,
.news-button-read-more:hover {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.2rem;
    padding: 12px 20px 10px 20px;
    background-color: #d50032;
    color: white !important;
}

.block-formatting-context input {
    font-family: 'gilroy-extrabold', Arial;
}

.year-picker-search input {
    background: white url("/Local/Themes/Website/Images/news-icon-picker-search.png") no-repeat 7px center;
}

.year-picker-search a,
.year-picker-search a:hover {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.4rem;
    border: none;
    padding: 2px;
    color: white !important;
}

.year-picker-toggle {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.2rem;
    background: #f68ea8 url("/Local/Themes/Website/Images/news-icon-picker-closed.png") no-repeat 96% center;
}

    .year-picker-toggle.open {
        background-image: url("/Local/Themes/Website/Images/news-icon-picker-open.png");
    }

.year-picker-content-month {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.2rem;
}

    .year-picker-content-month div {
        width: 60px;
        height: 34px;
    }

    .year-picker-content-month img {
        margin-bottom: 2px;
    }

.a-voice {
    border: 8px solid #d50032;
    border-radius: 8px;
    padding: 20px;
}

    .a-voice h2, .a-voice h3 {
        color: #d50032 !important;
    }

    .a-voice h2 {
        font-size: 1.8rem;
    }

    .a-voice h3 {
        font-size: 1.4rem;
    }

/* 
==================================================================================== 
Learn with SCMA - Learning Header Box
==================================================================================== 
*/

.learning-header-box--panel {
    padding-bottom: 60px;
}

.learning-header-box--header-text {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.8rem;
    color: white;
    width: 60%;
    margin-bottom: 0px;
}

.learning-header-box--header-image {
    position: absolute;
    top: 0px;
    right: 0px;
    padding-right: 0px !important;
    opacity: 0.8;
}

.learning-header-box--header-image-element {
    margin-left: 10px;
    max-width: 120% !important;
}

.learning-header-box--main-text {
    font-family: 'gilroy-extrabold', Arial;
    color: white;
    text-align: center;
}

.learning-header-box--button {
}

.learning-header-box--link {
    font-family: 'gilroy-extrabold', Arial;
    background-color: rgba(255, 255, 255, 0.80);
    color: #069191;
    border-radius: 3px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    padding: 10px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all ease-in 0.15s;
}

    .learning-header-box--link:hover {
        background-color: rgba(255, 255, 255, 1.00);
    }


@media all and (max-width: 1250px) {
    .learning-header-box--header-text {
        float: left;
        width: 100%;
        margin-bottom: 0px;
        text-align: center;
    }

    .learning-header-box--header-image {
        float: left;
        width: 100%;
        position: static;
    }

    .learning-header-box--header-image-element {
        display: block !important;
        margin: auto;
    }
}

@media all and (max-width: 959px) {
    .learning-header-box--header-text {
        float: left;
        width: 60%;
        margin-bottom: 40px;
    }

    .learning-header-box--header-image {
        float: left;
        width: initial;
        position: absolute;
    }

    .learning-header-box--header-image-element {
        display: inline-block;
        margin: initial;
    }
}

@media all and (max-width: 540px) {
    .learning-header-box--header-text {
        float: left;
        width: 100%;
        margin-bottom: 0px;
        text-align: center;
    }

    .learning-header-box--header-image {
        float: left;
        width: 100%;
        position: static;
    }

    .learning-header-box--header-image-element {
        display: block !important;
        margin: auto;
    }
}

@media all and (max-width: 359px) {
    .learning-header-box--link {
        font-size: 0.8rem;
    }
}

.learning-panel a {
    text-decoration: none;
}

.learning-courses-panel a {
    text-decoration: none;
}

/*.interactive-learning-banner--text span {
    font-size: 24px;
    color: white;
}

@media all and (max-width: 639px) {
    .interactive-learning-banner--text h1 {
        font-size: 20px;
    }
    .interactive-learning-banner--text span {
        font-size: 16px;
    }
}

@media all and (max-width: 479px) {
    .interactive-learning-banner--text h1 {
        font-size: 16px;
    }
    .interactive-learning-banner--text span {
        font-size: 12px;
    }
}

@media all and (max-width: 359px) {
    .interactive-learning-banner--text span {
        font-size: 10px;
    }
}*/

/* 
==================================================================================== 
CCL Pathway - Learning Header Box
==================================================================================== 
*/

.ccl-header-box--panel {
    padding: 20px 20px 80px 20px;
}

.ccl-header-box--header-panel {
}

.ccl-header-box--header-text {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.8rem;
    color: white;
    width: 60%;
    margin-bottom: 20px;
}

.ccl-header-box--header-image {
}

.ccl-header-box--header-image-element {
    margin-left: 10px;
    max-width: 120% !important;
}

.ccl-header-box--main-text {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.4rem;
    color: white;
    text-align: center;
    padding-bottom: 50px !important;
}

.ccl-header-box--button {
    bottom: 5px;
}

.ccl-header-box--link {
    font-family: 'gilroy-extrabold', Arial;
    background-color: white;
    color: #677e9c;
    padding: 10px;
    text-decoration: none;
    display: block;
    text-align: center;
    border-radius: 3px;
    transition: background-color 0.25s ease;
}

    .ccl-header-box--link:hover {
        background-color: #e2f3f0;
    }

@media all and (max-width: 1250px) {
    .ccl-header-box--header-text {
        float: left;
        width: 100%;
        margin-bottom: 0px;
        text-align: center;
    }

    .ccl-header-box--header-image {
        float: left;
        width: 100%;
        position: static;
    }

    .ccl-header-box--header-image-element {
        display: block !important;
        margin: auto;
    }
}

@media all and (max-width: 959px) {
    .ccl-header-box--header-text {
        float: left;
        width: 60%;
        margin-bottom: 40px;
    }

    .ccl-header-box--header-image {
        float: left;
        width: initial;
        position: absolute;
    }

    .ccl-header-box--header-image-element {
        display: inline-block;
        margin: initial;
    }
}

@media all and (max-width: 540px) {
    .ccl-header-box--header-text {
        float: left;
        width: 100%;
        margin-bottom: 0px;
        text-align: center;
    }

    .ccl-header-box--header-image {
        float: left;
        width: 100%;
        position: static;
    }

    .ccl-header-box--header-image-element {
        display: block !important;
        margin: auto;
    }
}

@media all and (max-width: 359px) {
    .ccl-header-box--link {
        font-size: 0.8rem;
    }
}

/* 
==================================================================================== 
Slide Form
==================================================================================== 
*/

.slide-form-header-panel {
    background-color: #efefef;
    padding: 10px 10px 50px 10px;
    position: relative;
}

.slide-form-title {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.6rem;
    color: #9b26b6;
}

.slide-form-button {
    font-family: 'gilroy-extrabold', Arial;
    background-color: rgba(0, 171, 132, 0.85);
    color: white !important;
    text-decoration: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 10px;
    border-radius: 5px;
    transition: all ease-in 0.15s;
}

    .slide-form-button:hover,
    .slide-form-button:visited {
        color: white !important;
        text-decoration: none;
        background-color: #00ab84;
    }

.slide-form-login {
    background-color: #00ab84;
    border-bottom: 5px solid #00ad92;
    border-radius: 5px;
    padding: 20px;
    color: white;
}

    .slide-form-login.green {
        background-color: #cceee8;
        color: #676767;
        border-bottom: 5px solid #ade0d7;
    }

    .slide-form-login.no-background {
        background: none;
        color: #676767;
        padding: 0px;
        border-bottom: none;
        max-width: 100%;
    }


    .slide-form-login input[type=text],
    .slide-form-login input[type=password],
    .slide-form-login input[type=textarea],
    .slide-form-login select {
        display: block;
        width: 100%;
        border: none;
        padding: 8px;
        margin: 0px;
        background-color: white;
        border-radius: 5px;
        outline: none;
    }

    .slide-form-login input[type=submit] {
        display: inline-block;
        border: none;
        background-color: green;
        border-bottom: 2px solid rgba(0, 0, 0, 0.30);
        border-radius: 3px;
        padding: 7px 20px 5px 20px;
        font: 16px Arial, Sans-serif, times;
        color: white;
        text-decoration: none;
        max-width: 100%;
        white-space: normal;
        transition: all 0.3s ease 0s;
        cursor: pointer;
    }

/* 
==================================================================================== 
Enquire Today Form
==================================================================================== 
*/

.enquire-today {
    background-color: #00ab84;
    color: white;
    border-radius: 5px;
    border-bottom: 3px solid #027a5f;
}

.enquire-today-button-panel a {
    padding: 20px;
    display: block;
    text-align: center;
    font: 35px 'gilroy-extrabold', times;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease 0s;
    background-color: #00ab84;
}

    .enquire-today-button-panel a:hover {
        background-color: #008e6d;
    }

.enquire-today-content {
    margin-bottom: 10px;
    color: #ffffff;
}

.enquire-today-form {
    padding: 0px 20px 20px 20px;
    background-color: #00ab84;
}

.enquire-today-submit-button {
    margin-top: 5px;
    padding: 10px;
    display: block;
    text-align: center;
    font: 25px 'gilroy-extrabold', times;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    background-color: #003c72;
    border-bottom: 3px solid #033058;
    transition: all 0.3s ease 0s;
}

    .enquire-today-submit-button:hover {
        background-color: #033058;
    }

/* 
==================================================================================== 
Apply Today Form
==================================================================================== 
*/

.apply-today-header-panel {
    text-align: center;
    background-color: #efefef;
}

.apply-today-title {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.6rem;
    color: #9b26b6;
}

.apply-today-button {
    font-family: 'gilroy-extrabold', Arial;
    background-color: #00ab84;
    color: white;
    cursor: pointer;
    padding: 20px;
}

.apply-today-login {
    background-color: #00ab84;
    border-bottom: 5px solid #00ad92;
    padding: 20px;
    color: white;
}

    .apply-today-login.green {
        background-color: #cceee8;
        color: #676767;
        border-bottom: 5px solid #ade0d7;
    }

    .apply-today-login.no-background {
        background: none;
        color: #676767;
        padding: 0px;
        border-bottom: none;
        max-width: 100%;
    }

    .apply-today-login input[type=text],
    .apply-today-login input[type=password],
    .apply-today-login input[type=textarea],
    .apply-today-login select {
        display: block;
        width: 100%;
        border: none;
        padding: 8px;
        margin: 0px;
        background-color: white;
        border-radius: 5px;
        outline: none;
    }

    .apply-today-login input[type=submit] {
        display: inline-block;
        border: none;
        background-color: green;
        border-bottom: 2px solid rgba(0, 0, 0, 0.30);
        border-radius: 3px;
        padding: 7px 20px 5px 20px;
        font: 16px Arial, Sans-serif, times;
        color: white;
        text-decoration: none;
        max-width: 100%;
        white-space: normal;
        transition: all 0.3s ease 0s;
        cursor: pointer;
    }

.row-group input[type=text],
.row-group input[type=password],
.row-group input[type=textarea],
.row-group textarea,
.row-group select {
    display: block;
    width: 100%;
    border: none;
    padding: 8px;
    margin: 0px;
    background-color: white;
    border-radius: 5px;
    outline: none;
    border: 1px solid #d3d3d3;
}

.row-group input[type=submit] {
    display: inline-block;
    border: none;
    background-color: #00ab84;
    border-bottom: 2px solid rgba(0, 0, 0, 0.30);
    border-radius: 3px;
    padding: 7px 20px 5px 20px;
    font: 20px 'gilroy-extrabold', Arial, Sans-serif, times;
    color: white !important;
    text-decoration: none;
    max-width: 100%;
    white-space: normal;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}

    .row-group input[type=submit]:hover {
        color: white !important;
        background-color: #008163;
    }

/* 
==================================================================================== 
Return to Unit panel
==================================================================================== 
*/

.return-to-unit-title {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.6rem;
    color: #9b26b6;
}

.return-to-unit-button {
    font-family: 'gilroy-extrabold', Arial;
    background-color: #00ab84;
    color: white;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 10px;
    border-radius: 5px;
}

    .return-to-unit-button a {
        color: white !important;
        text-decoration: none;
    }

/* 
==================================================================================== 
Learning Unit Banner Text
==================================================================================== 
*/

.learning-banner-title {
    color: white;
    font-size: 2.2rem;
}

.learning-banner-subtitle {
    color: white;
    font-size: 1.4rem;
}

@media all and (max-width: 1042px) {
    .learning-banner-title {
        color: white;
        font-size: 2.0rem;
    }

    .learning-banner-subtitle {
        color: white;
        font-size: 1.3rem;
    }
}

@media all and (max-width: 767px) {
    .learning-banner-title {
        color: white;
        font-size: 1.8rem;
    }

    .learning-banner-subtitle {
        color: white;
        font-size: 1.2rem;
    }
}

@media all and (max-width: 568px) {
    .learning-banner-title {
        color: white;
        font-size: 1.6rem;
    }

    .learning-banner-subtitle {
        color: white;
        font-size: 1.1rem;
    }
}

@media all and (max-width: 479px) {
    .learning-banner-title {
        color: white;
        font-size: 1.4rem;
    }

    .learning-banner-subtitle {
        color: white;
        font-size: 1.0rem;
    }
}

@media all and (max-width: 360px) {
    .learning-banner-title {
        color: white;
        font-size: 1.1rem;
    }

    .learning-banner-subtitle {
        color: white;
        font-size: 0.8rem;
    }
}

/* 
==================================================================================== 
Text and Image with Background Panel
==================================================================================== 
*/

.text-image-background--title {
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.8rem;
}

/* 
==================================================================================== 
Text and Button with Background Panel
==================================================================================== 
*/

.text-button-image--button {
    font-family: 'gilroy-extrabold', Arial;
    background-color: white;
    color: #00ab84;
    padding: 10px;
    border-radius: 5px;
    position: absolute;
    right: 10px;
}

    .text-button-image--button a {
        color: #00ab84 !important;
        text-decoration: none;
    }

/* 
==================================================================================== 
E-Learning Book panel
==================================================================================== 
*/

.elearning-book h1 {
    color: white !important;
}

.elearning-button a {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 10px;
    font-family: 'gilroy-extrabold', Arial;
    color: #00ab84 !important;
    text-decoration: none;
    border-radius: 5px;
    transition: all ease-in 0.15s;
}

    .elearning-button a:hover {
        background-color: rgba(255, 255, 255, 1.0);
    }

/* 
==================================================================================== 
Some Useful Classes
==================================================================================== 
*/

.grey-panel {
    background-color: #efefef;
}

    .grey-panel a {
        color: #000000 !important;
    }

    .grey-panel:hover {
        background-color: #cdcdcd;
    }

@media all and (max-width: 1149px) {
    .mobile-h1-width-100 h1 {
        width: 100% !important;
    }

    .padding-variable {
        padding: 8px !important;
        padding-bottom: 20px !important;
    }
}

@media all and (max-width: 767px) {
    .mt-50--mobile {
        margin-top: -50px !important;
    }

    .width-full-heading--ts h2 {
        width: 100% !important;
    }

    .padding-variable {
        padding: 20px !important;
    }
}

.link-not-underlined a {
    text-decoration: none;
}

.opacity04 {
    opacity: 0.4;
}

.padding-variable {
    padding: 20px;
}

@media all and (max-width: 1179px) {
    .hidden-when-smaller {
        display: none !important;
    }
}

/* 
==================================================================================== 
Nav Only Header Breadcrumb
==================================================================================== 
*/

.nav-only-header-breadcrumb-outer-container {
    xposition: fixed;
    z-index: 7777;
    width: 100%;
    xtop: 93px;
    padding: 10px;
    margin: 10px 0px 10px 0px;
    color: #343434;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.nav-only-header-breadcrumb-inner-container {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.nav-only-header-breadcrumb a {
    color: black !important;
    text-decoration: none;
}

@media all and (max-width: 959px) {
    .nav-only-header-breadcrumb-outer-container {
        display: none;
    }
}

/* 
==================================================================================== 
ELC Carousel
==================================================================================== 
*/

.carousel-elc {
    height: 540px !important;
}

    .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
        height: 540px !important;
    }

    .carousel-elc .carousel-breadcrumb-outer-container {
        position: fixed;
        z-index: 7777;
        width: 100%;
        top: 93px;
        padding: 10px;
        margin: 10px 0px 20px 0px;
        color: #343434;
        background-color: #f0f0f0;
        border-radius: 5px;
    }

    .carousel-elc .carousel-breadcrumb-inner-container {
        max-width: 1400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .carousel-elc .carousel-header__slider {
        margin-top: 180px;
    }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 360px;
        }

@media all and (max-width: 1639px) {
    .carousel-elc {
        height: 540px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 540px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 360px;
        }
}

@media all and (max-width: 1529px) {
    .carousel-elc {
        height: 540px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 540px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 360px;
        }
}

@media all and (max-width: 1459px) {
    .carousel-elc {
        height: 540px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 540px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 360px;
        }
}

@media all and (max-width: 1399px) {
    .carousel-elc {
        height: 520px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 520px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 340px;
        }
}

@media all and (max-width: 1349px) {
    .carousel-elc {
        height: 520px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 520px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 340px;
        }
}

@media all and (max-width: 1279px) {
    .carousel-elc {
        height: 500px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 500px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 320px;
        }
}

@media all and (max-width: 1239px) {
    .carousel-elc {
        height: 490px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 490px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 310px;
        }
}

@media all and (max-width: 1179px) {
    .carousel-elc {
        height: 475px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 475px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 295px;
        }
}

@media all and (max-width: 1109px) {
    .carousel-elc {
        height: 460px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 460px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 280px;
        }
}

@media all and (max-width: 1079px) {
    .carousel-elc {
        height: 450px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 450px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 270px;
        }
}

@media all and (max-width: 1023px) {
    .carousel-elc {
        height: 420px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 420px !important;
        }

        .carousel-elc .carousel-header__slider {
            margin-top: 160px;
        }

            .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
                height: 260px;
            }
}

@media all and (max-width: 959px) {
    .carousel-elc {
        height: 365px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 365px !important;
        }

        .carousel-elc .carousel-breadcrumb-outer-container {
            top: 72px;
        }

        .carousel-elc .carousel-header__slider {
            margin-top: 120px;
        }

            .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
                height: 270px;
            }
}

@media all and (max-width: 859px) {
    .carousel-elc {
        height: 355px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 355px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 250px;
        }
}

@media all and (max-width: 799px) {
    .carousel-elc {
        height: 340px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 340px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 235px;
        }
}

@media all and (max-width: 767px) {
    .carousel-elc {
        height: 295px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 295px !important;
        }

        .carousel-elc .carousel-breadcrumb-outer-container {
            display: none;
        }

        .carousel-elc .carousel-header__slider {
            margin-top: 100px;
        }

            .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
                height: 195px;
            }
}

@media all and (max-width: 699px) {
    .carousel-elc {
        height: 275px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 275px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 175px;
        }
}

@media all and (max-width: 639px) {
    .carousel-elc {
        height: 260px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 260px !important;
        }

        .carousel-elc .carousel-header__slider {
            margin-top: 95px;
        }

            .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
                height: 160px;
            }
}

@media all and (max-width: 599px) {
    .carousel-elc {
        height: 245px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 245px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 150px;
        }
}

@media all and (max-width: 519px) {
    .carousel-elc {
        height: 225px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 225px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 130px;
        }
}

@media all and (max-width: 479px) {
    .carousel-elc {
        height: 180px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 180px !important;
        }

        .carousel-elc .carousel-header__slider {
            margin-top: 60px;
        }

            .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
                height: 120px;
            }
}

@media all and (max-width: 419px) {
    .carousel-elc {
        height: 165px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 165px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 105px;
        }
}

@media all and (max-width: 379px) {
    .carousel-elc {
        height: 155px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 155px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 95px;
        }
}

@media all and (max-width: 359px) {
    .carousel-elc {
        height: 150px !important;
    }

        .carousel-elc .bx-wrapper, .carousel-elc .bx-viewport {
            height: 150px !important;
        }

        .carousel-elc .carousel-header__slider .carousel-header__slider--slide {
            height: 90px;
        }
}

/* 
==================================================================================== 
Inner Page Breadcrumb
==================================================================================== 
*/

.inner-page-header-control {
    height: 450px !important;
}

    .inner-page-header-control .bx-wrapper, .inner-page-header-control .bx-viewport {
        height: 450px !important;
    }

    .inner-page-header-control .inner-page-header-breadcrumb-outer-container {
        position: fixed;
        z-index: 7777;
        width: 100%;
        top: 93px;
        padding: 10px;
        margin: 10px 0px 20px 0px;
        color: #343434;
        background-color: #f0f0f0;
        border-radius: 5px;
    }

    .inner-page-header-control .inner-page-header-breadcrumb-inner-container {
        max-width: 1400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .inner-page-header-control .innerpage-header {
        height: 220px;
        margin-top: 200px;
    }

    .inner-page-header-control .carousel-header__slider {
        margin-top: 180px;
    }

.inner-page-header-breadcrumb a {
    color: black !important;
    text-decoration: none;
}

@media all and (max-width: 959px) {
    .inner-page-header-control .inner-page-header-breadcrumb-outer-container {
        top: 72px;
    }
}

@media all and (max-width: 767px) {
    .inner-page-header-control .inner-page-header-breadcrumb-outer-container {
        display: none;
    }
}

/* 
==================================================================================== 
Childminding Week Banner
==================================================================================== 
*/

.childminding-week-banner {
    height: 450px !important;
}

    .childminding-week-banner .bx-wrapper, .childminding-week-banner .bx-viewport {
        height: 450px !important;
    }

    .childminding-week-banner .inner-page-header-breadcrumb-outer-container {
        position: fixed;
        z-index: 7777;
        width: 100%;
        top: 93px;
        padding: 10px;
        margin: 10px 0px 20px 0px;
        color: #343434;
        background-color: #f0f0f0;
        border-radius: 5px;
    }

    .childminding-week-banner .inner-page-header-breadcrumb-inner-container {
        max-width: 1400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .childminding-week-banner .innerpage-header {
        height: 450px;
        margin-top: 180px;
    }

    .childminding-week-banner .carousel-header__slider {
        margin-top: 180px;
    }

.mt200 {
    margin-top: 200px;
}

.accordion-title {
    font: 26px 'gilroy-extrabold', times;
    margin: 0px 0px 13px 0px;
}

@media all and (max-width: 959px) {
    .childminding-week-banner .inner-page-header-breadcrumb-outer-container {
        top: 72px;
    }
}

@media all and (max-width: 767px) {
    .childminding-week-banner .inner-page-header-breadcrumb-outer-container {
        display: none;
    }
}


/* ============================================================================
/* TABLES
/* ============================================================================ */

table.formatted {
    width: 100%;
}

    table.formatted th,
    table.formatted td {
        padding: 7px 10px;
    }

    table.formatted th {
        border-top: 1px solid #e1f0f5;
        border-bottom: 2px solid #e1f0f5;
        text-align: left;
        font-weight: bold;
        color: #444444;
    }

    table.formatted.divided tr td {
        border-bottom: 1px solid #dddddd;
    }

    table.formatted.striped tr:nth-child(even) {
        background-color: #f4f4f4;
    }

    table.formatted tr.featured {
        background-color: #e1f0f5;
        padding: 0px 10px;
    }

.learning-log {
}

.learning-log-content {
    margin: 0 0 30px 0;
}

.learning-log-content-subtitle {
    color: #9b26b6;
    font: 22px 'gilroy-extrabold', times;
    margin: 0 0 4px 0;
}

.learning-log-content-body {
    margin: 0 0 8px 0;
}

.learning-log-content-date {
    color: #b07dce;
    font: 16px 'arial', times;
    font-style: italic;
    margin: 0 0 12px 0;
}

.learning-log-title {
    color: #9b26b6;
    font: 18px 'gilroy-extrabold', times;
    text-decoration: none;
    transition: all ease-in 0.05s;
}

    .learning-log-title:hover {
        color: #600575;
        font: 18px 'gilroy-extrabold', times;
    }

.learning-log-image {
    float: right;
    max-width: 420px;
    /*width: 45%;*/
    margin-left: 20px;
}

.learning-log-associated-document {
    background-color: #f3f3f3;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.learning-log-associated-document-icon {
    float: left;
    width: 48px;
    margin-right: 20px;
}

.learning-log-associated-document-content {
    overflow: auto;
}

.learning-log-associated-document-content-title {
    font: 22px 'quicksandbold', times;
    color: #ed1d51;
    margin-bottom: 3px;
}

@media all and (max-width: 767px) {
    .learning-log-image {
        float: none;
        width: 100%;
        margin-left: 0px;
        margin-bottom: 10px;
    }
}

.purple-panel-with-dividers {
    background-color: #f6d3ff;
    color: #9b26b6;
    font-family: 'gilroy-extrabold', Arial;
    font-size: 1.8rem;
    text-align: center;
    padding: 40px;
}

.elc-button {
    padding: 15px 25px;
    background-color: #66a6ca;
    color: #ffffff;
    font-size: 1.2em;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.25s ease;
    display: inline-block;
}

    .elc-button:hover {
        background-color: #2d87b9;
        color: #ffffff;
        text-decoration: none;
    }

.childminder-disclaimer {
    padding: 15px;
    border: 2px solid #c6e3ef;
    font-size: 12px;
    border-radius: 5px;
}

/* ============================================================================
/* bubble
/* ============================================================================ */

.bubble {
  position: relative;
  line-height: 24px;
  width: 100%;
  background: #bdddef;
  border-radius: 35px;
  padding: 24px;
  text-align: center;
  color: #000;
}

.bubble-bottom-left:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 24px solid #bdddef;
  border-right: 12px solid transparent;
  border-top: 12px solid #bdddef;
  border-bottom: 20px solid transparent;
  left: 32px;
  bottom: -24px;
}


/* ============================================================================
/* recruitment campaign
/* ============================================================================ */

html:has(.recruitment-campaign) {
    scroll-behavior: smooth;
    }

.recruitment-campaign {
    font-family: arial; /*'gilroy-extrabold'*/
    line-height: 1.5;
    }

    .recruitment-campaign .text-gilroylight { font-family: 'gilroy-light'; }
    .recruitment-campaign .text-gilroybold { font-family: 'gilroy-extrabold'; }
    .recruitment-campaign .darkblue { color: #1e4058; }
    .recruitment-campaign .blue { color: #006ba6; }

    .c40.m50 { width: calc(40% - 100px); }
    .c50.m50 { width: calc(50% - 100px); }
    .c60.m50 { width: calc(60% - 100px); }

    @media (max-width: 959px){
        .c100--t.m50 { width: calc(100% - 20px); margin: 0 10px 30px 10px!important; }
    }

    .recruitment-campaign .max450 { max-width: 450px; margin: 0 auto; }
    .recruitment-campaign .max760 { max-width: 760px; margin: 0 auto; }

    .recruitment-campaign a, 
    .recruitment-campaign a:visited,
    .recruitment-campaign a:hover {
        color: inherit; 
        }

    .recruitment-campaign h1, 
    .recruitment-campaign h2 { 
        color: #003C71!important;
        line-height: 1!important;
        opacity: 1!important;
        }

        .recruitment-campaign h1 { font: 65px 'gilroy-extrabold'; }
        .recruitment-campaign h2 { font: 35px 'gilroy-extrabold'; }
        .recruitment-campaign h3 { font: 27px 'gilroy-light'; }

        @media (max-width: 479px) {
            .recruitment-campaign h1 { font-size: 35px; }
            .recruitment-campaign h2 { font: 25px; }
            }

    .recruitment-campaign .recruitment-campaign__banner__subheading {
        font-family: 'gilroy-light';
        }

    .recruitment-campaign hr {
        height: 10px;
        background-color: transparent;
        border-top: 1px solid #cecece;
        border-bottom: 1px solid #cecece;
        /*margin: 75px 0;*/
        }

    .recruitment-campaign .recruitment-form {
        background-color: #c30339;
        }

        .recruitment-campaign .recruitment-form div.pb20.pt20 {
            font-size: 20px;
            line-height: 1.3;
            padding-top: 0!important;
            padding-bottom: 5px!important;
            }

        .recruitment-campaign .recruitment-form a.button,
        .recruitment-campaign .recruitment-form a.button:visited,
        .recruitment-campaign .recruitment-form a.button:hover {
            background-color: white; color: black; font-family: 'gilroy-extrabold'
            }

    .recruitment-campaign__panel {
        padding: 25px;
        color: white;
        border-radius: 10px;
        }

        .recruitment-campaign__panel--red { background-color: #C30339; }
        .recruitment-campaign__panel--green { background-color: #00965E; }
        .recruitment-campaign__panel--purple { background-color: #7A4183; }
        .recruitment-campaign__panel--blue { background-color: #006BA6; }

    .recruitment-campaign .accordion-toggle {
        font-family: Arial;
        font-weight: bold;
        font-size: 14px;
        padding: 15px 50px 15px 0;
        margin: 0;
        color: #1e4058;
        border-bottom: 1px solid #1e4058;
        border-radius: 0;
        background-image: url('../Images/LocalAuthorityRecruitment/accordion-closed.png');
        transition: none;
        }
        .recruitment-campaign .accordion-toggle.open { background-color: inherit; background-image: url('../Images/LocalAuthorityRecruitment/accordion-opened.png'); }

        .recruitment-campaign .accordion-toggle.accordion-toggle--areas { color: #006ba6; border-bottom-color: #006ba6; background-image: url('../Images/LocalAuthorityRecruitment/accordion-closed-006ba6.png'); }
        .recruitment-campaign .accordion-toggle.accordion-toggle--areas.open { background-image: url('../Images/LocalAuthorityRecruitment/accordion-opened-006ba6.png'); }

    .recruitment-campaign-list--large {
        font-family: 'gilroy-light';
        font-size: 20px;
        }

    .recruitment-campaign-list {
        list-style-type: none;
        margin: 0;
        padding: 0;
        }

        .recruitment-campaign-list li {
            display: flex;
            width: 100%;
            margin: 0;
            padding: 0;
            }

            .recruitment-campaign-list li:not(:last-child) {
                margin-bottom: 10px;
                }

            .recruitment-campaign-list li i {
                font-size: 22px;
                margin-top: 5px;
                }

            .recruitment-campaign-list li :last-child {
                padding-left: 15px;
                flex: 1;
                }

    .recruitment-campaign__button,
    .recruitment-campaign__button:visited {
        font-family: 'gilroy-extrabold';
        display: inline-block;
        background-color: #c30339;
        color: white!important;
        text-decoration: none;
        padding: 15px 36px;
        border-radius: 10px;
        }

        .recruitment-campaign__button:hover {
            color: white;
            }

        @media (max-width: 479px) {
            .recruitment-campaign__button {
                width: 100%;
                }
            }

    .recruitment-campaign__zone {
        background-color: #fff8f4;
        display: flow-root; /* stop margin collapse */
        }

    .recruitment-campaign__container {
        /*margin: 100px auto;*/
        margin: 0 auto;
        max-width: 1300px;
        display: flow-root; /* stop margin collapse */
        }

        @media only screen and (max-width: 1024px) {
            .recruitment-campaign__container {
                margin-left: 20px;
                margin-right: 20px;
                }
            }

    .recruitment-campaign__message {
        max-width: 759px; 
        margin: 75px auto;
        text-align: center;
        }

        .recruitment-campaign__message__text { 
            font-family: 'gilroy-light';
            font-size: 32px; 
            line-height: 1.2;
        }

        @media (max-width: 479px) {
            .recruitment-campaign__message {
                margin: 50px auto;
                }

                .recruitment-campaign__message__text { 
                    font-size: 26px; 
                }
            }

    .recruitment-campaign__zone--banner { background-image: url('../Images/LocalAuthorityRecruitment/recruitment-banner.jpg'); background-size: cover; }
    .recruitment-campaign__zone--banner .recruitment-campaign__container { padding: 0; }
    .recruitment-campaign__banner {
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 10px;
        padding: 75px 50px;
        margin: 100px 0;
        }

        @media (max-width: 640px) {
            .recruitment-campaign__zone--banner {
                height: 100vh;
                display: flex;
                flex-direction: column;
                justify-content: center;
                }
                
                .recruitment-campaign__banner > div {
                    max-width: 400px;
                    margin: inherit auto inherit auto;
                    text-align: center;
                    }

        }

        .recruitment-campaign__banner__logo {
            text-align: right;
            margin-bottom: 50px;
            }

        .recruitment-campaign__banner__text {
            
            }

            .recruitment-campaign__banner__text h1 { max-width: 640px; font-size: 56px; margin-bottom: 35px; }
            .recruitment-campaign__banner__text h2 { max-width: 340px; font-size: 30px; font-weight: normal; font-family: Arial; }
    
        .recruitment-campaign__banner__links {
            display: flex;
            align-items: center;
            }

            .recruitment-campaign__banner__links a:first-child {
                flex-grow: 1;
                color: #026ca6;
                font-weight: bold;
                }

            @media (max-width: 640px) {
                .recruitment-campaign__banner { padding: 25px; margin: 50px 0; }
                .recruitment-campaign__banner__text h1 { max-width: 100%; font-size: 32px; }
                .recruitment-campaign__banner__text h2 { max-width: 100%; font-size: 22px; }
                .recruitment-campaign__banner { text-align: center; }
                .recruitment-campaign__banner__links { display: block; text-align: center; }
                .recruitment-campaign__banner__links a:not(:last-child) { display: block; width: 100%; margin-bottom: 40px; }
                    
            }

    .recruitment-campaign__testimonial {
        display: flex;
        flex-direction: column;
        }
        
        .recruitment-campaign__testimonial__text {
            font-family: 'gilroy-light';
            font-size: 20px;
            margin-bottom: 20px;
            text-align: center;
            }

        .recruitment-campaign__testimonial__author {
            font-size: 14px;
            font-weight: bold;
            color: black;
            margin-bottom: 8px;
            text-align: center;
            }

        .recruitment-campaign__testimonial__link {
            text-align: center;
            margin-bottom: 20px;
            }

            .recruitment-campaign__testimonial__link a,
            .recruitment-campaign__testimonial__link a:visited,
            .recruitment-campaign__testimonial__link a:hover {
                color: #c30339;
                font-size: 13px;
                }

        .recruitment-campaign__testimonial__image {
            font-size: 20px;
            }

        @media (min-width: 959px) {
            .recruitment-campaign__testimonial--lindsay .recruitment-campaign__testimonial__image { z-index: -1; margin-top: -175px; }
            .recruitment-campaign__testimonial--lindsay .recruitment-campaign__testimonial__text,
            .recruitment-campaign__testimonial--lindsay .recruitment-campaign__testimonial__author,
            .recruitment-campaign__testimonial--lindsay .recruitment-campaign__testimonial__link { 
                width: 250px;
                margin-left: 200px;
            }

            .recruitment-campaign__testimonial--skye .recruitment-campaign__testimonial__image { z-index: -1; margin-top: -200px; margin-bottom: -45px; order: -1; }
            .recruitment-campaign__testimonial--skye .recruitment-campaign__testimonial__text,
            .recruitment-campaign__testimonial--skye .recruitment-campaign__testimonial__author,
            .recruitment-campaign__testimonial--skye .recruitment-campaign__testimonial__link { 
                width: 250px;
                margin-left: 80px;
            }
        }

    .recruitment-campaign__logos {
        display: flex;
        justify-content: space-between;
        align-items: center;
        }

        @media only screen and (max-width: 759px) {
            .recruitment-campaign__logos {
                display: none;
                }
            }

    .recruitment-campaign__features {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        }

        .recruitment-campaign__features__feature {
            flex: 1;
            /*border: 1px solid red;*/
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            color: white;
            }

            .recruitment-campaign__features__feature__title {
                font-size: 20px;
                font-family: 'gilroy-extrabold';
                line-height: 1.2;
                text-align: center;
                color: white!important;
                margin-bottom: 20px;
                display: flex;
                align-items: center;
                }

            .recruitment-campaign__features__feature__image {
                margin-bottom: 20px;
                }

            .recruitment-campaign__features__feature__toggle {
                text-align: center;
                cursor: pointer;
                }
            
            .recruitment-campaign__features__feature__content {

                }

                .recruitment-campaign__features__feature__content__close {
                    text-align: right;
                    margin-bottom: 10px;
                    font-size: 20px;
                    cursor: pointer;
                    }

            @media (max-width: 640px) {
                .recruitment-campaign__features__feature__title { text-align: left; }
                .recruitment-campaign__features__feature__image { display: none; }
                .recruitment-campaign__features__feature__toggle { text-align: right; padding-right: 23px; background: transparent url('/Local/Themes/Default/Images/icon-arrow-down-white.png') no-repeat right; }
                .expanded .recruitment-campaign__features__feature__toggle { background-image: url('/Local/Themes/Default/Images/icon-arrow-up.png'); }
                .recruitment-campaign__features__feature__content { margin-top: 15px; }
                .recruitment-campaign__features__feature__content__close { display: none; }
                }

            @media (min-width: 640px) {
                .recruitment-campaign__features__feature__content {
                    position: absolute;
                    top: 0;
                    right: 0;
                    bottom: 0;
                    left: 0;
                    background-color: inherit; /* rgba(0, 0, 0, 0.9);*/
                    color: white !important;
                    padding: 20px;
                    font-size: 14px;
                    line-height: 1.4;
                    overflow-y: auto;
                }
            }

            .recruitment-campaign__features__feature__content { display: none; }
            .expanded .recruitment-campaign__features__feature__content { display: block; }

            .recruitment-campaign__features__feature__content,
            .recruitment-campaign__features__feature__content a,
            .recruitment-campaign__features__feature__content a:hover,
            .recruitment-campaign__features__feature__content a:visited { color: white; }
            

        @media only screen and (max-width: 759px) {
            .recruitment-campaign__features {
                display: block;
                max-width: 400px;
                margin: 0 auto;
            }
        }

    

