/* # Color Codes 
    - Red: #cc0001
    - Red Gradient: #cc0001 - #d83c3d
    - Pale Grey: #f2f2f2
    - Medium Grey: #999999
    - Dark Grey: #4d4d4d
*/

/* # Table of Contents
- Defaults
	- Typographical Elements
	- Headings
	- Forms
- Structure and Layout
	- Site Containers
	- Vertical Margins
- Common Classes
	- Titles
    - Alignment
    - Other
- Modules
	- CTA
- Plugins
	- MegaNavBar
    - Date Picker
- Site Header
	- Logo
- Site Navigation
	- Top Menu
    - Social Menu
	- Main Menu
	- Footer Menu
- Content Area
	- Main Content
	- Entry Meta
	- Pagination
- Sidebars
- Site Footer
- Pages
    - Homepage
    - Troubleshooting Page
    - Service Page
- Media Queries
*/

body {
    font-family: Arial, Gotham, "Helvetica Neue", Helvetica, sans-serif;
    color: #4d4d4d;
    font-weight: 300;
    font-size: 13px;
}
/* # Defaults
---------------------------------------------------------------------------------------------------- */

/* ## Typographical Elements
--------------------------------------------- */
a:hover {
    color: #cc0001;
    background: none;
    text-decoration: underline;
}

a,
.nav > li > a:hover,
.navbar-default .navbar-nav > li > a:hover,
.breadcrumb a:hover {
    color: #cc0001;
    background: none;
    text-decoration: none;
}

a:focus,
.nav > li > a,
.nav > li > a:focus,
.navbar-default .navbar-nav > li > a:focus {
    color: #4d4d4d;
    background: none;
    text-decoration: none;
}

.content-wrapper li {
    list-style-position: inside;
    padding: 5px 15px;
}

.content-wrapper ul li {
    text-indent: -13px;
}

.content-wrapper ol li {
    text-indent: -15px;
}

/* ## Headings
--------------------------------------------- */
h1 {
    font-size: 32px;
}
/* --- */

.table {
    margin-bottom: 0;
}

tfoot {
    font-weight: bold;
    text-transform: uppercase;
}

.logo {
    margin: auto;
    width: 275px;
    height: auto;
    padding: 20px 0;
}

#home-options h2,
#home-options h3 {
    margin-top: 0;
    padding-top: 20px;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper .col-md-7 h2,
.content-wrapper .col-md-5 h2 {
    margin-top: 20px;
}

.home-options-shadow {
    height: 100px;
    background: url(../img/home-options-shadow.jpg) no-repeat center top / contain;
}

.crochet {
    background: url(../img/crochet.png) no-repeat;
    min-height: 96px;
    padding-left: 130px;
}

.crochet p {
    margin: 0;
}

ol,
ul {
    padding: 0;
}
h1 {
    line-height: normal;
}
.accent-font,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
.font-lg,
.styled-select,
.styled-select-accent,
.btn {
    font-family: 'Oswald', sans-serif;
}

h2 {
    font-size: 22px;
}

h3 {
    font-size: 16px;
}

.page-section h2,
.crochet h2,
.troubleshooting-page .header-arrow h2 {
    font-size: 30px;
}

.cta h3,
#findus h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.header-arrow {
    background: #f2f2f2 url(../img/top-shadow.png) no-repeat center bottom;
    position: relative;
}

.header-arrow h1,
.header-arrow h2 {
    background: #f2f2f2 url(../img/arrow-dwn.png) no-repeat right center;
}

.message {
    text-align: center;
}

/* # Common Classes
---------------------------------------------------------------------------------------------------- */

/* ## Alignment
--------------------------------------------- */

