﻿/*bootstrap 3 resets for SharePoint*/


/*border-box causes many issues with SP*/

*,
*:before,
*:after {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}


/*reset elements that B3 is expecting to be border-box*/

* [class^="col-"],
* [class^="col-"]:before,
* [class^="col-"]:after,
.container,
.container:before,
.container:after,
.row,
.row:before,
.row:after,
.nav *,
.navbar-toggle,
.table,
.table-responsive,
.form-control,
.btn-block,
.caret,
.dropdown-menu,
.navbar-toggle,
.page-navigation *,
.icon-bar,
.breadcrumb,
.progress-bar,
.modal-dialog,
legend,
fieldset,
code,
pre {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: none;
    width: auto;
}

* [class^="col-"] img {
    max-width: 100%;
    /*for images inside span grid*/
}

#scriptWPQ2 img,
img.ms-webpart-menuArrowImg,
#applist img,
.ms-core-menu-icon>img {
    width: auto;
    /*within a span may still need to have width of image not 100% for SP2013 OOTB features/imges*/
    max-width: none;
}

.ms-siteactions-imgspan {
    float: none;
    margin: 0px;
}

input.ms-cui-cb-input {
    height: 14px;
    padding: 3px 7px 2px;
}

select,
input[type="file"] {
    height: auto;
    line-height: 20px;
}

label {
    display: inline-block;
    margin-bottom: 0px;
    font-weight: normal;
}

.navbar-toggle {
    min-width: 0px;
}

a:focus {
    outline: none;
}

button::-moz-focus-inner {
    border: 0;
}


/*end bootstrap resets*/


/*SharePoint overrides some B3 classes, reset back*/

.container {
    background-color: transparent;
    border: 1px transparent none;
    color: inherit;
    margin: 0px auto;
    /* width: auto; */
}


/*end SP resets*/


/*template styles*/


/*Main SP containers*/


/*end Main SP containers*/

#s4-bodyContainer {
    width: auto !important;
}


/* ribbon*/

#suiteBar {
    display: block;
    height: 60px;
}

#suiteBarLeft,
#suiteBarRight {
    display: inline-block;
    width: 100%;
}

#suiteBarRight .ms-core-deltaSuiteBarRight {
    float: right;
}

#s4-ribbonrow [class*="col-"] {
    float: none;
    margin-left: 0px;
}

#pageStatusBar[class],
.ms-status-msg {
    margin-bottom: 0px;
}

#suiteBarLeft {
    background-color: #0088CC;
}

.ms-cui-dd-text,
input.ms-cui-cb-input,
input[type="text"].ms-cui-cb-input {
    border-color: #D3D6D9;
    border-image: none;
    border-style: solid;
    border-width: 1px 0 1px 1px;
    cursor: default;
    display: block;
    height: 14px;
    padding: 3px 7px 2px;
    white-space: nowrap;
    font-size: inherit;
}


/*header*/

.header {
    /* margin-top: 10px; */
}

.headtitle {
    margin-left: 10px;
}

#pageTitle {
    margin: 0px 0px 5px;
    font-size: 2em;
}


/* breadcrumb*/

ul.s4-breadcrumb {
    margin-bottom: 5px;
    padding: 0px;
}

ul.s4-breadcrumb,
ul.s4-breadcrumb ul {
    margin: 0px 0px 5px;
    padding: 0px;
    list-style: none inside none;
    display: inline-block;
}

ul.s4-breadcrumb .s4-breadcrumb-arrowcont {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: transparent url('../img/glyphicons-halflings.png') no-repeat -262px -92px;
}

ul.s4-breadcrumb .s4-breadcrumb-arrowcont img {
    display: none !important;
}

ul.s4-breadcrumb>li:first-child>span.s4-breadcrumb-arrowcont {
    display: none;
}

ul.s4-breadcrumb a.s4-breadcrumbCurrentNode {
    color: #000;
}


/* end breadcrumb*/


/*search box*/

.header .searchbox {
    display: block;
    float: none;
    clear: both;
}


/*end search box*/


/*end header*/


/*top nav */

#topnavbar {
    height: auto;
}

#topnavbar.navbar {
    z-index: 50;
}

#topnavbar .navbar-collapse {
    max-height: none;
    clear: both;
}

.navbar-toggle:focus {
    background-color: white;
}


/*on mobile devices top nav bar will be a drop down, so we want to show across*/

.ms-core-listMenu-horizontalBox {
    display: block;
}

#topnavbar .nav ul,
#topnavbar .nav ul>li {
    float: none;
    list-style: none outside none;
    margin: 0;
    padding: 0;
}

#topnavbar .nav ul.static {
    display: block;
    position: relative;
    text-align: left;
}

