/*
* Fix form items from scruntching up due to float
*/
@media (min-width: 600px) {
    .fsComposerFormEmbed form .labelLeft .elementContainer label, 
    .fsComposerFormEmbed form .labelLeft .elementContainer .groupLabel {
        clear: both;
    }
}

/*
* Expand header navigation width and gap between items
*/
@media (min-width: 1000px){
    .nav-main .fsNavLevel1 {
        max-width: 1400px;
    }
}

/*
* Fix more main-nav sub menues expanding off screen
*/

.nav-main .fsNavLevel1 > li:nth-child(9) .fsNavPageInfo,
.nav-main .fsNavLevel1 > li:nth-child(10) .fsNavPageInfo {
    right: 0;
    left: auto !important;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
}


/*
* Fixing height of main home slider on table
*/

@media (max-width: 1150px) and (min-width: 600px) {
    body:not(.fsComposeMode).home #fsPageContent .hp-news article .fsThumbnail {
        height: 700px;
    }
}

/*
* Fixing background color / height
*/

html {
  background: #660000;
  height: 100%;
}

body {
    background: #ffffff;
}

/*
* Fixing account bar displacing mobile menu
*/
.fsAccountBarVisible .fsMenu {
    top: 127px;
}