.vertical-center {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* ## Other
--------------------------------------------- */

.accent-color {
    color: #cc0001;
}

.font-light {
    font-weight: 300;
}
/* unused */
.radius {
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
}

.last-element {
    padding-right: 0 !important;
}

.hide-block {
    display: none;
}

.gradient,
.btn-primary:active,
.btn-primary.active,
.styled-select.gradient,
a.btn:hover,
a.btn:focus,
.btn:active,
.btn.active {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d83c3d+0,cc0001+100 */
    background: #cc0001; /* fallback */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d83c3d), color-stop(100%, #cc0001)); /* Saf4+, Chrome */
    background: -webkit-linear-gradient(top, #d83c3d 0%, #cc0001 100%); /* Chrome 10+, Saf5.1+ */
    background: -moz-linear-gradient(top, #d83c3d 0%, #cc0001 100%);  /* FF3.6+ */
    background: -o-linear-gradient(top, #d83c3d 0%, #cc0001 100%); /* Opera 11.10+ */
    background: linear-gradient(top, #d83c3d 0%, #cc0001 100%);  
    background: linear-gradient(to bottom, #d83c3d 0%,#cc0001 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d83c3d', endColorstr='#cc0001',GradientType=0 ); /* IE6-9 */
}

.shadow {
    -webkit-box-shadow: 3px 1px 12px 2px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 3px 1px 12px 2px rgba(0, 0, 0, 0.20);
    box-shadow: 3px 1px 12px 2px rgba(0, 0, 0, 0.20);
}

.styled-select {
    width: 100%;
    overflow: hidden;
    background: #4d4d4d url(../img/caret.png) no-repeat right center;
    margin-bottom: 10px;
}


/* # Modules
---------------------------------------------------------------------------------------------------- */


/* ## CTA
--------------------------------------------- */

#modules-cta {
    margin-top: 35px;
}

.cta {
    min-height: 201px;
    position: relative;
}

.cta img.pull-right {
    margin-left: 7px;
}

.cta h3 {
    margin: 0 0 20px;
}

.cta-2 h3 {
    font-size: 20px;
    line-height: normal;
}

.phone {
    font-size: 36px;
    margin: 0;
    font-weight: 400;
}

.separator {
    border-bottom: 1px dotted rgb(179, 179, 179);
    width: 25%;
    margin: 40px auto 30px;
}

.cta-2 .separator {
    margin: 23px auto 16px;
}

.mod-content {
    min-height: 220px;
}


/* # Forms
---------------------------------------------------------------------------------------------------- */

.required-txt {
    margin: 0;
    font-size: 13px;
    text-align: right;
}

.form-horizontal .control-label.text-left {
    text-align: left;
}

.inline-fields-two {
    width: 48%;
}


/* ## Styled Dropdown Boxes (jQuery)
--------------------------------------------- */

.select-wrap {
    width: 100%;
}

select.styled {
    cursor: pointer;
}

/*.select-in-menu select.styled,*/
.dropdown-menu select.styled,
.modal-body select.styled{
    width: 100% !important;
}

select.styled option {
    color: #666;
}

.dropdown-menu select.styled option,
.modal-body select.styled option
/* .select-in-menu select.styled option */ {
    color: #fff;
    background: #4d4d4d;
}

span.customSelect {
    width: 100%;
    font-family: 'Oswald', sans-serif;
    font-size:18px;
    font-weight: 400;
    color:#fff;
    border:none;
    height: 70px;
    line-height: 70px;
    padding: 0 30px;
    /*margin-top: 13px;*/
    cursor: pointer;
}

.customSelectInner {
    background:url(../img/caret_js.png) no-repeat center right;
    width: 100% !important;
}

.select-in-page span.customSelect {
    background: #e7e7e7;
    color: #333;
    text-align: left;
}

.custom-select {
    margin-top: 15px;
    position: relative;
}
.dropdown-menu .custom-select,
.modal-body .custom-select {
    margin-top: 3px;
}

/*.select-in-menu span.customSelect,*/
.dropdown-menu span.customSelect,
.modal-body span.customSelect {
    background: #4d4d4d;
    height: 50px;
    line-height: 50px;
    margin-bottom: 15px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 300;
}

#service-call .modal-body span.customSelect {
    margin-bottom: 30px;
}

.select-in-page span.customSelect .customSelectInner {
    background: url(../img/caret_grey.png) no-repeat right center;
}

/* .select-in-menu span.customSelect .customSelectInner, */
.dropdown-menu span.customSelect .customSelectInner,
.modal-body span.customSelect .customSelectInner{
    background: url(../img/caret_js.png) no-repeat right center;
}

/*span.customSelect.changed {
background-color: #f0dea4;
}*/

/* ## // END Styled Dropdown Boxes
--------------------------------------------- */

.styled-select select,
.styled-select-accent select {
    background: transparent;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #fff;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -o-appearance: none;
    appearance: none;
    height: 50px;
    cursor: pointer;
}

.styled-select-accent select {
    height: 70px;
    font-size: 18px;
    padding: 0 30px;
}

select::-ms-expand {
    display: none;
}

.styled-select select option {
    max-width: 100%;
    background: #4d4d4d;
}

.styled-select-accent select option {
    background: #4d4d4d;
    font-size: 14px;
}

#options .styled-select {
    margin-bottom: 0;
}

#troubleshooting .styled-select select {
    font-size: 24px;
    padding: 6px 12px 6px 30px;
}

.btn {
    font-size: 13px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 13px 25px;
}

.btn,
.btn:hover,
.btn:focus,
.btn.focus,
a.btn,
a.btn:hover,
a.btn:focus,
.btn:active,
.btn.active {
    border: none;
    text-transform: uppercase;
    color: #fff;
}

.btn-modules {
    padding: 13px 16px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.btn-lg,
.styled-select-accent {
   /* width: 320px;*/
    width: 100%;
    margin: 0;
    height: 70px;
    font-size: 18px;
    font-weight: 400;
    margin-top: 13px;
    line-height: 70px;
    padding: 0;
}

.btn-gray {
    background: #646464;
}

.btn.buy.part {
    margin-top: 25px;
}

.buttons {
    margin: 20px 0 60px;
    text-align: right;
}

.styled-select-accent {
    background: #cc0001;
    background: url(../img/caret.png) no-repeat right 15px center, -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d83c3d), color-stop(100%, #cc0001));
    /* Saf4+, Chrome */
    background: url(../img/caret.png) no-repeat right 15px center, -webkit-linear-gradient(top, #d83c3d 0%, #cc0001 100%);
    /* Chrome 10+, Saf5.1+ */
    background: url(../img/caret.png) no-repeat right 15px center, -moz-linear-gradient(top, #d83c3d 0%, #cc0001 100%);
    /* FF3.6+ */
    background: url(../img/caret.png) no-repeat right 15px center, -o-linear-gradient(top, #d83c3d 0%, #cc0001 100%);
    /* Opera 11.10+ */
    background: url(../img/caret.png) no-repeat right 15px center, linear-gradient(top, #d83c3d 0%, #cc0001 100%);
    /* W3C */
}

option:focus {
    background-color: #000;
}

option {
    text-transform: none;
}


/* ## Date Picker
--------------------------------------------- */

.datepicker table tr td.active:active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active,
.open > .dropdown-toggle.datepicker table tr td.active,
.open > .dropdown-toggle.datepicker table tr td.active.highlighted,
.datepicker table tr td.active:active:hover,
.datepicker table tr td.active.highlighted:active:hover,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.highlighted.active:hover,
.open > .dropdown-toggle.datepicker table tr td.active:hover,
.open > .dropdown-toggle.datepicker table tr td.active.highlighted:hover,
.datepicker table tr td.active:active:focus,
.datepicker table tr td.active.highlighted:active:focus,
.datepicker table tr td.active.active:focus,
.datepicker table tr td.active.highlighted.active:focus,
.open > .dropdown-toggle.datepicker table tr td.active:focus,
.open > .dropdown-toggle.datepicker table tr td.active.highlighted:focus,
.datepicker table tr td.active:active.focus,
.datepicker table tr td.active.highlighted:active.focus,
.datepicker table tr td.active.active.focus,
.datepicker table tr td.active.highlighted.active.focus,
.open > .dropdown-toggle.datepicker table tr td.active.focus,
.open > .dropdown-toggle.datepicker table tr td.active.highlighted.focus,

.datepicker table tr td.day:hover, .datepicker table tr td.focused {
    background: #cc0001;
    color: #fff;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
    background: #f2f2f2;
    color: #aaa;
}
.datepicker table tr td,
.datepicker table tr td.active.active,
.datepicker table tr td.active.active:hover {
    border: 1px solid #eee;
}
.datepicker-inline {
    width: 550px;
    width: 100%;
}

.datepicker table tr td,
.datepicker table tr th {
    width: 85px;
    font-size: 16px;
    border-radius: 0;
}
.datepicker .datepicker-switch, .datepicker .prev, .datepicker .next, .datepicker tfoot tr th {
    text-transform: capitalize;
}
.datepicker .dow {
    text-transform: uppercase;
    font-size: 14px;
}

.datepicker table,
.datepicker-inline {
    margin: 20px auto;
}

/* # Navigation
---------------------------------------------------------------------------------------------------- */

header .navbar .container-fluid {
    padding: 0;
}

.navbar {
    min-height: 40px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin-bottom: 0;
}

.navbar-default,
.breadcrumb {
    background: #f2f2f2;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin-bottom: 0;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #fff;
    background: #b3b3b3;
}

.navbar-collapse {
    padding: 0;
}

@media(max-width: 767px) {
    
    .navbar-collapse {
        padding: 20px 0;
    }
    
    li.dropdown-full.open {
        padding: 20px 0;
        background: #b3b3b3;
    }
    
    .navbar .navbar-nav .dropdown-menu li {
        margin: 0;
    }
    
    .menu-availability .btn {
        margin-top: 8px;
    }
    
}

/* ## Main Navigation
--------------------------------------------- */

#main-nav .navbar-nav > li > a {
    padding: 11px 26px;
    font-size: 15px;
    font-weight: 400;
    height: 40px;
}

#main-menu > li > a {
    text-transform: uppercase;
}

#main-menu .form-group,
#options .form-group,
.modal .form-group {
    margin-bottom: 0;
}

#main-menu .form-group:last-child {
    margin-bottom: 0;
}

.navbar .navbar-nav > li.about.dropdown-full > .dropdown-menu {
    padding: 3px 15px 0 10px;
}

.navbar .dropdown-menu li > a {
    background: none;
    color: #fff;
}

.menu-availability .btn,
.menu-availability .checkbox {
    margin-top: 15px;
}

@media(max-width: 767px) {

    .menu-availability .btn {
        margin-top: 8px;
    }

}

.menu-availability label {
    margin: 0;
}

.menu-availability .row {
    margin-bottom: 10px;
}

.menu-availability input[type="text"] {
    font-family: Arial, Gotham, "Helvetica Neue", Helvetica, sans-serif;
}


/* ## Top and Footer Navigation
--------------------------------------------- */

#social-menu.navbar-nav > li,
#top-menu.navbar-nav > li {
    float: left;
}

#social-menu-footer > li {
    display: inline-block;
    text-align: center;
}

#social-menu-footer > li > a {
    padding: 10px 0;
}

@media(min-width: 768px) {
    
    /* In the header */
    .product-select {
        padding-top: 15px;
    }
    
    .navbar-right {
        margin-right: 0;
    }

}

.left-nav-panel-inner {
    border-right: 2px solid #4d4d4d;
}

.left-nav-panel img,
.find-us img {
    max-width: 100%;
    height: auto;
}

.items {
    font-size: 11px;
    position: relative;
    top: -1px;
}

.navbar .navbar-nav > li.dropdown-full>.dropdown-menu {
    padding: 40px 15px;
}

.navbar:not(.no-border) .navbar-nav > li.dropdown-grid > .dropdown-grid-wrapper > .dropdown-menu,
.navbar:not(.no-border) .navbar-nav > li[class*=dropdown] > .dropdown-menu {
    margin-top: 0;
    border: 0;
}

#cart.navbar-nav > li > a,
#social-menu.navbar-nav > li > a {
    padding: 0;
}
#top-menu.navbar-nav {
    position: relative;
    padding: 25px 0 20px;
}

