/*
*******************
! NOTE
*******************
* Do not run fancybox portion through css autoprefixer.
* It will break the fancybox functionality.
*******************
*/

/*
*******************
* TABLE OF CONTENTS
*******************
* VARIABLES
* BASE STYLES
* PRELOADER
* MAIN LAYOUT
* HEADER
* NAVIGATION
* FOOTER
* KEYWORDS
* HELPERS
* SPECIFIC
* MISCELLANEOUS
* TEACHER GUIDES
* OLD BUTTONS
* BUTTONS
* HOVER EFFECTS
* ROUNDED/CIRCLE IMAGES
* RESPONSIVE IMAGES
* 16:9 RESPONSIVE VIDEOS
* TRANSCRIPT
* OLD MULTIPLE-CHOICE, OLD DRAG AND DROP, OLD FLASHCARDS
* TIP BOX
* EXAMPLE TEXT
* OUTSIDE READING
* PROPERTY HEADER
* PROMPT BANNERS
* SECTION BANNERS
* TIMER
* AUDIO PLAYER
* REMEDIATION
* TABULAR SELF CHECK
* HIGH SCHOOL CONVERSION INTERACTIVES
* THE NAME GAME
* PROZE CLOSE
* THE BASKET GAME
* TAKE THE WHEEL
* SAVE THE BURGER
* WHOSE SHOES?
* WISE ABOUT WORDS
* STACK THE DECK
* BALLOON POP
* INQUIRY DIARY
* CUSTOMIZED PIECES
* CODE EDITOR
* CROSSWORD PUZZLE
* HORIZONTAL TABS
* VERTICAL TABS
* ACCORDION
* INTERACTIVE TABLE
* FLIP-BOX
* REVEAL ANSWER
* CAROUSEL
* MULTIPLE-CHOICE
* ORDERING
* TIMELINE
* HIGHLIGHT TABLE
* MISMATCH GAME
* MATCHING V1
* MATCHING V2
* MATCHING V3
* FREE-RESPONSE QUESTIONS
* FLASHCARDS
* LIGHTBOX (FANCYBOX)
* CARDINAL DIRECTIONS
* FLEXBOX GRID SYSTEM (LEGACY)
*******************
*/

/*
*******************
* VARIABLES
*******************
*/
:root {
    /*
   * Determines user's system color scheme. Leaving blank can cause certain elements to be styled differently than preferred.
   ! DO NOT EDIT
   */
    color-scheme: light !important;
    /*
   * Font Size
   ! DO NOT EDIT
   */
    --default-font-size: 1.063rem; /* 17px */
    /*
   * Background Image
   ! DO NOT EDIT
   */
    --striped-background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/stripes-light.png');
    /*
   * Background Gradients
   ! DO NOT EDIT
   */
    --blue-gradient-background: linear-gradient( to right, #23516b 0%, #1b79af 40%, #1b79af 50%, #1b79af 60%, #295c7a 100% );
    --green-gradient-background: linear-gradient( to right, #639656 0%, #87cf76 40%, #87cf76 50%, #87cf76 60%, #639e54 100% );
    --purple-gradient-background: linear-gradient( to right, #6c3987 0%, #a353cf 40%, #a353cf 50%, #a353cf 60%, #784496 100% );
    /*
   * Lesson Icons
   ! DO NOT EDIT
   */
    --blue-lesson-icon: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/blue-lesson-icon.svg');
    --green-lesson-icon: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/green-lesson-icon.svg');
    --purple-lesson-icon: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/purple-lesson-icon.svg');
    /*
   * BEGINNING OF EDITABLE VARIABLES
   ? The variables below are usable within course CSS files
   */
    


  /*
   * Default Background
   ? Use to change the lesson background color in custom course CSS files
   */
  --default-gradient-background: var(--green-gradient-background);

  /*
   * Default Icon
   ? Use to change the lesson icon in custom course CSS files
   */
  --default-lesson-icon: var(--blue-lesson-icon);

  /*
   * Default Interactive Values
   ? Use to change interactive styling in custom CSS
   ! ONLY FOR INTERACTIVES - DO NOT SET THESE ON MAIN TEMPLATE STYLES
   */
  /* Base */
  --interactive-background-color: #f7f7f7;
  --interactive-border: #d9dee2;
  --interactive-border-radius: 10px; /* Buttons & Containers */
  --interactive-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1); /* Flashcards, Matching, Mismatch, Multiple-Choice, Open-Ended Questions, Ordering */

  /* Buttons */
  --interactive-button-color: #277cb4;
  --interactive-button-hover-color: #3498db;

  --interactive-secondary-button-color: #2c3e50;
  --interactive-secondary-button-hover-color: #34495e;

  --interactive-retry-button-color: #27ae60;
  --interactive-retry-button-hover-color: #2ecc71;

  /* Backgrounds */
  --interactive-background-image: url(''); /* Flashcards, Matching, Mismatch, Multiple-Choice, Open-Ended Questions, Scrollable Questions, Ordering */
  --interactive-background-size: cover; /* Flashcards, Matching, Mismatch, Multiple-Choice, Open-Ended Questions, Scrollable Questions, Ordering */
  --interactive-background-position: center center; /* Flashcards, Matching, Mismatch, Multiple-Choice, Open-Ended Questions, Scrollable Questions, Ordering */
  --interactive-background-repeat: no-repeat; /* Flashcards, Matching, Mismatch, Multiple-Choice, Open-Ended Questions, Scrollable Questions, Ordering */
  --interactive-highlighted-item-background-color: #e6f1fc; /* Interactive Table: Hidden Highlight, Matching: Active Item */

  /* Text */
  --interactive-custom-text-color: #277cb4; /* Tab Set: Nav Links, Accordion: Nav Links, Interactive Table: Headers, Mismatch: Title, Multiple Choice: Answers, Matching: Hover Border */
  --interactive-secondary-custom-text-color: #3498db; /* Tab Set: Nav Links, Accordion: Nav Links, Interactive Table: Headers, Mismatch: Title, Multiple Choice: Answers */

  /* Images */
  /* --default-image-min-width: 300px;
  --default-image-max-width: 650px; */
}

/*
*******************
* BASE STYLES
*******************
*/

/*
      Fixed Navigation

  
#AdminHeaderNav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 50px;
    background-color: #00a087;
} 
    */
/* Unset focus styles on MathJax */
.MathJax:focus {
  outline-color: unset;
  outline-offset: unset;
  outline-style: unset;
  outline-width: unset;
}

/*
    Added by Matt 20240919
*/
div.form-group.row {
    margin-top: 10px;
    margin-bottom: 10px;
}

html {
  background-image: var(--striped-background),
    var(--default-gradient-background);
  background-attachment: fixed;
  scroll-behavior: smooth;
  font-size: 16px;
}

h1,
.h1 {
  font-size: 2.5rem;
}

h2,
.h2 {
  font-size: 2rem;
}

h3,
.h3 {
  font-size: 1.75rem;
}

h4,
.h4 {
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
}

.content blockquote {
  margin: 0px auto;
  font-style: italic;
  padding: 20px 30px 20px 75px;
  border-left: 8px solid var(--interactive-custom-text-color);
  position: relative;
  background: #f7f7f7;
}

.content blockquote::before {
  content: '\201C';
  color: var(--interactive-custom-text-color);
  font-size: 5rem;
  position: absolute;
  left: 20px;
  top: -5px;
}

.content blockquote::after {
  content: '';
}

/* .content blockquote span {
  display: block;
  color: #000000;
  font-weight: bold;
  margin-top: 1em;
} */

/* General style to set min & max widths for images */
/* .content img {
  width: 100%;
  min-width: var(--default-image-min-width);
  max-width: var(--default-image-max-width);
} */

a {
  color: #277cb4;
  text-decoration: none;
}

a:hover,
a:focus,
a:active {
  color: #3498db;
  text-decoration: underline;
}

audio {
  width: 100%;
  max-width: 400px;
}

/*
*******************
* PRELOADER
*******************
*/
#preloader {
  display: none;
  /* position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff
    url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/preloader.gif')
    no-repeat center center;
  z-index: 1031;  */
}

/*
*******************
* MAIN LAYOUT
*******************
*/
/* Main Container */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  color: #242424;
  overflow-y: scroll;
  box-sizing: border-box;
  background: #ffffff;
  margin: 35px auto 60px auto;
  padding-bottom: 25px;
  text-align: left;
  border-radius: 10px;
  border: 3px solid #d9dee2;
  -webkit-box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.15);
}

/* Breakpoints for container */
@media (min-width: 576px) {
  body {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  body {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  body {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  body {
    max-width: 1140px;
  }
}

/* Content Container */
.content {
  position: relative;
  padding: 0px 40px;
  font-size: var(--default-font-size);
  line-height: 1.5;
  margin-top: 25px;
}

/*
*******************
* HEADER
*******************
*/
nav {
  width: 100%;
}

#top-navigation {
  width: 100%;
  padding-bottom: 30px;
  background-color: #000;
  border-radius: 10px 10px 0px 0px;
  -webkit-border-radius: 10px 10px 0px 0px;
  -moz-border-radius: 10px 10px 0px 0px;
  -ms-border-radius: 10px 10px 0px 0px;
  -o-border-radius: 10px 10px 0px 0px;
}

.icon-and-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon-and-header .icon {
  display: none;
  width: 64px;
  height: 64px;
  position: relative;
  top: 15px;
  margin-left: 25px;
  background-image: var(--default-lesson-icon);
  background-repeat: no-repeat;
  background-position: center center;
}

.icon-and-header .title {
  text-align: left;
  color: #ffffff;
  font-size: 2rem;
  margin: 0px 0px 0px 12px;
  position: relative;
  top: 16px;
}

#top-navigation .paging {
  color: #ffffff;
  position: relative;
  top: 14px;
  left: 20px;
  font-size: 1.5rem;
  font-weight: bold;
}

.paging .goback,
.paging .goforward {
  color: #ffffff;
  text-decoration: none;
}

.paging .current-page {
  position: relative;
  top: 2px;
}

.mobile-push {
  margin-top: 10px;
  margin-bottom: 15px;
}

/* Resize paging for smaller viewport */
@media all and (max-width: 787px) {
  #top-navigation .paging {
    font-size: 1.25rem;
  }
}

@media all and (min-width: 768px) {
  .icon-and-header .icon {
    display: block;
  }

  .mobile-push {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  #top-navigation .paging {
    left: -20px;
  }
}

.intro {
  background-color: #f7f7f7;
  padding: 5px 25px;
}

.intro h2 {
  font-size: 1.25rem;
  font-weight: normal;
}

#top {
  position: relative;
  width: 100%;
  height: 60px;
  z-index: 100;
}

#toc_btn {
  position: absolute;
  width: 195px;
  height: 27px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/toc.gif');
  top: -21px;
  cursor: pointer;
}

#toc {
  display: none;
  z-index: 50;
}

#toc ol {
  top: 10px;
  width: 195px;
  /*list-style: decimal inside none;*/
  /*list-style-position:inside;*/
  margin: 0;
  padding: 10px 0;
  color: #01588d;
  background-color: #bababa;
  background-image: -moz-linear-gradient(
    center bottom,
    #bababa 33%,
    rgb(255, 255, 255) 85%
  );
  border-bottom-right-radius: 7px;
  -moz-border-radius-bottomright: 7px;
  border-bottom-left-radius: 7px;
  -moz-border-radius-bottomleft: 7px;
  -webkit-box-shadow: 3px 3px 3px rgba(136, 136, 136, 1);
  box-shadow: 3px 3px 3px rgba(136, 136, 136, 1);
}

#toc ol li {
  /*white-space:nowrap;*/
  font-size: var(--default-font-size);
  margin-left: 30px;
  padding: 3px;
}

#toc ol a {
  text-decoration: none;
  color: #01588d;
}

#bookmark {
  position: absolute;
  width: 68px;
  height: 53px;
  right: 70px;
  top: -20px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_bookmark.png');
  cursor: pointer;
}

div#audio {
  position: absolute;
  width: 300px;
  height: 55px;
  right: 10px;
  top: 20px;
}

div#audio audio {
  width: 300px;
  display: inline-block;
}

#help {
  position: absolute;
  width: 42px;
  height: 55px;
  right: 10px;
  top: -20px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_audio.png');
  cursor: pointer;
}

#help a {
  display: block;
  width: 100%;
  height: 100%;
}

#pager {
  width: 337px;
  height: 77px;
  position: absolute;
  top: -19px;
  left: 50%;
  margin-left: -168px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/pager_bg.gif');
}

#pager_left {
  position: absolute;
  width: 50px;
  height: 40px;
  top: 33px;
  left: 18px;
}

#pager_right {
  position: absolute;
  width: 50px;
  height: 40px;
  top: 33px;
  left: 269px;
}

#pager_left a,
#pager_right a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}

#pager_text {
  position: absolute;
  width: 100px;
  top: 29px;
  left: 50%;
  margin-left: -50px;
  font: 22px Arial, sans-serif;
  text-align: center;
}

/*
*******************
* NAVIGATION
*******************
*/
#idealMenuTocContents {
  display: block;
}

#idealMenuTocContents span.tocPopup {
  display: none;
  counter-reset: item;
  background-color: #000000;
  color: #ffffff;
  top: 0px;
  text-align: left;
  position: absolute;
  z-index: 9999;
  margin-right: -1px;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  padding: 20px 18px 15px 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#idealMenuTocContents span.tocPopup a {
  text-decoration: none;
  color: #ffffff;
}

#idealMenuTocContents span.tocItem {
  display: block;
  font-size: 1.5rem;
  padding: 10px 10px 10px 10px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  counter-increment: item;
}

#idealMenuTocContents span.tocPopup .tocItem::before {
  margin: 0 3px 0 0px;
  padding: 0 10px 0 5px;
  content: counters(item, '.') '. ';
  text-decoration: none;
  display: inline-block;
}

#idealMenuTocContents span.tocItem:hover,
#idealMenuTocContents span.tocItem:focus,
#idealMenuTocContents span.tocItem:active {
  -webkit-transform: scale(1.025);
  -ms-transform: scale(1.025);
  transform: scale(1.025);
  text-decoration: underline;
}

#idealMenuTocContents .idealMenuTocSelected {
  display: block;
  padding: 6px;
  cursor: pointer;
}

#idealMenuTocContents .dropdownButton {
  border: none;
  background: none;
  display: inline-block;
  color: #fff;
  font-size: 1em;
  width: 45px;
  outline: none;
}

#contentContainer .pageheader {
  background-color: #000000;
}

#contentContainer .rightPart {
  display: block;
  overflow: hidden;
}

#contentContainer .pageheader .banner {
  color: white;
  background-color: 000000;
  padding: 8px;
  font-size: 150%;
  font-weight: bold;
  display: block;
}

/*
*******************
* FOOTER
*******************
*/
.footer {
  margin: 40px 40px 10px 40px;
  color: rgba(0, 0, 0, 0.5);
}

.footer a.footer-btn {
  text-decoration: none;
  color: inherit;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.footer a.footer-btn:focus,
.footer a.footer-btn:hover {
  color: #242424;
}

.footer .footer-audio {
  display: block;
  margin: 0 auto;
  border: 3px solid var(--interactive-border);
  border-radius: 40px;
}

/*
*******************
* KEYWORDS
*******************
*/
ol .objective,
ol .skill {
  margin-bottom: 10px;
}

.new_page {
  font-family: 'Just Another Hand', cursive;
  width: 85%;
  margin: 0 auto;
  margin: 10px 0 0 15px;
  position: relative;
  padding: 8px 0;
  color: #242424;
  -webkit-border-bottom-left-radius: 20px 500px;
  -webkit-border-bottom-right-radius: 500px 30px;
  -webkit-border-top-right-radius: 5px 100px;
  -moz-border-radius-bottomleft: 20px 500px;
  -moz-border-radius-bottomright: 500px 30px;
  -moz-border-radius-topright: 5px 100px;
  border-bottom-left-radius: 20px 500px;
  border-bottom-right-radius: 500px 30px;
  border-top-right-radius: 5px 100px;
  background: #fcf59b;
  background: -o-repeating-linear-gradient(
    top,
    #fcf59b,
    #fcf59b 38px,
    #81cbbc 40px
  );
  background: repeating-linear-gradient(
    top,
    #fcf59b,
    #fcf59b 38px,
    #81cbbc 40px
  );
  background: -ms-repeating-linear-gradient(
    top,
    #fcf59b,
    #fcf59b 38px,
    #81cbbc 40px
  );
  background-size: 100% 40px;
  -webkit-background-size: 100% 40px;
  -webkit-box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.2);
}

.new_page::before {
  content: ' ';
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/tape.png')
    no-repeat;
  width: 129px;
  height: 38px;
  position: absolute;
  top: -15px;
  left: 40%;
  display: block;
}

.keywords_section {
  padding: 20px;
  margin-bottom: 0;
}

.keywords_section .keywords_title {
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 15px;
  text-decoration: underline;
}

.keywords_section .keyword {
  font-size: 1em;
  margin-bottom: 15px;
}

.keywords_section .keyword::before {
  content: '\2022';
  margin-right: 5px;
}

/* Keyword Media Queries */
@media all and (max-width: 991px) {
  .new_page {
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif, sans-serif;
    width: 100%;
    background: #f0f0f0;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 10px;
    margin-left: -40px;
    padding-left: 39px;
    padding-right: 41px;
  }

  .new_page::before {
    background: none;
  }

  .keywords_section .keywords_title {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.6em;
  }

  .keywords_section .keyword {
    margin-right: 20px;
  }

  .keywords_section .keywords_holder {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    padding: 10px;
  }
}

@media all and (max-width: 575px) {
  .keywords_section .keywords_holder {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}

/*
*******************
* HELPERS
*******************
*/
.clear {
  clear: both;
}

.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.floatLeft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.floatRight {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}

.stopFloat {
  margin: 0px;
  clear: both;
}

.border-box {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.offscreen {
  position: absolute;
  left: -9999px;
  display: block;
}

/* Commented out due to collision issues from old interactives to new */
/* .hidden {
  display: none !important;
} */

/*
* Hide only visually, but have it available for screen readers:
*/
.visuallyhidden,
.sr-only {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus,
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

/* Center content and left align it when it wraps. */
.center-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.center-wrap * {
  text-align: left;
}

hr.dotted {
  border: 3px dotted #ecf0f1;
  border-style: none none dotted;
  color: #fff;
  background-color: #fff;
  margin-bottom: 20px;
  margin-top: 20px;
}

/*
*******************
* SPECIFIC
*******************
*/
div.startformativequiz {
  border: solid 1px #999999;
  background-color: #aed0ea;
  padding: 25px 15px 25px 15px;
  margin: 40px auto;
  width: 50%;
  text-align: center;
}

div.startformativequiz h1 {
  text-align: center;
}

div.startformativequiz h3 {
  text-align: center;
}

div#contentContainer {
  padding: 15px;
}

#UserNav span {
  padding-top: 2px;
  background-position: top left;
  background-repeat: no-repeat;
  background-origin: padding-box;
  background-clip: border-box;
  background-color: transparent;
}

#UserNav span.gradebook {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/navbar_percent.png');
  background-size: 20px 20px;
  padding-left: 22px;
}

#UserNav span.profile {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/navbar_person.png');
  background-size: 20px 20px;
  padding-left: 22px;
}

#UserNav span.gettingstarted {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/navbar_info.png');
  background-size: 20px 20px;
  padding-left: 22px;
}

#SectionPerformanceReportPage table td {
  margin: 0px;
  display: table-cell;
}

#SectionPerformanceReportPage table td.right {
  text-align: right;
}

#SectionPerformanceReportPage table td.header {
  background-color: #333333;
  color: white;
  padding: 4px 8px 4px 8px;
  font-weight: bold;
}

#SectionPerformanceReportPage table td.data {
  padding: 4px 8px 4px 8px;
  border-bottom: 1px solid #333333;
}

div.teacherSections div.label {
  font-size: 150%;
  font-weight: bold;
  margin-bottom: 10px;
}

div.teacherToDoList {
  margin-bottom: 20px;
}

div.teacherToDoList div.label {
  font-size: 150%;
  font-weight: bold;
  margin-bottom: 10px;
}

div.teacherToDoList table {
  width: 100%;
  border-spacing: 0px;
  border-collapse: collapse;
}

div.teacherToDoList table tr {
  cursor: pointer;
}

div.teacherToDoList table td {
  padding: 4px 2px 4px 6px;
  background-color: #efefef;
  border-bottom: solid 2px white;
  border-right: solid 2px white;
}

div.teacherToDoList table td.itemtitle {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/question-mark-blue.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-origin: content-box;
}

div.teacherToDoList table td.itemtitle span {
  margin-left: 24px;
  display: inline-block;
}

div.teacherToDoList table td.alt {
  background-color: #dedede;
}

div.teacherToDoList table td.header {
  font-weight: bold;
  padding: 6px 2px 6px 6px;
  font-size: 105%;
  background-color: #666666;
  color: white;
}

div.teacherSections table tr {
  display: block;
  margin-bottom: 30px;
}

div.teacherSections table td {
  display: inline-block;
}

div.teacherSections td.subjectmatter {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}

div.teacherSections td.subjectmatter img {
  width: 60px;
}

div.teacherSections td.text {
  padding-left: 10px;
  display: inline-block;
  clear: both;
}

div.teacherSections td.text h2 {
  margin-top: 0px;
}

div.teacherSections td.text div.data {
  margin-bottom: 10px;
}

#IdealPage div.assessmenttitle {
  font-weight: bold;
  font-size: 120%;
  margin-bottom: 12px;
}

#SyllabusPage div.existingAssignments div.data {
  margin-left: 40px;
}

#IdealPage #SyllabusPage div.unit {
  font-weight: bold;
  font-size: 130%;
}

#IdealPage #SyllabusPage div.lesson {
  font-weight: bold;
  font-size: 115%;
  padding-left: 40px;
}

#IdealPage #SyllabusPage div.formativeassessment,
#IdealPage #SyllabusPage div.authenticassessment {
  font-weight: normal;
  font-size: 100%;
  padding-left: 80px;
}

#SyllabusPage div.tools ul {
  list-style-type: none;
}

#SyllabusPage div.tools li {
  display: block;
  padding: 8px;
}

#SyllabusPage div.tools li div.hidey {
  margin-top: 10px;
  margin-left: 25px;
}

#EnrollmentPage div.UnitsSection div.title {
  font-size: 140%;
  font-weight: bold;
  margin-bottom: 15px;
}

#EnrollmentPage div.OtherSection div.title {
  font-size: 140%;
  font-weight: bold;
  margin-bottom: 15px;
}

#EnrollmentPage div.OtherSection {
  background-color: white;
}

#EnrollmentPage div.UnitsSection div.collapse img {
  height: 64px;
  margin-right: 20px;
}

#EnrollmentPage div.UnitsSection div.expand {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/toggle-expand-alt.png');
  background-repeat: no-repeat;
  height: 64px;
  padding-left: 80px;
}

img.expand-collapse {
  cursor: pointer;
  border-width: 0px;
}

#LearningObjectAssignWaiter {
  position: absolute;
  width: 94%;
  height: 74%;
  background: #ffffff
    url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/waiting_lg.gif')
    no-repeat center center;
  margin-top: -20px;
  margin-left: -20px;
  display: none;
  background-size: 20%;
}

#ModuleAssignWaiter {
  position: absolute;
  width: 94%;
  height: 74%;
  background: #ffffff
    url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/waiting_lg.gif')
    no-repeat center center;
  margin-top: -20px;
  margin-left: -20px;
  display: none;
  background-size: 20%;
}

.ui-dialog-titlebar {
  padding: 8px;
  border-top: solid 4px gray;
  border-right: solid 4px gray;
  border-left: solid 4px gray;
}

.ui-dialog-titlebar .ui-dialog-title {
  margin-right: 20px;
}

div.optionsdialog {
  background-color: white;
  color: black;
  border-bottom: solid 4px gray;
  border-left: solid 4px gray;
  border-right: solid 4px gray;
  padding: 20px 0px 20px 20px;
  display: block;
  overflow: hidden;
}

div.optionsdialog div.title {
  font-weight: bold;
  font-size: 120%;
}

div.optionsdialog div.subtitle {
  margin-bottom: 10px;
}

div.optionsdialog div.buttons {
  margin-top: 10px;
}

div.dialogsearchresults {
  background-color: white;
  color: black;
  border-bottom: solid 4px gray;
  border-left: solid 4px gray;
  border-right: solid 4px gray;
  padding: 20px 0px 20px 20px;
  display: block;
  overflow: hidden;
}

div.dialogsearchresults div.scrollable {
  overflow-y: scroll;
  overflow-x: auto;
  position: relative;
  height: 90%;
}

div.dialogsearchresults div.label {
  margin-bottom: 10px;
  font-size: 110%;
}

div.dialogsearchresults table tr {
  display: table-row;
  margin-top: 5px;
}

div.dialogsearchresults table tr td.num {
  font-weight: bold;
  padding: 0px 8px 8px 0px;
  font-size: 120%;
  vertical-align: top;
  text-align: left;
}

div.dialogsearchresults table div.title {
  font-weight: bold;
}

div.waiting {
  background: white
    url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/waiting_lg.gif')
    no-repeat center center;
}

div.bold {
  font-weight: bold;
}

div.headerlogo > a {
  border-width: 0px;
  cursor: pointer;
}

img.headerlogo {
  height: 100px;
}

#IdealPage .profileSection {
  margin-bottom: 20px;
}

#IdealPage .profileSection td {
  padding: 4px;
}

#IdealPage .profileSection .title {
  padding: 6px;
  font-size: 120%;
  font-weight: bold;
  background-color: #eeeeee;
  margin-bottom: 10px;
}

#IdealPage .profileSection td.feelingQuestion {
  vertical-align: top;
  font-size: 120%;
  font-weight: bold;
}

#IdealPage div.yourDrive td {
  padding: 2px 4px 2px 4px;
}

#IdealPage table#StudentAnnouncements {
  margin: 10px 20px 10px 20px;
  border-collapse: separate;
  border-spacing: 0 20px;
}

#IdealPage table#StudentAnnouncements td.date {
  vertical-align: top;
  white-space: nowrap;
  font-size: 90%;
  padding-right: 10px;
}

#IdealPage table#StudentAnnouncements div.title {
  font-size: 120%;
  font-weight: bold;
  padding-bottom: 10px;
}

#LearningObjectSearchResultsDiv div.preview {
  margin-bottom: 10px;
}

#IdealPage tr.overdue {
  color: red;
}

