/******************************************************************
Site Name:
Author:

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/******************************************************************
IMPORTS & DEPENDENCIES
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
******************************************************************/
/******************************************************************
Site Name: SMT Auto Services
Author: Sharpmonkeys

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables; that way our files don't get all messy.

******************************************************************/
/*********************
COLORS
Need help choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name: SMT Auto Services
Author: Sharpmonkeys

Stylesheet: Mixins Stylesheet

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
You'll need to be using Sass 3.2+ for these to work.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include widget-gradient(#ffffff, #dddddd); */
/* @include half-gradient(#ffffff, #dedede); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: IE Grid Styles

Since the example grid is based on media queries, so rather than
setup some js library that would make IE8 and below understand
media queries, let's just add some styles that serves a fixed grid.

Again, if you want to roll your own, just remove this junk and put
whatever you use in here.

******************************************************************/
/******************************************************************
Site Name: SMT Auto Services
Author: Sharpmonkeys

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection.

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
/*
IMPORTANT NOTE ABOUT SASS 3.3 & UP
You can't use @extend within media queries
anymore, so just be aware that if you drop
them in here, they won't work.
*/
/*********************
HEADER STYLES
*********************/
/* line 29, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_481up.scss */
#social-block {
  margin-right: 10%;
}

/*********************
NAVIGATION STYLES
*********************/
/* .menu is clearfixed inside mixins.scss */
/* line 41, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_481up.scss */
.menu {
  /* end .menu ul */
}
/* line 42, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_481up.scss */
.menu ul {
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 43, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_481up.scss */
.menu ul li {
  /*
  plan your menus and drop-downs wisely.
  */
}
/* line 44, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_481up.scss */
.menu ul li a {
  /*
  you can use hover styles here even though this size
  has the possibility of being a mobile device.
  */
}

/* end .menu */
/*********************
POSTS & CONTENT STYLES
*********************/
/* entry content */
/* line 89, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_481up.scss */
.entry-content {
  /* at this larger size, we can start to align images */
}
/* line 93, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_481up.scss */
.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
/* line 98, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_481up.scss */
.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
/* line 103, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_481up.scss */
.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

/* end .entry-content */
/*********************
FOOTER STYLES
*********************/
/*
check your menus here. do they look good?
do they need tweaking?
*/
/* end .footer-links */
/*********************
HOME WIDGET STYLES
*********************/
/* line 131, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_481up.scss */
.widget.service-widget {
  width: 47%;
}

/* line 135, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_481up.scss */
.servicing-title, .mot-title {
  display: inline-block;
}

/*********************
BOOKING FORM STYLES
*********************/
/* line 144, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_481up.scss */
.wpcf7-form p {
  float: left;
  width: 50%;
}

/******************************************************************
Site Name: SMT Auto Services
Author: Sharpmonkeys

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/*********************
LAYOUT & GRID STYLES
*********************/
/*********************
HEADER STYLES
*********************/
/* line 36, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
#contact-block {
  font-size: 0.9375em;
}

/* line 40, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
#contact-block .contact-info {
  display: inline-block;
  line-height: 36px;
}

/* line 44, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
#contact-block .tel-info {
  background: url("../images/tel-icon@2x.png") no-repeat;
  padding: 0 0 0 50px;
  background-size: 44px 36px;
}

/* line 50, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
#contact-block .email-info {
  background: url("../images/email-icon@2x.png") no-repeat;
  padding: 0 0 0 42px;
  background-size: 36px 36px;
}

/*********************
NAVIGATION STYLES
*********************/
/* line 60, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.nav {
  border: 0;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 62, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.nav ul {
  background: #323944;
  margin-top: 0;
}
/* line 66, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.nav li {
  float: none;
  position: relative;
  /*
  plan your menus and drop-downs wisely.
  */
  /* showing sub-menus */
}
/* line 70, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.nav li a {
  border-bottom: 0;
  /*
  you can use hover styles here even though this size
  has the possibility of being a mobile device.
  */
}
/* line 77, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.nav li a:hover, .nav li a:focus {
  color: white;
  /* text-decoration: underline; */
  background-color: #ca4814;
}
/* line 91, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.nav li ul.sub-menu,
.nav li ul.children {
  margin-top: 0;
  border: 1px solid #ccc;
  border-top: 0;
  position: absolute;
  visibility: hidden;
  z-index: 8999;
  /* highlight sub-menu current page */
}
/* line 99, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.nav li ul.sub-menu li,
.nav li ul.children li {
  /*
  if you need to go deeper, go nuts
  just remember deeper menus suck
  for usability. k, bai.
  */
}
/* line 101, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 10px;
  border-right: 0;
  display: block;
  width: 180px;
  border-bottom: 1px solid #ccc;
}
/* line 118, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.nav li ul.sub-menu li:last-child a,
.nav li ul.children li:last-child a {
  border-bottom: 0;
}
/* line 128, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.nav li ul.sub-menu li ul,
.nav li ul.children li ul {
  top: 0;
  left: 100%;
}
/* line 143, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.nav li:hover > ul {
  top: auto;
  visibility: visible;
}

/* end .nav */
/*********************
SIDEBARS & ASIDES
*********************/
/* line 163, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.sidebar {
  margin-top: 2.2em;
}

/* line 167, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.widgettitle {
  border-bottom: 2px solid #444;
  margin-bottom: 0.75em;
}

/* line 171, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.servicing-title, .mot-title {
  border: none;
}

/* line 175, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.widget {
  padding: 10px;
  margin: 0.5em 0;
}
/* line 180, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.widget ul li {
  margin-bottom: 0.25em;
  /* deep nesting */
}
/* line 188, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.widget ul li ul {
  margin-top: 0.75em;
  padding-left: 1em;
}

/* links widget */
/* meta widget */
/* pages widget */
/* recent-posts widget */
/* archives widget */
/* tag-cloud widget */
/* calendar widget */
/* category widget */
/* recent-comments widget */
/* search widget */
/* text widget */
/*********************
FOOTER STYLES
*********************/
/*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
/* line 296, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.footer-links ul li {
  /*
  be careful with the depth of your menus.
  it's very rare to have multi-depth menus in
  the footer.
  */
}