/* Menu Find us */

.gmap {
    position: relative;
    min-height: 200px;
    height: 0;
    overflow: hidden;
}
.gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 200px !important;
}


.menu-highlight {
    margin-right: 5px;
    background: #cc0001;
}
a.menu-highlight:hover {
    background: #cc0001;
}
a.menu-highlight {
    /* margin: 10px auto 45px auto; */
    margin: 10px auto 30px auto;
    padding: 10px 20px;
    display: block;
    width: 175px;
    
}
.nav > li.menu-highlight > a,
a.menu-highlight {
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    font-family: "Oswald";
    font-size: 10px !important;
}
a.menu-highlight {
    font-size: 14px !important;
}

#top-menu.navbar-nav > li.lang > a,
#top-menu.navbar-nav > li.login > a {
    padding-top: 7px;
}
#social-menu.navbar-nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 26px;
}

#social-menu.navbar-nav > li {
    height: 24px;
}

#footer-menu li+li {
    border-left: 1px solid #7c7c7c;
}

#top-menu.navbar-nav > li > a,
#footer-menu.navbar-nav > li > a {
    font-size: 11px;
    padding: 0 8px;
    line-height: normal;
}
#top-menu.navbar-nav > li > a {
    padding: 5px 7px;
}
#social-menu.navbar-nav > li > a {
    padding: 0 0 0 4px;
}