#IdealPage tr.overdue a {
  color: red;
}

#IdealPage tr.overdue a:visited {
  color: red;
}

.imgAudioLoader {
  display: none;
}

/*
*******************
* MISCELLANEOUS
*******************
*/
th.slide {
  background-color: #acf;
  border: 1px #fff solid;
  font-weight: normal;
  width: 50%;
}

td.slide {
  background-color: #def;
  border: 1px #fff solid;
  color: #333;
}

div.videoonly {
  width: 450px;
  margin: 20px auto;
}

div.videoonly > iframe {
  width: 100%;
}

/*
*******************
* TEACHER GUIDES
*******************
*/
/* Syllabus Page */
.choice_area {
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.choice_activity_area {
  height: 60px;
  width: 200px;
  margin: 25px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cedbe9+0,aac5de+4,6199c7+15,3a84c3+31,419ad6+45,4bb8f0+63,3a8bc2+84,26558b+100 */
  background: #cedbe9; /* Old browsers */
  background: -moz-linear-gradient(
    top,
    #cedbe9 0%,
    #aac5de 4%,
    #6199c7 15%,
    #3a84c3 31%,
    #419ad6 45%,
    #4bb8f0 63%,
    #3a8bc2 84%,
    #26558b 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #cedbe9 0%,
    #aac5de 4%,
    #6199c7 15%,
    #3a84c3 31%,
    #419ad6 45%,
    #4bb8f0 63%,
    #3a8bc2 84%,
    #26558b 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #cedbe9 0%,
    #aac5de 4%,
    #6199c7 15%,
    #3a84c3 31%,
    #419ad6 45%,
    #4bb8f0 63%,
    #3a8bc2 84%,
    #26558b 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cedbe9', endColorstr='#26558b',GradientType=0 ); /* IE6-9 */
  border-radius: 9px;
  border: 2px solid #26558b;
  transition: all 0.2s ease-in-out;
}

.choice_activity_area:hover {
  transform: scale(1.1);
}

.choice_activity {
  text-align: center;
  margin-top: 8px;
  font-size: 14pt;
  font-weight: bold;
  color: white;
  transition: all 0.2s ease-in-out;
}

.choice_activity_area > a {
  text-decoration: none;
  line-height: 1.2;
}

/* Assessments Page */
table.Table_List {
  background-color: #ffffd2;
  border: thin solid #bababa;
  border-spacing: 0px;
  border-collapse: collapse;
  margin: 0 auto;
  width: 100%;
}

table.Table_List td {
  padding: 10px;
}

table.Table_List thead tr {
  background-color: #f1f1f1;
  border-bottom: thin solid #bababa;
  font-weight: bold;
}

table.Table_List thead tr th {
  padding: 10px;
}

table.Table_List tr:nth-child(EVEN) {
  background-color: #ffffaa;
}

table.Table_List td:nth-child(1),
table.Table_List thead tr th:nth-child(1) {
  text-align: left;
}

table.Table_List td:nth-child(2),
table.Table_List thead tr th:nth-child(2) {
  text-align: left;
}

table.Table_List td:nth-child(3),
table.Table_List thead tr th:nth-child(3) {
  text-align: left;
}

.whExcerptGray {
  margin: 0 auto;
  margin-bottom: 30px;
  width: 500px;
  text-align: center;
  border-color: #7f8c8d !important;
  background-color: #f5f5f5 !important;
}

.whExcerptGray > .password {
  font-size: 1.5em;
  font-weight: bold;
  color: #d35400;
}

/*
*******************
* OLD BUTTONS
*******************
*/
div.activity_area {
  width: 170px;
  height: 60px;
  margin: 10px auto;
}

div.activity_area {
  width: 170px;
  height: 60px;
  margin: 10px auto;
}

div.activity_btn {
  width: 170px;
  height: 60px;
  margin: 10px auto;
  cursor: pointer;
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_activity_icon.png')
    no-repeat;
}

div.activity_btn:hover {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_activity_icon_roll.png')
    no-repeat;
}

div.answerkey_area {
  width: 168px;
  height: 60px;
  margin: 10px auto;
}

div.answerkey_btn {
  width: 168px;
  height: 60px;
  margin: 10px auto;
  cursor: pointer;
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_ansKey_icon.png')
    no-repeat;
}

div.answerkey_btn:hover {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_ansKey_roll.png')
    no-repeat;
}

div.journal_area {
  width: 168px;
  height: 60px;
  margin: 10px auto;
}

div.journal_btn {
  width: 168px;
  height: 60px;
  margin: 10px auto;
  cursor: pointer;
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_Journal_icon.png')
    no-repeat;
}

div.journal_btn:hover {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_journal_roll.png')
    no-repeat;
}

div.print_area {
  width: 139px;
  height: 60px;
  margin: 10px auto;
}

div.print_btn {
  width: 139px;
  height: 60px;
  margin: 10px auto;
  cursor: pointer;
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_print_icon.png')
    no-repeat;
}

div.print_btn:hover {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_print_icon_roll.png')
    no-repeat;
}

div.readme_area {
  width: 168px;
  height: 60px;
  margin: 10px auto;
}

div.readme_btn {
  width: 168px;
  height: 60px;
  margin: 10px auto;
  cursor: pointer;
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_readme.png')
    no-repeat;
}

div.readme_btn:hover {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_readme_roll.png')
    no-repeat;
}

div.rubric_area {
  width: 146px;
  height: 60px;
  margin: 10px auto;
}

div.rubric_btn {
  width: 146px;
  height: 60px;
  margin: 10px auto;
  cursor: pointer;
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_rubric.png')
    no-repeat;
}

div.rubric_btn:hover {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_rubric_roll.png')
    no-repeat;
}

div.tryit_area {
  width: 142px;
  height: 60px;
  margin: 10px auto;
}

div.tryit_btn {
  width: 142px;
  height: 60px;
  margin: 10px auto;
  cursor: pointer;
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_Try_It.png')
    no-repeat;
}

div.tryit_btn:hover {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_Try_It_roll.png')
    no-repeat;
}

/*
*******************
* BUTTONS
*******************
*/
/* Flat Buttons */
.flat-btn {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  font-size: var(--default-font-size);
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  width: 100%;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0px 2px 3px rgba(189, 195, 199, 1);
  box-shadow: 0px 2px 3px rgba(189, 195, 199, 1);
  border: none;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.red-btn {
  background-color: #c0392b;
}

.red-btn:hover,
.red-btn:focus {
  background-color: #e74c3c;
}

.grey-btn {
  background-color: #7f8c8d;
}

.grey-btn:hover,
.grey-btn:focus {
  background-color: #95a5a6;
}

.green-btn {
  background-color: #27ae60;
}

.green-btn:hover,
.green-btn:focus {
  background-color: #2ecc71;
}

.blue-btn {
  background-color: #277cb4;
}

.blue-btn:hover,
.blue-btn:focus {
  background-color: #3498db;
}

.dark-blue-btn {
  background-color: #2c3e50;
}

.dark-blue-btn:hover,
.dark-blue-btn:focus {
  background-color: #34495e;
}

.ae-blue-btn {
  background-color: #0e6198;
}

.ae-blue-btn:hover,
.ae-blue-btn:focus {
  background-color: #106fae;
}

.orange-btn {
  background-color: #d35400;
}

.orange-btn:hover,
.orange-btn:focus {
  background-color: #e67e22;
}

.purple-btn {
  background-color: #8e44ad;
}

.purple-btn:hover,
.purple-btn:focus {
  background-color: #9b59b6;
}

.red-btn-outline {
  background-color: #fff;
  border: 1px solid #c0392b;
  color: #c0392b;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.red-btn-outline:hover,
.red-btn-outline:focus {
  background-color: #e74c3c;
  color: #fff;
}

.grey-btn-outline {
  background-color: #fff;
  border: 1px solid #7f8c8d;
  color: #7f8c8d;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.grey-btn-outline:hover,
.grey-btn-outline:focus {
  background-color: #95a5a6;
  color: #fff;
}

.green-btn-outline {
  background-color: #fff;
  border: 1px solid #27ae60;
  color: #27ae60;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.green-btn-outline:hover,
.green-btn-outline:focus {
  background-color: #2ecc71;
  color: #fff;
}

.blue-btn-outline {
  background-color: #fff;
  border: 1px solid #277cb4;
  color: #277cb4;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.blue-btn-outline:hover,
.blue-btn-outline:focus {
  background-color: #3498db;
  color: #fff;
}

.dark-blue-btn-outline {
  background-color: #fff;
  border: 1px solid #2c3e50;
  color: #2c3e50;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.dark-blue-btn-outline:hover,
.dark-blue-btn-outline:focus {
  background-color: #34495e;
  color: #fff;
}

.ae-blue-btn-outline {
  background-color: #fff;
  border: 1px solid #0e6198;
  color: #0e6198;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.ae-blue-btn-outline:hover,
.ae-blue-btn-outline:focus {
  background-color: #0e6198;
  color: #fff;
}

.orange-btn-outline {
  background-color: #fff;
  border: 1px solid #d35400;
  color: #d35400;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.orange-btn-outline:hover,
.orange-btn-outline:focus {
  background-color: #e67e22;
  color: #fff;
}

.purple-btn-outline {
  background-color: #fff;
  border: 1px solid #8e44ad;
  color: #8e44ad;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.purple-btn-outline:hover,
.purple-btn-outline:focus {
  background-color: #9b59b6;
  color: #fff;
}

/* Bright Gradient Buttons */
.colorful-btn {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  font-size: var(--default-font-size);
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  width: 100%;
  padding: 20px;
  text-decoration: none;
  text-align: center;
  background-size: 300% 100%;
  border-radius: 50px;
  border: 1px solid #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.colorful-btn:hover,
.colorful-btn:focus {
  background-position: 100% 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.text-shadow {
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
}

.blue-gradient {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#25aae1),
    color-stop(#4481eb),
    color-stop(#04befe),
    to(#3f86ed)
  );
  background-image: -o-linear-gradient(
    left,
    #25aae1,
    #4481eb,
    #04befe,
    #3f86ed
  );
  background-image: linear-gradient(
    to right,
    #25aae1,
    #4481eb,
    #04befe,
    #3f86ed
  );
  -webkit-box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
  box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
}

.red-gradient {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#eb3941),
    color-stop(#f15e64),
    color-stop(#e14e53),
    to(#e2373f)
  );
  background-image: -o-linear-gradient(
    left,
    #eb3941,
    #f15e64,
    #e14e53,
    #e2373f
  );
  background-image: linear-gradient(
    to right,
    #eb3941,
    #f15e64,
    #e14e53,
    #e2373f
  );
  -webkit-box-shadow: 0 5px 15px rgba(242, 97, 103, 0.4);
  box-shadow: 0 5px 15px rgba(242, 97, 103, 0.4);
}

.orange-gradient {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fc6076),
    color-stop(#ff9a44),
    color-stop(#ef9d43),
    to(#e75516)
  );
  background-image: -o-linear-gradient(
    left,
    #fc6076,
    #ff9a44,
    #ef9d43,
    #e75516
  );
  background-image: linear-gradient(
    to right,
    #fc6076,
    #ff9a44,
    #ef9d43,
    #e75516
  );
  -webkit-box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75);
  box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75);
}

.teal-gradient {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#25aae1),
    color-stop(#40e495),
    color-stop(#30dd8a),
    to(#2bb673)
  );
  background-image: -o-linear-gradient(
    left,
    #25aae1,
    #40e495,
    #30dd8a,
    #2bb673
  );
  background-image: linear-gradient(
    to right,
    #25aae1,
    #40e495,
    #30dd8a,
    #2bb673
  );
  -webkit-box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
  box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
}

.purple-gradient {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#667eea),
    color-stop(#764ba2),
    color-stop(#6b8dd6),
    to(#8e37d7)
  );
  background-image: -o-linear-gradient(
    left,
    #667eea,
    #764ba2,
    #6b8dd6,
    #8e37d7
  );
  background-image: linear-gradient(
    to right,
    #667eea,
    #764ba2,
    #6b8dd6,
    #8e37d7
  );
  -webkit-box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
  box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
}

.green-gradient {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#0ba360),
    color-stop(#3cba92),
    color-stop(#30dd8a),
    to(#2bb673)
  );
  background-image: -o-linear-gradient(
    left,
    #0ba360,
    #3cba92,
    #30dd8a,
    #2bb673
  );
  background-image: linear-gradient(
    to right,
    #0ba360,
    #3cba92,
    #30dd8a,
    #2bb673
  );
  -webkit-box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
  box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
}

.grey-gradient {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#29323c),
    color-stop(#485563),
    color-stop(#606c74),
    to(#6e6b79)
  );
  background-image: -o-linear-gradient(
    left,
    #29323c,
    #485563,
    #606c74,
    #29323c
  );
  background-image: linear-gradient(
    to right,
    #29323c,
    #485563,
    #606c74,
    #29323c
  );
  -webkit-box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
  box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
}

.ae-gradient {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#0e6198),
    color-stop(#106fae),
    color-stop(#0e6198),
    to(#0e6198)
  );
  background-image: -o-linear-gradient(
    left,
    #0e6198,
    #106fae,
    #0e6198,
    #0e6198
  );
  background-image: linear-gradient(
    to right,
    #0e6198,
    #106fae,
    #0e6198,
    #0e6198
  );
  -webkit-box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
  box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
}

/* Default Interactive Buttons */
.default-btn,
.secondary-btn,
.retry-btn {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  font-weight: bold;
  font-size: var(--default-font-size);
  color: #ffffff;
  cursor: pointer;
  width: 100%;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.default-btn {
  background: var(--interactive-button-color);
}

.default-btn:hover,
.default-btn:focus {
  background: var(--interactive-button-hover-color);
}

.secondary-btn {
  background: var(--interactive-secondary-button-color);
}

.secondary-btn:hover,
.secondary-btn:focus {
  background: var(--interactive-secondary-button-hover-color);
}

.retry-btn {
  background: var(--interactive-retry-button-color);
}

.retry-btn:hover,
.retry-btn:focus {
  background: var(--interactive-retry-button-hover-color);
}

/*
*******************
* HOVER EFFECTS
*******************
*/
/* 2D TRANSITIONS */
/* Grow */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Shrink */
.hvr-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-shrink:hover,
.hvr-shrink:focus,
.hvr-shrink:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

/* Pulse */
@-webkit-keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.hvr-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pulse:hover,
.hvr-pulse:focus,
.hvr-pulse:active {
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Pulse Grow */
@-webkit-keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.hvr-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pulse-grow:hover,
.hvr-pulse-grow:focus,
.hvr-pulse-grow:active {
  -webkit-animation-name: hvr-pulse-grow;
  animation-name: hvr-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Pulse Shrink */
@-webkit-keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.hvr-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pulse-shrink:hover,
.hvr-pulse-shrink:focus,
.hvr-pulse-shrink:active {
  -webkit-animation-name: hvr-pulse-shrink;
  animation-name: hvr-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Push */
@-webkit-keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.hvr-push {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-push:hover,
.hvr-push:focus,
.hvr-push:active {
  -webkit-animation-name: hvr-push;
  animation-name: hvr-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Pop */
@-webkit-keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.hvr-pop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pop:hover,
.hvr-pop:focus,
.hvr-pop:active {
  -webkit-animation-name: hvr-pop;
  animation-name: hvr-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Bounce In */
.hvr-bounce-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-in:hover,
.hvr-bounce-in:focus,
.hvr-bounce-in:active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Bounce Out */
.hvr-bounce-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-out:hover,
.hvr-bounce-out:focus,
.hvr-bounce-out:active {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Rotate */
.hvr-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-rotate:hover,
.hvr-rotate:focus,
.hvr-rotate:active {
  -webkit-transform: rotate(4deg);
  transform: rotate(4deg);
}

/* Grow Rotate */
.hvr-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow-rotate:hover,
.hvr-grow-rotate:focus,
.hvr-grow-rotate:active {
  -webkit-transform: scale(1.1) rotate(4deg);
  transform: scale(1.1) rotate(4deg);
}

/* Float */
.hvr-float {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-float:hover,
.hvr-float:focus,
.hvr-float:active {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

/* Sink */
.hvr-sink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sink:hover,
.hvr-sink:focus,
.hvr-sink:active {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}

/* Bob */
@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-bob:hover,
.hvr-bob:focus,
.hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: 0.3s, 1.5s;
  animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
  animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Hang */
@-webkit-keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  50% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  50% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@-webkit-keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
.hvr-hang {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-hang:hover,
.hvr-hang:focus,
.hvr-hang:active {
  -webkit-animation-name: hvr-hang-sink, hvr-hang;
  animation-name: hvr-hang-sink, hvr-hang;
  -webkit-animation-duration: 0.3s, 1.5s;
  animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
  animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Skew */
.hvr-skew {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-skew:hover,
.hvr-skew:focus,
.hvr-skew:active {
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
}

/* Skew Forward */
.hvr-skew-forward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-skew-forward:hover,
.hvr-skew-forward:focus,
.hvr-skew-forward:active {
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
}

/* Skew Backward */
.hvr-skew-backward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-skew-backward:hover,
.hvr-skew-backward:focus,
.hvr-skew-backward:active {
  -webkit-transform: skew(10deg);
  transform: skew(10deg);
}

/* Wobble Vertical */
@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.hvr-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-vertical:hover,
.hvr-wobble-vertical:focus,
.hvr-wobble-vertical:active {
  -webkit-animation-name: hvr-wobble-vertical;
  animation-name: hvr-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Horizontal */
@-webkit-keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.hvr-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-horizontal:hover,
.hvr-wobble-horizontal:focus,
.hvr-wobble-horizontal:active {
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble To Bottom Right */
@-webkit-keyframes hvr-wobble-to-bottom-right {
  16.65% {
    -webkit-transform: translate(8px, 8px);
    transform: translate(8px, 8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, -6px);
    transform: translate(-6px, -6px);
  }
  49.95% {
    -webkit-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  83.25% {
    -webkit-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes hvr-wobble-to-bottom-right {
  16.65% {
    -webkit-transform: translate(8px, 8px);
    transform: translate(8px, 8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, -6px);
    transform: translate(-6px, -6px);
  }
  49.95% {
    -webkit-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  83.25% {
    -webkit-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.hvr-wobble-to-bottom-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-to-bottom-right:hover,
.hvr-wobble-to-bottom-right:focus,
.hvr-wobble-to-bottom-right:active {
  -webkit-animation-name: hvr-wobble-to-bottom-right;
  animation-name: hvr-wobble-to-bottom-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble To Top Right */
@-webkit-keyframes hvr-wobble-to-top-right {
  16.65% {
    -webkit-transform: translate(8px, -8px);
    transform: translate(8px, -8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, 6px);
    transform: translate(-6px, 6px);
  }
  49.95% {
    -webkit-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  83.25% {
    -webkit-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes hvr-wobble-to-top-right {
  16.65% {
    -webkit-transform: translate(8px, -8px);
    transform: translate(8px, -8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, 6px);
    transform: translate(-6px, 6px);
  }
  49.95% {
    -webkit-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  83.25% {
    -webkit-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.hvr-wobble-to-top-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-to-top-right:hover,
.hvr-wobble-to-top-right:focus,
.hvr-wobble-to-top-right:active {
  -webkit-animation-name: hvr-wobble-to-top-right;
  animation-name: hvr-wobble-to-top-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Top */
@-webkit-keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
@keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
.hvr-wobble-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-wobble-top:hover,
.hvr-wobble-top:focus,
.hvr-wobble-top:active {
  -webkit-animation-name: hvr-wobble-top;
  animation-name: hvr-wobble-top;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Bottom */
@-webkit-keyframes hvr-wobble-bottom {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
@keyframes hvr-wobble-bottom {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
.hvr-wobble-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.hvr-wobble-bottom:hover,
.hvr-wobble-bottom:focus,
.hvr-wobble-bottom:active {
  -webkit-animation-name: hvr-wobble-bottom;
  animation-name: hvr-wobble-bottom;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Wobble Skew */
@-webkit-keyframes hvr-wobble-skew {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
@keyframes hvr-wobble-skew {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
.hvr-wobble-skew {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-skew:hover,
.hvr-wobble-skew:focus,
.hvr-wobble-skew:active {
  -webkit-animation-name: hvr-wobble-skew;
  animation-name: hvr-wobble-skew;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Buzz */
@-webkit-keyframes hvr-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
@keyframes hvr-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
.hvr-buzz {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-buzz:hover,
.hvr-buzz:focus,
.hvr-buzz:active {
  -webkit-animation-name: hvr-buzz;
  animation-name: hvr-buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Buzz Out */
@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
.hvr-buzz-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-buzz-out:hover,
.hvr-buzz-out:focus,
.hvr-buzz-out:active {
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Forward */
.hvr-forward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-forward:hover,
.hvr-forward:focus,
.hvr-forward:active {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}

/* Backward */
.hvr-backward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-backward:hover,
.hvr-backward:focus,
.hvr-backward:active {
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);
}

/* BACKGROUND TRANSITIONS */
/* Fade */
.hvr-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  overflow: hidden;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
.hvr-fade:hover,
.hvr-fade:focus,
.hvr-fade:active {
  background-color: #2098d1;
  color: white;
}

/* Back Pulse */
@-webkit-keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75);
  }
}
@keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75);
  }
}
.hvr-back-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  overflow: hidden;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
.hvr-back-pulse:hover,
.hvr-back-pulse:focus,
.hvr-back-pulse:active {
  -webkit-animation-name: hvr-back-pulse;
  animation-name: hvr-back-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-color: #2098d1;
  background-color: #2098d1;
  color: white;
}

/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
  color: white;
}
.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* Sweep To Left */
.hvr-sweep-to-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-left:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-left:hover,
.hvr-sweep-to-left:focus,
.hvr-sweep-to-left:active {
  color: white;
}
.hvr-sweep-to-left:hover:before,
.hvr-sweep-to-left:focus:before,
.hvr-sweep-to-left:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* Sweep To Bottom */
.hvr-sweep-to-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-bottom:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-bottom:hover,
.hvr-sweep-to-bottom:focus,
.hvr-sweep-to-bottom:active {
  color: white;
}
.hvr-sweep-to-bottom:hover:before,
.hvr-sweep-to-bottom:focus:before,
.hvr-sweep-to-bottom:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

/* Sweep To Top */
.hvr-sweep-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-top:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-top:hover,
.hvr-sweep-to-top:focus,
.hvr-sweep-to-top:active {
  color: white;
}
.hvr-sweep-to-top:hover:before,
.hvr-sweep-to-top:focus:before,
.hvr-sweep-to-top:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

/* Bounce To Right */
.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-right:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
  color: white;
}
.hvr-bounce-to-right:hover:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Left */
.hvr-bounce-to-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-left:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-left:hover,
.hvr-bounce-to-left:focus,
.hvr-bounce-to-left:active {
  color: white;
}
.hvr-bounce-to-left:hover:before,
.hvr-bounce-to-left:focus:before,
.hvr-bounce-to-left:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Bottom */
.hvr-bounce-to-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-bottom:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-bottom:hover,
.hvr-bounce-to-bottom:focus,
.hvr-bounce-to-bottom:active {
  color: white;
}
.hvr-bounce-to-bottom:hover:before,
.hvr-bounce-to-bottom:focus:before,
.hvr-bounce-to-bottom:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Top */
.hvr-bounce-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-top:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-top:hover,
.hvr-bounce-to-top:focus,
.hvr-bounce-to-top:active {
  color: white;
}
.hvr-bounce-to-top:hover:before,
.hvr-bounce-to-top:focus:before,
.hvr-bounce-to-top:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Radial Out */
.hvr-radial-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-radial-out:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-radial-out:hover,
.hvr-radial-out:focus,
.hvr-radial-out:active {
  color: white;
}
.hvr-radial-out:hover:before,
.hvr-radial-out:focus:before,
.hvr-radial-out:active:before {
  -webkit-transform: scale(2);
  transform: scale(2);
}

/* Radial In */
.hvr-radial-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  background: #2098d1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-radial-in:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e1e1e1;
  border-radius: 100%;
  -webkit-transform: scale(2);
  transform: scale(2);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-radial-in:hover,
.hvr-radial-in:focus,
.hvr-radial-in:active {
  color: white;
}
.hvr-radial-in:hover:before,
.hvr-radial-in:focus:before,
.hvr-radial-in:active:before {
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* Rectangle In */
.hvr-rectangle-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #2098d1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-rectangle-in:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e1e1e1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-rectangle-in:hover,
.hvr-rectangle-in:focus,
.hvr-rectangle-in:active {
  color: white;
}
.hvr-rectangle-in:hover:before,
.hvr-rectangle-in:focus:before,
.hvr-rectangle-in:active:before {
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* Rectangle Out */
.hvr-rectangle-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-rectangle-out:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-rectangle-out:hover,
.hvr-rectangle-out:focus,
.hvr-rectangle-out:active {
  color: white;
}
.hvr-rectangle-out:hover:before,
.hvr-rectangle-out:focus:before,
.hvr-rectangle-out:active:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* Shutter In Horizontal */
.hvr-shutter-in-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #2098d1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-in-horizontal:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e1e1e1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-in-horizontal:hover,
.hvr-shutter-in-horizontal:focus,
.hvr-shutter-in-horizontal:active {
  color: white;
}
.hvr-shutter-in-horizontal:hover:before,
.hvr-shutter-in-horizontal:focus:before,
.hvr-shutter-in-horizontal:active:before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

/* Shutter Out Horizontal */
.hvr-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-out-horizontal:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-out-horizontal:hover,
.hvr-shutter-out-horizontal:focus,
.hvr-shutter-out-horizontal:active {
  color: white;
}
.hvr-shutter-out-horizontal:hover:before,
.hvr-shutter-out-horizontal:focus:before,
.hvr-shutter-out-horizontal:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* Shutter In Vertical */
.hvr-shutter-in-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #2098d1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-in-vertical:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e1e1e1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-in-vertical:hover,
.hvr-shutter-in-vertical:focus,
.hvr-shutter-in-vertical:active {
  color: white;
}
.hvr-shutter-in-vertical:hover:before,
.hvr-shutter-in-vertical:focus:before,
.hvr-shutter-in-vertical:active:before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

/* Shutter Out Vertical */
.hvr-shutter-out-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-out-vertical:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-out-vertical:hover,
.hvr-shutter-out-vertical:focus,
.hvr-shutter-out-vertical:active {
  color: white;
}
.hvr-shutter-out-vertical:hover:before,
.hvr-shutter-out-vertical:focus:before,
.hvr-shutter-out-vertical:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

/* BORDER TRANSITIONS */
/* Border Fade */
.hvr-border-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-border-fade:hover,
.hvr-border-fade:focus,
.hvr-border-fade:active {
  box-shadow: inset 0 0 0 4px #2098d1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

/* Hollow */
.hvr-hollow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-hollow:hover,
.hvr-hollow:focus,
.hvr-hollow:active {
  background: none;
}

/* Trim */
.hvr-trim {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-trim:before {
  content: '';
  position: absolute;
  border: white solid 4px;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.hvr-trim:hover:before,
.hvr-trim:focus:before,
.hvr-trim:active:before {
  opacity: 1;
}

/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
.hvr-ripple-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-ripple-out:before {
  content: '';
  position: absolute;
  border: #e1e1e1 solid 6px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.hvr-ripple-out:hover:before,
.hvr-ripple-out:focus:before,
.hvr-ripple-out:active:before {
  -webkit-animation-name: hvr-ripple-out;
  animation-name: hvr-ripple-out;
}

/* Ripple In */
@-webkit-keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}
@keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}
.hvr-ripple-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-ripple-in:before {
  content: '';
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.hvr-ripple-in:hover:before,
.hvr-ripple-in:focus:before,
.hvr-ripple-in:active:before {
  -webkit-animation-name: hvr-ripple-in;
  animation-name: hvr-ripple-in;
}

/* Outline Out */
.hvr-outline-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-outline-out:before {
  content: '';
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}
.hvr-outline-out:hover:before,
.hvr-outline-out:focus:before,
.hvr-outline-out:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}

/* Outline In */
.hvr-outline-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-outline-in:before {
  pointer-events: none;
  content: '';
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: -16px;
  right: -16px;
  bottom: -16px;
  left: -16px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}
.hvr-outline-in:hover:before,
.hvr-outline-in:focus:before,
.hvr-outline-in:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  opacity: 1;
}

/* Round Corners */
.hvr-round-corners {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: border-radius;
  transition-property: border-radius;
}
.hvr-round-corners:hover,
.hvr-round-corners:focus,
.hvr-round-corners:active {
  border-radius: 1em;
}

/* Underline From Left */
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before,
.hvr-underline-from-left:focus:before,
.hvr-underline-from-left:active:before {
  right: 0;
}

/* Underline From Center */
.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-center:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-center:hover:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}

/* Underline From Right */
.hvr-underline-from-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-right:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-right:hover:before,
.hvr-underline-from-right:focus:before,
.hvr-underline-from-right:active:before {
  left: 0;
}

/* Overline From Left */
.hvr-overline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-left:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  top: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-left:hover:before,
.hvr-overline-from-left:focus:before,
.hvr-overline-from-left:active:before {
  right: 0;
}

/* Overline From Center */
.hvr-overline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-center:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  top: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-center:hover:before,
.hvr-overline-from-center:focus:before,
.hvr-overline-from-center:active:before {
  left: 0;
  right: 0;
}

/* Overline From Right */
.hvr-overline-from-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-right:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  top: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-right:hover:before,
.hvr-overline-from-right:focus:before,
.hvr-overline-from-right:active:before {
  left: 0;
}

/* Reveal */
.hvr-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-reveal:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-color: #2098d1;
  border-style: solid;
  border-width: 0;
  -webkit-transition-property: border-width;
  transition-property: border-width;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-reveal:hover:before,
.hvr-reveal:focus:before,
.hvr-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  border-width: 4px;
}

/* Underline Reveal */
.hvr-underline-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-reveal:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-reveal:hover:before,
.hvr-underline-reveal:focus:before,
.hvr-underline-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* Overline Reveal */
.hvr-overline-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.hvr-overline-reveal:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-reveal:hover:before,
.hvr-overline-reveal:focus:before,
.hvr-overline-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* SHADOW/GLOW TRANSITIONS */
/* Glow */
.hvr-glow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-glow:hover,
.hvr-glow:focus,
.hvr-glow:active {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* Shadow */
.hvr-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-shadow:hover,
.hvr-shadow:focus,
.hvr-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

/* Grow Shadow */
.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.hvr-grow-shadow:hover,
.hvr-grow-shadow:focus,
.hvr-grow-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Box Shadow Outset */
.hvr-box-shadow-outset {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-box-shadow-outset:hover,
.hvr-box-shadow-outset:focus,
.hvr-box-shadow-outset:active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

/* Box Shadow Inset */
.hvr-box-shadow-inset {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-box-shadow-inset:hover,
.hvr-box-shadow-inset:focus,
.hvr-box-shadow-inset:active {
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}

/* Float Shadow */
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(
    center,
    ellipse,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0) 80%
  );
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0) 80%
  );
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.hvr-float-shadow:hover,
.hvr-float-shadow:focus,
.hvr-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.hvr-float-shadow:hover:before,
.hvr-float-shadow:focus:before,
.hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

/* Shadow Radial */
.hvr-shadow-radial {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-shadow-radial:before,
.hvr-shadow-radial:after {
  pointer-events: none;
  position: absolute;
  content: '';
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  height: 5px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.hvr-shadow-radial:before {
  bottom: 100%;
  background: -webkit-radial-gradient(
    50% 150%,
    ellipse,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 80%
  );
  background: radial-gradient(
    ellipse at 50% 150%,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 80%
  );
}
.hvr-shadow-radial:after {
  top: 100%;
  background: -webkit-radial-gradient(
    50% -50%,
    ellipse,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 80%
  );
  background: radial-gradient(
    ellipse at 50% -50%,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 80%
  );
}
.hvr-shadow-radial:hover:before,
.hvr-shadow-radial:focus:before,
.hvr-shadow-radial:active:before,
.hvr-shadow-radial:hover:after,
.hvr-shadow-radial:focus:after,
.hvr-shadow-radial:active:after {
  opacity: 1;
}

/* SPEECH BUBBLES */
/* Bubble Top */
.hvr-bubble-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-bubble-top:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  left: calc(50% - 10px);
  top: 0;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e1e1e1 transparent;
}
.hvr-bubble-top:hover:before,
.hvr-bubble-top:focus:before,
.hvr-bubble-top:active:before {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

/* Bubble Right */
.hvr-bubble-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-bubble-right:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  top: calc(50% - 10px);
  right: 0;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e1e1e1;
}
.hvr-bubble-right:hover:before,
.hvr-bubble-right:focus:before,
.hvr-bubble-right:active:before {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

/* Bubble Bottom */
.hvr-bubble-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-bubble-bottom:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  left: calc(50% - 10px);
  bottom: 0;
  border-width: 10px 10px 0 10px;
  border-color: #e1e1e1 transparent transparent transparent;
}
.hvr-bubble-bottom:hover:before,
.hvr-bubble-bottom:focus:before,
.hvr-bubble-bottom:active:before {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

/* Bubble Left */
.hvr-bubble-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-bubble-left:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  top: calc(50% - 10px);
  left: 0;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e1e1e1 transparent transparent;
}
.hvr-bubble-left:hover:before,
.hvr-bubble-left:focus:before,
.hvr-bubble-left:active:before {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

/* Bubble Float Top */
.hvr-bubble-float-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-top:before {
  position: absolute;
  z-index: -1;
  content: '';
  left: calc(50% - 10px);
  top: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e1e1e1 transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-top:hover,
.hvr-bubble-float-top:focus,
.hvr-bubble-float-top:active {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
.hvr-bubble-float-top:hover:before,
.hvr-bubble-float-top:focus:before,
.hvr-bubble-float-top:active:before {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

/* Bubble Float Right */
.hvr-bubble-float-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-right:before {
  position: absolute;
  z-index: -1;
  top: calc(50% - 10px);
  right: 0;
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e1e1e1;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-right:hover,
.hvr-bubble-float-right:focus,
.hvr-bubble-float-right:active {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
.hvr-bubble-float-right:hover:before,
.hvr-bubble-float-right:focus:before,
.hvr-bubble-float-right:active:before {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

/* Bubble Float Bottom */
.hvr-bubble-float-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-bottom:before {
  position: absolute;
  z-index: -1;
  content: '';
  left: calc(50% - 10px);
  bottom: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #e1e1e1 transparent transparent transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-bottom:hover,
.hvr-bubble-float-bottom:focus,
.hvr-bubble-float-bottom:active {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.hvr-bubble-float-bottom:hover:before,
.hvr-bubble-float-bottom:focus:before,
.hvr-bubble-float-bottom:active:before {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}

/* Bubble Float Left */
.hvr-bubble-float-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-left:before {
  position: absolute;
  z-index: -1;
  content: '';
  top: calc(50% - 10px);
  left: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e1e1e1 transparent transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-bubble-float-left:hover,
.hvr-bubble-float-left:focus,
.hvr-bubble-float-left:active {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.hvr-bubble-float-left:hover:before,
.hvr-bubble-float-left:focus:before,
.hvr-bubble-float-left:active:before {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

/* ICONS */
/* Icon Back */
.hvr-icon-back {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
.hvr-icon-back .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-back:hover .hvr-icon,
.hvr-icon-back:focus .hvr-icon,
.hvr-icon-back:active .hvr-icon {
  -webkit-transform: translateX(-4px);
  transform: translateX(-4px);
}

/* Icon Forward */
.hvr-icon-forward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
.hvr-icon-forward .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-forward:hover .hvr-icon,
.hvr-icon-forward:focus .hvr-icon,
.hvr-icon-forward:active .hvr-icon {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

/* Icon Down */
@-webkit-keyframes hvr-icon-down {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
  75% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@keyframes hvr-icon-down {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
  75% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
/* Icon Down */
.hvr-icon-down {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-down .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-down:hover .hvr-icon,
.hvr-icon-down:focus .hvr-icon,
.hvr-icon-down:active .hvr-icon {
  -webkit-animation-name: hvr-icon-down;
  animation-name: hvr-icon-down;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Up */
@-webkit-keyframes hvr-icon-up {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
  75% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
@keyframes hvr-icon-up {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
  75% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
/* Icon Up */
.hvr-icon-up {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-up .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-up:hover .hvr-icon,
.hvr-icon-up:focus .hvr-icon,
.hvr-icon-up:active .hvr-icon {
  -webkit-animation-name: hvr-icon-up;
  animation-name: hvr-icon-up;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Spin */
.hvr-icon-spin {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-spin .hvr-icon {
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.hvr-icon-spin:hover .hvr-icon,
.hvr-icon-spin:focus .hvr-icon,
.hvr-icon-spin:active .hvr-icon {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

/* Icon Drop */
@-webkit-keyframes hvr-icon-drop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51%,
  100% {
    opacity: 1;
  }
}
@keyframes hvr-icon-drop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51%,
  100% {
    opacity: 1;
  }
}
/* Icon Drop */
.hvr-icon-drop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-drop .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-drop:hover .hvr-icon,
.hvr-icon-drop:focus .hvr-icon,
.hvr-icon-drop:active .hvr-icon {
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-animation-name: hvr-icon-drop;
  animation-name: hvr-icon-drop;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Icon Fade */
.hvr-icon-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-fade .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: color;
  transition-property: color;
}
.hvr-icon-fade:hover .hvr-icon,
.hvr-icon-fade:focus .hvr-icon,
.hvr-icon-fade:active .hvr-icon {
  color: #0f9e5e;
}

/* Icon Float Away */
@-webkit-keyframes hvr-icon-float-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }
}
@keyframes hvr-icon-float-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }
}
/* Icon Float Away */
.hvr-icon-float-away {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-float-away .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.hvr-icon-float-away:hover .hvr-icon,
.hvr-icon-float-away:focus .hvr-icon,
.hvr-icon-float-away:active .hvr-icon {
  -webkit-animation-name: hvr-icon-float-away;
  animation-name: hvr-icon-float-away;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Sink Away */
@-webkit-keyframes hvr-icon-sink-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
  }
}
@keyframes hvr-icon-sink-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
  }
}
/* Icon Sink Away */
.hvr-icon-sink-away {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-sink-away .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.hvr-icon-sink-away:hover .hvr-icon,
.hvr-icon-sink-away:focus .hvr-icon,
.hvr-icon-sink-away:active .hvr-icon {
  -webkit-animation-name: hvr-icon-sink-away;
  animation-name: hvr-icon-sink-away;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* Icon Grow */
.hvr-icon-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-grow .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-grow:hover .hvr-icon,
.hvr-icon-grow:focus .hvr-icon,
.hvr-icon-grow:active .hvr-icon {
  -webkit-transform: scale(1.3) translateZ(0);
  transform: scale(1.3) translateZ(0);
}

/* Icon Shrink */
.hvr-icon-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-shrink .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-shrink:hover .hvr-icon,
.hvr-icon-shrink:focus .hvr-icon,
.hvr-icon-shrink:active .hvr-icon {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

/* Icon Pulse */
@-webkit-keyframes hvr-icon-pulse {
  25% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes hvr-icon-pulse {
  25% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
.hvr-icon-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-pulse .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-pulse:hover .hvr-icon,
.hvr-icon-pulse:focus .hvr-icon,
.hvr-icon-pulse:active .hvr-icon {
  -webkit-animation-name: hvr-icon-pulse;
  animation-name: hvr-icon-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Icon Pulse Grow */
@-webkit-keyframes hvr-icon-pulse-grow {
  to {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
@keyframes hvr-icon-pulse-grow {
  to {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
.hvr-icon-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-pulse-grow .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-pulse-grow:hover .hvr-icon,
.hvr-icon-pulse-grow:focus .hvr-icon,
.hvr-icon-pulse-grow:active .hvr-icon {
  -webkit-animation-name: hvr-icon-pulse-grow;
  animation-name: hvr-icon-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Icon Pulse Shrink */
@-webkit-keyframes hvr-icon-pulse-shrink {
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes hvr-icon-pulse-shrink {
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
.hvr-icon-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-icon-pulse-shrink .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-pulse-shrink:hover .hvr-icon,
.hvr-icon-pulse-shrink:focus .hvr-icon,
.hvr-icon-pulse-shrink:active .hvr-icon {
  -webkit-animation-name: hvr-icon-pulse-shrink;
  animation-name: hvr-icon-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

/* Icon Push */
@-webkit-keyframes hvr-icon-push {
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@keyframes hvr-icon-push {
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
.hvr-icon-push {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-push .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-push:hover .hvr-icon,
.hvr-icon-push:focus .hvr-icon,
.hvr-icon-push:active .hvr-icon {
  -webkit-animation-name: hvr-icon-push;
  animation-name: hvr-icon-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Pop */
@-webkit-keyframes hvr-icon-pop {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@keyframes hvr-icon-pop {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
.hvr-icon-pop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-pop .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-pop:hover .hvr-icon,
.hvr-icon-pop:focus .hvr-icon,
.hvr-icon-pop:active .hvr-icon {
  -webkit-animation-name: hvr-icon-pop;
  animation-name: hvr-icon-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Bounce */
.hvr-icon-bounce {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-bounce .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-bounce:hover .hvr-icon,
.hvr-icon-bounce:focus .hvr-icon,
.hvr-icon-bounce:active .hvr-icon {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}

/* Icon Rotate */
.hvr-icon-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-rotate .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-rotate:hover .hvr-icon,
.hvr-icon-rotate:focus .hvr-icon,
.hvr-icon-rotate:active .hvr-icon {
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}

/* Icon Grow Rotate */
.hvr-icon-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-grow-rotate .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-grow-rotate:hover .hvr-icon,
.hvr-icon-grow-rotate:focus .hvr-icon,
.hvr-icon-grow-rotate:active .hvr-icon {
  -webkit-transform: scale(1.5) rotate(12deg);
  transform: scale(1.5) rotate(12deg);
}

/* Icon Float */
.hvr-icon-float {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-float .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-float:hover .hvr-icon,
.hvr-icon-float:focus .hvr-icon,
.hvr-icon-float:active .hvr-icon {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

/* Icon Sink */
.hvr-icon-sink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-sink .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-sink:hover .hvr-icon,
.hvr-icon-sink:focus .hvr-icon,
.hvr-icon-sink:active .hvr-icon {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}

/* Icon Bob */
@-webkit-keyframes hvr-icon-bob {
  0% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  50% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
@keyframes hvr-icon-bob {
  0% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  50% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
@-webkit-keyframes hvr-icon-bob-float {
  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
@keyframes hvr-icon-bob-float {
  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
.hvr-icon-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-bob .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-bob:hover .hvr-icon,
.hvr-icon-bob:focus .hvr-icon,
.hvr-icon-bob:active .hvr-icon {
  -webkit-animation-name: hvr-icon-bob-float, hvr-icon-bob;
  animation-name: hvr-icon-bob-float, hvr-icon-bob;
  -webkit-animation-duration: 0.3s, 1.5s;
  animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
  animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Icon Hang */
@-webkit-keyframes hvr-icon-hang {
  0% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  50% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@keyframes hvr-icon-hang {
  0% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  50% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-webkit-keyframes hvr-icon-hang-sink {
  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@keyframes hvr-icon-hang-sink {
  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
.hvr-icon-hang {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-hang .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-hang:hover .hvr-icon,
.hvr-icon-hang:focus .hvr-icon,
.hvr-icon-hang:active .hvr-icon {
  -webkit-animation-name: hvr-icon-hang-sink, hvr-icon-hang;
  animation-name: hvr-icon-hang-sink, hvr-icon-hang;
  -webkit-animation-duration: 0.3s, 1.5s;
  animation-duration: 0.3s, 1.5s;
  -webkit-animation-delay: 0s, 0.3s;
  animation-delay: 0s, 0.3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

/* Icon Wobble Horizontal */
@-webkit-keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.hvr-icon-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-wobble-horizontal .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-wobble-horizontal:hover .hvr-icon,
.hvr-icon-wobble-horizontal:focus .hvr-icon,
.hvr-icon-wobble-horizontal:active .hvr-icon {
  -webkit-animation-name: hvr-icon-wobble-horizontal;
  animation-name: hvr-icon-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Wobble Vertical */
@-webkit-keyframes hvr-icon-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  33.3% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes hvr-icon-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  33.3% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.hvr-icon-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-wobble-vertical .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-wobble-vertical:hover .hvr-icon,
.hvr-icon-wobble-vertical:focus .hvr-icon,
.hvr-icon-wobble-vertical:active .hvr-icon {
  -webkit-animation-name: hvr-icon-wobble-vertical;
  animation-name: hvr-icon-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* Icon Buzz */
@-webkit-keyframes hvr-icon-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
@keyframes hvr-icon-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
.hvr-icon-buzz {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-buzz .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-buzz:hover .hvr-icon,
.hvr-icon-buzz:focus .hvr-icon,
.hvr-icon-buzz:active .hvr-icon {
  -webkit-animation-name: hvr-icon-buzz;
  animation-name: hvr-icon-buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Icon Buzz Out */
@-webkit-keyframes hvr-icon-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
@keyframes hvr-icon-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
.hvr-icon-buzz-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-buzz-out .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-buzz-out:hover .hvr-icon,
.hvr-icon-buzz-out:focus .hvr-icon,
.hvr-icon-buzz-out:active .hvr-icon {
  -webkit-animation-name: hvr-icon-buzz-out;
  animation-name: hvr-icon-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* CURLS */
/* Curl Top Left */
.hvr-curl-top-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-curl-top-left:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(135deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#000000');
  /*For IE7-8-9*/
  z-index: 1000;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.hvr-curl-top-left:hover:before,
.hvr-curl-top-left:focus:before,
.hvr-curl-top-left:active:before {
  width: 25px;
  height: 25px;
}

/* Curl Top Right */
.hvr-curl-top-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-curl-top-right:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  right: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(225deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.hvr-curl-top-right:hover:before,
.hvr-curl-top-right:focus:before,
.hvr-curl-top-right:active:before {
  width: 25px;
  height: 25px;
}

/* Curl Bottom Right */
.hvr-curl-bottom-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-curl-bottom-right:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  bottom: 0;
  right: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(315deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
  box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.hvr-curl-bottom-right:hover:before,
.hvr-curl-bottom-right:focus:before,
.hvr-curl-bottom-right:active:before {
  width: 25px;
  height: 25px;
}

/* Curl Bottom Left */
.hvr-curl-bottom-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
}
.hvr-curl-bottom-left:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  bottom: 0;
  left: 0;
  background: white;
  /* IE9 */
  background: linear-gradient(45deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
  box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.hvr-curl-bottom-left:hover:before,
.hvr-curl-bottom-left:focus:before,
.hvr-curl-bottom-left:active:before {
  width: 25px;
  height: 25px;
}

/*
*******************
* CIRCLE IMAGES
*******************
*/
.circle-image {
  display: block;
  margin: 0 auto;
  border: 3px solid #cccccc;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.rounded-image {
  display: block;
  margin: 0 auto;
  border: 3px solid #cccccc;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.red-border {
  border-color: #c0392b;
  background-color: #e74c3c;
}

.green-border {
  border-color: #27ae60;
  background-color: #2ecc71;
}

.grey-border {
  border-color: #bdc3c7;
  background-color: #ecf0f1;
}

/*
*******************
* RESPONSIVE IMAGES
*******************
*/
/* Hides smaller image on large screen */
.sm-display-img {
  display: none;
}

@media all and (max-width: 950px) {
  /* Hides larger image on small screen */
  .lg-display-img {
    display: none;
  }

  /* Shows smaller image on small screen */
  .sm-display-img {
    display: block;
    margin: 0 auto;
  }
}

/*
*******************
* 16:9 RESPONSIVE VIDEOS
*******************
*/
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-top: 20px;
}

.videoWrapper video,
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

#transcriptArea {
  width: 100% !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#transcriptBtn {
  display: block;
  margin: 0 auto;
  margin-top: -1px;
  margin-bottom: 20px;
  border: none;
  background-color: transparent;
}

/*
*******************
* TRANSCRIPT
*******************
*/
#transcriptArea,
#transcriptArea2,
#transcriptArea3,
#transcriptArea4,
#transcriptArea5,
.transcriptArea {
  display: none;
  height: 100px;
  width: 632px;
  -webkit-box-shadow: inset 0 0 10px rgba(153, 153, 153, 1);
  box-shadow: inset 0 0 10px rgba(153, 153, 153, 1);
  margin: 0px auto;
  padding: 0px 10px 0px 10px;
  overflow: auto;
  font-size: 10pt;
  resize: vertical;
}

.transcriptArea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.transcriptButton {
  background: transparent;
  border: none;
  position: absolute;
  left: 0;
  right: 0;
}

.transcriptButton:focus {
  outline: none;
}

#transcriptBtn,
#transcriptBtn2,
#transcriptBtn3,
#transcriptBtn4,
#transcriptBtn5,
.transcriptButton {
  margin-left: auto;
  margin-right: auto;
  z-index: 100;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/transcript_btn.png');
  background-position: top center;
  background-repeat: no-repeat;
  width: 138px;
  height: 17px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  font-size: 9pt;
  text-align: center;
}

div.pdfScript {
  float: left;
  margin-right: 20px;
  margin-bottom: 15px;
  margin-top: 10px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/pdf-icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
  height: 32px;
  width: 32px;
  cursor: pointer;
}

/*
*******************
* OLD MULTIPLE-CHOICE, OLD DRAG AND DROP, OLD FLASHCARDS
*******************
*/
div.multiple_choice,
div.drag_drop,
div.flash_cards {
  position: relative;
  width: 480px;
  margin: 0 auto;
  padding: 15px 15px 75px;
  border-bottom-right-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  border-bottom-left-radius: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-top-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  border-top-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -webkit-box-shadow: 3px 3px 6px #888;
  box-shadow: 3px 3px 6px #888;
  background-color: #ffa;
}

div.multiple_choice div.question,
div.summary,
div.drag_drop div.question,
div.flash_cards div.question {
  display: none;
}

div.multiple_choice div.question:first-child,
div.drag_drop div.question:first-child,
div.flash_cards div.question:first-child {
  display: block;
}

div.multiple_choice h2,
div.drag_drop h2,
div.flash_cards h2 {
  margin-top: 0;
  font-size: 110%;
}

div.multiple_choice div.responses,
div.multiple_choice div.responsesMA {
  width: 450px;
  margin-right: 10px;
}

div.multiple_choice div.responses ol,
div.multiple_choice div.responsesMA ol {
  list-style-type: upper-alpha;
  margin: 0;
  padding-left: 30px;
}

div.multiple_choice div.responses ol li,
div.multiple_choice div.responsesMA ol li {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
  cursor: pointer;
  color: #944;
}

div.multiple_choice div.finished {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 91px;
  height: 39px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/check_btn.png');
  cursor: pointer;
}

.failList {
  list-style-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/fail.png') !important;
  color: #b31212 !important;
}

.correctList {
  list-style-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/checkmark.png') !important;
  color: #009245 !important;
}

div.multiple_choice p {
  font-size: 16px;
}

div.multiple_choice div.answers p {
  display: none;
  margin: 5px;
  text-align: left;
  font-size: 16px;
}

div.answers {
  -webkit-box-shadow: inset 0px 0px 8px #c6c67f;
  box-shadow: inset 0px 0px 8px #c6c67f;
  border: thin solid #c6c682;
  width: 465px;
  margin: 5px auto 0px auto;
  height: 110px;
  overflow: auto;
  background-color: #f6f6a6;
  display: none;
}

.scrollable_text {
  min-width: 800px;
  -webkit-box-shadow: 3px 3px 6px #888;
  box-shadow: 3px 3px 6px #888;
  position: relative;
  margin: 0 auto;
  padding: 15px;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
  /* Firefox 3.6 and earlier */
  background: #f0ffff;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#eaffff),
    to(#b9dbff)
  );
  background: -o-linear-gradient(top, #eaffff 0%, #b9dbff 100%);
  background: linear-gradient(to bottom, #eaffff 0%, #b9dbff 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaffff', endColorstr='#b9dbff', GradientType=0);
  /* IE6-9 */
}

.scrollable_text div.textbox {
  min-width: 300px;
  height: 450px;
  padding: 10px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  border: thin solid #ccc;
}

.scrollable_text div.multiple_choice {
  float: right;
  width: 430px;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-left: 20px;
  padding-top: 0px;
  background: none;
}

.scrollable_text div.multiple_choice div.responses ol li {
  color: #253d81;
}

.scrollable_text div.multiple_choice div.question div.answers {
  width: 410px;
  background-color: #fff;
  -webkit-box-shadow: inset 0px 0px 5px #ccc;
  box-shadow: inset 0px 0px 5px #ccc;
  border: thin solid #ccc;
}

.beginMC {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_begin_icon.png');
  width: 161px;
  height: 60px;
  cursor: pointer;
  margin: 20px auto;
}

div.multiple_choice div.next {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 91px;
  height: 39px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_next2.png');
  cursor: pointer;
  visibility: hidden;
}

div.drag_drop div.next,
div.flash_cards div.next {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 91px;
  height: 39px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_next2.png');
  cursor: pointer;
}

div.multiple_choice div.review,
div.drag_drop div.review,
div.flash_cards div.review {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 91px;
  height: 39px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_review.png');
  cursor: pointer;
}

div.multiple_choice div.responsesMA ol li.selected {
  color: #d60;
  list-style-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/selected.png');
}

div.drag_drop div.check {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 91px;
  height: 39px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_check.png');
  cursor: pointer;
}

div.multiple_choice div.correct {
  width: 26px;
  height: 30px;
  position: absolute;
  left: -7px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/checkmark.png');
}

div.multiple_choice div.incorrect {
  width: 24px;
  height: 30px;
  position: absolute;
  left: -7px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/fail.png');
}

div.drag_drop div.correct {
  width: 26px;
  height: 30px;
  position: absolute;
  left: 205px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/checkmark.png');
  background-repeat: no-repeat;
  padding: 5px 0 0 30px;
  font-weight: bold;
}

div.drag_drop div.incorrect {
  width: 24px;
  height: 30px;
  position: absolute;
  left: 205px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/fail.png');
  background-repeat: no-repeat;
  padding: 5px 0 0 30px;
  font-weight: bold;
}

div.flash_cards div.response {
  width: 38px;
  height: 70px;
  position: absolute;
  top: 200px;
  background-repeat: no-repeat;
  z-index: 0;
  display: none;
  opacity: 0.5;
  cursor: pointer;
}

div.auto_height div.response {
  top: 100px;
}

div.flash_cards div.correct {
  left: 100px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_checkmark.png');
}

div.flash_cards div.incorrect {
  left: 370px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_fail.png');
}

div.drag_drop img.fraction {
  margin: 0 auto 30px auto;
  display: block;
}

div.drag_drop div.blocks,
div.drag_drop div.targets {
  margin: 15px 0;
  text-align: center;
}

div.drag_drop div.block {
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 2px solid black;
  background-color: #8781bd;
  margin: 0 7px;
  cursor: pointer;
}

div.drag_drop div.number {
  display: inline-block;
  width: 60px;
  height: 60px;
  margin: 0 7px;
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

div.targets div.target {
  display: inline-block;
  width: 90px;
  height: 60px;
  margin: 0 30px;
  border: 2px dashed #a8a8a8;
  vertical-align: middle;
  font-weight: bold;
  padding-top: 30px;
}

table.fraction_strip {
  background-color: #eeecff;
  border: 2px solid #a8a8a8;
  border-collapse: collapse;
  margin: 0 auto 20px auto;
}

table.fraction_strip td {
  width: 58px;
  height: 60px;
  border: 2px dashed #a8a8a8;
}

div.flash_cards div.card {
  width: 200px;
  height: 325px;
  margin: 0 auto;
  padding: 10px;
  background-color: white;
  border-bottom-right-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  border-bottom-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-top-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  border: 10px solid #840736;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

div.flash_cards div.card_back {
  display: none;
  cursor: default;
  padding-left: 0;
  padding-right: 0;
  border-left-width: 0;
  border-right-width: 0;
}

.group:after {
  visibility: hidden;
  display: block;
  content: '';
  clear: both;
  height: 0;
}

* html .group {
  zoom: 1;
}

/* IE6 */
*:first-child + html .group {
  zoom: 1;
}

/*
*******************
* TIP BOX
*******************
*/
div.tip {
  float: right;
  width: 250px;
  margin: 0px 0px 20px 20px;
  padding: 15px;
  border-bottom-right-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  border-bottom-left-radius: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-top-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  border-top-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -webkit-box-shadow: 3px 3px 6px #888;
  box-shadow: 3px 3px 6px #888;
  background: #ffe850
    url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/tip.png')
    no-repeat 215px 10px;
}

div.tip h2 {
  margin-top: 0;
}

div.tip p {
  margin: 0;
}

/*
*******************
* EXAMPLE TEXT
*******************
*/
.whExcerpt {
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #ffffd2;
  border: medium solid #efefc2;
  padding: 10px 25px;
  border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.whExcerptBlue {
  margin-left: auto;
  margin-right: auto;
  border-color: #277cb4;
  background-color: #e6f5fe;
}

/*
*******************
* OUTSIDE READING
*******************
*/
.outside-reading {
  background: rgba(214, 0, 0, 0.1);
  border-left: 15px solid rgba(214, 0, 0, 0.9);
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 5px 5px 10px 5px;
}

.or-heading {
  margin: 7px;
  margin-left: 20px;
  padding-top: 5px;
}

.or-heading:before {
  content: '';
  display: inline-block;
  padding-right: 10px;
  height: 35px;
  width: 45px;
  background-size: 35 45px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/book.svg');
  background-repeat: no-repeat;
}

.outside-reading p {
  margin: 10px 20px;
}

/*
*******************
* PROPERTY HEADER
*******************
*/
div.mathPropArea {
  border: 2px solid #933;
  border-radius: 20px;
  -moz-border-radius: 10px;
  /* Firefox 3.6 and earlier */
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  /* IE10 Consumer Preview */
  /* Mozilla Firefox */
  /* Opera */
  /* Webkit (Safari/Chrome 10) */
  /* Webkit (Chrome 11+) */
  /* W3C Markup, IE10 Release Preview */
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(75%, #ffffff),
    to(#ffdede)
  );
  background-image: -o-linear-gradient(top, #ffffff 75%, #ffdede 100%);
  background-image: linear-gradient(to bottom, #ffffff 75%, #ffdede 100%);
}

.propHeader {
  background-color: #fff;
  color: #933;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  width: 300px;
  position: relative;
  top: -48px;
  margin-bottom: -35px;
}

/*
*******************
* PROMPT BANNERS
*******************
*/
h1.banner {
  font-size: 150%;
  color: black;
  padding: 20px 40px 0px 40px;
}

.promptInternetActivity {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/promptInternet.png');
  width: 305px;
  padding-left: 75px;
}

.promptInteractiveActivity {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/promptInteractive.png');
  width: 355px;
  padding-left: 53px;
}

.promptBanner {
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  background-position: 10px 0px;
  background-repeat: no-repeat;
  height: 50px;
  padding-top: 10px;
  z-index: 5;
  position: relative;
  color: #253d81;
  font-weight: bold;
  font-size: 30px;
}

.promptLine {
  color: #253d81;
  margin-top: -35px;
  margin-bottom: 40px;
  border-style: solid;
  border-width: 2px;
  border-color: #253d81;
}

.promptDiscussion {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/promptDiscussion.png');
  width: 195px;
  padding-left: 55px;
}

.promptJournal {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/promptJournal.png');
  width: 155px;
  padding-left: 70px;
}

.promptReadTextbook {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/promptReadTextbook.png');
  width: 270px;
  padding-left: 65px;
}

.promptAnswerKey {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/promptAnswerKey.png');
  width: 295px;
  padding-left: 45px;
}

.promptTurnItIn {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/promptTurnItIn.png');
  width: 165px;
  padding-left: 55px;
}

.promptVocabulary {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/promptVocabulary.png');
  width: 355px;
  padding-left: 55px;
}

.writingPrompt {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/promptWriting.png');
  padding-left: 70px;
}

.writingBanner {
  width: 275px;
}

.dbqBanner {
  width: 392px;
}

/*
*******************
* SECTION BANNERS
*******************
*/
/* Math Banners */
.MTH-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 10px 0px;
}

/* Foreign Language Banners */
.FL-section-banner {
  color: #0b476f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 15px;
}

.FL-section-banner h2 {
  margin-left: 10px;
}

.FL-section-banner img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* English Banners */
.ENG-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 10px 0px;
}

.ENG-banner h1 {
  color: #324555;
  padding-left: 15px;
}

.ENG-banner img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 75px;
}

/* Science Banners */
.SCI-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 10px 0px;
}

.SCI-banner h1 {
  color: #0a2463;
  padding-left: 30px;
  padding-right: 15px;
  border-bottom: 3px solid #fb8b24;
  margin-left: -25px;
}

.SCI-banner img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 90px;
  z-index: 20;
}

/* Social Studies Banners */
.SS-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 10px 0px;
}

.SS-banner h1 {
  color: #001021;
  padding-left: 15px;
}

.SS-banner img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 65px;
}

/* PE & Health Banners */
.PE-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 10px 0px;
}

.PE-banner h1 {
  color: #084c61;
  padding-left: 5px;
}

.PE-banner img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 75px;
}

/* Science Banners */
.LA-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 10px 0px;
}

.LA-banner h1 {
  color: #fbfbff;
  padding: 10px 25px 10px 60px;
  background: #875d86;
  margin-left: -50px;
  margin-top: 15px;
  border-bottom-right-radius: 20px;
  text-shadow: 1px 1px 3px #431941;
}

.LA-banner img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100px;
  z-index: 20;
}

/* Elective Banners */
.ELEC-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 10px 0px;
}

.ELEC-banner h1 {
  color: #032b43;
  padding-left: 5px;
}

.ELEC-banner img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 75px;
}

/*
*******************
* TIMER
*******************
*/
#timer {
  width: 250px;
  height: 128px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/timer_display.png');
  float: right;
}

#timerCount {
  font-size: 45px;
  font-weight: bold;
  color: #006;
  position: absolute;
  margin-top: 9px;
  margin-left: 51px;
  width: 150px;
  text-align: center;
}

#timerMsgs {
  font-size: 18px;
  position: absolute;
  margin-left: 76px;
  margin-top: 81px;
  visibility: hidden;
  text-align: center;
  width: 100px;
}

#timerWatch {
  position: absolute;
  margin-left: 22px;
  margin-top: 71px;
  cursor: pointer;
}

#timerReset {
  position: absolute;
  margin-left: 180px;
  margin-top: 71px;
  cursor: pointer;
}

/*
*******************
* AUDIO PLAYER
*******************
*/
.audioP {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}

/*
*******************
* REMEDIATION
*******************
*/
#shadowBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #000;
  opacity: 0.7;
  text-align: left;
  display: none;
}

.remDisplay {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 200;
  margin-top: -250px;
  margin-left: -425px;
  width: 800px;
  padding: 20px;
  -webkit-box-shadow: inset 0px 0px 10px #333;
  box-shadow: inset 0px 0px 10px #333;
  background-color: #fff;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/rem_display.png');
  background-position: top;
  background-repeat: repeat-x;
  border: medium solid #eee;
  display: none;
}

.remDisplay h3 {
  margin-top: 0px;
  margin-bottom: 30px;
  color: #fff;
}

.remDisplay li {
  margin-bottom: 10px;
}

.remDisplay #remBack {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/rem_backbtn.png');
  width: 80px;
  height: 40px;
  cursor: pointer;
  float: left;
  display: none;
}

.remDisplay #remBack:hover {
  opacity: 0.8;
}

.remDisplay #remNext {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/rem_nextbtn.png');
  width: 80px;
  height: 40px;
  cursor: pointer;
  float: right;
}

.remDisplay #remNext:hover {
  opacity: 0.8;
}

.remContent {
  display: none;
}

div.remCurrent {
  display: block;
}

#remClose {
  float: right;
  cursor: pointer;
  opacity: 0.7;
}

#remClose:hover {
  opacity: 1;
}

#resultAdvice {
  margin-top: 40px;
}

/*
*******************
* TABULAR SELF CHECK
*******************
*/
table.tabularselfcheck thead tr td.header {
  background-color: #003268;
  color: white;
  font-weight: bold;
  font-size: 115%;
}

div.tabularselfcheck table tbody tr td.header {
  background-color: #003366;
  color: white;
  font-weight: bold;
  font-size: 105%;
}

div.tabularselfcheck table tbody tr td.q {
  background-color: #eeeeee;
  cursor: pointer;
}

div.tabularselfcheck table tbody tr td.answer {
  background-color: #cccccc;
}

/*
*******************
* HIGH SCHOOL CONVERSION INTERACTIVES
*******************
*/
.audiopath {
  display: none;
}

.dd_question {
  display: none;
}

#next_elem {
  float: right;
  margin-left: 15px;
  width: 111px;
  height: 47px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/elem_nextbtn.png');
  cursor: pointer;
  visibility: hidden;
}

#dd_retry {
  margin: 20px auto;
  width: 110px;
  height: 47px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/ordering_elem_retrybtn.png');
  cursor: pointer;
}

.ewhiteFont {
  color: #fff;
}

#shadowBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #000;
  opacity: 0.7;
  text-align: left;
  display: none;
}

.popScreen {
  position: absolute;
  top: 0px;
  left: 50%;
  z-index: 200;
  margin-left: -385px;
  width: 720px;
  padding: 20px;
  -webkit-box-shadow: inset 0px 0px 10px rgba(51, 51, 51, 1);
  box-shadow: inset 0px 0px 10px rgba(51, 51, 51, 1);
  background-color: #fff;
  background-position: top;
  background-repeat: repeat-x;
  border: medium solid #eee;
  display: none;
}

.popVidHolder {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 200;
  margin-left: -415px;
  width: 800px;
  padding: 20px 10px 10px 20px;
  -webkit-box-shadow: inset 0px 0px 10px rgba(51, 51, 51, 1);
  box-shadow: inset 0px 0px 10px rgba(51, 51, 51, 1);
  background-color: #fff;
  background-position: top;
  background-repeat: repeat-x;
  border: medium solid #eee;
  display: none;
}

.popClose {
  float: right;
  cursor: pointer;
  opacity: 0.7;
  margin-top: 10px;
}

.interactiveHolder {
  width: 715px;
  border: 2px solid #888;
  border-radius: 20px;
  margin: 20px auto;
  padding: 20px;
  background-color: #eee;
  background-repeat: repeat;
}

/*
*******************
* THE NAME GAME
*******************
*/
/* All other relevant classes in "Word Work" classes */
.dragdrop2_elem {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/02HS.png') !important;
  background-position: top !important;
  border-radius: 20px;
  width: 580px;
  height: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border: thin solid #000;
}

#intHS2_title {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/title_no02HS.png')
      no-repeat center 20px,
    url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/directions_cover.png')
      repeat;
  width: 580px;
  height: 550px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 5000;
  cursor: pointer;
  border-radius: 20px;
}

#intHS2_title div {
  margin-top: 375px;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
}

.dd2_drag {
  position: relative;
  min-width: 115px;
  min-height: 20px;
  max-width: 160px;
  max-height: 150px;
  border: thin solid #000;
  background-color: #fff;
  display: inline-block;
  padding: 5px 30px 5px 5px;
  margin: 10px;
  cursor: pointer !important;
  z-index: 100;
  -webkit-box-shadow: 2px 2px 6px #000;
  box-shadow: 2px 2px 6px #000;
}

.dd2_images {
  vertical-align: middle;
  width: 300px;
}

.dd2img {
  position: relative;
  min-height: 100px;
  width: 250px;
  text-align: left;
  vertical-align: central;
}

.dd2_images img {
  border: 5px solid #fff;
  -webkit-box-shadow: 2px 2px 8px #333;
  box-shadow: 2px 2px 8px #333;
  margin: 10px;
}

.dd2fb {
  left: 0px !important;
  border-top: thin solid #000;
  border-bottom: thin solid #000;
  width: 540px !important;
}

.dd2next {
  position: absolute;
  bottom: 10px;
  right: 20px;
}

/*
*******************
* PROZE CLOZE
*******************
*/
.dragdrop4_elem {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/04bgHS2.png') !important;
  background-position: top !important;
  border-radius: 20px;
  width: 601px;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

#intHS4_title {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/title_no04HS2.png')
      no-repeat center 80px,
    url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/directions_cover.png')
      repeat;
  width: 602px;
  height: 500px;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 5000;
  cursor: pointer;
  border-radius: 20px;
  border: thin solid #000;
}

#intHS4_title div {
  margin-top: 300px;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
}

.dd_question {
  display: none;
}

.dd4_image {
  height: 150px;
  vertical-align: middle;
}

.dd4_image img {
  border: 5px solid #fff;
}

.dd4_highlight {
  position: relative;
  width: 520px;
  background-color: #fffcbb;
  padding: 10px 10px 15px 10px;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 2px #333;
  box-shadow: 2px 2px 2px #333;
  line-height: 30px;
}

.dd4_drag {
  position: relative;
  width: 115px;
  height: 20px;
  border: thin solid #000;
  background-color: #fff;
  display: inline-block;
  padding: 5px 30px 5px 5px;
  margin: 10px;
  cursor: pointer !important;
  z-index: 100;
}

.dd4_audio {
  z-index: 3000;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 30px;
  height: 30px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/audio_button_s.png');
  background-repeat: no-repeat;
}

.dd4_drop {
  width: 150px;
  height: 30px;
  border-bottom: thin solid #000;
  border-left: thin dashed #888;
  border-top: thin dashed #888;
  border-right: thin dashed #888;
  display: inline-block;
  margin-bottom: -5px;
}

#dd4_btns {
  position: relative;
  top: 0px;
  right: 10px;
}

#next_elem {
  float: right;
  margin-left: 15px;
  width: 111px;
  height: 47px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/elem_nextbtn.png');
  cursor: pointer;
  visibility: hidden;
}

#ddSummary {
  display: none;
}

.speech4 {
  top: 120px;
  right: 70px;
}

#dd_retry {
  margin: 200px auto 10px auto;
  width: 110px;
  height: 47px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/ordering_elem_retrybtn.png');
  cursor: pointer;
}

.dd4_result,
.dd2_result {
  position: absolute;
  bottom: 20px;
  right: 20px;
  visibility: hidden;
}

.dd4_result.correct,
.dd2_result.correct {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/correct_check.png');
  background-repeat: no-repeat;
  width: 26px;
  height: 30px;
}

.dd4_result.incorrect,
.dd2_result.incorrect {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/incorrect_x.png');
  background-repeat: no-repeat;
  width: 24px;
  height: 30px;
}

.audiopath {
  display: none;
}

.dd4_feedbackC,
.dd4_feedbackI {
  text-align: center;
  background-color: #fff;
  width: 561px;
  padding: 20px;
  position: absolute;
  top: 55px;
  left: 0px;
  visibility: hidden;
  z-index: 1000;
  cursor: pointer;
  border-top: thin solid #000;
  border-bottom: thin solid #000;
}

/*
*******************
* THE BASKET GAME
*******************
*/
.dragdrop8_elem {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/HS_08bg2.png') !important;
  background-repeat: no-repeat;
  border: thin solid #000;
  border-radius: 20px;
  background-position: top center !important;
  background-color: #f2b266 !important;
  position: relative;
  padding: 20px;
  width: 650px !important;
  margin: 20px auto;
}

#intHS8_title {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/title_no08HS_2.png')
      no-repeat center 80px,
    url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/directions_cover.png')
      repeat;
  width: 690px;
  height: 615px;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 5000;
  cursor: pointer;
  border-radius: 20px;
  border: thin solid #000;
}

#intHS8_title div {
  margin-top: 360px;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
}

.dd8_drop {
  width: 150px;
  height: 30px;
  border: thin dashed #fff;
  margin-bottom: 5px;
}

.dd8_drag {
  position: relative;
  width: 115px;
  height: 20px;
  border: thin solid #000;
  background-color: #fff;
  float: left;
  padding: 5px 30px 5px 5px;
  margin: 10px;
  cursor: pointer;
  z-index: 100;
}

.dd8_audio {
  z-index: 3000;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 30px;
  height: 30px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/audio_button_s.png');
  background-repeat: no-repeat;
}

.dd8_result {
  position: absolute;
  bottom: -2px;
  right: -30px;
  z-index: 99;
  visibility: hidden;
}

.dd8_result.correct {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/correct_check_traced.png');
  background-position: center;
  background-repeat: no-repeat;
  width: 30px;
  height: 34px;
}

.dd8_result.incorrect {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/incorrect_x_traced.png');
  background-position: center;
  background-repeat: no-repeat;
  width: 28px;
  height: 34px;
}

.draggableTray {
  padding: 10px 10px 10px 86px;
  background-color: #fe9;
  border: thin solid #864f17;
  margin-left: -27px;
  margin-right: -27px;
}

.bucketTable {
  margin-left: 6px;
  margin-top: 30px;
  width: 638px;
}

#category1,
#category2,
#category3 {
  width: 175px;
  height: 200px;
  padding-top: 10px;
  display: inline-block;
}

#dd8_btns {
  position: relative;
  margin-top: 10px;
  top: 0px;
  right: 10px;
}

#dd8_checkanswers {
  float: right;
  margin-left: 15px;
  width: 110px;
  height: 47px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/ordering_elem_checkbtn.png');
  cursor: pointer;
}

#dd8_reset {
  float: right;
  margin-left: 15px;
  width: 110px;
  height: 47px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/ordering_elem_retrybtn.png');
  cursor: pointer;
}

.dd8_feedbackC,
.dd8_feedbackI {
  position: absolute;
  z-index: 8000;
  top: 150px;
  left: 0;
  cursor: pointer;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/directions_cover.png');
  background-repeat: repeat;
  width: 690px;
  height: 100px;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  visibility: hidden;
  border-top: thin solid #000;
  border-bottom: thin solid #000;
  font-weight: bold;
}

.cfb_speech.speech8 {
  top: 70px;
  right: 81px;
  padding: 10px;
  display: block !important;
}

.ifb_speech.speech8 {
  top: 30px;
  right: 81px;
  padding: 10px;
  display: block !important;
}

/*
*******************
* TAKE THE WHEEL
*******************
*/
.dragdrop9_elem {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/09HScar.png') !important;
  background-position: top !important;
  width: 700px;
  margin-left: auto;
  margin-right: auto;
  height: 530px;
  border-radius: 20px;
  position: relative;
  padding-top: 20px;
  border: thin solid #888;
}

.dd9endbg {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/09HSbg.png') !important;
}

#intHS9_title {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/title_no09HS.png')
      no-repeat center 80px,
    url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/directions_cover.png')
      repeat;
  width: 700px;
  height: 550px;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 5000;
  cursor: pointer;
  border-radius: 20px;
  border: thin solid #000;
}

#intHS9_title div {
  margin-top: 450px;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
}

.dd9_table {
  margin-top: -10px;
}

.dd9_drop {
  position: relative;
  width: 150px;
  height: 150px;
  float: right;
  border: 3px dashed #fff;
}

.frame9 {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 140px;
  height: 140px;
}

.dd9_drag {
  float: left;
  cursor: pointer;
  margin: 5px 15px;
  border: 3px solid #fff;
  width: 150px;
  height: 150px;
  background-color: #fff;
  text-align: center;
  -webkit-box-shadow: 0px 0px 5px #000;
  box-shadow: 0px 0px 5px #000;
}

.dd9img_goal {
  float: left;
  cursor: pointer;
  margin: 0px 5px 20px 5px;
  border: 3px solid #ff6;
  width: 150px;
  height: 150px;
  background-color: #ff6;
  text-align: center;
  -webkit-box-shadow: 0px 0px 5px #000;
  box-shadow: 0px 0px 5px #000;
}

.dd9_target_group {
  position: relative;
  width: 350px;
  padding: 10px;
  margin: 0px auto 30px auto;
}

td.dd9_draggables {
  width: 560px;
}

.dd9_instructions {
  padding-bottom: 5px;
  height: 50px;
  width: 450px;
  vertical-align: middle;
  font-weight: bold;
  background-color: #eee;
  border: thin solid #000;
  /*box-shadow: 2px 2px 2px #000;*/
}

.dd9_audio {
  z-index: 100;
  position: absolute;
  left: -3px;
  bottom: -3px;
  width: 30px;
  height: 30px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/audio_button_s.png');
  background-repeat: no-repeat;
  cursor: pointer;
}

.dd9_feedbackC,
.dd9_feedbackI {
  text-align: center;
  background-color: #fff;
  width: 660px;
  padding: 20px;
  position: absolute;
  top: 300px;
  left: 0px;
  visibility: hidden;
  z-index: 1000;
  cursor: pointer;
  border-top: thin solid #000;
  border-bottom: thin solid #000;
}

.dd9_result {
  position: absolute;
  bottom: 2px;
  right: 2px;
  z-index: 99;
}

.dd9_result.correct {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/correct_check_traced.png');
  background-position: center;
  background-repeat: no-repeat;
  width: 30px;
  height: 34px;
}

.dd9_result.incorrect {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/incorrect_x_traced.png');
  background-position: center;
  background-repeat: no-repeat;
  width: 28px;
  height: 34px;
}

/*
*******************
* SAVE THE BURGER
*******************
*/
div.burgergame_elem {
  position: relative;
  width: 650px;
  height: 450px;
  padding: 25px;
  margin: 10px auto;
  border: thin solid #000;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/burger0.png');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-color: #f7f7ff;
  -webkit-text-stroke: 0px #000;
  border-radius: 20px;
}

#intHS10_title {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/title_no010_2.png')
      no-repeat center 80px,
    url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/directions_cover.png')
      repeat;
  width: 700px;
  height: 500px;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 5000;
  cursor: pointer;
  border-radius: 20px;
  border: thin solid #000;
}

#intHS10_title div {
  margin-top: 375px;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
}

.burgerPuzzle {
  margin-left: -25px;
  margin-top: -24px;
  width: 700px;
  border-bottom: 2px solid #aaa;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/directions_cover.png');
  background-repeat: repeat;
  display: none;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.burgerPuzzle td {
  vertical-align: middle;
}

.burgerPuzzle td.puzzle10 {
  text-align: center;
  width: 100%;
  border-left: 2px solid #aaa;
}

.clueHolder10 {
  position: relative;
  min-width: 150px;
  height: 150px;
}

.clueHolder10 img {
  cursor: pointer;
}

.burgergame_Audio {
  z-index: 100;
  position: absolute;
  top: 15px;
  left: 15px;
  width: 30px;
  height: 30px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/audio_button_s.png');
  background-repeat: no-repeat;
  cursor: pointer;
}

.burgergame_bigAudio {
  z-index: 100;
  width: 72px;
  height: 72px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/audio_button.png');
  background-repeat: no-repeat;
  cursor: pointer;
}

.puzzleEntry10 {
  display: none;
}

.letterSpace10 {
  display: inline-block;
  width: 30px;
  height: 28px;
  border-bottom: thin solid #000;
  margin: 5px 5px;
  text-align: center;
  vertical-align: middle;
  font-size: 20pt;
}

.letterGrid {
  width: 215px;
  position: absolute;
  top: 185px;
  left: 20px;
}

.letterChoice {
  width: 30px;
  height: 35px;
  font-size: 20pt;
  font-weight: bold;
  margin: 5px 5px 11px 0px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.guessTracker {
  position: absolute;
  bottom: 10px;
  right: 125px;
  color: #fff;
  -webkit-text-stroke: 1px #fff;
  font-size: 20pt;
}

.burger_feedbackC,
.burger_feedbackI {
  text-align: center;
  background-color: #fff;
  width: 660px;
  height: 125px;
  padding: 20px;
  position: absolute;
  top: 150px;
  left: 0px;
  visibility: hidden;
  z-index: 1000;
  border-top: thin solid #000;
  border-bottom: thin solid #000;
}

.burger_reset {
  width: 110px;
  height: 47px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/ordering_elem_retrybtn.png');
  margin: 30px auto 0px auto;
  cursor: pointer;
}

.burger_next {
  width: 111px;
  height: 47px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/elem_nextbtn.png');
  margin: 30px auto 0px auto;
  cursor: pointer;
}

.letterSpace10.green {
  color: #0c3;
}

/*
*******************
* WHOSE SHOES?
*******************
*/
.dragdrop11_elem {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/011HS2.png')
    no-repeat top center !important;
  border-radius: 20px;
  min-height: 450px;
  width: 670px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

#intHS11_title {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/title_no011HS.png')
      no-repeat center 80px,
    url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/directions_cover.png')
      repeat;
  width: 700px;
  height: 450px;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 5000;
  cursor: pointer;
  border-radius: 20px;
  border: thin solid #000;
}

#intHS11_title div {
  margin-top: 375px;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
}

.q11 {
  margin-left: 10px;
}

.dd11_target {
  background-color: #9acafa;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/011HS_shoes1.png');
  background-repeat: no-repeat;
  background-position: -2px 35px;
  /*left top*/
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  width: 315px;
  height: 200px;
  margin-bottom: 20px;
  margin-top: 10px;
  border-radius: 20px;
  border: 2px solid #737393;
}

.redTarg {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/011HS_shoes2.png') !important;
}

.dd11_target h2 {
  margin: 5px 0px;
  padding: 0px;
}

.dd11_drag {
  float: left;
  cursor: pointer;
  margin: 5px 15px;
  border: 3px solid #fff;
  width: 125px;
  height: 125px;
  background-color: #fff;
  text-align: center;
  -webkit-box-shadow: 0px 0px 5px #000;
  box-shadow: 0px 0px 5px #000;
}

.dd11_drag.correct {
  cursor: pointer;
}

.dd11_drop {
  position: relative;
  width: 125px;
  height: 125px;
  border: 3px dashed #fff;
  display: inline-block;
  margin: 0px 5px 10px 5px;
}

.frame11 {
  position: absolute;
  bottom: 20px;
  left: 5px;
  width: 115px;
  height: 115px;
}

.draggables11 {
  margin-bottom: 20px;
}

#dd11_checkanswers {
  float: right;
  margin-left: 15px;
  width: 110px;
  height: 47px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/ordering_elem_checkbtn.png');
  cursor: pointer;
}

.dd11_feedbackC,
.dd11_feedbackI {
  text-align: center;
  background-color: #fff;
  width: 630px;
  padding: 20px;
  position: absolute;
  top: 260px;
  left: 0px;
  visibility: hidden;
  z-index: 1000;
  cursor: pointer;
  border-bottom: thin solid #000;
  border-top: thin solid #000;
}

#whose_btns {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

/*
*******************
* WISE ABOUT WORDS
*******************
*/
.dragdrop12_elem {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/wisewordsHS.png') !important;
  background-position: top !important;
  border-radius: 20px;
  border: thin solid #888;
  background-color: #000;
  height: 560px;
  width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

#intHS12_title {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/title_no012HS.png')
      no-repeat center 80px,
    url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/directions_cover.png')
      repeat;
  width: 700px;
  height: 560px;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 5000;
  cursor: pointer;
  border-radius: 20px;
  border: thin solid #000;
}

#intHS12_title div {
  margin-top: 375px;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
}

.dd12_target {
  background-color: #90acdd;
  border: 2px solid #041545;
  text-align: center;
  width: 315px;
  margin: 0px auto 15px auto;
  padding-top: 15px;
  border-radius: 15px;
}

.draggables12 {
  width: 500px;
  margin: 0px auto 22px auto;
}

.fb12 {
  left: 0px !important;
  top: 340px !important;
  width: 660px;
}

.directions12 {
  background-color: #fff;
  border-radius: 10px;
  border: thin solid #041545;
  color: #041545;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  width: 500px;
  padding: 15px;
  margin: 20px auto 38px auto;
}

.dd12btns {
  position: absolute !important;
  top: 500px !important;
  right: 10px !important;
}

/*
*******************
* STACK THE DECK
*******************
*/
.cardgame_elem {
  position: relative;
  width: 625px;
  margin: 10px auto 20px auto;
  padding: 25px;
  border: thin solid #000;
  background-color: #fff;
  -webkit-text-stroke: 0px #000;
  border-radius: 20px;
}

#intHS13_title {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/title_no013.png')
      no-repeat center 80px,
    url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/directions_cover.png')
      repeat;
  width: 675px;
  height: 500px;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 5000;
  cursor: pointer;
  border-radius: 20px;
  border: thin solid #000;
}

#intHS13_title div {
  margin-top: 375px;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
}

.cardgame13_elem {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/cardgame13_background.png') !important;
  background-position: top !important;
  background-repeat: repeat !important;
  padding: 20px !important;
  height: 410px !important;
  border-radius: 20px;
}

.cardsbg {
  position: absolute;
  top: 70px;
  left: 44px;
  width: 256px;
  height: 384px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/cardgameCARD1.png');
  background-repeat: no-repeat;
}

.wholecard {
  width: 209px;
  height: 310px;
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/cardQMark.png')
    no-repeat center;
  background-color: #fff;
  float: left;
  position: relative;
  border-radius: 10px;
  border: thin solid #000;
  padding: 20px;
}

.cardface {
  text-align: center;
}

.cardface img {
  border: thin solid #000;
}

.cardfooter {
  text-align: center;
}

.cardfooter p {
  margin-top: 0px;
}

.cardmatchArea {
  position: relative;
  width: 310px;
  height: 235px;
  background-color: #ddd;
  float: right;
  border: thin solid #000;
  z-index: 10;
}

.cardmatch {
  width: 115px;
  height: 160px;
  position: relative;
  border-radius: 10px;
  padding: 10px;
  margin-top: 10px;
  border: thin solid #000;
  background-color: #fff;
}

.cardmatchText {
  cursor: pointer;
  height: 125px;
}

.cardmatch img {
  cursor: pointer;
  border: thin solid #000;
}

.cardmatch_result {
  position: absolute;
  bottom: 2px;
  right: 2px;
  z-index: 99;
}

.cardmatch_result.correct {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/correct_check_traced.png');
  background-position: center;
  background-repeat: no-repeat;
  width: 30px;
  height: 34px;
}

.cardmatch_result.incorrect {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/incorrect_x_traced.png');
  background-position: center;
  background-repeat: no-repeat;
  width: 28px;
  height: 34px;
}

.card_audio13 {
  z-index: 100;
  position: absolute;
  bottom: 10px;
  left: 55px;
  width: 30px;
  height: 30px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/audio_button_s.png');
  background-repeat: no-repeat;
  cursor: pointer;
}

#cardgame_btns {
  position: relative;
  top: 5px;
  right: 0px;
  margin-top: 10px;
}

#cardgame_feedback {
  position: absolute;
  top: 90px;
  right: 45px;
  width: 290px;
  height: 100px;
  padding: 10px;
  background-color: #fff;
  border: thin solid #000;
  z-index: 9;
  font-size: 16px;
}

#correct_cardfb {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/13feedback1.png');
  background-repeat: no-repeat;
  position: absolute;
  right: 430px;
  top: 115px;
  z-index: 10;
  width: 153px;
  height: 219px;
}

#incorrect_cardfb {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/13feedback2.png');
  background-repeat: no-repeat;
  position: absolute;
  right: 430px;
  top: 120px;
  z-index: 10;
  width: 150px;
  height: 219px;
}

.cardfbC,
.cardfbI {
  display: none;
}

.speech13 {
  top: 120px;
  right: 90px;
}

#card_decoration {
  width: 305px;
  height: 137px;
  position: absolute;
  bottom: 26px;
  left: 180px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/stackthedeck_cardsbtm.png');
}

/*
*******************
* BALLOON POP
*******************
*/
.dartgame_containment {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/bg016HS2.png') !important;
  background-position: bottom center !important;
  background-color: #86dff1;
  height: 560px !important;
  width: 688px;
  border-radius: 20px;
  border: thin solid #000;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

#intHS16_title {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/title_no016.png')
      no-repeat center 80px,
    url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/directions_cover.png')
      repeat;
  width: 688px;
  height: 560px;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 4900;
  cursor: pointer;
  border-radius: 20px;
  border: thin solid #000;
}

#intHS16_title div {
  margin-top: 375px;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
}

div.dartgame_elem {
  position: relative;
  width: 700px;
  margin: 10px auto 20px auto;
  padding: 25px;
  border: thin solid #000;
  background-color: #fff;
}

div.dart {
  position: absolute;
  z-index: 200;
  top: 340px;
  left: 15px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/dart.png');
  background-repeat: no-repeat;
  width: 152px;
  height: 42px;
  cursor: pointer;
}

.dartClicked {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/dartClicked.png') !important;
  width: 152px !important;
  height: 106px !important;
  top: 300px !important;
}

.dartThrowHand {
  width: 106px;
  height: 92px;
  position: absolute;
  top: 340px;
  left: 35px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/dartThrowHand.png');
  visibility: hidden;
}

div.balloon {
  position: absolute;
  z-index: 199;
  background-repeat: no-repeat;
  width: 112px;
  height: 90px;
  padding-top: 50px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

div.balloon span {
  position: absolute;
  text-shadow: 0px 0px 6px #000, 0px 0px 6px #000;
}

div.balloons p {
  margin-top: 0px;
}

.balloonBang {
  position: absolute;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/bang.png');
  width: 110px;
  height: 110px;
  background-repeat: no-repeat;
  left: 0px;
  top: 0px;
  visibility: hidden;
}

.balloonBlue {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/balloon1.png') !important;
}

.balloonOrange {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/balloon2.png') !important;
}

.balloonCyan {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/balloon3.png') !important;
}

.balloonYellow {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/balloon4.png') !important;
}

.balloonRed {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/balloon5.png') !important;
}

.result16 {
  position: absolute;
  top: 15px;
  right: 43px;
  z-index: 99;
}

.result16.correct {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/correct_check_traced.png');
  background-position: top center;
  background-repeat: no-repeat;
  width: 30px;
  height: 34px;
}

.result16.incorrect {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/incorrect_x_traced.png');
  background-position: top center;
  background-repeat: no-repeat;
  width: 28px;
  height: 34px;
}

#dartgame_retry {
  margin: 100px auto 10px auto;
  width: 110px;
  height: 47px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/ordering_elem_retrybtn.png');
  cursor: pointer;
}

.dartgame_Audio {
  z-index: 100;
  position: absolute;
  top: 10px;
  left: 43px;
  width: 30px;
  height: 30px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/audio_button_s.png');
  background-repeat: no-repeat;
  cursor: pointer;
}

.exampleImg16 {
  position: relative;
  cursor: pointer;
  height: 125px;
}

.dartSummary {
  margin-top: 250px;
}

.dartDirections {
  width: 688px;
  min-height: 55px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/directions_cover.png');
  background-repeat: repeat;
  border-bottom: 2px solid #aaa;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/*
*******************
* INQUIRY DIARY
*******************
*/
.noun_containment {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/024HS_book.png') !important;
  background-position: top !important;
  background-color: #cfebff;
  height: 500px;
  border-radius: 20px;
  width: 680px;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border: thin solid #888;
}

#intHS24_title {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/title_no24.png')
      no-repeat center 20px,
    url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/directions_cover.png')
      repeat;
  width: 720px;
  height: 540px;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 5000;
  cursor: pointer;
  border-radius: 20px;
  border: thin solid #000;
}

#intHS24_title div {
  margin-top: 480px;
  font-weight: bold;
  text-align: center;
  font-size: 20px;
}

table.noun_identification {
  background-color: transparent;
  width: 650px;
  margin-top: 20px;
  margin-right: 6px;
}

table.noun_identification td {
  width: 325px;
}

table.noun_identification thead tr {
  padding-bottom: 2px;
}

table.noun_identification thead td {
  color: #000;
  padding: 0px 10px 4px 10px;
  font-size: 120%;
  font-weight: bold;
}

table.noun_identification tbody td {
  padding: 0px 10px;
  color: black;
}

table.noun_identification tbody td input[type='text'] {
  width: 95%;
  padding: 4px;
  position: relative;
  display: inline-block;
  margin-right: 2px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  z-index: 1;
}

table.noun_identification div.noun_input {
  position: relative;
  margin-top: -1px;
  margin-bottom: 15px;
}

table.noun_identification .result {
  position: absolute;
  right: 10px;
  width: 26px;
  height: 30px;
  top: 0px;
  opacity: 1;
  margin: 0px;
  float: right;
  z-index: 2;
}

table.noun_identification .correct {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/checkmark.png');
  background-repeat: no-repeat;
}

table.noun_identification .incorrect {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/fail.png');
  background-repeat: no-repeat;
  background-position: right;
  background-origin: padding-box;
}

.n24_sentence,
.n24_match,
#n24_headercol1,
#n24_headercol2 {
  display: none;
}

#noun_feedback {
  visibility: hidden;
  position: absolute;
  z-index: 8000;
  top: 45px;
  left: 0px;
  cursor: pointer;
  background-color: #fff;
  width: 720px;
  height: 100px;
  text-align: center;
  border-bottom: thin solid #000;
  border-top: thin solid #000;
}

#noun_btns {
  position: relative;
  top: -6px;
  right: 30px;
}

#noun_spaceholder {
  height: 30px;
}

#noun_checkanswers {
  float: right;
  margin-left: 15px;
  width: 110px;
  height: 47px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/ordering_elem_checkbtn.png');
  background-size: contain;
  cursor: pointer;
}

#noun_reset {
  float: right;
  margin-left: 15px;
  width: 110px;
  height: 47px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/ordering_elem_retrybtn.png');
  background-size: contain;
  cursor: pointer;
}

#noun_helpbtn {
  float: right;
  margin-left: 15px;
  width: 48px;
  height: 47px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/helpbtn.png');
  cursor: pointer;
}

/*
*******************
* CUSTOMIZED PIECES
*******************
*/
.endPoints {
  position: absolute;
  z-index: 10000;
  width: 4px;
  height: 4px;
  left: 20px;
  top: 20px;
  border: thin solid #000;
  background-color: #ff0;
  cursor: pointer;
}

/*
*******************
* CODE EDITOR - FOR BASIC WEB DESIGN COURSE
*******************
*/
table.codeBlock {
  background-color: #2a2a2a;
  font-size: 17px;
}

table.codeBlock td {
  border: thin solid #fff;
  color: #fff;
  font-family: 'Courier New', Courier, monospace;
}

table.codeBlock .notcode {
  font-family: Arial, Helvetica, sans-serif, sans-serif;
}

table.codeBlock .red {
  color: #e58;
}

table.codeBlock .yellow {
  color: #ee8;
}

table.codeBlock .green {
  color: #9f0;
}

table.codeBlock .blue {
  color: #6df;
}

table.codeBlock .gray {
  color: #888;
}

table.codeBlock .purple {
  color: #c5f;
  font-weight: bold;
}

@font-face {
  src: url('https://s3.amazonaws.com/cms.accelerate-ed.com/fonts/digital-7.ttf');
  font-family: 'go_digital';
}

@font-face {
  src: url('https://s3.amazonaws.com/cms.accelerate-ed.com/fonts/FTLTLT.TTF');
  font-family: 'footlight';
}

/*
*******************
* CROSSWORD PUZZLE
*******************
*/
#crossword {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/cubes_bg_bl.png');
  padding: 26px;
  margin: auto;
  max-width: 1000px;
  border: thin solid #555;
  background-color: #6cabd6;
}

#crossword.correct {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/cubes_bg_gr.png');
  background-color: #37b989;
}

#crossword table:nth-of-type(1) {
  margin-right: -3px;
}

#crossword table tr td {
  vertical-align: top;
}

#crossword .clueBlock {
  margin-left: 26px;
  padding: 10px;
  background-color: #fff;
  border: thin solid #555;
}

.clueBlock p {
  margin: 0px;
}

.clueBlock ol {
  margin-top: 5px;
}

.clueBlock ol li {
  margin-top: 5px;
  cursor: pointer;
}

.clueBlock .checkPuzz {
  width: 120px;
  margin: 10px auto;
  padding: 10px;
  background-color: #4c8bb6;
  color: #fff;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

#crossword .crosswordPuzz {
  border-collapse: collapse;
}

#crossword .crosswordPuzz tr td {
  width: 24px;
  height: 24px;
  min-height: 24px;
  min-width: 24px;
  padding: 0px;
  border: thin solid #555;
  vertical-align: middle;
  text-align: center;
  background-color: #fff;
  position: relative;
}

#crossword .crosswordPuzz .clueLabel {
  position: absolute;
  top: 0;
  left: 2px;
  font-size: 11px;
}

#crossword .crosswordPuzz tr td input {
  width: 26px;
  height: 26px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  border: none;
}

#crossword .crosswordPuzz tr td input.light {
  background-color: #ff8 !important;
}

#crossword .crosswordPuzz tr td input.wrong {
  background-color: #fc6;
}

#crossword .crosswordPuzz tr td.empty {
  background-color: transparent;
  border: none;
}

#crossword #crossBank {
  padding: 10px;
  background-color: #fff;
  border: thin solid #555;
  margin: auto;
  width: 100%;
  margin-top: 5px;
}

#crossword #crossBank th {
  text-align: left;
  padding: 10px;
  vertical-align: top;
  font-weight: bold;
  border-bottom: thin solid #555;
}

#crossword #crossBank td {
  text-align: left;
  padding: 10px;
}

#puzzleAutomator table {
  border-collapse: collapse;
}

#puzzleAutomator table tr td {
  border: thin solid #555;
  background-color: #fff;
}

#puzzleAutomator table tr td input {
  width: 26px;
  height: 26px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  border: none;
}

#puzzConvert {
  width: 120px;
  margin: 10px 0;
  padding: 10px;
  background-color: #fff;
  color: #4c8bb6;
  border: thin solid #555;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

#puzzleCodeList {
  width: 600px;
  height: 300px;
}

.acrossWord,
.acrossLoc,
.downWord,
.downLoc {
  display: none;
}

#crossword .crossCfb,
#crossword .crossIfb {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 18px -10px;
  background-color: #fff;
}

#crossword .crossCfb {
  display: none;
  color: #37b989;
}

#crossword .crossIfb {
  display: none;
  color: #c14b5d;
}

/*
*******************
* HORIZONTAL TABS
*******************
*/
.AE-tab-pills.card {
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-tab-pills.card .card-header {
  border-radius: calc(var(--interactive-border-radius) - 1px)
    calc(var(--interactive-border-radius) - 1px) 0 0;
  -webkit-border-radius: calc(var(--interactive-border-radius) - 1px)
    calc(var(--interactive-border-radius) - 1px) 0 0;
  -moz-border-radius: calc(var(--interactive-border-radius) - 1px)
    calc(var(--interactive-border-radius) - 1px) 0 0;
  -ms-border-radius: calc(var(--interactive-border-radius) - 1px)
    calc(var(--interactive-border-radius) - 1px) 0 0;
  -o-border-radius: calc(var(--interactive-border-radius) - 1px)
    calc(var(--interactive-border-radius) - 1px) 0 0;
}

.AE-tab-pills .nav-link {
  color: var(--interactive-custom-text-color);
  text-decoration: none;
}

.AE-tab-pills .nav-link:hover,
.AE-tab-pills .nav-link:focus {
  color: var(--interactive-secondary-custom-text-color);
}

.AE-tab-pills .nav-link:active {
  color: var(--interactive-custom-text-color);
}

.AE-tab-pills .nav-pills .active {
  color: #ffffff;
  background: var(--interactive-button-color);
}

.AE-tab-pills .tab-pane {
  background-color: #ffffff;
}

/* Change active tab icon */
.AE-tab-pills .nav-item .nav-link.active i.fas::before {
  content: '\f13a';
}

/*
*******************
* VERTICAL TABS
*******************
*/
.AE-vertical-tab-pills {
  overflow: hidden;
}

.AE-vertical-tab-pills.card {
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-vertical-tab-pills.card .card-header {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 0px;
  border-bottom: 1px solid var(--interactive-border);
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.AE-vertical-tab-pills .row.no-gutters {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.AE-vertical-tab-pills .nav-link {
  color: var(--interactive-custom-text-color);
  text-decoration: none;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 92%;
  margin: 0 auto;
  margin-top: 5px;
  margin-bottom: 5px;
}

.AE-vertical-tab-pills .nav-link:active {
  color: var(--interactive-custom-text-color) !important;
}

.AE-vertical-tab-pills .nav-link:hover,
.AE-vertical-tab-pills .nav-link:focus {
  color: var(--interactive-secondary-custom-text-color);
}

.AE-vertical-tab-pills .nav-link:first-child {
  margin-top: 10px;
}

.AE-vertical-tab-pills .nav-link:last-child {
  margin-bottom: 10px;
}

.AE-vertical-tab-pills .nav-pills .active {
  color: #ffffff;
  background: var(--interactive-button-color);
}

.AE-vertical-tab-pills .tab-pane {
  background-color: #ffffff;
}

/* .AE-vertical-tab-pills .tab-pane p:first-child {
  margin-top: 0px;
} */

.nav-pills .nav-link {
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-vertical-tab-pills .nav .nav-link.active i.fas::before {
  content: '\f13a';
}

/* Media Queries */
@media all and (min-width: 768px) {
  /* Change active tab icon */
  .AE-vertical-tab-pills .nav .nav-link.active i.fas::before {
    content: '\f138';
  }

  .AE-vertical-tab-pills.card .card-header {
    border-bottom: 0px;
    border-right: 1px solid var(--interactive-border);
  }

  .AE-vertical-tab-pills .nav-link {
    width: 86%;
  }
}

/*
*******************
* ACCORDION
*******************
*/

.AE-accordion {
  background-color: transparent;
}

.AE-accordion .btn-link {
  font-size: var(--default-font-size);
  color: var(--interactive-custom-text-color);
}

.AE-accordion .btn-link:hover {
  color: var(--interactive-secondary-custom-text-color);
}

.AE-accordion .card:first-child {
  border-top-left-radius: var(--interactive-border-radius);
  border-top-right-radius: var(--interactive-border-radius);
}

.AE-accordion .card:last-child {
  border-bottom-left-radius: var(--interactive-border-radius);
  border-bottom-right-radius: var(--interactive-border-radius);
}

.AE-accordion .btn-link .fa-caret-down {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.AE-accordion .btn-link.collapsed .fa-caret-down {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/*
*******************
* INTERACTIVE TABLE
*******************
*/
.AE-interactive-table {
  width: 100%;
  border-collapse: collapse;
  position: relative;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
}

.AE-interactive-table td {
  width: auto;
  border: 1px solid var(--interactive-border);
  padding: 15px;
  margin: 0;
  /* line-height: 1.1rem; */
  vertical-align: middle;
}

.AE-interactive-table th {
  position: relative;
  width: auto;
  border: 1px solid var(--interactive-border);
  padding: 0;
  margin: 0;
  /* line-height: 1.1rem; */
  overflow: visible;
  color: var(--interactive-custom-text-color);
  background-color: var(--interactive-background-color);
  text-align: center;
  vertical-align: middle;
}

/* Set no margin or padding for single paragraph. */
.AE-interactive-table td p,
.AE-interactive-table th p {
  margin: 0;
  padding: 0;
}

/* Set top margin for subsequent paragraphs for appropriate spacing. */
.AE-interactive-table td p:not(:first-child),
.AE-interactive-table th p:not(:first-child) {
  margin-top: 1rem;
}

/* Hover state highlight color. */
.halo {
  background-color: var(--interactive-highlighted-item-background-color);
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-transition: 0.4s;
}

/* Button Styles for Interactive Tables */

/* Primary Button Styles */
.AE-interactive-table button,
.AE-interactive-table input[type='button'] {
  margin: 0;
  padding: 15px;
  /* line-height: inherit; */
  border: none;
  width: 100%;
  height: 100%;
  font-size: var(--default-font-size);
  text-align: center;
  display: block;
  font-weight: inherit;
  background-color: transparent;
  color: inherit;
  box-sizing: border-box;
}

/* Style settings of buttons in hover state */
.AE-interactive-table button:hover,
.AE-interactive-table input[type='button']:hover {
  cursor: pointer;
  background: var(--interactive-button-hover-color);
  color: #ffffff;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

/* Style settings of buttons in focus state */
.AE-interactive-table button:focus,
.AE-interactive-table input[type='button']:focus {
  background: var(--interactive-button-hover-color);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

/* Remove inner dotted box from firefox buttons */
.AE-interactive-table button::-moz-focus-inner {
  border: 0;
}

/* These classes set alignment for table cells. */

/* Row headers only */
.th-left tbody th,
.th-left tbody button,
.th-left tbody input {
  text-align: left !important;
}

/* Row and column headers */
.th-left-col th,
.th-left-col button,
.th-left-col input {
  text-align: left !important;
}

/* Row headers only */
.th-right tbody th,
.th-right tbody button,
.th-right tbody input {
  text-align: right !important;
}

/* Row and column headers */
.th-right-col th,
.th-right-col button,
.th-right-col input {
  text-align: right !important;
}

/* Center TDs in Interactive Table */
.AE-interactive-table.td-center td {
  text-align: center !important;
}

/* 
* These styles add horizontal shaded rows (hstripes),
* vertical shaded rows (vstripes), remove horizontal lines (no-hlines),
* and remove vertical lines (no-vlines).
*/
.AE-interactive-table.hstripes tr:nth-child(even) {
  background-color: #d1d1d1;
}

.AE-interactive-table.vstripes td:nth-child(odd) {
  background-color: #d1d1d1;
}

.AE-interactive-table.no-vlines td,
.AE-interactive-table.no-vlines th {
  border-left: none;
  border-right: none;
}

.AE-interactive-table.no-vlines td:last-child,
.AE-interactive-table.no-vlines th:last-child,
.AE-interactive-table.no-vlines th:first-child {
  border-right: 1px solid #9c9583;
}

.AE-interactive-table.no-vlines td:first-child,
.AE-interactive-table.no-vlines th:first-child {
  border-left: 1px solid #9c9583;
}

.AE-interactive-table.no-hlines td,
.AE-interactive-table.no-hlines th {
  border-top: none;
  border-bottom: none;
}

.AE-interactive-table.no-hlines tr:last-child td,
.AE-interactive-table.no-hlines tr:last-child th {
  border-bottom: 1px solid #9c9583;
}

.AE-interactive-table.no-hlines tr:first-child td,
.AE-interactive-table.no-hlines tr:first-child th {
  border-top: 1px solid #9c9583;
}

/*
*******************
* FLIP-BOX
*******************
*/
.flip-box {
  background-color: transparent;
  height: 100%;
  width: 100%;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.flip-box * {
  cursor: pointer;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  -o-transition: transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box.flipped .flip-box-inner {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
}

.flip-box-front,
.flip-box-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
  transform: perspective(1px) translateZ(0);
  -webkit-transform: perspective(1px) translateZ(0);
  -moz-transform: perspective(1px) translateZ(0);
  -ms-transform: perspective(1px) translateZ(0);
  -o-transform: perspective(1px) translateZ(0);
  border: 1px solid var(--interactive-border);
}

.flip-box-front {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background-color: var(--interactive-background-color);
}

.flip-box-front:hover {
  -webkit-box-shadow: var(--interactive-box-shadow);
  box-shadow: var(--interactive-box-shadow);
  transform: scale(1.025);
  -webkit-transform: scale(1.025);
  -moz-transform: scale(1.025);
  -ms-transform: scale(1.025);
  -o-transform: scale(1.025);
}

.flip-box-back {
  background-color: transparent;
  position: absolute;
  transform: rotateX(180deg) translateY(100%);
  -webkit-transform: rotateX(180deg) translateY(100%);
  -moz-transform: rotateX(180deg) translateY(100%);
  -ms-transform: rotateX(180deg) translateY(100%);
  -o-transform: rotateX(180deg) translateY(100%);
  background-color: #dee8f6;
}

.flip-box .solve {
  border-bottom: 2px solid #333;
  padding: 2px 50px;
  background-color: #a9cef4;
}

/*
*******************
* REVEAL ANSWER
*******************
*/
/* Primary Button Styles */
.AE-reveal button,
.AE-reveal select,
.AE-reveal textarea,
.AE-reveal input[type='text'],
.AE-reveal input[type='button'],
.AE-reveal input[type='submit'],
.AE-reveal input[type='reset'],
.AE-reveal input[type='password'],
.AE-reveal a.btn {
  margin: 0 0.6em 0.6em 0;
  padding: 15px;
  /* line-height: 1.6em; */
  border: none;
  max-width: 100%;
  min-width: 50%;
  font-size: var(--default-font-size);
  text-decoration: none;
  text-align: center;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

/* Default color settings of buttons */
.AE-reveal button,
.AE-reveal input[type='button'],
.AE-reveal input[type='submit'],
.AE-reveal input[type='reset'],
.AE-reveal a.btn {
  display: inline-block;
  color: #ffffff;
  background: var(--interactive-button-color);
  font-weight: bold;
}

/* Style settings of buttons in hover and focus state */
.AE-reveal button:hover,
.AE-reveal input[type='button']:hover,
.AE-reveal input[type='submit']:hover,
.AE-reveal a.btn:hover,
.AE-reveal button:focus,
.AE-reveal input[type='button']:focus,
.AE-reveal input[type='submit']:focus,
.AE-reveal a.btn:focus {
  background: var(--interactive-button-hover-color);
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

/* Style settings for small buttons */
.AE-reveal button.btn-small,
.AE-reveal input[type='button'].btn-small,
.AE-reveal input[type='submit'].btn-small,
.AE-reveal a.btn-small {
  font-size: 1rem;
}

/* Style settings for large buttons */
.AE-reveal button.btn-large,
.AE-reveal input[type='button'].btn-large,
.AE-reveal input[type='submit'].btn-large,
.AE-reveal a.btn-large {
  font-size: 1.6rem;
}

/* Settings for center/middle-aligned buttons.  */
.AE-reveal button.btn-middle,
.AE-reveal input[type='button'].btn-middle,
.AE-reveal input[type='submit'].btn-middle,
.AE-reveal a.btn-middle {
  display: block;
  margin: 0 auto;
}

/* Remove inner dotted box from firefox buttons */
.AE-reveal button::-moz-focus-inner {
  border: 0;
}

/* Center button.  */
.AE-reveal .btn-centered {
  display: block;
  margin: auto;
}

/* Additional Reveal Answer and Show Me Styles */

/* Outer Div settings for Reveal Answer.  */
.AE-reveal {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  background-color: var(--interactive-background-color);
  margin: 20px auto;
  padding: 20px;
  border: 1px solid var(--interactive-border);
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-reveal h2 {
  margin: 0 0 1rem 0;
}

.AE-reveal p {
  margin-top: 0;
}

/* Remove box settings for Show Me interactive.  */
.AE-reveal-no-box {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: inherit;
  width: 100%;
  margin: auto;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: none;
}

/* Settings for answer box. */
.AE-reveal:not(.AE-reveal-no-box) .reveal-box {
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid var(--interactive-border);
  margin-bottom: 0;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.show-me {
  margin: 0 auto !important;
}

/* Fix crashing divs when 2-column answer stacks on mobile screens. */
@media only screen and (max-width: 63.99rem) {
  .add-margin {
    margin-top: 20px !important;
  }
}

/*
*******************
* CAROUSEL
*******************
*/
.AE-carousel,
.AE-carousel * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Keep same class as secondary but expand width */
.AE-carousel .carousel-inner.w-75 {
  width: 85% !important;
}

.AE-carousel .carousel-item {
  padding: 40px;
  background-color: #f7f7f7;
  border: 1px solid #d9dee2;
  border-radius: var(--interactive-border-radius);
}

.AE-carousel .carousel-control-prev,
.AE-carousel .carousel-control-next {
  background: transparent;
  border: none;
  width: 5%;
  opacity: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: start;
  -ms-flex-pack: start;
  justify-content: center;
  text-align: center;
  transition: all 0.15s ease;
}

.AE-carousel .carousel-control-prev {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-left: 5px;
}

.AE-carousel .carousel-control-next {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-right: 5px;
}

.AE-carousel .carousel-control-prev.disabled,
.AE-carousel .carousel-control-next.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.AE-carousel .carousel-control-prev i,
.AE-carousel .carousel-control-next i {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.AE-carousel .fa-arrow-left,
.AE-carousel .fa-arrow-right {
  color: #000000;
  font-size: 2.15rem;
}

.AE-carousel .slide-counter {
  margin-top: 10px;
}

/* Old Slideshow */

div.practicePage {
  width: 370px;
  padding: 15px;
  margin-left: 3px;
  float: left;
  display: none;
}

div.current {
  display: block;
}

div.highlights {
  background-color: #ffc;
  padding: 15px 40px;
  margin: 20px 0;
}

.justPoint {
  cursor: pointer;
}

.textEmph {
  color: #000;
  font-size: inherit;
  cursor: pointer;
  transition: color 0.5s, font-size 0.5s;
  -moz-transition: color 0.5s, font-size 0.5s;
  -webkit-transition: color 0.5s, font-size 0.5s;
  -o-transition: color 0.5s, font-size 0.5s;
}

.textEmphSlight {
  color: #000;
  font-size: inherit;
  cursor: pointer;
  transition: color 0.5s;
  -moz-transition: color 0.5s;
  -webkit-transition: color 0.5s;
  -o-transition: color 0.5s;
}

.textEmph:hover {
  color: #339;
  font-size: 21px;
}

.textEmphSlight:hover {
  color: #0000ff;
}

div.contentPopUps {
  padding: 10px;
  background-color: #fff;
  font-size: 16px;
}

.fauxPopUp {
  width: 200px;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 3px;
  background-color: #fff;
  border: thin solid #006;
  text-align: center;
  z-index: 7;
  visibility: hidden;
  color: #039;
}

/*
*******************
* MULTIPLE-CHOICE
*******************
*/
.AE-multiple_choice {
  background: #fff;
  position: relative;
  border: 1px solid var(--interactive-border);
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-multiple_choice .question {
  display: none;
  padding: 30px;
  -webkit-box-shadow: var(--interactive-box-shadow);
  box-shadow: var(--interactive-box-shadow);
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-multiple_choice .question:first-child {
  display: block;
}

.AE-multiple_choice .question h3,
.AE-multiple_choice .summary h3 {
  margin-top: 0px;
  margin-bottom: 20px;
}

.AE-multiple_choice .question h3:focus,
.AE-multiple_choice .summary h3:focus {
  margin-top: 0px;
  margin-bottom: 20px;
}

.AE-multiple_choice .question .responses li:focus,
.AE-multiple_choice .question .responsesMA li:focus {
  color: var(--interactive-secondary-custom-text-color);
}

.AE-multiple_choice .summary p {
  height: 40px;
}

.AE-multiple_choice .question .responses,
.AE-multiple_choice .question .responsesMA {
  padding-left: 5px;
}

.AE-multiple_choice .question .responses ol,
.AE-multiple_choice .question .responsesMA ol {
  list-style-type: lower-alpha;
  margin: 0;
  padding-left: 30px;
  overflow: visible;
}

.AE-multiple_choice .question .responses ol i,
.AE-multiple_choice .question .responses ol svg,
.AE-multiple_choice .question .responsesMA ol i,
.AE-multiple_choice .question .responsesMA ol svg {
  color: var(--interactive-custom-text-color);
  position: relative;
  top: -4px;
  left: -60px;
  font-size: 32px;
}

.AE-multiple_choice .question .responses ol i.right-answer,
.AE-multiple_choice .question .responses ol svg.right-answer,
.AE-multiple_choice .question .responsesMA ol i.right-answer,
.AE-multiple_choice .question .responsesMA ol svg.right-answer {
  color: green;
}

.AE-multiple_choice .question .responses ol i.wrong-answer,
.AE-multiple_choice .question .responses ol svg.wrong-answer,
.AE-multiple_choice .question .responsesMA ol i.wrong-answer,
.AE-multiple_choice .question .responsesMA ol svg.wrong-answer {
  color: #c0392b;
}

.AE-multiple_choice .question .responses ol li,
.AE-multiple_choice .question .responsesMA ol li {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 20px;
  cursor: pointer;
  color: var(--interactive-custom-text-color);
  transition: color 0.5s ease;
  -webkit-transition: color 0.5s ease;
  -moz-transition: color 0.5s ease;
  -ms-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
}

.AE-multiple_choice .question .responses ol li:hover,
.AE-multiple_choice .question .responses ol li:focus,
.AE-multiple_choice .question .responsesMA ol li:hover,
.AE-multiple_choice .question .responsesMA ol li:focus {
  color: var(--interactive-secondary-custom-text-color);
  text-decoration: underline;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}

.AE-multiple_choice .question .responses ol li.wrong-question,
.AE-multiple_choice .question .responsesMA ol li.wrong-question {
  color: #c0392b;
  text-decoration: none;
}

.AE-multiple_choice .question .responses ol li.right-question,
.AE-multiple_choice .question .responsesMA ol li.right-question {
  color: green;
  text-decoration: none;
}

.AE-multiple_choice .question .responses ol li.selected,
.AE-multiple_choice .question .responsesMA ol li.selected {
  color: #146aa3;
  text-decoration: underline;
  list-style-image: none !important;
  list-style-type: lower-alpha;
  margin-top: -32px;
}

.AE-multiple_choice .question .responses ol li.correctList,
.AE-multiple_choice .question .responsesMA ol li.correctList {
  color: green;
  list-style-image: none !important;
  list-style-type: lower-alpha;
}

.AE-multiple_choice .question .responses ol li.failList,
.AE-multiple_choice .question .responsesMA ol li.failList {
  color: #c0392b;
  list-style-image: none !important;
  list-style-type: lower-alpha;
}

.AE-multiple_choice .question .responses ol li.disabled,
.AE-multiple_choice .question .responsesMA ol li.disabled {
  opacity: 0.3;
  text-decoration: none !important;
  cursor: default;
}

.AE-multiple_choice .button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.AE-multiple_choice .button-container .next {
  width: 50%;
  margin-top: 25px;
  display: none;
}

.AE-multiple_choice .button-container .finished {
  position: relative;
  width: 50%;
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .AE-multiple_choice .button-container .finished {
    margin: 20px;
    width: auto;
  }
}

.AE-multiple_choice .answers {
  background: var(--interactive-background-color);
  padding: 20px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  height: auto;
  width: auto;
  margin: 0 auto;
  border-left: 3px solid var(--interactive-custom-text-color);
  border-right: 3px solid var(--interactive-custom-text-color);
}

@media (max-width: 1100px) {
  .AE-multiple_choice .answers {
    margin: 0px;
    width: auto;
  }
}

.AE-multiple_choice .answers .feedback {
  display: none;
  margin: 5px;
  text-align: left;
  font-size: var(--default-font-size);
  color: #000000;
}

.AE-multiple_choice > .question > .correct {
  position: absolute;
  left: 8px;
  font-size: 32px;
  color: green;
}

.AE-multiple_choice > .question > .incorrect {
  position: absolute;
  left: 8px;
  font-size: 32px;
  color: #c0392b;
}

.AE-multiple_choice .summary {
  padding: 30px;
  -webkit-box-shadow: var(--interactive-box-shadow);
  box-shadow: var(--interactive-box-shadow);
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-multiple_choice .summary h2 {
  margin: 0px;
}

.AE-multiple_choice .summary p {
  font-size: var(--default-font-size);
  color: #000000;
}

.AE-multiple_choice .summary p i,
.AE-multiple_choice .summary p svg {
  font-size: 32px;
  position: relative;
  top: 6px;
  margin-right: 3px;
}

.AE-multiple_choice .summary p i.fa-check-circle,
.AE-multiple_choice .summary p svg.fa-check-circle {
  color: green;
}

.AE-multiple_choice .summary p i.fa-times-circle,
.AE-multiple_choice .summary p svg.fa-times-circle {
  color: #c0392b;
}

.AE-multiple_choice .summary p i.right-icon,
.AE-multiple_choice .summary p svg.right-icon {
  color: green;
}

.AE-multiple_choice .summary p i.wrong-icon,
.AE-multiple_choice .summary p svg.wrong-icon {
  color: #c0392b;
}

.AE-multiple_choice .review {
  width: 50%;
  margin: 0 auto;
  margin-top: 20px;
}

.AE-multiple_choice .status {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  /* 1 */
}

.AE-multiple_choice .status.focusable:active,
.AE-multiple_choice .status.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

.AE-multiple_choice_wrapper {
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: var(--interactive-background-color);
  background-image: var(--interactive-background-image);
  background-size: var(--interactive-background-size);
  background-position: var(--interactive-background-position);
  background-repeat: var(--interactive-background-repeat);
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

/*
*******************
* ORDERING
*******************
*/
div.ordering {
  position: relative;
  width: 600px;
  margin: 0 auto;
  padding: 15px 15px 75px;
  border-bottom-right-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  border-bottom-left-radius: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-top-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  border-top-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -webkit-box-shadow: 3px 3px 6px rgba(136, 136, 136, 1);
  box-shadow: 3px 3px 6px rgba(136, 136, 136, 1);
  background-color: #ffa;
}

.ccdrag {
  width: 250px;
  height: 33px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/ordering_drag.png');
  color: white;
  font-weight: bolder;
  font-size: 20px;
  border: thin #000 solid;
  padding: 7px 0px 0px 0px;
  z-index: 10;
  cursor: pointer;
  text-align: center;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.ccdrop {
  width: 250px;
  opacity: 0.6;
  height: 33px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/ordering_target.png');
  border: thin #000 solid;
  padding: 7px 0px 0px 0px;
  text-align: center;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

#checkanswers {
  float: right;
  margin-left: 15px;
  width: 91px;
  height: 39px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/checkbtn.png');
  cursor: pointer;
}

#order_reset {
  float: right;
  margin-left: 15px;
  width: 91px;
  height: 39px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/resetbtn.png');
  cursor: pointer;
}

#containment .counter {
  width: 350px;
}

.ccdrop .result {
  position: absolute;
  right: 280px;
  width: 26px;
  height: 30px;
  opacity: 1;
  margin: 0px;
  float: left;
}

.ccdrop .correct {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/checkmark.png');
  background-repeat: no-repeat;
}

.ccdrop .incorrect {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/fail.png');
  background-repeat: no-repeat;
}

/* HS Version */
.AE-ordering-wrapper {
  padding: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  background-color: var(--interactive-background-color);
  background-image: var(--interactive-background-image);
  background-size: var(--interactive-background-size);
  background-position: var(--interactive-background-position);
  background-repeat: var(--interactive-background-repeat);
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-ordering-wrapper *:focus {
  padding: 4px;
}

.AE-ordering-wrapper *:focus,
.AE-ordering-wrapper .group {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -ms-transition: transform 0.5s;
  -o-transition: transform 0.5s;
}

.AE-ordering-wrapper *:focus,
.AE-ordering-wrapper .group:hover {
  transform: scale(1.015);
  -webkit-transform: scale(1.015);
  -moz-transform: scale(1.015);
  -ms-transform: scale(1.015);
  -o-transform: scale(1.015);
}

.AE-ordering,
.AE-ordering:hover {
  background-color: transparent;
}

.AE-ordering-wrapper .finished-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  opacity: 0.7;
  background: #fff;
  height: 0;
  -webkit-transition: height 0.25s;
  -o-transition: height 0.25s;
  transition: height 0.25s;
}

.AE-ordering-wrapper .finished-overlay.active {
  height: 100%;
  -webkit-transition: height 0.25s;
  -o-transition: height 0.25s;
  transition: height 0.25s;
}

.AE-ordering-wrapper .ui-widget,
.AE-ordering-wrapper .ui-widget input,
.AE-ordering-wrapper .ui-widget select,
.AE-ordering-wrapper .ui-widget textarea,
.AE-ordering-wrapper .ui-widget button {
  font-weight: 300;
}

.AE-ordering-wrapper .AE-ordering .group.expanded,
.AE-ordering-wrapper .AE-ordering .group:focus {
  z-index: 9999;
  position: relative;
}

.AE-ordering-wrapper .AE-ordering .group header,
.AE-ordering-wrapper .AE-ordering .group button {
  position: relative;
  background: #fff;
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
  padding: 30px;
  display: block;
  text-align: left;
  -webkit-box-shadow: var(--interactive-box-shadow);
  box-shadow: var(--interactive-box-shadow);
  border: 1px solid var(--interactive-border);
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-ordering-wrapper .AE-ordering .group header:active,
.AE-ordering-wrapper .AE-ordering .group button:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.AE-ordering-wrapper .AE-ordering .group header i,
.AE-ordering-wrapper .AE-ordering .group button i {
  float: left;
  height: 100%;
  margin-right: 10px;
  font-size: var(--default-font-size);
  top: 2.5px;
  position: relative;
}

.AE-ordering-wrapper .AE-ordering .group header h3,
.AE-ordering-wrapper .AE-ordering .group button h3 {
  margin: 0px;
}

.AE-ordering-wrapper .AE-ordering .group header.ui-state-default,
.AE-ordering-wrapper .AE-ordering .group button.ui-state-default {
  background: #fff;
}

.AE-ordering-wrapper .AE-ordering .group header.ui-state-default h3,
.AE-ordering-wrapper .AE-ordering .group button.ui-state-default h3 {
  color: #333;
}

.AE-ordering-wrapper .AE-ordering .group header.ui-state-default i,
.AE-ordering-wrapper .AE-ordering .group button.ui-state-default i {
  color: #333;
}

.AE-ordering-wrapper .AE-ordering .group header.ui-state-active,
.AE-ordering-wrapper .AE-ordering .group button.ui-state-active {
  background: #fff;
}

.AE-ordering-wrapper .AE-ordering .group header.ui-state-active h3,
.AE-ordering-wrapper .AE-ordering .group button.ui-state-active h3 {
  color: #333;
}

.AE-ordering-wrapper .AE-ordering .group header.ui-state-active i,
.AE-ordering-wrapper .AE-ordering .group button.ui-state-active i {
  color: #333;
}

.AE-ordering-wrapper .AE-ordering .group header .ui-icon,
.AE-ordering-wrapper .AE-ordering .group button .ui-icon {
  display: none;
}

.AE-ordering-wrapper .AE-ordering .group section {
  border-radius: 0px;
  margin: 0px;
  padding: 40px;
  background: #fff;
  color: #333;
  border: none;
  -webkit-box-shadow: var(--interactive-box-shadow);
  box-shadow: var(--interactive-box-shadow);
  display: none;
  height: 0px;
  overflow: hidden;
  -webkit-transition: height 0.5s;
  -o-transition: height 0.5s;
  transition: height 0.5s;
}

.AE-ordering-wrapper .AE-ordering .group section.expanded {
  display: block;
  height: auto;
  -webkit-transition: height 0.5s;
  -o-transition: height 0.5s;
  transition: height 0.5s;
  z-index: 9999;
}

.AE-ordering-wrapper .AE-ordering.noAccordion header {
  margin-bottom: 3px;
}

.AE-ordering-wrapper .AE-ordering.noAccordion header p {
  margin-bottom: 0px;
}

.AE-ordering-wrapper div.congrats {
  position: absolute;
  background: #fff;
  padding: 40px;
  border: 1px solid var(--interactive-border);
  left: calc(50% - 113.5px);
  top: -300px;
  z-index: 99;
  display: none;
  color: var(--interactive-custom-text-color);
  font-weight: bold;
  text-align: center;
}

.AE-ordering-wrapper div.congrats.active {
  display: block;
  top: calc(50% - 107.5px);
  animation: bounceInDown 1s;
  -webkit-animation: bounceInDown 1s;
}

.AE-ordering-wrapper div.congrats i {
  font-size: 60px;
  color: var(--interactive-custom-text-color);
  margin-bottom: 10px;
}

.AE-ordering-wrapper div.congrats span {
  font-size: 24px;
  text-align: center;
  display: block;
}

.AE-ordering-wrapper .orderingDir {
  padding: 10px;
  bottom: 10px;
  background: var(--interactive-button-color);
  color: #fff;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  font-size: 1.063rem;
  border: none;
  margin-top: 20px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-ordering-wrapper .orderingDir:hover,
.AE-ordering-wrapper .orderingDir:focus {
  background: var(--interactive-button-hover-color);
}

.AE-ordering-wrapper #orderingDirections {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  bottom: 78px;
  z-index: 9999;
  background: var(--interactive-button-color);
  width: 638px;
  padding: 10px;
  color: #fff;
  border: thin solid #242424;
  display: none;
  border-radius: 5px;
}

/* Change width for mobile */
@media all and (max-width: 991px) {
  .AE-ordering-wrapper #orderingDirections {
    width: 90%;
  }
}

.AE-ordering-wrapper #orderingDirections .bottom-arrow {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--interactive-button-color);
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  bottom: -12px;
}

.AE-ordering-wrapper .status,
.AE-ordering-wrapper .alert {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.AE-ordering-wrapper .status.focusable:active,
.AE-ordering-wrapper .status.focusable:focus,
.AE-ordering-wrapper .alert.focusable:active,
.AE-ordering-wrapper .alert.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

/* Images Version */
.AE-ordering_images-wrapper {
  padding: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  background: #dee3e9;
  position: relative;
  overflow: hidden;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-ordering_images-wrapper .AE-ordering_images {
  background: #fff;
  -webkit-box-shadow: var(--interactive-box-shadow);
  box-shadow: var(--interactive-box-shadow);
  padding: 30px;
  max-width: 1200px;
}

.AE-ordering_images-wrapper .AE-ordering_images .AE-ordering_images-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 32% 2% 32% 2% 32%;
  grid-template-columns: repeat(3, 32%);
  grid-gap: 30px 2%;
}

.AE-ordering_images-wrapper
  .AE-ordering_images
  .AE-ordering_images-container
  .sort-item {
  border: 1px solid #dee3e9;
  padding: 20px;
  -webkit-box-shadow: var(--interactive-box-shadow);
  box-shadow: var(--interactive-box-shadow);
  background: #fff;
}

.AE-ordering_images-wrapper
  .AE-ordering_images
  .AE-ordering_images-container
  .sort-item
  img {
  display: block;
  margin: 0 auto 10px auto;
  max-width: 100%;
}

.AE-ordering_images-wrapper .finished-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  opacity: 0.7;
  background: #fff;
  height: 0;
  -webkit-transition: height 0.25s;
  -o-transition: height 0.25s;
  transition: height 0.25s;
}

.AE-ordering_images-wrapper .finished-overlay.active {
  height: 100%;
  -webkit-transition: height 0.25s;
  -o-transition: height 0.25s;
  transition: height 0.25s;
}

.AE-ordering_images-wrapper div.congrats {
  position: absolute;
  background: #fff;
  padding: 40px;
  border: 3px solid #dee3e9;
  left: calc(50% - 113.5px);
  top: -300px;
  z-index: 99;
  display: none;
  color: #333;
  text-align: center;
}

.AE-ordering_images-wrapper div.congrats.active {
  display: block;
  -webkit-animation: congrats 3s ease-in-out;
  animation: congrats 3s ease-in-out;
  top: calc(50% - 107.5px);
}

.AE-ordering_images-wrapper div.congrats i {
  font-size: 60px;
  color: var(--interactive-custom-text-color);
  margin-bottom: 10px;
}

.AE-ordering_images-wrapper div.congrats span {
  font-size: 24px;
  text-align: center;
  display: block;
}

.AE-ordering_images-wrapper .status,
.AE-ordering_images-wrapper .alert {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.AE-ordering_images-wrapper .status.focusable:active,
.AE-ordering_images-wrapper .status.focusable:focus,
.AE-ordering_images-wrapper .alert.focusable:active,
.AE-ordering_images-wrapper .alert.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

/*
*******************
* TIMELINE
*******************
*/
/* ? Version 3 (Responsive Version) */
/* Main */
.AE-timeline,
.AE-timeline *,
.AE-timeline *::before,
.AE-timeline *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.AE-timeline {
  width: 100%;
  margin: 20px auto;
  background-color: var(--interactive-background-color);
  border-radius: var(--interactive-border-radius);
  padding: 0px 30px 30px 30px;
  border: 1px solid var(--interactive-border);
}

.AE-timeline .timeline-steps-container {
  overflow: hidden;
  background-color: #fff;
  padding: 20px;
  border-radius: var(--interactive-border-radius);
  -webkit-box-shadow: var(--interactive-box-shadow);
  box-shadow: var(--interactive-box-shadow);
  border: 1px solid var(--interactive-border);
  -webkit-transition: height 0.65s;
  -o-transition: height 0.65s;
  transition: height 0.65s;
}

.AE-timeline .timeline-step {
  display: none;
}

.AE-timeline .timeline-step-active {
  display: block;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Progressbar */
.AE-timeline .progressbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  counter-reset: step;
  margin: 2rem 0;
}

.AE-timeline .progressbar::before,
.AE-timeline .timeline-progress {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  background-color: var(--interactive-border);
}

.AE-timeline .timeline-progress {
  background-color: var(--interactive-button-color);
  width: 0%;
  -webkit-transition: 0.65s;
  -o-transition: 0.65s;
  transition: 0.65s;
}

.AE-timeline .progress-step {
  padding: 0px;
  width: 18px;
  height: 18px;
  border: none;
  background-color: var(--interactive-background-color);
  border: 3px solid var(--interactive-border);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
}

.AE-timeline .progress-step::after {
  content: attr(data-content);
  position: absolute;
  top: calc(100% + 0.5rem);
  width: 80px;
  line-height: 1;
  font-size: 0.8rem;
  color: #6c757d; /* same as text-muted class */
}

.AE-timeline .progress-step.progress-step-active {
  border-color: var(--interactive-custom-text-color);
  background-color: var(--interactive-button-color);
}

.AE-timeline .progress-step.progress-step-active::after {
  color: var(--interactive-custom-text-color);
}

.AE-timeline .progress-step:not(.progress-step-active) {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.AE-timeline .progress-step:not(.progress-step-active):hover,
.AE-timeline .progress-step:not(.progress-step-active):focus {
  background: #6c757d;
}

/* Buttons */
.AE-timeline .btn-prev,
.AE-timeline .btn-next {
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
  padding: 10px;
}

.AE-timeline .btn-prev.disabled,
.AE-timeline .btn-next.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Media Queries */
@media all and (max-width: 991px) {
  /* Progressbar */
  .AE-timeline .progressbar {
    margin: 3rem 0 0 0;
  }

  .AE-timeline .progress-step {
    width: 15px;
    height: 15px;
    border: none;
    background-color: var(--interactive-border);
    position: relative;
    display: inline-block;
  }

  .AE-timeline .progress-step.progress-step-active {
    background: var(--interactive-custom-text-color);
  }

  .AE-timeline .progress-step.progress-step-active.current::before,
  .AE-timeline .progress-step.progress-step-active.current::after {
    -webkit-animation: tooltipFadeIn 0.65s ease;
    animation: tooltipFadeIn 0.65s ease;
  }

  /* Tooltips */
  .AE-timeline .progress-step::after {
    width: unset; /* unsets width from desktop */
    opacity: 1;
    content: '';
    visibility: hidden;
    position: absolute;
    top: -40%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #6c757d transparent transparent transparent;
    -webkit-animation: tooltipFadeIn 0.3s ease;
    animation: tooltipFadeIn 0.3s ease;
  }

  .AE-timeline .progress-step::before {
    opacity: 1;
    content: attr(data-content);
    visibility: hidden;
    width: 80px;
    font-size: 0.8rem;
    line-height: 1;
    background-color: #fff;
    color: #6c757d;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #6c757d;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 140%;
    left: 50%;
    margin-left: -40px;
    -webkit-animation: tooltipFadeIn 0.3s ease-in-out;
    animation: tooltipFadeIn 0.3s ease-in-out;
  }

  .AE-timeline .progress-step:hover:before,
  .AE-timeline .progress-step:hover:after,
  .AE-timeline .progress-step:focus:before,
  .AE-timeline .progress-step:focus:after {
    visibility: visible;
  }

  /* Removes odd outline */
  .AE-timeline .progress-step,
  .AE-timeline .progress-step::before,
  .AE-timeline .progress-step::after,
  .AE-timeline .progress-step:focus,
  .AE-timeline .progress-step:focus::before,
  .AE-timeline .progress-step:focus::after,
  .AE-timeline .progress-step:hover,
  .AE-timeline .progress-step:hover::before,
  .AE-timeline .progress-step:hover::after,
  .AE-timeline .progress-step:active,
  .AE-timeline .progress-step:active::before,
  .AE-timeline .progress-step:active::after {
    outline: none !important;
  }

  @-webkit-keyframes tooltipFadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }
  @keyframes tooltipFadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  /* Previously Visited Tooltips */
  .AE-timeline .progress-step.progress-step-active::after {
    border-color: var(--interactive-custom-text-color) transparent transparent
      transparent;
  }

  .AE-timeline .progress-step.progress-step-active::before {
    border: 1px solid var(--interactive-custom-text-color);
  }

  /* Allows previously visited tooltip to be positioned above current tooltip */
  .AE-timeline .progress-step.progress-step-active:not(.current) {
    z-index: 3;
  }

  /* Active Tooltips */
  .AE-timeline .progress-step.current::after {
    opacity: 1;
    content: '';
    visibility: visible;
    position: absolute;
    top: -40%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: var(--interactive-custom-text-color) transparent transparent
      transparent;
    -webkit-animation: none;
    animation: none;
    -webkit-transition: all 0.65s;
    -o-transition: all 0.65s;
    transition: all 0.65s;
  }

  .AE-timeline .progress-step.current::before {
    visibility: visible;
    opacity: 1;
    background-color: var(--interactive-custom-text-color);
    color: #fff;
    border: 1px solid var(--interactive-custom-text-color);
    -webkit-animation: none;
    animation: none;
    -webkit-transition: all 0.65s;
    -o-transition: all 0.65s;
    transition: all 0.65s;
  }

  .AE-timeline .progress-step.current:hover:before,
  .AE-timeline .progress-step.current:hover:after {
    visibility: visible;
  }

  /* Buttons */
  .AE-timeline .btn-prev,
  .AE-timeline .btn-next {
    -webkit-transition: opacity 0.65s;
    -o-transition: opacity 0.65s;
    transition: opacity 0.65s;
    margin-top: 26px;
  }
}

/* ? VERSION 2 (Responsive version) */
/* Timeline Slider */
.timeline-slider-container,
.timeline-slider-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.timeline-slider-container {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px 20px 0px;
  background-color: var(--interactive-background-color);
  border: 1px solid var(--interactive-border);
  border-radius: var(--interactive-border-radius);
}

.timeline-slider-container .timeline-slides {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.timeline-slider-container .timeline-slide {
  width: 100%;
  padding: 20px;
  margin: 20px auto;
  background-color: #ffffff;
  border-radius: var(--interactive-border-radius);
  display: none;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.timeline-slider-container .current {
  display: block;
}

.timeline-slider-container .timeline-slider-btn {
  width: 100%;
  display: block;
  margin: 0px auto;
  /* background: transparent; */
  border: none;
  /* font-size: 2.25em; */
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.timeline-slider-container #timeline-btn-previous {
  margin-top: 20px;
  margin-bottom: 10px;
}

.timeline-slider-container .timeline-slider-btn:disabled {
  opacity: 50%;
}

.timeline-slider-container .timeline-slider-btn:disabled:hover {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.timeline-slider-container .img-fluid {
  width: 100%;
}

.timeline-slider-container .progress-row {
  padding: 10px;
}

.timeline-slider-container #progressbar {
  position: relative;
  margin: 0 auto;
  width: 100%;
  background-color: var(--interactive-button-color);
  height: 10px;
  border-radius: 20px;
}

.timeline-slider-container #progressbar .progress {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 10px;
  background: var(--interactive-button-hover-color);
  width: 0;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
  padding: 0px;
}

.timeline-slider-container .animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.timeline-slider-container .animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.timeline-slider-container .animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/* Media Queries */
@media all and (max-width: 1999px) {
  .timeline-slider-container .timeline-slider-btn {
    font-size: 0.85em;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  .timeline-slider-container .timeline-slider-btn i {
    transform: translateX(-6px);
  }
}

@media all and (max-width: 540px) {
  .timeline-slider-container .timeline-slider-btn i {
    transform: translateX(-3px);
  }
}

/* ? VERSION 1 (Non-responsive version) */
.timeline-container {
  background-color: #222;
  width: 100%;
  max-width: 900px;
  min-width: 800px;
  margin: 0 auto;
  padding-top: 25px;
  padding-bottom: 25px;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

#timeline {
  width: 800px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/timeline/dot.gif')
    left 45px repeat-x;
}

#timeline * {
  margin: 0;
  padding: 0;
}

#timeline .date,
#timeline .arrow {
  color: #ffc;
  text-decoration: none;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

#timeline .date:hover,
#timeline .date.selected,
#timeline .arrow:hover,
#timeline .arrow.selected {
  color: #fc0;
}

#timeline .big-date {
  text-align: left;
  color: #ccc !important;
  text-shadow: #000 1px 1px 2px;
  margin-bottom: 0px !important;
  font-size: 18px;
}

#timeline #dates {
  width: 100%;
  height: 60px;
  overflow: hidden;
}

#timeline #dates li {
  list-style: none;
  float: left;
  width: 100px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/timeline/biggerdot.png')
    center bottom no-repeat;
}

#timeline #dates a {
  line-height: 38px;
  padding-bottom: 10px;
}

#timeline #dates .selected {
  font-size: 38px;
}

#timeline #issues {
  width: 100%;
  overflow: hidden;
}

#timeline #issues li {
  width: 800px;
  list-style: none;
  float: left;
}

#timeline #issues li.selected img {
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

#timeline #issues li img {
  float: left;
  margin: 20px 30px 20px 80px;
  background: transparent;
  -ms-filter: 'progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)';
  /* IE 8 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
  /* IE 6 & 7 */
  zoom: 1;
  -webkit-transition: all 2s ease-in-out;
  -o-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
  -webkit-transform: scale(0.7, 0.7);
  -ms-transform: scale(0.7, 0.7);
  transform: scale(0.7, 0.7);
}

#timeline #issues li h1 {
  color: #fc0;
  font-size: 48px;
  margin: 20px 0;
  text-shadow: #000 1px 1px 2px;
}

#timeline #issues li p {
  font-size: 14px;
  margin-right: 70px;
  margin-left: 70px;
  margin-bottom: 10px;
  font-weight: normal;
  line-height: 1.35;
  text-shadow: #000 1px 1px 2px;
  color: #fff;
}

#timeline #grad_left,
#timeline #grad_right {
  width: 100px;
  height: 350px;
  position: absolute;
  top: 0;
}

#timeline #grad_left {
  left: 0;
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/timeline/grad_left.png')
    repeat-y;
}

#timeline #grad_right {
  right: 0;
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/timeline/grad_right.png')
    repeat-y;
}

#timeline #next,
#timeline #prev {
  position: absolute;
  top: 0;
  font-size: 70px;
  top: 170px;
  width: 22px;
  height: 38px;
  background-position: 0 0;
  background-repeat: no-repeat;
  text-indent: -9999px;
  overflow: hidden;
}

#timeline #next:hover,
#timeline #prev:hover {
  background-position: 0 -76px;
}

#timeline #next {
  right: 0;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/timeline/next.png');
}

#timeline #prev {
  left: 0;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/timeline/prev.png');
}

#timeline #next.disabled,
#timeline #prev.disabled {
  opacity: 0.2;
}

/*
*******************
* HIGHLIGHT TABLE
*******************
*/
table.AE_highlight_table,
ul.AE_highlight_table,
ol.AE_highlight_table {
  margin: 1rem auto;
  padding: 0;
  width: 100%;
  max-width: 1400px;
}

ul.AE_highlight_table,
ol.AE_highlight_table {
  list-style-type: none !important;
}

/* Fix border issue in highlight table lists. */
table.AE_highlight_table ul,
table.AE_highlight_table li {
  border: none !important;
}

/* Ordered List-specific Styles */
ol.AE_highlight_table {
  counter-reset: item;
}

ol.AE_highlight_table li {
  counter-increment: item;
  display: block !important;
  padding-left: 100px !important;
}

ol.AE_highlight_table li::before {
  margin: 0 19px 0 -80px;
  padding: 0 34px 0 15px;
  content: counter(item);
  border-right: thin solid #bac7d6;
  font-size: 1.063rem;
}

.AE_highlight_table.steps li {
  padding-left: 100px !important;
}

.AE_highlight_table.steps li::before {
  margin: 0 18px 0 -87px;
  padding: 0 19px 0 0;
  content: 'Step ' counter(item);
  font-size: 1.063rem;
}

/* Table-specific Styles */
table.AE_highlight_table {
  border-collapse: separate;
  border-spacing: 0px;
}

table.AE_highlight_table td,
table.AE_highlight_table th {
  padding: 20px;
  border-bottom: thin solid #bac7d6;
  border-top: thin solid #bac7d6;
  border-right: thin solid #bac7d6;
}

table.AE_highlight_table th {
  text-align: center;
}

table.AE_highlight_table tr td:first-child,
table.AE_highlight_table tr th:first-child {
  border-left: thin solid #bac7d6;
}

/* Hover Styles and Transitions */
ul.AE_highlight_table li:hover,
ol.AE_highlight_table li:hover {
  background-color: #effeff;
  -webkit-box-shadow: 0px 5px 10px #cccccc;
  box-shadow: 0px 5px 10px #cccccc;
  border: thin solid #98a5b4;
}

table.AE_highlight_table tr:hover td,
table.AE_highlight_table tr:hover th {
  background-color: #effeff;
  border-top: thin solid #98a5b4;
  border-bottom: thin solid #98a5b4;
}

table.AE_highlight_table tr:hover {
  -webkit-box-shadow: 0px 5px 10px #cccccc;
  box-shadow: 0px 5px 10px #cccccc;
}

table.AE_highlight_table tr:hover *:first-child {
  border-left: thin solid #98a5b4;
}

table.AE_highlight_table tr:hover *:last-child {
  border-right: thin solid #98a5b4;
}

table.AE_highlight_table tr,
ul.AE_highlight_table li,
ol.AE_highlight_table li {
  padding: 20px;
  margin: 0;
  background-color: #dce9f8;
  border: thin solid #bac7d6;
  opacity: 1;
  transition: opacity 500ms, -webkit-transform 500ms;
  -o-transition: opacity 500ms, transform 500ms;
  transition: opacity 500ms, transform 500ms;
  transition: opacity 500ms, transform 500ms, -webkit-transform 500ms;
  -moz-transition: opacity 500ms, -moz-transform 500ms;
  -webkit-transition: opacity 500ms, -webkit-transform 500ms;
  -o-transition: opacity 500ms, -o-transform 500ms;
}

table.AE_highlight_table:hover tr,
ul.AE_highlight_table:hover li,
ol.AE_highlight_table:hover li {
  opacity: 0.3;
  transition: opacity 500ms, -webkit-transform 500ms;
  -o-transition: opacity 500ms, transform 500ms;
  transition: opacity 500ms, transform 500ms;
  transition: opacity 500ms, transform 500ms, -webkit-transform 500ms;
  -moz-transition: opacity 500ms, -moz-transform 500ms;
  -webkit-transition: opacity 500ms, -webkit-transform 500ms;
  -o-transition: opacity 500ms, -o-transform 500ms;
}

table.AE_highlight_table tr:hover,
ul.AE_highlight_table li:hover,
ol.AE_highlight_table li:hover {
  opacity: 1;
  transition: opacity 500ms, -webkit-transform 500ms;
  -o-transition: opacity 500ms, transform 500ms;
  transition: opacity 500ms, transform 500ms;
  transition: opacity 500ms, transform 500ms, -webkit-transform 500ms;
  -moz-transition: opacity 500ms, -moz-transform 500ms;
  -webkit-transition: opacity 500ms, -webkit-transform 500ms;
  -o-transition: opacity 500ms, -o-transform 500ms;
}

/* Remove borders from child elements to fix hover issues. */
table.AE_highlight_table:hover *:not(td):not(tr):not(th),
table.AE_highlight_table:hover .mathjax-equation * {
  border-left: none !important;
  border-right: none !important;
}

/* Paragraph margin fixes. */
.AE_highlight_table p {
  margin-top: 0 !important;
  font-size: var(--default-font-size) !important;
}

/* Paragraph margin fixes. */
.AE_highlight_table p:last-child {
  margin-bottom: 0 !important;
}

/* Old Table */
div.springTableContainer {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  cursor: pointer;
}

div.springTableContainer div.rowFocus {
  padding: 10px;
  background-color: #dce9f8;
  border: thin solid #bac7d6;
  opacity: 1;
  transition: opacity 500ms, -webkit-transform 500ms;
  -o-transition: opacity 500ms, transform 500ms;
  transition: opacity 500ms, transform 500ms;
  transition: opacity 500ms, transform 500ms, -webkit-transform 500ms;
  -moz-transition: opacity 500ms, -moz-transform 500ms;
  -webkit-transition: opacity 500ms, -webkit-transform 500ms;
  -o-transition: opacity 500ms, -o-transform 500ms;
}

div.springTableContainer div.row1 {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/highlight_step1.png');
  background-repeat: no-repeat;
}

div.springTableContainer div.row2 {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/highlight_step2.png');
  background-repeat: no-repeat;
}

div.springTableContainer div.row3 {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/highlight_step3.png');
  background-repeat: no-repeat;
}

div.springTableContainer div.row4 {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/highlight_step4.png');
  background-repeat: no-repeat;
}

div.springTableContainer div.row5 {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/highlight_step5.png');
  background-repeat: no-repeat;
}

div.springTableContainer div.row6 {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/highlight_step6.png');
  background-repeat: no-repeat;
}

div.springTableContainer div.rowFocus:hover {
  background-color: #effeff;
  -webkit-box-shadow: 0px 5px 10px #cccccc;
  box-shadow: 0px 5px 10px #cccccc;
  border: thin solid #98a5b4;
}

div.springTableContainer:hover div.rowFocus {
  opacity: 0.3;
  transition: opacity 500ms, -webkit-transform 500ms;
  -o-transition: opacity 500ms, transform 500ms;
  transition: opacity 500ms, transform 500ms;
  transition: opacity 500ms, transform 500ms, -webkit-transform 500ms;
  -moz-transition: opacity 500ms, -moz-transform 500ms;
  -webkit-transition: opacity 500ms, -webkit-transform 500ms;
  -o-transition: opacity 500ms, -o-transform 500ms;
}

div.springTableContainer:hover div.rowFocus:hover {
  opacity: 1;
  transition: opacity 500ms, -webkit-transform 500ms;
  -o-transition: opacity 500ms, transform 500ms;
  transition: opacity 500ms, transform 500ms;
  transition: opacity 500ms, transform 500ms, -webkit-transform 500ms;
  -moz-transition: opacity 500ms, -moz-transform 500ms;
  -webkit-transition: opacity 500ms, -webkit-transform 500ms;
  -o-transition: opacity 500ms, -o-transform 500ms;
}

div.springTableContainer td.bordRight {
  border-right: thin solid #bac7d6;
}

/*
*******************
* MISMATCH GAME
*******************
*/
.AE-mismatch_container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin: 1rem auto;
  width: 100%;
  padding: 30px;
  background-color: var(--interactive-background-color);
  background-image: var(--interactive-background-image);
  background-size: var(--interactive-background-size);
  background-position: var(--interactive-background-position);
  background-repeat: var(--interactive-background-repeat);
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-mismatch_container .AE-mismatch_game {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-top: 15px;
  position: relative;
  background-color: #ffffff;
  padding: 30px;
  text-align: center;
  border: 1px solid var(--interactive-border);
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
  -webkit-box-shadow: var(--interactive-box-shadow);
  box-shadow: var(--interactive-box-shadow);
}

.AE-mismatch_container .mmSet,
.AE-mismatch_container .mmFail,
.AE-mismatch_container .mmWin {
  display: none;
}

.AE-mismatch_container .mmSet,
.AE-mismatch_container .mmSummary {
  display: none;
  margin-top: -55px;
}

.AE-mismatch_container .mmChoice {
  width: 100%;
  padding: 8px;
  min-height: 30px;
  margin-bottom: 10px;
  margin-right: 10px;
  background-color: #edf0f1;
  border: 1px solid var(--interactive-border);
  text-align: center;
  cursor: pointer;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
  transition: border 0.5s ease;
  -webkit-transition: border 0.5s ease;
  -moz-transition: border 0.5s ease;
  -ms-transition: border 0.5s ease;
  -o-transition: border 0.5s ease;
  position: relative;
}

.AE-mismatch_container .mmChoice:last-child {
  margin-right: 0px;
}

.AE-mismatch_container .mmChoice:hover,
.AE-mismatch_container .mmChoice:focus {
  border: 1px solid var(--interactive-custom-text-color);
}

.AE-mismatch_container .mmChoices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.AE-mismatch_container .mmChoices div {
  background-image: unset !important;
}

.AE-mismatch_container .mmChoices .wrong .mismatch-incorrect-icon,
.AE-mismatch_container .mmChoices .correct .mismatch-correct-icon {
  position: absolute;
  top: -10px;
  left: -10px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
  font-size: 1.5rem;
}

.AE-mismatch_container .mmChoices .right {
  width: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f9fdf1+0,d1fb92+100 */
  background: rgb(
    249,
    253,
    241
  ) !important; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(
    top,
    rgba(249, 253, 241, 1) 0%,
    rgba(209, 251, 146, 1) 100%
  ) !important;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(249, 253, 241, 1)),
    to(rgba(209, 251, 146, 1))
  ) !important;
  background: linear-gradient(
    to bottom,
    rgba(249, 253, 241, 1) 0%,
    rgba(209, 251, 146, 1) 100%
  ) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9fdf1', endColorstr='#d1fb92',GradientType=0 ); /* IE6-9 */
}

.AE-mismatch_container .mmChoices .right .mismatch-correct-icon {
  color: green;
}

.AE-mismatch_container .mmChoices .wrong {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fefefe+0,fcaeae+100 */
  background: rgb(
    254,
    254,
    254
  ) !important; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(
    top,
    rgba(254, 254, 254, 1) 0%,
    rgba(252, 174, 174, 1) 100%
  ) !important;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(254, 254, 254, 1)),
    to(rgba(252, 174, 174, 1))
  ) !important;
  background: linear-gradient(
    to bottom,
    rgba(254, 254, 254, 1) 0%,
    rgba(252, 174, 174, 1) 100%
  ) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefefe', endColorstr='#fcaeae',GradientType=0 ); /* IE6-9 */
}

.AE-mismatch_container .mmChoices .wrong .mismatch-incorrect-icon {
  color: #c0392b;
}

.AE-mismatch_container .mmTitle {
  position: relative;
  top: -55px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  /* margin-top: -25px; */
  width: 90%;
  padding: 5px;
  background-color: #fff;
  border: 1px solid var(--interactive-border);
  font-weight: bold;
  color: var(--interactive-custom-text-color);
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-mismatch_container .mmTitle h3 {
  margin: 0px;
}

.AE-mismatch_container .mmFeedback {
  -webkit-box-shadow: inset 0px 0px 8px rgba(204, 204, 204, 1);
  box-shadow: inset 0px 0px 8px rgba(204, 204, 204, 1);
  border: 1px solid #d9dee2;
  width: 100%;
  margin: 0px auto 30px auto;
  overflow: auto;
  background-color: #ffffff;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-mismatch_container .mmFeedback p {
  display: unset;
  margin: unset;
}

.AE-mismatch_container .mmFeedback .feedback {
  display: none;
  margin: 20px;
  text-align: left;
}

.AE-mismatch_container .mmNext,
.AE-mismatch_container .mmRetry {
  display: none;
  width: 75%;
  height: auto;
  background-image: unset;
}

.AE-mismatch_container .mmNext {
  position: relative;
  margin: 0 auto;
  margin-top: -5px;
  right: unset;
  bottom: unset;
}

.AE-mismatch_container .mmRetry {
  margin: 10px auto;
}

/* Mismatch with Single Question */
.AE-mismatch_container .AE-mismatch_game.single-question .mmSummary {
  margin-top: 0px;
}

.AE-mismatch_container .AE-mismatch_game.single-question .mmFeedback {
  margin: 5px auto 1rem auto;
}

.AE-mismatch_container .AE-mismatch_game.single-question .mmRetry {
  margin-top: 0px;
}

@media all and (min-width: 768px) {
  .AE-mismatch_container .mmChoices {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .AE-mismatch_container .mmTitle {
    width: 300px;
  }
}

/*
*******************
* MATCHING V1
*******************
*/
div.matching {
  position: relative;
  width: 720px;
  margin: 0 auto;
  padding: 15px 15px 75px;
  border-bottom-right-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  border-bottom-left-radius: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-top-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  border-top-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -webkit-box-shadow: 3px 3px 6px #888;
  box-shadow: 3px 3px 6px #888;
  background-color: #fff;
  border: thin solid #789ac1;
  visibility: hidden;
}

.mtdrag {
  width: 64px;
  height: 63px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/matching_draggable.png');
  z-index: 10;
  cursor: pointer;
}

.mtstart {
  position: absolute;
  width: 64px;
  height: 63px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/matching_base.png');
  z-index: 0;
}

.mtdrop {
  width: 64px;
  height: 63px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/matching_target.png') !important;
}

.mtcenter {
  width: 1px;
  height: 1px;
  margin-top: 31px;
  margin-left: 31px;
}

td.mtfield {
  width: 279px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/matching_bgfield.png');
  background-repeat: repeat-y;
  padding-top: 20px;
  padding-bottom: 20px;
}

#mtcheckanswers {
  float: right;
  margin-left: 15px;
  width: 91px;
  height: 39px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/checkbtn.png');
  cursor: pointer;
}

#match_reset {
  float: right;
  margin-left: 15px;
  width: 91px;
  height: 39px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/retrybtn.png');
  cursor: pointer;
}

#mtcontainment .counter {
  width: 350px;
}

.mtdrop .result {
  position: absolute;
  pointer-events: none;
  display: none;
  right: 250px;
  width: 26px;
  height: 30px;
  opacity: 1;
  margin: 18px 0px 0px 0px;
  float: left;
  z-index: 150;
}

.mtTextLeft {
  margin-right: 75px;
}

.mtTextRight {
  margin-left: 75px;
}

.mtdrop .correct {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/checkmark.png');
  background-repeat: no-repeat;
}

.mtdrop .incorrect {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/fail.png');
  background-repeat: no-repeat;
}

div.matching div.next {
  float: right;
  margin-left: 15px;
  width: 91px;
  height: 39px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/btn_next2.png');
  cursor: pointer;
  visibility: hidden;
}

div.ddQuestion {
  display: none;
}

.correctfb {
  display: none;
}

.incorrectfb {
  display: none;
}

#ddSummary {
  display: none;
}

div.ddReset {
  width: 91px;
  height: 39px;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/retrybtn.png');
  margin: 10px auto;
  cursor: pointer;
}

/*
*******************
* MATCHING V2
*******************
*/
#matchingV2 {
  position: relative;
  width: 660px;
  margin: 0 auto;
  padding: 10px;
  -webkit-box-shadow: 3px 3px 6px #888;
  box-shadow: 3px 3px 6px #888;
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/bluestripe_bg.png');
  border: thin solid #789ac1;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

#matchCanvas {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 100;
  pointer-events: none;
}

#matchingV2 .matchItems .item,
#matchingV2 .matchAnswers .answer {
  position: absolute;
  width: 255px;
  border: thin solid #888;
}

#matchingV2 .matchItems .item {
  padding: 10px 35px 10px 10px;
  background: #fff
    url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/connector.png')
    right 7px center no-repeat;
  left: 10px;
  cursor: pointer;
  min-height: 24px;
  border-radius: var(--interactive-border-radius) 0 0
    var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius) 0 0
    var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius) 0 0
    var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius) 0 0
    var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius) 0 0
    var(--interactive-border-radius);
}

#matchingV2 .matchAnswers .answer {
  padding: 10px 10px 10px 35px;
  background: #fff
    url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/connector.png')
    no-repeat 7px center;
  right: 10px;
  cursor: default;
  min-height: 24px;
  border-radius: 0 var(--interactive-border-radius)
    var(--interactive-border-radius) 0;
  -webkit-border-radius: 0 var(--interactive-border-radius)
    var(--interactive-border-radius) 0;
  -moz-border-radius: 0 var(--interactive-border-radius)
    var(--interactive-border-radius) 0;
  -ms-border-radius: 0 var(--interactive-border-radius)
    var(--interactive-border-radius) 0;
  -o-border-radius: 0 var(--interactive-border-radius)
    var(--interactive-border-radius) 0;
}

#matchingV2 .matchItems .item table,
#matchingV2 .matchAnswers .answer table {
  height: 100%;
  width: 100%;
}

#matchingV2 .matchItems .item td,
#matchingV2 .matchAnswers .answer td {
  vertical-align: middle;
}

#matchingV2 .matchItems .item td {
  text-align: right;
  border-right: thin solid #ccc;
  padding-right: 10px;
}

#matchingV2 .matchAnswers .answer td {
  text-align: left;
  border-left: thin solid #ccc;
  padding-left: 10px;
}

.matchSelect {
  background-color: #ff8 !important;
}

.matchResult {
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  background-position: bottom center;
  background-repeat: no-repeat;
}

#matchingV2 .answer .matchResult {
  left: 0;
}

.answer .matchCorrect {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/match_check.png') !important;
}

.matchIncorrect {
  background-image: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/match_x.png') !important;
}

#matchingV2 #height_check {
  position: absolute;
  top: -2000px;
  width: 255px;
  min-height: 24px;
}

#matchingV2 #column_override {
  display: none;
}

#matchDir,
#matchCheck,
#matchReset {
  width: 120px;
  padding: 10px;
  position: absolute;
  bottom: 10px;
  background-color: #09c;
  color: #fff;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

#matchDir {
  left: 120px;
  cursor: pointer;
}

#matchReset {
  left: 420px;
  cursor: pointer;
  z-index: 300;
}

#matchCheck {
  left: 270px;
  opacity: 0.3;
  cursor: default;
}

#matchComplete {
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  display: none;
}

#matchDirections {
  position: absolute;
  bottom: 70px;
  z-index: 200;
  background-color: #09c;
  width: 638px;
  padding: 10px;
  color: #fff;
  border: thin solid #333;
  display: none;
}

#matchDirections img {
  position: absolute;
  bottom: -23px;
  left: 160px;
}

/*
*******************
* MATCHING V3
*******************
*/
.AE-matching-wrapper {
  padding: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: var(--interactive-background-color);
  background-image: var(--interactive-background-image);
  background-size: var(--interactive-background-size);
  background-position: var(--interactive-background-position);
  background-repeat: var(--interactive-background-repeat);
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-matching-wrapper .AE-matching {
  position: relative;
  width: calc(100% - 25px);
  margin: 0 auto;
  padding: 10px 10px 55px 10px;
  max-width: 1200px;
  min-width: 650px;
  background-color: #ffffff;
  border: 1px solid var(--interactive-border);
  -webkit-box-shadow: var(--interactive-box-shadow);
  box-shadow: var(--interactive-box-shadow);
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-matching-wrapper .AE-matching .matchItems .item {
  box-sizing: content-box;
  width: 38%;
  position: absolute;
  border: thin solid var(--interactive-border);
  padding: 9px 35px 10px 10px;
  left: 20px;
  cursor: pointer;
  min-height: 24px;
  -webkit-box-shadow: 3px 3px 6px rgba(204, 204, 204, 1);
  box-shadow: 3px 3px 6px rgba(204, 204, 204, 1);
  background-color: #edf0f1;
  transition: border 0.5s ease;
  -webkit-transition: border 0.5s ease;
  -moz-transition: border 0.5s ease;
  -ms-transition: border 0.5s ease;
  -o-transition: border 0.5s ease;
  border-radius: var(--interactive-border-radius) 0 0
    var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius) 0 0
    var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius) 0 0
    var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius) 0 0
    var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius) 0 0
    var(--interactive-border-radius);
  overflow: hidden;
}

.AE-matching-wrapper .AE-matching .matchItems .item:hover,
.AE-matching-wrapper .AE-matching .matchItems .item:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid var(--interactive-custom-text-color);
}

.AE-matching-wrapper .AE-matching .matchItems .item.selected {
  background: var(--interactive-highlighted-item-background-color);
  cursor: pointer;
}

.AE-matching-wrapper .AE-matching .matchItems .item.correct {
  background: #fff;
  -webkit-box-shadow: inset 0 0 20px rgba(34, 139, 34, 0.2);
  box-shadow: inset 0 0 20px rgba(34, 139, 34, 0.2);
  border: 1px solid var(--interactive-border);
}

.AE-matching-wrapper .AE-matching .matchItems .item.incorrect {
  background: #fff;
  -webkit-box-shadow: inset 0 0 20px rgba(255, 0, 0, 0.2);
  box-shadow: inset 0 0 20px rgba(255, 0, 0, 0.2);
}

.AE-matching-wrapper .AE-matching .matchItems .item.checkMatch {
  background: var(--interactive-highlighted-item-background-color);
}

.AE-matching-wrapper .AE-matching .matchItems .item i {
  position: absolute;
  right: 10px;
  top: calc(50% - 9px);
}

.AE-matching-wrapper .AE-matching .matchItems .item table {
  height: 100%;
  width: 100%;
}

.AE-matching-wrapper .AE-matching .matchItems .item table td {
  vertical-align: middle;
  text-align: right;
  border-right: thin solid var(--interactive-border);
  padding-right: 20px;
  font-size: var(--default-font-size);
}

.AE-matching-wrapper .AE-matching .matchItems .item .matchResult {
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.AE-matching-wrapper .AE-matching .matchItems .item .matchResult i {
  font-size: 22px;
  background: #fff;
  padding: 3px;
  right: 2px;
  top: calc(50% - 17px);
  z-index: 999;
  border-radius: 50%;
  border: 0.5px solid var(--interactive-border);
}

.AE-matching-wrapper .AE-matching .matchItems .item .matchResult i.correct {
  color: #178011;
}

.AE-matching-wrapper .AE-matching .matchItems .item .matchResult i.incorrect {
  color: #bc3930;
  padding: 3px 6px;
}

.AE-matching-wrapper .AE-matching .matchAnswers .answer {
  box-sizing: content-box;
  width: 38%;
  position: absolute;
  border: thin solid var(--interactive-border);
  padding: 10px 10px 10px 35px;
  right: 20px;
  cursor: pointer;
  min-height: 24px;
  -webkit-box-shadow: 3px 3px 6px rgba(204, 204, 204, 1);
  box-shadow: 3px 3px 6px rgba(204, 204, 204, 1);
  background-color: #edf0f1;
  transition: border 0.5s ease;
  -webkit-transition: border 0.5s ease;
  -moz-transition: border 0.5s ease;
  -ms-transition: border 0.5s ease;
  -o-transition: border 0.5s ease;
  border-radius: 0 var(--interactive-border-radius)
    var(--interactive-border-radius) 0;
  -webkit-border-radius: 0 var(--interactive-border-radius)
    var(--interactive-border-radius) 0;
  -moz-border-radius: 0 var(--interactive-border-radius)
    var(--interactive-border-radius) 0;
  -ms-border-radius: 0 var(--interactive-border-radius)
    var(--interactive-border-radius) 0;
  -o-border-radius: 0 var(--interactive-border-radius)
    var(--interactive-border-radius) 0;
  overflow: hidden;
}

.AE-matching-wrapper .AE-matching .matchAnswers .answer:hover,
.AE-matching-wrapper .AE-matching .matchAnswers .answer:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid var(--interactive-custom-text-color);
}

.AE-matching-wrapper .AE-matching .matchAnswers .answer.selected {
  background: var(--interactive-highlighted-item-background-color);
  cursor: pointer;
}

.AE-matching-wrapper .AE-matching .matchAnswers .answer.correct {
  background: #fff;
  -webkit-box-shadow: inset 0 0 20px rgba(34, 139, 34, 0.2);
  box-shadow: inset 0 0 20px rgba(34, 139, 34, 0.2);
  border: 1px solid var(--interactive-border);
}

.AE-matching-wrapper .AE-matching .matchAnswers .answer.incorrect {
  background: #fff;
  -webkit-box-shadow: inset 0 0 30px rgba(255, 0, 0, 0.2);
  box-shadow: inset 0 0 30px rgba(255, 0, 0, 0.2);
}

.AE-matching-wrapper .AE-matching .matchAnswers .answer.checkMatch {
  background: var(--interactive-highlighted-item-background-color);
}

.AE-matching-wrapper .AE-matching .matchAnswers .answer i {
  position: absolute;
  left: 10px;
  top: calc(50% - 9px);
}

.AE-matching-wrapper .AE-matching .matchAnswers .answer table {
  height: 100%;
  width: 100%;
}

.AE-matching-wrapper .AE-matching .matchAnswers .answer table td {
  vertical-align: middle;
  text-align: left;
  border-left: thin solid var(--interactive-border);
  padding-left: 15px;
  font-size: var(--default-font-size);
}

.AE-matching-wrapper .AE-matching .matchAnswers .answer .matchResult {
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.AE-matching-wrapper .AE-matching .matchAnswers .answer .matchResult i {
  font-size: 22px;
  background: #fff;
  padding: 3px;
  left: 2px;
  top: calc(50% - 17px);
  z-index: 999;
  border-radius: 50%;
  border: 0.5px solid var(--interactive-border);
}

.AE-matching-wrapper .AE-matching .matchAnswers .answer .matchResult i.correct {
  color: #178011;
}

.AE-matching-wrapper
  .AE-matching
  .matchAnswers
  .answer
  .matchResult
  i.incorrect {
  color: #bc3930;
  padding: 3px 6px;
}

.AE-matching-wrapper .AE-matching #matchCanvas {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 100;
  pointer-events: none;
}

.AE-matching-wrapper .AE-matching #column_override {
  display: none;
}

.AE-matching-wrapper .AE-matching .button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0px;
  width: 100%;
  padding: 10px 0 17px 0;
}

.AE-matching-wrapper .AE-matching .button-container .matchDir,
.AE-matching-wrapper .AE-matching .button-container .matchCheck,
.AE-matching-wrapper .AE-matching .button-container .matchReset {
  padding: 10px;
  bottom: 10px;
  background: var(--interactive-button-color);
  color: #fff;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  font-size: 1.063rem;
  border: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-matching-wrapper .AE-matching .button-container .matchDir:hover,
.AE-matching-wrapper .AE-matching .button-container .matchCheck:hover,
.AE-matching-wrapper .AE-matching .button-container .matchReset:hover,
.AE-matching-wrapper .AE-matching .button-container .matchDir:focus,
.AE-matching-wrapper .AE-matching .button-container .matchCheck:focus,
.AE-matching-wrapper .AE-matching .button-container .matchReset:focus {
  background: var(--interactive-button-hover-color);
}

.AE-matching-wrapper .AE-matching .button-container .matchCheck {
  opacity: 0.3;
  cursor: default;
  margin: 0 10px 0 10px;
}

.AE-matching-wrapper .AE-matching .button-container .matchCheck.active {
  opacity: 1;
  cursor: pointer;
}

.AE-matching-wrapper .AE-matching .matchComplete {
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  position: relative;
  display: none;
  margin-right: 20px;
  padding-top: 5px;
}

.AE-matching-wrapper .AE-matching #matchDirections {
  position: absolute;
  bottom: 70px;
  z-index: 9999;
  background: var(--interactive-button-color);
  width: 638px;
  padding: 10px;
  color: #fff;
  border: thin solid #242424;
  display: none;
  border-radius: 5px;
}

.AE-matching-wrapper .AE-matching #matchDirections .bottom-arrow {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--interactive-button-color);
  position: absolute;
  bottom: -18px;
  left: 170px;
}

.AE-matching-wrapper .status {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.AE-matching-wrapper .status.focusable:active,
.AE-matching-wrapper .status.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

/* Media Queries */
/* Add overflow-y for mobile */
@media all and (max-width: 991px) {
  .AE-matching-wrapper {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .AE-matching-wrapper .AE-matching {
    min-width: 650px;
  }
}

/*
*******************
* FREE-RESPONSE QUESTIONS
*******************
*/
/* Setup */
.AE-FRQ,
.AE-FRQ * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Main Container */
.AE-FRQ {
  padding: 30px;
  background-color: var(--interactive-background-color);
  background-image: var(--interactive-background-image);
  background-size: var(--interactive-background-size);
  background-position: var(--interactive-background-position);
  background-repeat: var(--interactive-background-repeat);
  border-radius: var(--interactive-border-radius);
}

/* Question & Summary Holder */
.AE-FRQ .question-area,
.AE-FRQ .summary-area {
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid var(--interactive-border);
  -webkit-box-shadow: var(--interactive-box-shadow);
  box-shadow: var(--interactive-box-shadow);
  border-radius: var(--interactive-border-radius);
}

/* Question & Summary Styles */
.AE-FRQ .frq-question,
.AE-FRQ .summary-area {
  display: none;
}

.AE-FRQ .active-question,
.AE-FRQ .active-summary {
  display: block;
}

.AE-FRQ.AE-FRQ-Static .active-summary {
  margin: 0 auto;
  width: calc(100% - 16px);
}

.AE-FRQ .frq-question header {
  margin-top: -30px;
  margin-bottom: -5px;
}

.AE-FRQ .type-area {
  width: 100%;
  min-height: 200px;
  padding: 10px;
  background-color: #f1f6f9;
  border: 1px solid var(--interactive-border);
  border-radius: var(--interactive-border-radius);
}

/* Button Styles */
.AE-FRQ .frq-next-btn,
.AE-FRQ .frq-review-btn {
  margin: 30px auto 10px auto;
  width: 50%;
}

/* Review Table */
.AE-FRQ .frq-table {
  width: 100%;
  border-collapse: collapse;
}

.AE-FRQ .frq-table th {
  text-align: left;
  font-size: 1.5rem; /* same as h4 */
  vertical-align: middle;
  color: #fff;
  padding: 10px;
  border-bottom: 1px solid #bec3c7;
  background-color: var(--interactive-custom-text-color);
}

.AE-FRQ .frq-table td {
  padding: 10px;
  border-bottom: 1px solid #bec3c7;
}

.AE-FRQ .frq-table .question-store {
  background-color: #f7f7f7;
}

/* Scrolling Versions */
.AE-FRQ-Scrolling .scrolling-prompt {
  width: 100%;
  height: 500px;
  padding: 10px 30px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #ffffff;
  border: 1px solid var(--interactive-border);
  -webkit-box-shadow: var(--interactive-box-shadow);
  box-shadow: var(--interactive-box-shadow);
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-FRQ-Scrolling .AE-multiple_choice {
  border: none;
}

.AE-FRQ-Scrolling .AE-multiple_choice .question,
.AE-FRQ-Scrolling .AE-multiple_choice .summary {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.AE-FRQ-Scrolling .with-preview-btn {
  margin-top: 20px;
}

@media all and (max-width: 1023px) {
  .AE-FRQ-Scrolling .scrolling-prompt {
    margin-bottom: 20px;
  }
}

/* Fix summary width for new snippet */
.AE-FRQ.AE-FRQ-Static .col-xs-12 > .summary-area {
  width: 100%;
}

/*
*******************
* FLASHCARDS
*******************
*/
.AE-flashcards {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: var(--interactive-background-color);
  background-image: var(--interactive-background-image);
  background-size: var(--interactive-background-size);
  background-position: var(--interactive-background-position);
  background-repeat: var(--interactive-background-repeat);
  position: relative;
  padding: 20px;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-flashcards .f1_container {
  position: relative;
  margin: 10px auto;
  margin-top: 30px;
  width: 70%;
  height: 350px;
  padding-right: 5px;
  z-index: 1;
  cursor: pointer;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
  -o-perspective: 1000px;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.AE-flashcards .f1_fake {
  position: absolute;
  z-index: 0;
  width: 70%;
  padding: 12px 12px 11px 8px;
  margin-top: 39px;
  height: 375px;
  margin-left: auto;
  margin-right: auto;
  top: 0px;
  left: 0px;
  right: 0;
  background-image: none;
  background-color: transparent;
  border: none;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-flashcards .fc_complete {
  text-align: center;
  margin-top: 130px;
  display: none;
}

.AE-flashcards .fc_retrybtn {
  margin: 0 auto;
  width: 55%;
  cursor: pointer;
  display: none;
}

.AE-flashcards .f1_card {
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
  -webkit-transition: all 0.3s linear;
  -moz-transform-style: preserve-3d;
  -moz-transition: all 0.3s linear;
  -o-transform-style: preserve-3d;
  -o-transition: all 0.3s linear;
  transform-style: preserve-3d;
  transition: all 0.3s linear;
  border: 3px solid #242424;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-flashcards .f1_container.hover_effect .f1_card {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.AE-flashcards .shadow {
  -webkit-box-shadow: var(--interactive-box-shadow) !important;
  box-shadow: var(--interactive-box-shadow) !important;
}

.AE-flashcards .face.front .row,
.AE-flashcards .face.back .row {
  margin-right: 1rem;
  margin-left: 1rem;
}

.AE-flashcards .face {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 350px;
  -webkit-text-stroke: 0px;
  border: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: calc(var(--interactive-border-radius) - 2px);
  -webkit-border-radius: calc(var(--interactive-border-radius) - 2px);
  -moz-border-radius: calc(var(--interactive-border-radius) - 2px);
  -ms-border-radius: calc(var(--interactive-border-radius) - 2px);
  -o-border-radius: calc(var(--interactive-border-radius) - 2px);
}

.AE-flashcards .face.front {
  background: #eaeaff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+57,d3efff+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -o-radial-gradient(center, ellipse, #ffffff 76%, #d3efff 100%);
  background: radial-gradient(ellipse at center, #ffffff 76%, #d3efff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d3efff',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  width: 100%;
}

.AE-flashcards .face.back {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -moz-box-sizing: border-box;
  -o-transform: rotateY(180deg);
  -o-box-sizing: border-box;
  transform: rotateY(180deg);
  background: #fffcea;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 12+ */
  /* IE10+ */
  background: -o-radial-gradient(
    center,
    ellipse,
    #fffcea 0%,
    #fffcea 76%,
    #ede5aa 100%
  );
  background: radial-gradient(
    ellipse at center,
    #fffcea 0%,
    #fffcea 76%,
    #ede5aa 100%
  );
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fffcea', endColorstr='#ede5aa', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

.AE-flashcards .cardFContent,
.AE-flashcards .cardBContent {
  display: none;
}

.AE-flashcards .fc_btns {
  width: 70%;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 25px;
}

.AE-flashcards .fc_nextbtn,
.AE-flashcards .fc_prevbtn,
.AE-flashcards .fc_removebtn {
  margin: 0 auto 10px auto;
  width: 100%;
  cursor: pointer;
  font-size: var(--default-font-size);
}

.AE-flashcards .fc_nextbtn:disabled,
.AE-flashcards .fc_nextbtn[disabled],
.AE-flashcards .fc_prevbtn:disabled,
.AE-flashcards .fc_prevbtn[disabled],
.AE-flashcards .fc_removebtn:disabled,
.AE-flashcards .fc_removebtn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.AE-flashcards .fc_nextbtn:disabled:hover,
.AE-flashcards .fc_nextbtn[disabled]:hover,
.AE-flashcards .fc_prevbtn:disabled:hover,
.AE-flashcards .fc_prevbtn[disabled]:hover {
  background: var(--interactive-button-color);
}

.AE-flashcards .fc_removebtn:disabled:hover,
.AE-flashcards .fc_removebtn[disabled]:hover {
  background: var(--interactive-secondary-button-color);
}

.AE-flashcards .cardsRemaining {
  margin: -10px auto 10px auto;
  width: 175px;
  height: 25px;
  padding: 10px;
  background-color: #fff;
  margin-bottom: 10px;
  border-radius: var(--interactive-border-radius);
  -webkit-border-radius: var(--interactive-border-radius);
  -moz-border-radius: var(--interactive-border-radius);
  -ms-border-radius: var(--interactive-border-radius);
  -o-border-radius: var(--interactive-border-radius);
}

.AE-flashcards .fl_cardCount {
  margin-top: 1px;
  text-align: center;
}

/* AUDIO */
.AE-flashcards .fc_audiobtn {
  background: url('https://s3.amazonaws.com/cms.accelerate-ed.com/Images/Production/templates/HighSchool/flashcard-audio.svg');
  background-position: center center;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  margin: 10px auto 0px auto;
  background-size: contain;
  border: none;
  cursor: pointer;
}

/* FADEOUT ANIMATION */
.AE-flashcards .flashcard_fadeOutUp {
  animation-name: fadeOutUp;
  -webkit-animation-name: fadeOutUp;
  animation-duration: 0.3s;
  -webkit-animation-duration: 0.3s;
}

/* MEDIA QUERIES */
@media all and (min-width: 768px) {
  .AE-flashcards .fc_nextbtn,
  .AE-flashcards .fc_prevbtn,
  .AE-flashcards .fc_removebtn {
    font-size: 0.9rem;
    margin: 0 auto;
  }

  .AE-flashcards .cardsRemaining {
    margin: 10px auto 10px auto;
  }
}

@media all and (min-width: 992px) {
  .AE-flashcards .fc_nextbtn,
  .AE-flashcards .fc_prevbtn,
  .AE-flashcards .fc_removebtn {
    font-size: var(--default-font-size);
  }
}

/*
******************
* LIGHTBOX (FANCYBOX)
******************
*/
/* CUSTOM STYLES */
/* Hides modal container until clicked */
.lightbox-content {
  display: none;
}

/* Centers image in modal container */
.lightbox-content img {
  display: block;
  margin: 0 auto;
}

/* Right corner plus symbol */
.lightbox-img,
.lightbox-text {
  display: inline-block;
  position: relative;
}

.lightbox-img:after,
.lightbox-text:after {
  content: '+';
  display: block;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.25s;
  position: absolute;
  padding: 2px 10px;
}

.lightbox-img:after {
  bottom: 7px;
  right: -1px;
}

.single-lightbox-img:after {
  bottom: 6px;
  right: 2px;
}

.lightbox-text:after {
  bottom: 18px;
  right: 2px;
  border-radius: 0px 0px 3px 0px;
}

/* Default image */
.lightbox-border {
  border: 1px solid var(--interactive-border);
}

/* Text and button content instead of images */
.lightbox-text,
.lightbox-btn {
  text-decoration: none;
  color: inherit;
}

.lightbox-text {
  width: 100%;
}

.lightbox-btn button {
  display: block;
  margin: 0 auto;
}

.lightbox-text > .lightbox-border {
  padding: 30px 15px 30px 15px;
  background-color: var(--interactive-border);
  border-radius: 5px;
}

/* Fixes body shifting underneath */
.compensate-for-scrollbar {
  margin-right: auto !important;
}

/* DEFAULT STYLES */
body.compensate-for-scrollbar {
  overflow: hidden;
}

/* 
? Removed because it changes the height of the body
* Causes page to lift up if the inner content is less than 100vh
*/
/* .fancybox-active {
  height: auto;
} */

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: var(--default-font-size);
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline-color: rgb(77, 144, 254);
  outline-offset: -2px;
  outline-style: auto;
  outline-width: 5px;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.15) 65%,
    rgba(0, 0, 0, 0.075) 75.5%,
    rgba(0, 0, 0, 0.037) 82.85%,
    rgba(0, 0, 0, 0.019) 88%,
    rgba(0, 0, 0, 0) 100%
  );
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right))
      max(25px, env(safe-area-inset-bottom))
      max(44px, env(safe-area-inset-left));
  }
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}

/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

/*
*******************
* CARDINAL DIRECTIONS
*******************
*/
.cardinal-directions {
  width: 100%;
  max-width: 450px;
}

.cardinal-directions button {
  width: 110px;
  height: 70px;
}

.cardinal-directions button i {
  font-size: 1.5em;
}

@media all and (max-width: 575px) {
  .cardinal-directions button {
    font-size: 0.8rem;
    width: 90px;
    height: 65px;
  }
  .cardinal-directions button i {
    font-size: 1.2em;
  }
}

/*
*******************
* FLEXBOX GRID SYSTEM (LEGACY)
! DO NOT EDIT
? This has been modified to work with the new responsive grid system
? .col-xs-* is the same as .col-*
*******************
*/
.row,
.elm-row /* fix for older elementary styles */ {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* margin-right: -0.5rem;
  margin-left: -0.5rem; */
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media only screen and (min-width: 768px) {
  /* .container {
    width: 49rem;
  } */

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 15px;
    padding-left: 15px;
  }

  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 992px) {
  /* .container {
    width: 65rem;
  } */

  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 15px;
    padding-left: 15px;
  }

  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 1200px) {
  /* .container {
    width: 76rem;
  } */

  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 15px;
    padding-left: 15px;
  }

  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
