
.shortcode {
  position: relative;
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.column + .shortcode {
  clear: left;
}

/*
*=============================================
* Button
*=============================================
*/

.button {
  display: inline-block;
  width: auto;
}

button.button {
  display: block;
  float: left;
}

/*
*=============================================
* Icon
*=============================================
*/

.shortcode-icon {
  display: inline-block;
}

/*
*=============================================
* Teaser
*=============================================
*/

.teaser-image {
  position: relative;
  overflow: hidden;
}

/*
*=============================================
* Accordion / Toggle / Tabs
*=============================================
*/

.accordion-title, .toggle-title {
  margin-top: 0;
  margin-bottom: 0;
}

.accordion-content, .toggle-content {
  overflow: hidden;
  padding: 0 !important;
  height: 0;
  -webkit-transition: height .35s ease;
  -moz-transition: height .35s ease;
  -o-transition: height .35s ease;
  -ms-transition: height .35s ease;
  transition: height .35s ease;
}

.tab-content {
  display: none;
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.tab-content.active,
.shortcode-tabs.open-first .tab-content:first-of-type {
  display: block;
}

.vertical ul.tabs-labels {
  float: left;
}

.tabs-container {
  overflow: hidden;
  position: relative;
}

.shortcode-tabs.vertical ul.tabs-labels {
  min-width: 120px;
  max-width: 30%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.shortcode-tabs.vertical ul.tabs-labels li {
  display: block;
}

aside .shortcode-tabs.vertical ul.tabs-labels,
.col-1_3 .shortcode-tabs.vertical ul.tabs-labels,
.col-1_4 .shortcode-tabs.vertical ul.tabs-labels {
  max-width: none;
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

aside .tabs-container {
  float: left;
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.shortcode-tabs.horizontal ul.tabs-labels li {
  display: inline-block;
}

/* Below iPad */
@media(max-width:768px) {

  .shortcode-tabs.vertical ul.tabs-labels {
    float: none;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .shortcode-tabs.vertical ul.tabs-labels li {
    display: inline-block;
  }

  .shortcode-tabs.vertical .tab-content {
    float: none;
    width: 100%;
  }

  .shortcode-tabs.horizontal ul.tabs-labels {
    width: 100%;
    display: table;
  }

  .shortcode-tabs.horizontal ul.tabs-labels li {
    display: table-cell;
    text-align: center;
  }

}

/*
*=============================================
* Pricing Table
*=============================================
*/

.pricing-table-wrapper {
  display: table;
  table-layout: fixed;
  width: 100%;
  text-align: center;
}

.shortcode-pricing-table .table-row {
  display: table-row;
}

.shortcode-pricing-table .pricing-box {
  display: table-cell;
}

.shortcode-pricing-table p {
  display: none;
}

.pricing-content ul li {
  list-style: none;
}

/*
*=============================================
* Progressbar
*=============================================
*/

.shortcode-progressbar .percentage {
  position: relative;
  display: block;
  background: #444;
  overflow: visible !important;
  width: 0;
}

.shortcode-progressbar .inner-title, .shortcode-progressbar .inner-percent {
  display: none;
}

/*
*=============================================
* Tooltip
*=============================================
*/

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip a:hover {
  cursor: help;
}

.tooltip > span {
  display: block;
  position: absolute;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  white-space: nowrap;
  background: rgba(0,0,0,.8);
  text-shadow: 0 1px 0 #000;
  color: #FFF;
  padding: 0 8px;

  zoom: 1;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";

  -webkit-transition: opacity .1s ease;
  -moz-transition: opacity .1s ease;
  -o-transition: opacity .1s ease;
  -ms-transition: opacity .1s ease;
  transition: opacity .1s ease;
}

.tooltip:hover > span {
  visibility: visible;
  opacity: 1;

  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.tooltip:hover > span:hover {
  visibility: hidden;
  opacity: 0;

  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.tooltip > span:after {
  content: '';
  display: block;
  position: absolute;
}

/* Top */

.tooltip-top > span {
  text-align: center;
  margin-top: -6px;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
  -moz-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  -o-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
}

.tooltip-top > span:after {
  bottom: -6px;
  left: 50%;
  margin-left: -6px;
  border-top: 6px solid rgba(0,0,0,.8);
  border-right: 6px solid;
  border-left: 6px solid;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
}

/* Bottom */

.tooltip-bottom > span {
  text-align: center;
  margin-bottom: -6px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  -moz-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  -o-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
}

.tooltip-bottom > span:after {
  top: -6px;
  left: 50%;
  margin-left: -6px;
  border-bottom: 6px solid rgba(0,0,0,.8);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}

/* Left */

.tooltip-left > span {
  text-align: right;
  margin-left: -12px;
  left: 0;
  -webkit-transform: translate(-100%,-100%);
  -moz-transform: translate(-100%,-100%);
  -ms-transform: translate(-100%,-100%);
  -o-transform: translate(-100%,-100%);
  transform: translate(-100%,-100%);
}

.tooltip-left > span:after {
  right: -6px;
  top: 50%;
  margin-top: -6px;
  border-left: 6px solid rgba(0,0,0,.8);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* Right */

.tooltip-right > span {
  text-align: left;
  margin-right: -12px;
  right: 0;
  -webkit-transform: translate(100%,-100%);
  -moz-transform: translate(100%,-100%);
  -ms-transform: translate(100%,-100%);
  -o-transform: translate(100%,-100%);
  transform: translate(100%,-100%);
}

.tooltip-right > span:after {
  left: -6px;
  top: 50%;
  margin-top: -6px;
  border-right: 6px solid rgba(0,0,0,.8);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
/*
*=============================================
* Highlight
*=============================================
*/

.highlight {
  display: inline;
}

/*
*=============================================
* Dropcap
*=============================================
*/

.dropcap {
  float: left;
  font-size: 45px;
  line-height: 50px;
  font-family: Georgia;
  padding-right: 6px;
  margin-bottom: -5px;
}

/*
*=============================================
* Gauge
*=============================================
*/

.shortcode-gauge {
  width: 160px;
  height: 160px;
  text-align: center;
  left: 50%;
  margin-left: -80px;
}

.shortcode-gauge .easy-pie-chart {
  position: relative;
  text-align: center;
}

.easy-pie-chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}

/*
*=============================================
* Form
*=============================================
*/

form .form-text_field {
  display: none !important;
}

.form-response {
  display: none;
}

.form-field {
  position: relative;
}

/*
*=============================================
* Person
*=============================================
*/

.person-image {
  position: relative;
  overflow: hidden;
}

.person-social {
  text-align: center;
}

.person-social li {
  display: inline-block;
}

/*
*=============================================
* Callout
*=============================================
*/

.shortcode-callout p {
  margin-bottom: 0;
}

/*
*=============================================
* Recent Posts
*=============================================
*/

.shortcode-recent-posts .no-thumb {
  display: none;
}

/*
*=============================================
* Section
*=============================================
*/

.section-box {
  position: relative;
  width: 100%;
  clear:left;
}

.section-box .anchor {
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  position: absolute;
  top: 0;
}

.section-box .section-inner > * {
  z-index: 10;
  position: relative;
}

.section-background-image, .section-background-map, .section-background-video {
  position: absolute;
  width: 100%;
  height: 100% !important;
  top: 0;
  left: 0;
}

.section-background-map .gmnoprint, .section-background-map .gm-style-cc {
  display: none;
}

.section-animate-image {
  background-repeat: repeat;
  background-position: 0 0;
}

.section-background-video {
  overflow: hidden;
}

.section-background-video .video-placeholder {
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.section-background-video .video-placeholder.mobile {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  top: 0;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.section-background-video video {
  width: 100%;
}

@keyframes sectionleft {
  to { background-position: -100% 0; }
}

@-webkit-keyframes sectionleft {
  to { background-position: -100% 0; }
}

.section-box.animate-left .section-animate-image {
  animation: sectionleft 60s linear infinite;
  -webkit-animation: sectionleft 60s linear infinite;
  -moz-animation: sectionleft 60s linear infinite;
  -o-animation: sectionleft 60s linear infinite;
}

@keyframes sectionright {
  to { background-position: 100% 0; }
}

@-webkit-keyframes sectionright {
  to { background-position: 100% 0; }
}

.section-box.animate-right .section-animate-image {
  animation: sectionright 60s linear infinite;
  -webkit-animation: sectionright 60s linear infinite;
  -moz-animation: sectionright 60s linear infinite;
  -o-animation: sectionright 60s linear infinite;
}

@keyframes sectionup {
  to { background-position: 0 -200%; }
}

@-webkit-keyframes sectionup {
  to { background-position: 0 -200%; }
}

.section-box.animate-up .section-animate-image {
  animation: sectionup 60s linear infinite;
  -webkit-animation: sectionup 60s linear infinite;
  -moz-animation: sectionup 60s linear infinite;
  -o-animation: sectionup 60s linear infinite;
}

@keyframes sectiondown {
  to { background-position: 0 200%; }
}

@-webkit-keyframes sectiondown {
  to { background-position: 0 200%; }
}

.section-box.animate-down .section-animate-image {
  animation: sectiondown 60s linear infinite;
  -webkit-animation: sectiondown 60s linear infinite;
  -moz-animation: sectiondown 60s linear infinite;
  -o-animation: sectiondown 60s linear infinite;
}

/*
*=============================================
* PDF
*=============================================
*/

.embed-pdf {
  display: block;
  margin: auto;
  border: 1px solid #e5e5e5;
  border-top: none;
}

/*
*=============================================
* Facebook Comments
*=============================================
*/

.shortcode-fb-comments * {
  width: 100% !important;
}