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

Stylesheet: Testimonials Carousel Block Styles

Here are a few defaults for forms and stuffs.

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

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.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ 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:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

See here on placeholder selectors and why you should
use @extend instead of @include:
http://thesassway.com/intermediate/understanding-placeholder-selectors

Also, don't use cursor: pointer; for buttons as they already should 
signify that they are clickable:

https://medium.com/simple-human/buttons-shouldnt-have-a-hand-cursor-b11e99ca374b

*********************/
/* line 33, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/modules/_buttons.scss */
.button, .white-btn, .teal-btn, .search-submit, .acf-block-preview .white-btn {
  position: relative;
  display: inline-block;
  margin-bottom: .5em;
  padding: 0.75em 1.5em;
  border: 0;
  border-radius: 2px;
  font-size: 1.2em;
  text-decoration: none;
}

/* line 43, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/modules/_buttons.scss */
.button:active, .white-btn:active, .teal-btn:active, .search-submit:active {
  top: 1px;
}

/* line 52, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/modules/_buttons.scss */
.white-btn {
  background: #fff;
  color: #4A4A4A;
}

/* line 56, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/modules/_buttons.scss */
.white-btn:visited {
  color: #000000;
}

/* line 59, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/modules/_buttons.scss */
.white-btn:hover, .white-btn:focus {
  color: #000000;
}

/* line 64, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/modules/_buttons.scss */
.teal-btn, .search-submit {
  background: #60BFD8;
  color: #fff;
}

/* line 68, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/modules/_buttons.scss */
.teal-btn:visited, .search-submit:visited {
  color: #fff;
}

/* line 71, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/modules/_buttons.scss */
.teal-btn:hover, .teal-btn:focus, .search-submit:hover, .search-submit:focus {
  background: #298ea9;
}

/* line 76, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/modules/_buttons.scss */
.search-submit {
  width: 150px;
  margin-bottom: 0px;
}

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

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

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/