#top-menu.navbar-nav > li > a:hover,
#social-menu.navbar-nav > li > a:hover,
#footer-menu.navbar-nav > li > a:hover {
    background: none;
}


/* ## Carousel
--------------------------------------------- */

.carousel .left,
.carousel .right {
    background: none;
}

.carousel-caption {
    text-shadow: none;
}

#carousel .carousel-control {
    /* width: 35%; */
    width: 7%;
}

#carousel.carousel .item {
    height: 550px;
    background-position: center;
}


/* ## Footer
--------------------------------------------- */

#copyright {
    background: #fff;
}

.copyright {
    font-size: 11px;
}

#footer-menu.navbar-nav {
    display: inline-block;
    float: none;
}

#footer-menu.navbar-nav .navbar-collapse {
    text-align: center;
}

footer {
    margin-top: 40px;
    background: #f2f2f2;
}

#footer-1 {
    background: transparent url(../img/gradient-top-footer.png) no-repeat center top;
}

#footer-1-inner {
    background: transparent url(../img/gradient-bottom-footer.png) no-repeat center bottom;
    padding: 70px 0;
}

#footer-1 .nav a {
    font-size: 14px;
    font-weight: 400;
    padding: 3px 15px;
}

.footer-contact p {
    margin: 7px 0 0 32px;
}

