/*---------- Styles ----------*/
html {
    height: 100%;
    width: 100%;
}

body, div {
    font-family: 'Poppins';
    font-size: 13px;
    margin: 0;
    line-height: 20px;
    color: #132A44;
}

.div-95 {
    width: 95%;
}

h2 {
    font-weight: 600;
}

select {
    font-size: 15px;
    line-height: 25px;
    color: #919191
}

.small {
    font-size: 70%;
}

.title {
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
}

.title-big {
    font-size: 30px;
    line-height: 35px;
    font-weight: 600;
    text-transform: uppercase;
}

.title-small-green {
    color: #00A651;
    font-size: inherit;
    font-weight: 600;
}

.title-rounded, .title-rounded-big, .title-rounded-small {
    background-color: #B0D8D8;
    color: #117A89;
    border-radius: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
}

.title-rounded-big {
    font-size: 30px;
}

.title-rounded-small {
    font-size: inherit;
}

.debug {
    background-color: red;
}

.table-border {
    border: solid 1px black;
}

.clear {
    clear: both;
}

.clearer {
    clear: both;
    height: 0px;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.center {
    text-align: center;
}

.overflow-hidden {
    overflow: hidden !important;
}

.div-center {
    margin: auto;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.white {
    color: white;
}

.bold {
    font-weight: bold;
}

.hidden {
    display: none;
}

.inline {
    display: inline;
}

.inline-block {
    display: inline-block;
}

.scrollbar {
    overflow: auto;
}

.box-sizing-border {
    box-sizing: border-box;
}

.no-padding {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

hr {
    color: white;
}

.input-box {
    background-color: white !important;
    border: 1px solid #CDCDCD;
    color: #919191;
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
    font-size: 14px;
}

.input-box-calculator {
    padding: 10px !important;
}

.input-full-width-with-icon {
    width: calc(100% - 40px) !important;
}

.input-box-90 {
    width: 90%;
}

.input-borderless {
    background-color: white;
    border: 0;
    color: #919191;
    box-sizing: border-box;
    display: inline-block;
    width: auto;
    box-sizing: border-box;
    line-height: normal;
    margin: 0px;
    padding: 0px;
    font-size: 12px;
}

    .input-borderless:focus {
        outline: none;
    }

.input-icon {
    width: 20px;
    text-align: center;
    padding-right: 10px;
}

.dropdown-menu-overlay {
    display: none;
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    background-color: white;
    opacity: 0;
    z-index: 1 !important;
}

.dropdown-menu-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 2 !important;
}

    .dropdown-menu-content a {
        color: #132A44;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-menu-content a:hover {
            background-color: #ddd;
        }

select.input-box {
    width: 100%;
    box-sizing: border-box;
    color: #919191;
    font-size: 15px;
}

.easy-autocomplete.eac-greentripper {
    font-family: 'Poppins';
    font-size: 15px;
    color: #919191;
    width: 100%;
    box-sizing: border-box;
}

    .easy-autocomplete.eac-greentripper input {
        background-color: white;
        border: 1px solid #CDCDCD;
        color: #919191;
        font-size: 15px;
        padding: 10px;
        width: 100%;
        border-radius: 0px;
    }

    .easy-autocomplete.eac-greentripper ul {
        border-color: #CDCDCD;
        border-top: 0;
        box-shadow: none;
        top: 0;
    }

        .easy-autocomplete.eac-greentripper ul li, .easy-autocomplete.eac-greentripper ul .eac-category {
            /*border-color: #CDCDCD;*/
            border: 1px solid #CDCDCD;
            font-family: inherit;
            font-size: 16px;
            font-weight: 300;
            padding: 6px 12px;
            transition: all 0.4s ease 0s;
        }

            .easy-autocomplete.eac-greentripper ul li *, .easy-autocomplete.eac-greentripper ul .eac-category * {
                font-weight: 300;
            }

            .easy-autocomplete.eac-greentripper ul li.selected, .easy-autocomplete.eac-greentripper ul .eac-category.selected {
                background-color: #f1f1f1;
                font-weight: 300;
            }

            .easy-autocomplete.eac-greentripper ul li b, .easy-autocomplete.eac-greentripper ul .eac-category b {
                font-weight: 600;
            }



.dropdown {
    background-color: white;
    border: 1px solid #CDCDCD;
    padding: 10px;
    width: 100%;
    color: #919191;
}

.green-color {
    color: #00A651;
    cursor: pointer;
}

.button, .button-small {
    color: white;
    background-color: white;
    padding: 10px;
    font-size: 15px;
    border: #CFCFCF solid 1px;
    color: #888888;
    width: 100%;
    cursor: pointer;
}

    .button-solid, .button:hover, .button-small:hover {
        background-color: #193149;
        border: #193149 solid 1px;
        color: white;
    }

.button-border-green {
    border: #193149 solid 1px;
}

.button-small {
    padding: 10px;
    font-size: inherit;
}

.button-white {
    background-color: white;
    color: black !important;
    border: white solid 1px;
    border-radius: 5px;
}

    .button-white:hover {
        background-color: white;
        border: black solid 1px;
        color: black;
    }

.toggle > input[type='radio'], .toggle > input[type='checkbox'] {
    visibility: hidden;
}

    .toggle > input[type='radio'] + label, .toggle > input[type='checkbox'] + label {
        color: white;
        background-color: white;
        padding: 10px;
        font-size: 15px;
        border: #CFCFCF solid 1px;
        color: #888888;
        width: 100%;
        cursor: pointer;
    }

    .toggle > input[type='radio']:checked + label, .toggle > input[type='checkbox']:checked + label {
        background-color: #35A8E0;
        border: #35A8E0 solid 1px;
        color: white;
    }


.button-on-white {
    border: #193149 solid 3px;
}

.button:disabled {
    opacity: 0.4;
}

.error-message {
    background-color: palevioletred;
    color: white;
    padding: 10px;
    width: 95%;
}

.input-error, select.input-error {
    background-color: palevioletred !important;
    color: white !important;
}

.success-message {
    background-color: #C3F3D7;
    color: #3BB76F;
    font-weight: bold;
    padding: 10px;
    width: 95%;
}

a.normal {
    text-decoration: underline;
}

a.main-menu, a.main-menu-home {
    padding-left: 25px;
    padding-right: 25px;
    font-weight: 700;
    color: #132A44;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    padding-bottom: 10px;
}

a.main-menu-home, a.menu-blue {
    color: #193149;
}

a.main-menu-selected:before {
    content: "";
    position: absolute;
    width: 25%;
    height: 3px;
    bottom: 0;
    left: 37%;
    border-bottom: 3px solid #00a651;
}

a.main-menu-social {
    padding-right: 20px;
    color: white !important;
}


.line-height-30 {
    line-height: 30px;
}

a.language-selector {
    font-size: 11px;
    color: #808080;
    padding: 4px;
    margin-left: 15px;
    background-color: white;
}

a.language-selected {
    color: white;
    background-color: #35A8E0;
}

.vertical-align {
    vertical-align: middle;
}

ul.sub-menu {
    list-style: none;
    margin: 0px;
}

li.sub-menu {
    line-height: 45px;
    text-indent: 40px;
    font-weight: bold;
}

li.sub-menu-normal {
    font-weight: normal;
    line-height: 25px;
    text-indent: 60px;
    font-weight: normal;
}

.sub-menu-selected {
    border-bottom: 3px solid #00a651;
}

.box, .box-no-border {
    width: 100%;
    margin: 0px;
    background-color: white;
    color: #132A44;
    padding: 0px;
}

.no-border {
    border: 0;
}

.box {
    border: 1px solid #CFCFCF;
}

.box-home-page {
    height: 369px;
}

.box-shadow {
    /*-webkit-box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.16) !important;
    -moz-box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.16) !important;
    box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.16) !important;*/
}

.blue-bold {
    color: #27A8E0;
    font-weight: bold;
}

.green-bold {
    color: #00A651;
    font-weight: bold;
}

.box-image-container {
    width: 100%;
    height: 154px;
    padding: 0px;
    margin: 0px;
    background-size: cover;
}

.box-title-container {
    margin: 0px;
    padding: 0px;
    width: 100%;
    line-height: 35px;
    text-align: center;
}

.box-title {
    display: inline-block;
    padding-left: 15px;
    color: #132A44;
    font-weight: 600;
    text-align: center;
    margin: 0px;
    position: relative;
    font-size: 18px;
    line-height: 40px;
    padding-bottom: 10px;
    padding-top: 10px;
}

    .box-title:before {
        content: "";
        position: absolute;
        width: 25%;
        height: 3px;
        bottom: 0;
        left: 37%;
        border-bottom: 3px solid #00a651;
    }


.box-text {
    padding: 15px;
    text-align: center;
    margin: 0px;
    height: 65px;
    line-height: 20px;
    color: #132A44;
}

.box-button {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.white-background {
    background: white;
}

.padding-standard {
    padding: 15px;
}

.padding-double {
    padding: 30px;
}

.padding-double-left-top {
    padding-left: 15px;
    padding-top: 15px;
}

.padding-double-right-top {
    padding-right: 15px;
    padding-top: 15px;
}

.padding-top-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding-left-15 {
    padding-left: 15px;
}

.padding-right-15 {
    padding-right: 15px;
}

.padding-border {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
}

.margin-left-50 {
    margin-left: 50px;
}

.full-width {
    width: 100%;
    box-sizing: border-box;
}

.width-33 {
    padding-left: 5px;
    padding-right: 5px;
    width: 230px;
    height: 65px;
}

.width-50 {
    width: 50%;
}

.auto-width {
    width: auto;
}

.row {
    clear: left;
}

.col {
    display: inline-block;
    float: left;
    box-sizing: border-box;
}

.col-25 {
    width: 25%;
}

.col-30 {
    width: 30%;
}

.col-33 {
    width: 33%;
}

.col-40 {
    width: 40%;
}

.col-50 {
    width: 50%;
}

.col-60 {
    width: 60%;
}

.col-66 {
    width: 66%;
}

.col-75 {
    width: 75%;
}

.col-right {
    float: right;
}

.col-left {
    float: left;
}

.col-two {
    margin-left: auto;
    left: auto;
    right: auto;
    width: 50%;
    box-sizing: border-box;
}

.col-two-standard-size {
    width: 450px;
    height: 350px;
}

.col-two-wide-size {
    width: 600px;
    height: 470px;
}

.main-calculate-co2-master {
    display: inline;
}

@media only screen and (max-width: 980px) {
    .col-two, .col-two-standard-size-wide {
        width: 100%;
    }

    .col-two-wide-size {
        width: 100%;
    }

    .col-with-background {
        height: 230px;
    }

    .col-without-background {
        height: inherit;
    }
}
/*---------- IDs and positioning ----------*/

.footer-partners {
    background-color: white;
    padding: 40px;
}

.footer-logo {
    height: 50px;
    padding-right: 20px;
    padding-bottom: 10px;
    vertical-align: middle;
}

.footer-partner-logo {
    height: 50px;
    padding-right: 20px;
    padding-bottom: 10px;
    vertical-align: middle;
}


.footer-logo-small {
    height: 45px;
    padding-right: 20px;
    vertical-align: middle;
}

.footer-small {
    font-size: 10px;
    color: white;
}

.footer, .b2b-footer {
    padding: 40px;
    color: white important;
    background-color: #002F59;
}

    .footer > a {
        color: white;
    }

.footer-column {
    float: left;
    width: 20%;
    color: white !important;
}

.page-width {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0px;
    display: block;
    overflow: hidden;
    box-sizing: border-box;
}

.page-width-home {
    position: relative;
    margin: 0 auto;
    padding: 0px;
    display: block;
    overflow: hidden;
    box-sizing: border-box;
}

#Header {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 10px;
    height: 50px;
    z-index: 1;
    background-color: white;
}

.header-sticky {
    position: fixed;
    top: 0;
    width: 100%
}


#MobileButtonMenu, #MobileButtonMenuHome {
    display: none;
}

.full {
    display: inline-block;
}

.full-block {
    display: block;
}

.mobile, .mobile-block {
    display: none;
}

#MobileMenu {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 20;
    height: 100%;
    width: 0px;
    background: white;
    color: #132A44;
    display: none;
    white-space: nowrap;
    line-height: 45px;
    border: 1px solid #CDCDCD;
    overflow: scroll;
}