******************************************************************/
/* line 81, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.foo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* line 84, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.foo-parent {
  position: relative;
}

/*********************
TINTS/SHADES
https://css-tricks.com/snippets/sass/tint-shade-functions/
*********************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
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 css-gradient(#dfdfdf,#f8f8f8); */
/*********************
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? */
/*--------------------------------------------------
Flexbox SASS mixins
The spec: http://www.w3.org/TR/css3-flexbox
https://gist.github.com/richardtorres314/26b18e12958ba418bb37993fdcbfc1bd

Checkout this Flexbox guide for more info:
https://css-tricks.com/snippets/css/a-guide-to-flexbox/

2018: probably can remove these with autoprefixer(?)
---------------------------------------------------*/
/*@include flexbox(); */
/*
This .scss loop will create "margin helpers" and "padding helpers" for use in your web projects.
It will generate several classes such as:
.m-r-10 which gives margin-right 10 pixels.
.m-r-15 gives MARGIN to the RIGHT 15 pixels.
.m-t-15 gives MARGIN to the TOP 15 pixels and so on.
.p-b-5 gives PADDING to the BOTTOM of 5 pixels
.p-l-40 gives PADDING to the LEFT of 40 pixels
The first letter is "m" or "p" for MARGIN or PADDING
Second letter is "t", "b", "l", or "r" for TOP, BOTTOM, LEFT, or RIGHT
Third letter is the number of spacing in pixels. Adjust the amounts generated by editing the $spaceamounts variable below.
*/
/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-5 {
  margin-top: 5px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-5 {
  padding-top: 5px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-5 {
  margin-bottom: 5px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-5 {
  padding-bottom: 5px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-5 {
  margin-left: 5px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-5 {
  padding-left: 5px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-5 {
  margin-right: 5px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-5 {
  padding-right: 5px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-10 {
  margin-top: 10px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-10 {
  padding-top: 10px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-10 {
  margin-bottom: 10px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-10 {
  padding-bottom: 10px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-10 {
  margin-left: 10px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-10 {
  padding-left: 10px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-10 {
  margin-right: 10px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-10 {
  padding-right: 10px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-15 {
  margin-top: 15px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-15 {
  padding-top: 15px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-15 {
  margin-bottom: 15px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-15 {
  padding-bottom: 15px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-15 {
  margin-left: 15px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-15 {
  padding-left: 15px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-15 {
  margin-right: 15px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-15 {
  padding-right: 15px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-16 {
  margin-top: 16px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-16 {
  padding-top: 16px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-16 {
  margin-bottom: 16px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-16 {
  padding-bottom: 16px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-16 {
  margin-left: 16px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-16 {
  padding-left: 16px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-16 {
  margin-right: 16px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-16 {
  padding-right: 16px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-20 {
  margin-top: 20px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-20 {
  padding-top: 20px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-20 {
  margin-bottom: 20px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-20 {
  padding-bottom: 20px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-20 {
  margin-left: 20px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-20 {
  padding-left: 20px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-20 {
  margin-right: 20px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-20 {
  padding-right: 20px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-25 {
  margin-top: 25px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-25 {
  padding-top: 25px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-25 {
  margin-bottom: 25px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-25 {
  padding-bottom: 25px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-25 {
  margin-left: 25px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-25 {
  padding-left: 25px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-25 {
  margin-right: 25px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-25 {
  padding-right: 25px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-30 {
  margin-top: 30px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-30 {
  padding-top: 30px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-30 {
  margin-bottom: 30px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-30 {
  padding-bottom: 30px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-30 {
  margin-left: 30px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-30 {
  padding-left: 30px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-30 {
  margin-right: 30px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-30 {
  padding-right: 30px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-35 {
  margin-top: 35px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-35 {
  padding-top: 35px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-35 {
  margin-bottom: 35px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-35 {
  padding-bottom: 35px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-35 {
  margin-left: 35px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-35 {
  padding-left: 35px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-35 {
  margin-right: 35px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-35 {
  padding-right: 35px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-40 {
  margin-top: 40px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-40 {
  padding-top: 40px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-40 {
  margin-bottom: 40px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-40 {
  padding-bottom: 40px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-40 {
  margin-left: 40px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-40 {
  padding-left: 40px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-40 {
  margin-right: 40px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-40 {
  padding-right: 40px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-45 {
  margin-top: 45px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-45 {
  padding-top: 45px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-45 {
  margin-bottom: 45px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-45 {
  padding-bottom: 45px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-45 {
  margin-left: 45px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-45 {
  padding-left: 45px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-45 {
  margin-right: 45px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-45 {
  padding-right: 45px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-50 {
  margin-top: 50px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-50 {
  padding-top: 50px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-50 {
  margin-bottom: 50px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-50 {
  padding-bottom: 50px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-50 {
  margin-left: 50px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-50 {
  padding-left: 50px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-50 {
  margin-right: 50px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-50 {
  padding-right: 50px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-60 {
  margin-top: 60px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-60 {
  padding-top: 60px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-60 {
  margin-bottom: 60px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-60 {
  padding-bottom: 60px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-60 {
  margin-left: 60px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-60 {
  padding-left: 60px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-60 {
  margin-right: 60px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-60 {
  padding-right: 60px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-75 {
  margin-top: 75px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-75 {
  padding-top: 75px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-75 {
  margin-bottom: 75px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-75 {
  padding-bottom: 75px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-75 {
  margin-left: 75px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-75 {
  padding-left: 75px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-75 {
  margin-right: 75px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-75 {
  padding-right: 75px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-80 {
  margin-top: 80px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-80 {
  padding-top: 80px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-80 {
  margin-bottom: 80px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-80 {
  padding-bottom: 80px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-80 {
  margin-left: 80px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-80 {
  padding-left: 80px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-80 {
  margin-right: 80px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-80 {
  padding-right: 80px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-100 {
  margin-top: 100px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-100 {
  padding-top: 100px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-100 {
  margin-bottom: 100px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-100 {
  padding-bottom: 100px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-100 {
  margin-left: 100px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-100 {
  padding-left: 100px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-100 {
  margin-right: 100px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-100 {
  padding-right: 100px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-150 {
  margin-top: 150px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-150 {
  padding-top: 150px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-150 {
  margin-bottom: 150px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-150 {
  padding-bottom: 150px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-150 {
  margin-left: 150px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-150 {
  padding-left: 150px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-150 {
  margin-right: 150px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-150 {
  padding-right: 150px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-160 {
  margin-top: 160px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-160 {
  padding-top: 160px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-160 {
  margin-bottom: 160px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-160 {
  padding-bottom: 160px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-160 {
  margin-left: 160px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-160 {
  padding-left: 160px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-160 {
  margin-right: 160px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-160 {
  padding-right: 160px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-t-200 {
  margin-top: 200px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-t-200 {
  padding-top: 200px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-b-200 {
  margin-bottom: 200px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-b-200 {
  padding-bottom: 200px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-l-200 {
  margin-left: 200px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-l-200 {
  padding-left: 200px !important;
}

/* line 332, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.m-r-200 {
  margin-right: 200px !important;
}

/* line 336, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/partials/_mixins.scss */
.p-r-200 {
  padding-right: 200px !important;
}

/**
 * Computes a top-shadow for a card effect.
 *
 * @param {Number} $depth - depth level
 *
 * @return {List}
 */
/**
 * Computes a bottom-shadow for a card effect.
 *
 * @param {Number} $depth - depth level
 *
 * @return {List}
 */
/* line 15, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/call-to-action.scss */
.wp-block {
  max-width: 1440px;
}

/* line 20, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/call-to-action.scss */
.acf-block-preview h2 {
  color: #fff !important;
}

/* line 24, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/call-to-action.scss */
.acf-block-preview .white-btn {
  background: #fff;
  color: #4A4A4A;
}

/* line 28, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/call-to-action.scss */
.acf-block-preview .white-btn:hover, .acf-block-preview .white-btn:focus {
  color: #000000;
}

/* line 34, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/call-to-action.scss */
.block-call-to-action {
  overflow: hidden;
  background-color: #1F3E6C;
  text-align: center;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* line 42, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/call-to-action.scss */
.block-call-to-action h2 {
  color: #fff;
}

/* line 46, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/call-to-action.scss */
.block-call-to-action .cta-body-copy {
  font-size: 1.2em;
}

@media only screen and (max-width: 1029px) {
  /* line 52, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/call-to-action.scss */
  .block-call-to-action {
    padding: 0 1.5em;
  }
  /* line 55, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/call-to-action.scss */
  .block-call-to-action h2 {
    font-size: 2em;
  }
}

@media only screen and (max-width: 767px) {
  /* line 64, ../../../../MAMP/Websites/stuartturnerbitsandpieces.co.uk/wp-content/themes/ashbestos/library/scss/call-to-action.scss */
  .cta-body-copy br {
    display: none;
  }
}

/*# sourceMappingURL=call-to-action.css.map */