.breadcrumb {
    padding: 8px 26px;
    background: none;
}

.breadcrumb,
.breadcrumb a {
    color: #777;
    font-size: 12px;
}

.breadcrumb a {
    color: #333;
}

.navbar:not(.no-border) .navbar-nav > li.dropdown-full > .dropdown-menu {
    margin: 0;
    background: #b3b3b3
}

.header-arrow {
    /* padding: 7px 30px 20px; */
    padding: 20px 30px;
    border-radius: 7px 7px 0px 0px;
    -moz-border-radius: 7px 7px 0px 0px;
    -webkit-border-radius: 7px 7px 0px 0px;
}

.header-arrow h1,
.header-arrow h2 {
    margin: 0;
}

#component {
    position: relative;
}
.content-wrapper,
.main_content {
    padding: 50px 30px;
}

.page-wrapper,
#main-content,
.main-content {
    position: relative;
    background: url(../img/content-gradient-full.png) repeat;
    border-radius: 7px 7px 0px 0px;
    -moz-border-radius: 7px 7px 0px 0px;
    -webkit-border-radius: 7px 7px 0px 0px;
}
.page-section {
    padding-bottom: 35px;
    border-bottom: solid #f2f2f2 1px;
    margin-bottom: 35px;
}
.page-section:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}
.page-section h2 {
    margin-bottom: 40px;
}
.bottom-shadow {
    background: #fff url(../img/bottom-shadow.png) no-repeat center bottom;
    /*width: 100%;*/
    height: 15px;
}

#home-bottom-content {
    margin-bottom: 30px;
}

#home-bottom-content p {
    font-size: 12px;
}

.btn-form {
    width: 34%;
}

#service fieldset {
    margin: 40px 0;
}

#service fieldset:first-child {
    margin-top: 0;
}

input::-webkit-inner-spin-button {
    opacity: 1;
}

@media (min-width: 992px) {
    .valign {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .cta:first-child .valign {
        left: 244px;
    }
    .halign {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .vhalign {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
    }
    .hpadding-49 {
        padding: 0 49px;
    }
    
   
}

.hpadding-40 {
    padding: 0 40px;
}

.vpadding-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.content-block {
    padding-top: 25px;
    padding-bottom: 25px;
}

.hpadding-25 {
    padding: 0 25px;
}

.no-padding {
    padding: 0;
}
.no-margin {
    margin: 0 !important;
}



/* # Responsive Bottom Margins
---------------------------------------------------------------------------------------------------- */

/* Phones, less than 768px (sm) */
.resp-margin-bottom {
    margin-bottom: 60px !important;
}

/* Desktops, 992px and up (md) */
@media (min-width: 992px) {
    .resp-margin-bottom {
        margin-bottom: 0 !important;
    }
}

/* in modules-cta views */
.vert-offset-top-15 {
    margin-top: 10px;
}

/* in modals and team views */
.margin-bottom-25 {
    margin-bottom: 25px !important;
}

/* in footer view */
.vert-offset-bottom-1 {
    margin-bottom: 1em;
}

/* in breadcrumb template */
.offset-bottom-25 {
    margin-bottom: 25px;
}

/* # Vertical Margins
---------------------------------------------------------------------------------------------------- */

.margin-bottom-xs {
    margin-bottom: 1.5em;
}

.margin-bottom-sm {
    margin-bottom: 2em;
}

.margin-bottom-md {
    margin-bottom: 2.5em;
}

.margin-bottom-lg {
    margin-bottom: 3em;
}


/* # Media Queries
---------------------------------------------------------------------------------------------------- */

@media (max-width: 1200px) {
    #home-options .btn-lg {
        display: block;
        width: 100%;
    }
    /* in home view */
    .pad-select .styled-select-accent {
        width: 100%;
        min-width: 295px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1022px;
    }
    .btn {
        font-size: 14px;
    }
    .btn.btn-modules {
        font-size: 15px;
    }
    .btn.btn-lg,
    .styled-select-accent {
        font-size: 18px;
    }
}

@media (max-width: 1199px) {
    .product-qty {
        padding-top: 7px;
    }
}

@media (min-width: 992px) {

    .logo {
        margin: 0;
        width: 352px;
        height: auto;
    }

    #home-options {
        position: relative;
        margin-top: -88px;
    }

    /*#component {
        min-height: 364px;
    }*/

    .troubleshooting-page #component {
        min-height: inherit;
    }
}

