/******************************************************************
Stylesheet: TinyMCS Styles

This is where we can add styles that we want to include as options for styling in the
Wordpress wysiwyg editor
******************************************************************/
/*********************
Color Variables
*********************/
/*********************
TYPOGRAPHY
*********************/
/* 	To embed your own fonts, use this syntax
	and place your fonts inside the
	/fonts folder. For more information
	on embedding fonts, go to:
	http://www.fontsquirrel.com/
	Be sure to remove the comment brackets.
*/
/** 
@font-face {
   	font-family: 'museo300-regular';
   	src: url('../fonts/museo300-regular.eot');
   	src: url('../fonts/museo300-regular.eot?#iefix') format('embedded-opentype'),
            url('../fonts/museo300-regular.woff') format('woff'),
            url('../fonts/museo300-regular.ttf') format('truetype'),
            url('../fonts/museo300-regular.svg#museo300-regular') format('svg');
   	font-weight: normal;
   	font-style: normal;
}

$museo300-regular: "museo300-regular", Verdana, Times New Roman, Times, serif;
**/
/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
/******************************************************************
Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants. 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.
******************************************************************/
/*********************
CLEARFIXIN'
*********************/
.clearfix,
.cf {
  zoom: 1;
}
.clearfix:before, .clearfix:after,
.cf:before,
.cf:after {
  content: "";
  display: table;
}
.clearfix:after,
.cf:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic;
}

/*********************
TRANSITION
*********************/
/*
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);
*/
/*
Default transition settings
*/
/*********************
OPACITY
adds an opacity to an HTML element
USAGE:  @include opacity(.8,80);
*********************/
/*********************
VENDOR PREFIX
allows us to add one line of code that works accross all the browsers for CCS3 elements
USAGE:  @include vendor-prefix('border-radius', '6px');
*********************/
/*********************
HTML LIST ITEM WITH NOT LIST STYLE 
removes the list-style settings from an HTML list
USAGE:  @include listNoStyle
*********************/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
This is a great tool for creating CSS gradients:  http://www.colorzilla.com/gradient-editor/
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/* @include css-gradient-two-vertical(#dfdfdf,0%, #f8f8f8, 80%); */
/* @include css-gradient-two-horizontal(#dfdfdf,0%, #f8f8f8, 80%); */
/*********************
Greyscale
greyscale USAGE:  @include greyscale(30%)
*********************/
/*********************
Greyscale
greyscale USAGE:  @include fullgreyscale()
*********************/
/*********************
BORDER RADIUS
USAGE:  @include border-radius-fourcorners(10px)
*********************/
/*********************
TRANSFORM
rotate USAGE:  @include rotate(20deg)
scale USAGE:  @include scale(1.3)
*********************/
/**************************
HEXCODE TO RGBA
***************************/
/*********************
Base Classes that can use SCSS Extend
*********************/
/*********************
KEYFRAME ANIMATION

animation-name: bouncing-arrow;
animation-duration: .6s; 
animation-timing-function: ease-out; 
animation-delay: 0;
animation-direction: alternate;
animation-iteration-count: infinite;
animation-fill-mode: none;
animation-play-state: running; 

the above can be written like:
@include animation('move-the-object .6s ease-out 0s alternate infinite');
*********************/
/*********************
KEYFRAMES
*********************/
/*********************
KEYFRAME bar wave move
*********************/
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@-webkit-keyframes downarrow {
  0% {
    bottom: 0;
  }
  100% {
    bottom: -20%;
  }
}
@keyframes downarrow {
  0% {
    bottom: 0;
  }
  100% {
    bottom: -20%;
  }
}
/*********************
input field placeholder styling
*********************/
/**************************
HEXCODE TO RGBA
***************************/
.white-border-button a {
  color: #ffffff;
  border: 5px solid #ffffff;
  padding: 8px 60px;
  display: inline-block;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
}
.white-border-button a:hover {
  background: #3abfc4;
}
#tinymce .white-border-button a {
  color: #444444;
  border: 5px solid #444444;
}

.teal-border-button a {
  color: #3abfc4;
  border: 5px solid #3abfc4;
  padding: 8px 60px;
  display: inline-block;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
}
.teal-border-button a:hover {
  background: #3abfc4;
  color: #ffffff;
}

.green-btn {
  display: block;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.green-btn a {
  background-color: #93c740;
  padding: 20px 25px 20px 90px;
  display: inline-block;
  color: #ffffff;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: 6% 55%;
  position: relative;
  font-size: 1.45em;
  line-height: 1.3em;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.green-btn a:before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  left: 4%;
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.2s ease-in-out;
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
}
.green-btn a:hover {
  background-color: #77a430;
  background-position: 6% 45%;
}
.green-btn a:hover:before {
  top: 55%;
}
.green-btn.no-icon a {
  padding: 20px 25px;
}
.green-btn.leftarrow-icon a {
  padding: 20px 25px;
}
.green-btn.leftarrow-icon a:before {
  content: '\f104';
  font-family: 'FontAwesome';
  left: 10px;
}
.green-btn.leftarrow-icon a:hover {
  background-color: #77a430;
}
.green-btn.leftarrow-icon a:hover:before {
  top: 50%;
  left: 5px;
}
.green-btn.docs-icon a:before {
  background-image: url(../images/svg/icon-docs.svg);
  width: 53px;
  height: 53px;
}
.green-btn.flag-icon a:before {
  background-image: url(../images/svg/icon-flag.svg);
  width: 40px;
  height: 40px;
  left: 8%;
  -webkit-transform: rotate(-25deg) translateY(-50%);
  -ms-transform: rotate(-25deg) translateY(-50%);
  transform: rotate(-25deg) translateY(-50%);
}
.green-btn.dollargear-icon a:before {
  background-image: url(../images/svg/icon-gear-dollar.svg);
  width: 62px;
  height: 62px;
}
.green-btn.tools-icon a:before {
  background-image: url(../images/svg/icon-tools.svg);
  width: 57px;
  height: 57px;
}
.green-btn.talk-bubbles-icon a:before {
  background-image: url(../images/svg/icon-talk-bubbles.svg);
  width: 56px;
  height: 56px;
}
.green-btn.person-icon a:before {
  background-image: url(../images/svg/icon-person-plus.svg);
  width: 52px;
  height: 52px;
}

.teal-text {
  color: #3abfc4;
}

.blue-text {
  color: #0b81be;
}

.green-text {
  color: #93c740;
}