#MobileMenuClose {
    cursor: pointer;
    text-align: right;
}

#CookieDisclaimer {
    position: absolute;
    padding: 20px;
    background-color: #35A8E0;
    color: white;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
    font-size: 16px;
    font-weight: bold;
    display: none;
}

    #CookieDisclaimer a {
        text-decoration: underline
    }

a.mobile-menu {
    font-size: 15px;
    line-height: 30px;
}

.main-logo {
    height: 60px;
}

.header-menu {
    color: #35A8E0;
    margin: 0px;
    padding-top: 100px;
    vertical-align: top;
    float: left;
    width: 380px;
}

.header-logo {
    background-image: url(/images/logo.png);
    float: left;
    width: 380px;
    height: 230px;
    cursor: pointer;
}

#LogoMobile {
    display: none;
    width: 100%;
}

.gray-background {
    background-color: #F9F9F9;
}


.content-background {
    padding-top: 20px;
}

.green-footer {
    padding: 20px;
    background-color: #F0F8F8;
    color: #052A45;
}

.content-left-menu {
    position: relative;
    float: left;
    width: 360px;
}

.content-right-menu {
    position: relative;
    float: right;
    width: 360px;
}

.content-right {
    width: 760px;
    margin-left: 380px;
}

.content-header-image {
    width: 100%;
    height: 250px;
}