#topnavbar li.static {
    display: block;
    width: 100%;
    position: relative;
}

#topnavbar li.static>.menu-item {
    display: block;
    height: 47px;
    line-height: 1em;
    padding: 15px 0;
    margin: 0px;
    position: relative;
}

.ms-core-listMenu-horizontalBox li.static>.ms-core-listMenu-item {
    border: none;
}


/*images within nav should not use respponsive properties*/

#topnavbar .nav img {
    max-width: none;
}


/*hide the edit nav button on mobile devices*/

#topnavbar .nav ul.root>li.ms-navedit-editArea {
    display: none;
}


/*hide or provide padding for downdown arrow*/

#topnavbar .ms-core-listMenu-horizontalBox .dynamic-children.additional-background {
    width: 100%;
    display: block;
}


/*dynamic menus should not appear*/

#topnavbar ul.dynamic {
    display: none !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    box-shadow: none;
}

#topnavbar li.shown>ul.dynamic {
    display: block !important;
}

#topnavbar ul.dynamic>li {
    background: transparent none;
    border-right: medium none;
    border-top: 1px solid #d1d1d1;
    display: block;
    float: none;
    height: auto;
}

#topnavbar li.dynamic .menu-item {
    padding: 15px;
}

#topnavbar .ms-core-listMenu-horizontalBox .dynamic-children.additional-background {
    background-image: url("/_layouts/15/images/MartiInternetCMS/menu-down.jpg");
}

#topnavbar .ms-core-listMenu-horizontalBox .dynamic .dynamic-children.additional-background {
    background-image: url("/_layouts/15/images/MartiInternetCMS/menu-down.jpg");
}


/*end top nav */


/*left nav */

#sideNavBox.col-md-3 {
    float: none;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0px;
    margin-right: 0px;
    width: auto;
}


/*end left nav */


/* main content areas */

div.table {
    margin: 0px;
    /*added by design manager admin page, ruins rd layout*/
}

.col-md-9 .ms-table {
    display: inherit;
}

.col-md-9 .tableCol-75 {
    display: inherit;
}

#ms-core-tableNoSpace {
    display: block;
}


/*site settings*/


/*Settings page - Add app page*/

#idStorefrontManagementLeftNavBar.ms-core-sideNavBox-removeLeftMargin {
    margin-left: 0;
}

a.ms-storefront-selectanchor,
a.ms-storefront-selectanchor:link,
a.ms-storefront-selectanchor:visited {
    clear: both;
    width: auto;
}


/*end site settings*/


/*web part zones*/

* [class^="col-"] .ms-webpart-zone,
* [class^="col-"] .ms-webpart-cell-vertical,
* [class^="col-"] .ms-webpart-chrome-vertical {
    display: block;
    /*forces zone to stay within confines of responsive zone*/
}

* [class^="col-"] .ms-WPBody>table,
* [class^="col-"] .ms-WPBody>table>tbody,
* [class^="col-"] .ms-WPBody>table>tbody>tr,
* [class^="col-"] .ms-WPBody>table>tbody>tr>td {
    display: block;
    width: 100%;
}

* [class^="col-"] .ms-WPBody>table img {
    width: 100%;
    /*reset back to bootstrap for web part images*/
}

.ms-SPZone.ms-webpart-zone {
    padding: 5px;
}

.ms-SPZone>.s4-wpcell,
.ms-SPZone>.s4-wpcell-plain,
.ms-rtestate-write>.ms-rte-wpbox>div>.s4-wpcell,
.ms-rtestate-write>.ms-rte-wpbox>div>.s4-wpcell-plain {
    padding: 5px 5px 10px;
}


/*web part properties*/


/*edit mode table fixes*/

#MSOTlPn_WebPartPageDiv>tbody>tr>td:first-child {
    padding-right: 10px;
    /*without the padding the left column overflows over the webpart properties toolpane*/
}


/*end edit mode table fixes*/

.ms-ToolPaneBody select,
.ms-ToolPaneBody textarea,
.ms-ToolPaneBody input[type="text"],
.ms-ToolPaneBody input[type="password"],
.ms-ToolPaneBody input[type="datetime"],
.ms-ToolPaneBody input[type="datetime-local"],
.ms-ToolPaneBody input[type="date"],
.ms-ToolPaneBody input[type="month"],
.ms-ToolPaneBody input[type="time"],
.ms-ToolPaneBody input[type="week"],
.ms-ToolPaneBody input[type="number"],
.ms-ToolPaneBody input[type="email"],
.ms-ToolPaneBody input[type="url"],
.ms-ToolPaneBody input[type="search"],
.ms-ToolPaneBody input[type="tel"],
.ms-ToolPaneBody input[type="color"],
.ms-ToolPaneBody .uneditable-input {
    margin-bottom: 0px;
    width: auto;
    height: auto;
    line-height: 20px;
}