@media (max-width: 991px) {
    
    .page-wrapper {
        max-width: 95%;
        margin:  auto;
    }
    
    #troubleshooting .page-wrapper {
        max-width: 100%;
        /*margin-right: -15px;
        margin-left: -15px;*/
    }
    
    .page-wrapper, #main-content, .main-content {
        margin-top: 40px;
        min-height: inherit;
    }
    
    .bottom.first-element {
        padding: 0;
        position: relative;
    }
    
    .cta {
        min-height: inherit;
        margin-bottom: 75px;
    }
    
    .cta:last-child {
        margin-bottom: 25px;
    }
    
    .cta img.pull-right {
        display: block;
        margin: 0 auto 20px;
        float: none !important;
    }
    
    #copyright .nav > li {
        display: inline-block;
    }
    
    .top-menus {
        text-align: center;
    }
    
    #social-menu.navbar-right,
    #top-menu.navbar-right {
        display: inline-block;
        float: none !important;
    }
    
    #top-menu.navbar-nav,
    #social-menu.navbar-nav {
        margin: 0;
        display: inline-block;
    }
    
    #carousel.carousel .item {
        height: 350px;
    }
    
    #main-nav .navbar-nav > li > a {
        padding: 9px 15px;
        line-height: normal;
    }
    
    #main-nav #social-menu.navbar-nav > li > a {
        padding: 2px 5px;
        line-height: normal;
    }
    
    .gradient-divider {
        border-bottom: 2px solid #fff;
        background: none;
    }
    
    .left-nav-panel-inner {
        display: none;
    }
    
    .row > .no-padding {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    #top-menu.navbar-nav {
        padding-bottom: 25px;
    }
    
    .pad-select {
        padding-left: 145px;
    }
    
    #footer-1 .nav a {
        font-size: 14px;
        font-weight: 400;
        padding: 3px 5px;
    }
}

@media (min-width: 768px) { 
    
    #diagnostics .btn {
        width: auto;
    }

    .navbar:not(.caret-bootstrap) .navbar-nav:not(.caret-bootstrap) li:not(.caret-bootstrap)>a.dropdown-toggle:not(.caret-bootstrap)>span:not(.caret-bootstrap).caret {
        vertical-align: inherit !important;
    }
}

@media (max-width: 767px) {
    
    #carousel.carousel .item {
        height: 225px;
    }
    
    .btn {
        width: 100%;
    }
    
    #service-call.modal .checkbox {
        margin: 0;
    }
    
    #diagnostics .btn {
        width: auto;
    }
    
    #top-menu.navbar-nav {
        padding: 0 0 25px;
    }
    
    .pad-select .styled-select-accent {
        min-width: inherit;
    }
    
    .text-center-sm {
        text-align: center;
    }
    
    /*#footer-1 .nav > li {
        padding: 0 5px;
        border-left: 1px solid #ccc;
        float: none;
        display: inline-block;
    } */
    
    #footer-1 li:first-child {
        padding-left: 0;
        border-left: 0;
    }
    
    #footer-1 .nav a {
        font-size: 13px;
    }
    
    #footer-1 ul {
        margin-bottom: 15px;
        text-align: center;
    }
    
    #footer-1 #footer-menu-2 {
        margin-bottom: 45px;
    }
    
    .navbar .navbar-collapse .navbar-nav > li {
        border: none;
    }
    
    .product-select {
        padding-left: inherit;
    }
    
    #heading.row,
    #options.row,
    #warning {
        margin: 0;
    }
    
    .navbar .navbar-nav > li.dropdown-full > .dropdown-menu {
        padding: 0 15px 15px;
    }
    
    .accordion-heading h3 {
        font-size: 19px;
    }

    #main-nav .navbar-nav > li > a {
        padding: 10px 30px;
    }
    
    .navbar .navbar-nav .open .dropdown-menu>li>a, .navbar-nav .open .dropdown-menu .dropdown-header {
        padding-left: 20px;
    }
}

@media (min-width: 660px) {
    .troubleshooting-page .header-arrow .btn-group {
        position: absolute;
        right: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .troubleshooting-page .header-arrow .btn-group .btn {
        margin-left: 10px;
    }
}

@media (max-width: 659px) {
    #diagnostics .btn {
        width: 100%;
    }

    #diagnostics h2 {
        text-align: center;
    }

    #diagnostics .btn-group {
        width: 100%;
    }
    #diagnostics .btn {
        margin-top: 0;
    }
    /* #diagnostics .btn:last-child {
        margin-top: 20px;
    } */
    
    span.customSelect {
        font-size: 14px;
        overflow: hidden;
    }
    
    .customSelectInner {
        max-height: 70px;
    }
    
    .select-in-page span.customSelect .customSelectInner {
        padding-right: 20px;
    }
    
    .header-arrow h2 {
        margin-bottom: 20px;
    }

}