.content-title {
    font-weight: bold;
    color: #132A44;
    padding-bottom: 30px;
}

.content {
    background: white;
    color: #35A8E0;
    padding: 15px;
}

.content-single, .content-single-wide {
    width: 900px;
    margin: auto;
    background-color: white;
    box-sizing: border-box;
}

.content-single-wide {
    width: 1200px;
    overflow: hidden;
}

.image-left {
    float: left;
    padding: 10px;
}

.calc-icon {
    width: 50px;
    height: 50px;
    vertical-align: middle;
}

.calc-icon-small {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.main-facebook-share {
}

.main-social-button {
    position: relative;
    top: 0px;
    display: inline-block;
}

.social-icon {
    height: 20px;
    padding: 3px;
}

@media only screen and (max-width: 980px) {
    .social-icon {
        height: 16px;
        padding: 3px;
    }
}

.language-selector-desktop {
    display: block;
}

.language-selector-mobile {
    display: none;
}

.basket-add-button {
    padding-top: 20px;
    line-height: 30px;
    width: 25%;
    font-size: 12px;
    display: inline-block;
    margin: 5px;
    border: 1px solid #CDCDCD;
    box-sizing: border-box;
}

.calculator-heart-column {
    display: inline-block;
    float: left;
    box-sizing: border-box;
    width: 40%;
}

.calculator-comparison-column {
    display: inline-block;
    float: left;
    box-sizing: border-box;
    width: 60%;
}

@media only screen and (max-width: 980px) {
    .calculator-heart-column, .calculator-comparison-column {
        width: 100%;
    }
}


/*---------- Responsive ----------*/
@media only screen and (max-width: 980px) {

    .content-single-wide {
        width: 100%;
        box-sizing: border-box;
    }


    .col-right {
        float: inherit;
    }

    .col-left {
        float: inherit;
    }

    .language-selector-desktop {
        display: none;
    }

    .language-selector-mobile {
        display: block;
        text-align: right;
    }

    .page-width, .content-single {
        max-width: 100%;
        width: 100%;
    }

    .footer-column {
        width: 100%;
    }

    img {
        max-width: 100%;
    }

    .full, .full-block {
        display: none;
    }

    .mobile {
        display: inline-block;
    }

    .mobile-block {
        display: block;
    }

    #MobileButtonMenu, #MobileButtonMenuHome {
        display: block;
        position: absolute;
        right: 25px;
        top: 30px;
        color: #132A44;
        font-size: 22pt;
        cursor: pointer;
    }

    #Header {
        display: none;
        height: auto;
        background: none;
        overflow: hidden;
    }

    .header-menu {
        display: none;
    }

    .header-logo {
        background: none;
        margin: 0 auto;
        display: block;
        width: 100%;
        height: auto;
    }

    .main-logo {
        height: 35px;
    }

    #LogoMobile {
        display: block;
    }

    #Language {
        top: 35px;
        right: 5px;
    }

    #Social {
        width: 15px;
        padding-left: 15px;
    }

    .content-left-menu {
        display: none;
    }

    .content-right {
        margin-left: 0px;
        padding: 0px;
        width: 100%;
    }

    .content-title {
        padding-left: 15px;
        padding-right: 15px;
    }

    .basket-add-button {
        padding-top: 10px;
        line-height: inherit;
        width: 100%;
        height: auto;
        display: inline-block;
        box-sizing: border-box;
    }

    .content-background {
        padding-top: 0px;
    }
}

