/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets
  List of CSS3 Sass Mixins File to be @imported and @included as you need
  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files
  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties
  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                           - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)
------------------------------------------------------------- */
/* MIXINS FOR THE CUSTOM HEADER EFFECT */
/* END MIXINS FOR THE CUSTOM HEADER EFFECT */
/*import global styles */
/* styles used throughout site */
.answerkey {
  position: absolute;
  top: 90px;
  left: 0;
  width: 320px;
  height: 380px;
  overflow: scroll;
  white-space: initial;
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
  border: solid 1px #555;
  border-left-width: 0;
  font-weight: 700;
}
.answerkey li {
  margin-bottom: 5px;
}
@media only screen and (max-width: 479.99px) {
  .answerkey {
    display: none;
  }
}

.quiz_copy.quiz_results {
  max-width: 35.75em;
}
.quiz_copy.quizcompleted .quiz_btns .btn {
  width: 100%;
  max-width: 330px;
}
.quiz_copy .status_label {
  float: none;
  margin-bottom: 28px;
}

.quiz_results.not_passed .status_label {
  display: none;
}
.quiz_results.not_passed .quiz_callout_bottom {
  display: none;
}
.quiz_results.passed .quiz_disclaimer_retake, .quiz_results.passed .quiz_disclaimer_retake_gold,
.quiz_results.passed .quiz_disclaimer_retake_silver {
  display: none;
}
.quiz_results.not_passed .quiz_disclaimer_retake_gold {
  display: none;
}
.quiz_results.passed_silver .status_label, .quiz_results.passed_gold .status_label {
  border: solid 1px #dddddd;
  background: white;
  color: black;
  background: -moz-linear-gradient(top, white 39%, #d7d7d7 100%);
  background: -webkit-linear-gradient(top, white 39%, #d7d7d7 100%);
  background: linear-gradient(to bottom, #ffffff 39%, #d7d7d7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d7d7d7',GradientType=0 );
}
.quiz_results.passed_silver .status_label i, .quiz_results.passed_gold .status_label i {
  color: #248747;
}
.quiz_results.passed_silver .quiz_disclaimer_retake_silver, .quiz_results.passed_gold .quiz_disclaimer_retake_silver {
  display: none;
}
.quiz_results.passed_gold .status_label {
  border-color: #e3c266;
  background: #edcf7a;
  background: -moz-linear-gradient(top, #edcf7a 0%, #e4c263 100%);
  background: -webkit-linear-gradient(top, #edcf7a 0%, #e4c263 100%);
  background: linear-gradient(to bottom, #edcf7a 0%, #e4c263 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#edcf7a', endColorstr='#e4c263',GradientType=0 );
}
.quiz_results.passed_gold .quiz_disclaimer_retake_gold {
  display: none;
}

.test .quiz_results.passed .quiz_callout:after {
  display: none;
}

.quiz_disclaimer_retake, .quiz_disclaimer_retake_gold,
.quiz_disclaimer_retake_silver {
  line-height: 1.57;
}

.quiz_tag strong {
  color: #545454;
}

.quiz_disclaimer p {
  margin-bottom: 0.2em;
}
.quiz_disclaimer p:last-child {
  margin-bottom: 1.25em;
}

.quiz_callout_bottom {
  font-size: 1rem;
  line-height: 1.3125em;
  margin-top: -0.3125em;
  display: block;
  font-weight: 800;
  margin-bottom: 0.214286em;
  text-transform: uppercase;
}

@media only screen and (max-width: 479.99px) {
  .quiz_copy {
    -webkit-align-self: center;
    align-self: center;
  }
}

@media only screen and (max-width: 479.99px) {
  .single-quiz {
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
  }
}
@media only screen and (min-width: 43.75em) {
  .single-quiz {
    overflow: visible;
  }
}

@media only screen and (min-width: 43.75em) {
  .quiz-bottom-placeholder {
    height: 100px;
  }
}

@media only screen and (max-width: 479.99px) {
  #nav-question-form {
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    flex: 0 0 100%;
  }
}

.quiz-question-answer,
.quiz-question-nav-buttons {
  padding: 16px 20px 1px 20px;
  margin-left: -16px;
  margin-right: -24px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 43.75em) {
  .quiz-question-answer,
  .quiz-question-nav-buttons {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    padding: 29px 52px 29px 22px;
    margin-left: 0;
    margin-right: 0;
  }
}

.quiz-question-answer {
  border-top: solid 1px #dddddd;
  text-align: right;
  z-index: 2;
}
.quiz-question-answer button {
  margin-top: 0;
}
@media only screen and (max-width: 479.99px) {
  .quiz-question-answer {
    width: 100vw;
    -webkit-align-self: flex-start;
    align-self: flex-start;
    border-top: 0;
    padding: 0;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
}

.quiz-question-nav-buttons {
  text-align: right;
}
.quiz-question-nav-buttons.incorrect {
  background: #f2d7d6;
}
.quiz-question-nav-buttons.correct {
  background: #d7e9de;
}
@media only screen and (max-width: 479.99px) {
  .quiz-question-nav-buttons {
    width: 100vw;
    -webkit-align-self: flex-end;
    align-self: flex-end;
    text-align: center;
  }
}

.quiz-question-nav .question-status {
  position: relative;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.quiz-question-nav .question-status.incorrect {
  color: #f33d33;
}
@media only screen and (min-width: 43.75em) {
  .quiz-question-nav .question-status {
    margin-bottom: 1px;
    padding-left: 37px;
    display: inline-block;
    width: 48%;
    vertical-align: middle;
    text-align: left;
  }
}
.quiz-question-nav .question-status .answer-wrapper {
  display: block;
  color: black;
  margin-top: 11px;
  font-weight: 700;
  text-transform: none;
}
@media only screen and (min-width: 43.75em) {
  .quiz-question-nav .question-status:before {
    position: absolute;
    left: 0;
    top: 50%;
    margin-right: 0;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 479.99px) {
  .quiz-question-nav {
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
  }
}

.button-wrapper {
  margin-bottom: 22px;
}
.button-wrapper button {
  margin-top: 0;
}
.button-wrapper.mobile {
  display: block;
  flex: 0 0 100%;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  margin-bottom: 0;
}
.button-wrapper.desktop {
  display: none;
}
@media only screen and (min-width: 43.75em) {
  .button-wrapper {
    display: inline-block;
    width: 48%;
    vertical-align: middle;
    text-align: right;
    margin-bottom: 0;
  }
  .button-wrapper.desktop {
    display: inline-block;
  }
  .button-wrapper.mobile {
    display: none;
  }
}

@media only screen and (max-width: 479.99px) {
  .lp-question-wrap {
    -webkit-align-self: center;
    align-self: center;
    /*max-width: 100%;*/
    flex: 0 0 100%;
  }
}

.lessonMenuClose {
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 87px;
  right: 17px;
  color: white;
}
.lessonMenuClose:after {
  content: 'x';
  display: block;
  font-size: 10px;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Fender Icons";
  font-style: normal;
  font-weight: normal;
  position: relative;
  text-transform: none;
}

.show-menu {
  position: absolute;
  top: 101px;
  left: 22px;
  font-size: 12px;
  z-index: 1;
  display: block;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
}
.show-menu span {
  display: inline-block;
  border-bottom: solid 1px white;
  margin-bottom: 2px;
  padding-bottom: 2px;
}
.show-menu .progress_menu_icn {
  left: 0;
  top: 4px;
  position: relative;
  display: inline-block;
  transform: none;
  -webkit-transform: none;
  margin-right: 12px;
}

/* Progress bar in lesson pages */

#fender-progress-container {
	display:none;
	z-index: 5;
	width: 100%;
	height: 4px;
	background: rgba(29,29,29,0.9);	
	position: fixed;
	display:inline-block;
	margin-top:4.375em;  /* height of header */
}

#fender-progress-bar{	
	height: 4px;
	background: #f33d33;
	width: 0%;
}

@media only screen and (max-width: 47.9375em) {
	#fender-progress-container {
		margin-top:3.75em;  /* height of header */
	}	
	
}

.fender-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.fender-preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1d1d1d;
  padding: 5px;
  border-radius: 3px;
}

.fender-preloader img {
  display: block;
  margin: 0 auto;
  width: 60px;
  height: 60px;
}