@media (max-width: 600px) {
    
    h1 {
        font-size: 20px;
        line-height:  normal;
    }
    .instructions h3 {
        font-size: 22px;
        line-height: normal;
    }

    #troubleshooting .styled-select select {
        font-size: 16px;
    }
    
    .pad-select {
        padding-left: 15px;
    }
    
    .page-wrapper,
    .page-wrapper.full-width,
    #main-content,
    #main-content.full-width,
    .main-content,
    .main-content.full-width {
        background: none;
    }
    
    /* [class*="col-"] {
        margin-bottom: 20px;
    } */
    
    .btn {
        margin-top: 20px;
    }
    
    .product-select .btn {
        margin-top: 0;
    }
    
    /* .contact-top .phone {
        margin-top: 30px;
    } */
    
}

/* # Pages
---------------------------------------------------------------------------------------------------- */

/* ## Homepage
--------------------------------------------- */

.homepage #modules-cta {
    margin-top: -7px;
}


.dark-gray-bg {
    background: #808080;
    color: #fff;
}

.pale-gray-bg {
    background: #b3b3b3;
    color: #fff;
}

.gradient-divider {
    background: url(../img/gradient-divider.png) no-repeat right top;
}

#home-options .dark-gray-bg,
#home-options .pale-gray-bg {
    padding: 40px 15px;
}

#home-options .dark-gray-bg {
    border-bottom: 2px #fff solid;
}

/* ## Service Page
--------------------------------------------- */

#form_service .row {
    margin-bottom: 20px;
}


/* ## Find us Page
--------------------------------------------- */
.succursale {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #eee;
    font-size: 12px;
}
.succursale:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.hours {
    float: right;
}

.closed {
    padding-bottom: 50px;
}
@media(min-width: 992px) {
    
    .horaire.col-md-6 {
        padding-left: 0;
    }
    
}


/* ## Team Page
--------------------------------------------- */

#team ul,
#team,
#team ul strong {
    text-align: center;
    list-style: none;
    font-size: 16px;
}

#team strong {
    font-size: 22px;
    font-weight: 300;
}

#team .banner_img {
    background: url(../img/notre_equipe.jpg) no-repeat center top /cover;
    height: 264px;
}
.team-members.col-md-offset-1 {
    margin-left: 12.5%;
}
.team-members > div {
    margin-bottom: 25px;
}
.team-members:last-child > div {
    margin-bottom: 0;
}
.team-members h4 {
    margin-bottom: 5px;
    font-size: 17px;
}
.team-members p {
    font-size: 14px;
    margin: 0;
}

@media(min-width: 992px) {
    li.about ul {
        text-align: right;
    }
    li.about li {
        display: inline-block;
    }
}

/* ## Troubleshooting Page
--------------------------------------------- */

#troubleshooting  .styled-select {
    background: #e7e7e7 url(../img/caret_grey.png) no-repeat right 15px center;
    background-position: right 15px center;
}

#troubleshooting .form-control {
    box-shadow: none;
    height: 70px;
}

#troubleshooting .styled-select select option {
    background: #e7e7e7;
    font-size: 16px;
    font-family: Arial, Gotham, "Helvetica Neue", Helvetica, sans-serif;
}

#troubleshooting .styled-select select {
    color: #333;
    font-weight: 400;
}

.accordion h3 {
    font-weight: 300;
}

.accordion-group {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.accordion-group:last-child {
    border-bottom: none;
}

.accordion-group h3 {
    padding: 10px 0;
    color: #4d4d4d;
    margin: 0;
    font-size: 24px;
}

.accordion-group a {
    color: #4d4d4d;
}

.accordion-group a:hover {
    text-decoration: none;
    color: #cc0001;
}

.accordion-group p {
    padding: 10px 0 10px 30px;
    color: #4d4d4d;
    margin: 0;
}

#warning {
    padding: 30px;
    border: 1px solid #eee;
    margin-bottom: 25px;
}

#warning p {
    margin: 0;
}

.troubleshooting-page h2 {
    color: #cc0001;
}

.troubleshooting-page .fa {
    display: inline-block;
    padding: 0 15px;
    font-size: 19px;
    color: #4d4d4d;
    position: relative;
    top: -6px;
}

.troubleshooting-page .accordion-group .fa {
    padding-left: 0;
    top: -2px;
}

.troubleshooting-page .header-arrow h2 {
    background: none;
    color: #4d4d4d;
}

.instructions {
    text-align: center;
    position: relative;
    margin: 20px 10% 25px;
    font-size: 16px;
}

.instructions h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.instructions p {
    font-size: 18px;
}

.triangle {
    background-size: cover;
    background: url(../img/triangle.svg) no-repeat center bottom;
    width: 100%;
    height: 7rem;
    margin-bottom: 25px;
}


/* ## Modal - Before Technician's Arrival
--------------------------------------------- */