.row {
    margin-left: auto;
    margin-right: auto;
}

    .row:after {
        content: "";
        display: table;
        clear: both;
    }

    .row .col {
        float: left;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        min-height: 1px;
    }

        .row .col[class*="push-"], .row .col[class*="pull-"] {
            position: relative;
        }

        .row .col.s1 {
            width: 8.3333333333%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.s2 {
            width: 16.6666666667%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.s3 {
            width: 25%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.s4 {
            width: 33.3333333333%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.s5 {
            width: 41.6666666667%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.s6 {
            width: 50%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.s7 {
            width: 58.3333333333%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.s8 {
            width: 66.6666666667%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.s9 {
            width: 75%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.s10 {
            width: 83.3333333333%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.s11 {
            width: 91.6666666667%;
            margin-left: auto;
            left: auto;
            right: auto;
        }

        .row .col.s12 {
            width: 100%;
            margin-left: auto;
            left: auto;
            right: auto;
        }


/*----- Calculator -----*/
.content-background {
    background-image: none;
    background-size: cover;
}

@media only screen and (max-width: 420px) {
    .content-background {
        background: none;
    }
}

.section-title {
    background-color: #35A8E0;
    font-weight: bold;
    color: white;
    padding: 20px;
    text-align: center;
}

.section-title-first {
    margin-top: 0px;
}

.section-content {
    background: white;
}

.section-content-display {
    display: block;
}

.section-content-no-padding {
    padding: 0px;
    margin: 0px;
}

.padding-counter {
    padding: 30px;
}

.project-background {
    background-color: #F9F9F9;
    border-right: 1px solid white;
}

.project-belgian-background {
    background-color: white;
    border-right: 1px solid white;
}

.kg, a.kg, .eur, a.eur {
    color: #132A44;
    font-weight: 700;
    font-size: 14px;
}

.project-blue {
    color: #2A9696;
    font-weight: 700;
    font-size: 16px;
}

.rf-choice {
    display: block;
    font-size: 12px;
}

    .rf-choice input {
        float: left;
        margin: 15px;
    }

    .rf-choice label {
        padding-left: 25px;
        display: block;
    }

.rf-mention {
    font-size: 10px;
}

.recommended {
    font-size: 12px;
    padding-left: 40px;
}

.amount-title {
    color: #132A44;
    font-size: 12px;
}

.belgian-project-amount {
    width: 50px;
}

.partner-box {
    /*height: 430px;*/
}

.news, .news-small {
    float: left;
    width: 270px;
    margin: 20px;
    height: 230px;
    background-color: white;
}

.news-small {
    width: 185px;
    height: 185px;
}

.news-image {
    width: 270px;
    height: 108px;
}

.news-image-small {
    width: 185px;
    height: 80px;
}


.news-title {
    font-weight: 700;
    font-size: 18px;
}

.news-date {
    font-size: 10px;
}

.homepage-background {
    background: url(/images/MainBG4000.jpg);
    background-size: auto 100%;
    background-position: right;
    height: 850px;
}

@media all and (max-width: 2600px) {
    .homepage-background {
        background: url(/images/mainbg.jpg);
        background-size: auto 100%;
        background-position: right;
    }
}

@media all and (max-width: 980px) {
    .homepage-background {
        height: auto;
        background: url(/images/mainbgmobile.jpg);
    }

    .fluid-table tr {
        display: block;
    }

    .fluid-table td {
        display: inline-block;
        width: inherit;
    }

    .fluid-table-padding td {
        padding: 10px;
    }


    .news, .news-small {
        width: 90%;
        text-align: center;
    }
}

.project-row-image {
    padding-bottom: 10px;
}

.fb-like {
    width: 240px !important;
}

.greentripper-logo, .partner-logo {
    height: 60px;
    vertical-align: middle;
}

@media all and (max-width: 980px) {
    .partner-logo {
        width: 100%;
    }

    .greentripper-logo {
        height: 45px;
    }
}

.text-editable:hover {
    background-color: antiquewhite;
}

.text-decoration-none {
    text-decoration: none;
}

/*--- B2B ---*/

.b2b-full-container {
    background-color: #ECECEC;
    height: calc(100% - 245px);
}

.b2b-header {
    background-color: #002F59;
    padding: 40px;
}

.b2b-header-title {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.b2b-container {
    min-height: 900px;
    height: calc(100% - 404px) !important;
    background-color: #ECECEC;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0px;
    display: block;
    overflow: auto;
    box-sizing: border-box;
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 25px !important;
}

    .b2b-container td, .b2b-container div {
        line-height: 25px !important;
    }


.b2b-footer {
    height: 165px;
}

.b2b-login-header {
    background-color: white;
    text-align: center;
    padding: 5px;
}

.b2b-login-container {
    width: 380px;
    margin: auto;
}

.b2b-login-content {
    padding: 20px;
    color: black;
}

.b2b-login-container {
    color: white;
}

    .b2b-login-container a {
        text-decoration: none;
    }


.b2b-disclaimer {
    color: #35A8E0;
    padding-top: 20px;
    padding-right: 20px;
    position: relative;
    line-height: 50px;
    height: 40px;
    background-color: #f2f6ea;
}

.b2b-input-box {
    background-color: white !important;
    border: 1px solid #CDCDCD;
    color: #919191;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    font-size: 14px;
}

.b2b-main-menu-logo {
    color: #002F59;
}

.b2b-main-menu-title {
    font-size: 20px;
    font-weight: bold;
}

.b2b-main-menu-description {
    font-size: 20px;
    padding-bottom: 40px;
}

.b2b-sub-header {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 3px;
    border-bottom: 1px solid #F0F0F0;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.12);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.12);
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.12);
}

.b2b-content-left-menu {
    position: relative;
    float: left;
    width: 280px;
}

.b2b-content-right {
    margin-left: 280px;
}

.b2b-page-box-title {
    width: 240px;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(224,224,224,1);
    -moz-box-shadow: 3px 3px 5px 0px rgba(224,224,224,1);
    box-shadow: 3px 3px 5px 0px rgba(224,224,224,1);
    background-color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
}

.b2b-page-box-title-logo {
    color: #002F59;
    display: inline-block;
    vertical-align: middle;
    font-size: 25px;
    width: 35px;
}

.b2b-page-box-title-text {
    font-size: 15px;
    display: inline-block;
}