.ms-ToolPaneBody label {
    display: inline-block;
    margin-bottom: 0px;
}


/*end web part properties*/


/*Gallery Grid in Banner/Homepage2*/

ul.three-up {
    display: block;
    overflow: hidden;
    margin: 0 -8px;
    padding: 0;
}

ul.three-up>li {
    display: block;
    float: left;
    height: auto;
    margin: 0 8px 8px;
    width: 27%;
    list-style: none;
}

ul.three-up>li:nth-child(3n+1) {
    clear: none;
}


/*end web part zones*/


/* end main content areas */


/*Fullscreen*/

.ms-fullscreenmode #mainbody,
.b3-fullscreenmode #mainbody {
    margin-left: 0px;
    width: 100%;
}

.ms-fullscreenmode #sideNavBox,
.b3-fullscreenmode #sideNavBox {
    display: none;
}


/*end template styles */


/*responsive*/

@media (min-width: 768px) {
    /*fix ribbon back to normal*/
    #suiteBar {
        display: table-row;
        height: 30px;
    }
    #suiteBarLeft,
    #suiteBarRight {
        display: table-cell;
        width: 100%;
    }
    #suiteBarRight {
        width: auto;
    }
    #suiteBarRight .ms-core-deltaSuiteBarRight {
        float: none;
    }
    /*end ribbon*/
    /*search box*/
    .header .searchbox {
        display: block;
        float: right;
        clear: none;
    }
    /*end search box*/
    /*top nav*/
    /*because of the nested nature of OOTB top nav, we must treat the first element differently*/
    #topnavbar {
        height: auto;
    }
    #topnavbar .nav-collapse {
        margin-top: 0px;
    }
    /*reset back to inline for normal view*/
    #topnavbar .ms-core-listMenu-horizontalBox {
        display: block;
    }
    #topnavbar .nav ul.static {
        display: inline-block;
    }
    #topnavbar .nav li.static {
        display: inline-block;
        width: auto;
    }
    #topnavbar .nav li.static>.menu-item {
        display: inline-block;
        height: 49px;
        padding: 15px 10px 15px 0px;
    }
    /*hide or provide padding for downdown arrow*/
    #topnavbar .ms-core-listMenu-horizontalBox .dynamic-children.additional-background {
        padding-right: 20px;
        width: auto;
        display: inline;
    }
    /*show the edit nav link again for larger devices*/
    #topnavbar .nav ul.root>li.ms-navedit-editArea {
        display: inline-block;
    }
    #topnavbar .nav .ms-navedit-editLinksText {
        height: 47px;
        line-height: 1em;
        padding: 15px 0 15px 10px;
        display: block;
    }
    /*we need to override where SP is placing dynamic nav items*/
    #topnavbar .nav ul.static>li.dynamic-children>ul.dynamic {
        position: absolute !important;
        top: 49px !important;
        left: 0 !important;
    }
    #topnavbar ul.dynamic>li {
        min-width: 150px;
        position: relative;
        white-space: nowrap;
    }
    #topnavbar ul.dynamic>li:first-child {
        border-top: 0px transparent none;
    }
    #topnavbar .nav li.dynamic-children.hover>ul.dynamic {
        display: block !important;
    }
    #topnavbar li.dynamic>.menu-item {
        height: 34px;
        line-height: 1em;
        margin: 0;
        padding: 9px 15px;
    }
    #topnavbar .ms-core-listMenu-horizontalBox .dynamic-children.additional-background {
        background-image: url("/_layouts/15/images/MartiInternetCMS/menu-down.jpg");
    }
    #topnavbar .ms-core-listMenu-horizontalBox .dynamic .dynamic-children.additional-background {
        background-image: url("/_layouts/15/images/menu-right.gif");
    }
    /*3rd level +*/
    #topnavbar .nav ul.dynamic>li.dynamic-children>ul {
        position: absolute !important;
        top: 0px !important;
        left: 100% !important;
    }
    /*end top nav*/
    /*left nav */
    #sideNavBox {
        float: none;
        margin: 0px;
        width: auto;
    }
    #sideNavBox.col-md-3 {
        float: left;
        width: 25%;
    }
    /*end left nav */
}


/* Modification by Patric, July 27, start */

@media (min-width:1200px) {
    .container {
        width: 1312px
    }
}


/* Modification by Patric, July 27, end */


/*end responsive*/

@media (min-width: 768px) and (max-width: 1300px) {
    .navbar-toggle {
        display: block;
    }
}

@media (min-width: 1300px) {
    .navbar-toggle {
        display: none;
    }
}