#technician .modal-content {
    padding: 25px;
    font-size: 1.15em;
}

#technician li {
    padding: 2px 15px;
    list-style: inside;
    text-indent: -15px;
}

#technician h1 {
    margin-top: 0;
    font-size: 1.354em;
    line-height: normal;
}



/* ## Sprite Media Icons (not used)
--------------------------------------------- */

/*.icn_youtube {
    background-position: 0px 0px;
}

.icn_linkedin {
    background-position: 0px -26px;
}

.icn_twitter {
    background-position: 0px -52px;
}

.icn_facebook {
    background-position: 0px -78px;
}*/



/* In header */
.contact-top .phone {
    font-size: 20px;
    color: #777;
}

@media(min-width: 768px) and (max-width: 991px) {
    #findus h3 {
        margin-top: 0;
    }
} 

@media print { 
   .hidden-print { 
       display: none !important; 
    }
    .hidden-screen {
        display: block;
    }
    .modal-header,
    .modal-content {
        border: none;
    }
    .modal-body li {
        font-size: 15px;
        padding: 5px 15px;
        list-style: inside;
        text-indent: -15px;
    }
    .modal-header img {
        display:  block;
        margin-top: 50px;
    }
    .modal-header h1 {
        font-size: 24px;
        text-transform: none;
        margin-top: 50px;
        margin-bottom: 0;
    }  
}

.carousel-caption {
    bottom: 125px;
    left: 0;
    text-align: left;
    padding: 20px;
    width: 100%;
    margin-left: 30px;
}

.carousel-caption.caption-top-right {
    top: 125px;
    right: 0;
    left:  auto;
    text-align: right;
    margin-right: 30px;
    margin-left: 0;
}

.carousel-caption.caption-top-left {
    top: 125px;
}

#carousel h4, #carousel h5 {
    font-size: 2.5em;
    color: #000;
    line-height: normal;
    
    background-color: rgb(255, 255, 255);
    /* RGBa with 0.7 opacity */
    background-color: rgba(255, 255, 255, 0.7);
    /* For IE 5.5 - 7*/
    /* filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000); */
    /* For IE 8*/
    /* -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)"; */
    
    
    display: inline-block;
    padding: 2px 10px;
    /* margin: 2px 0 2px 70px; */
    margin: 2px 0;
}

#carousel h5 {
    font-size: 1.5em;
}

@media(max-width: 991px) {

    .carousel-caption {
        bottom: 25px;
        margin-left: 0;
    }
    
    .carousel-caption.caption-top-right,
    .carousel-caption.caption-top-left {
        margin-right: 0;
        top: 50px;
    }

    #carousel h4 {
        font-size: 2em;
        /*margin-left: 25px;*/
    }

    #carousel h5 {
        font-size: 1.25em;
        /*margin-left: 25px;*/
    }


}

@media(max-width: 767px) {
    
    /*.carousel-caption {
        bottom: 0;
    }*/
    
    .carousel-caption.caption-top-right,
    .carousel-caption.caption-top-left {
        top: 25px;
    }
    
    #carousel h4 {
        font-size: 1.5em;
    }
    
    #carousel h5 {
        font-size: 1em;
    }
   
}

@media(max-width: 575px) {

    /*.carousel-caption {
        bottom: 0;
    }*/

    #carousel h4 {
        font-size: 1.05em;
    }

    #carousel h5 {
        font-size: 0.95em;
    }

}

@media(max-width: 400px) {

    #carousel h4 {
        font-size: 0.88em;
    }

    #carousel h5 {
        font-size: 0.80em;
    }

}

select.styled {
    opacity:0;
}

#privacy h2,
#conditions h2 {
    font-size: 18px;
}

#conditions li {
    font-size: 18px;
    font-weight: 700;
    text-indent: 0;
    padding-left: 0;
}

#privacy p,
#conditions li p,
#privacy ul li,
#conditions li li {
    font-size: 14px;
    font-weight: 400;
}

#conditions ol ul,
#privacy ul ul {
    list-style: disc;
}

#sitemap .content-wrapper a {
    color: #777;
}

#sitemap .content-wrapper a:hover {
    color: #cc0001;
}

#sitemap .content-wrapper li {
    list-style: none;
}

#sitemap .content-wrapper ul ul {
    padding-left: 15px;
}

ul.dashed {
    list-style-type: none;
}
ul.dashed > li {
    text-indent: -5px;
}
ul.dashed > li:before {
    content: "- ";
    text-indent: -5px;
}

#rates label {
    font-weight: normal;
    margin-right: 10px;
}

#rates .well {
    padding: 40px;
    margin: 15px 0 30px;
    color: #888;
    font-style: italic;
}

#rates .well li {
    list-style: none;
}