/* end .footer-links */
/* line 311, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.copyright,
.company-address {
  display: inline-block;
}

/* line 314, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.copyright {
  float: left;
}

/* line 317, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.company-address {
  float: right;
  max-width: 45%;
  text-align: right;
}

/*********************
HOME WIDGET STYLES
*********************/
/* line 328, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.two-col-widgets .widget {
  width: 47.5%;
  display: inline-block;
}

/* line 333, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_768up.scss */
.widget.service-widget {
  width: 22.5%;
}

/******************************************************************
Site Name: SMT Auto Services
Author: Sharpmonkeys

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
/*********************
LAYOUT & GRID STYLES
*********************/
/* line 16, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_1030up.scss */
.wrap {
  max-width: 1120px;
}

/*********************
HEADER STYLES
*********************/
/* line 23, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_1030up.scss */
#inner-header {
  text-align: right;
}

/* line 26, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_1030up.scss */
#logo {
  float: left;
}

/* line 29, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_1030up.scss */
#contact-block {
  font-size: 1em;
  padding: 5% 0;
}

/* line 33, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_1030up.scss */
#social-block {
  padding: 5% 0;
  margin-right: 2%;
}

/*********************
FOOTER STYLES
*********************/
/* line 42, C:/xampp/htdocs/garage.sharpmonkeys.co.uk/wp-content/themes/eddiemachado-bones-c48b08c/library/scss/breakpoints/_1030up.scss */
.company-address {
  max-width: none;
}

/*
you can call the larger styles if you want, but there's really no need
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/
