/*
Theme Name: Chelin
Theme URI: http://chelin.cl
Author: Jose Hohmann
Author URI: http://hohmann.cl
Description: Tema para Chlein Consultores
License: GNU General Public License v3.0 /
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Tags: gray, light, two-columns, right-sidebar, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, featured-images, flexible-header, sticky-post,  theme-options, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

This theme is the most seamless and minimalistic integration of Twitter Bootstrap Framework into
the _s starter theme from Automattic, the guys behind WordPress.

_s (or Underscores) http://underscores.me/, (C) 2012-2013 Automattic, Inc. Twitter Bootstrap

Credits:

1. Bootstrap

 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)

 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=f58353a31151a8c05d7c)
 * Config saved to config.json and https://gist.github.com/f58353a31151a8c05d7c

2. wp_bootstrap_navwalker

* Class Name: wp_bootstrap_navwalker
* GitHub URI: https://github.com/twittem/wp-bootstrap-navwalker

3. Glyphicons

 * http://getbootstrap.com/components/

*/

/* My Minimal WordPress Styling comes here */

/* This is a small security for too long strings titles */
body {
	word-wrap: break-word;
}

/* Alignment */
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}


/* Images and wp-captions should always fit and be responsive */
img {
	display: inline-block;
	height: auto;
	max-width: 100%;
}
img[class*="wp-image-"] {
	margin-top: 10px;
	margin-bottom: 10px;
}
.wp-caption {
	border: 1px solid #ccc;
	margin-bottom: 10px;
	max-width: 100%;
	border-radius: 4px;
	padding: 0 10px;
}
.wp-caption.aligncenter {
	margin-bottom: 10px;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
}
.wp-caption .wp-caption-text {
	text-align: center;
	margin-top: 10px;
}

/* WP Gallery */
.gallery {
	margin-bottom: 1.5em;
}
.gallery a img {
	border: none;
	height: auto;
	max-width: 90%;
}
.gallery dd {
	margin: 0;
}
.gallery-caption {
	display: block;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}


/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}
.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}


/* Content */
.main-content-inner {
	padding-bottom: 1.5em;
}
.hentry {
	margin: 0 0 1.5em;
}
.sticky {
	display: block;
}
.bypostauthor {
	display: block;
}


/* Clearing */
.clear {
	clear: both;
}

/* Navigation */

.dropdown-submenu{position:relative;}
.dropdown-submenu>.dropdown-menu{top:0;left:100%;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;}
.dropdown-submenu:active>.dropdown-menu, .dropdown-submenu:hover>.dropdown-menu {
display: block;
}
.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;}
.dropdown-submenu:active>a:after{border-left-color:#ffffff;}
.dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;}


/* Here some needed widget styles
 * Most widgets are adapted in the file bootstrap-wp.js - and REALLY easy to modify! ;) */
.widget { margin-bottom: 2em; }
.widget_nav_menu ul.sub-menu li, .widget_pages ul.children li { padding-left: 15px; }

/* Hiding the search widget's button in widgets. thats just too old-skool. :) but if you want it back, just delete the next line.
 * Note: you can change the whole appearance of the search_form() function in our searchform.php */
.widget_search .search-form input[type="submit"] { display: none; }

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Nested comments? They are threaded and nested already, you just need to add your own styling to finalize!
 * For example with some margin, like the line below ;) Delete, modify, change classes in HTML if you desire another style */
 .comment .children { margin-left: 1.5em; }

/**
* Some WP Theme Repository requirements
*/

.sticky {
}

.gallery-caption {

}

.bypostauthor {

}

.entry-meta {
	clear: both;
}

/*
 == Quick CSS styling tips ==

 You can start off in a rough direction with some minimal styles.
 See below for some tips. ;)


 == Want to have the whole site wrapped? ==

 Just fill the .container class with some background color to have a the whole site "wrapped".
 This works so easy because every main part is wrapped only once into a container class by bootstrap.
 Try out by decommenting the next line and go from there.

 .container { background: #f9f9f9; border-right: 1px solid #eee; border-left: 1px solid #eee; }


 == Want to wrap just the content and sidebar in Bootstrap style? ==

 That one is a great example to show that some things are much cleaner and easier to do via just adding some HTML classes.
 In this case, we will add just one CSS class "panel", look for example at the beginning in content.php!


 == Infinite Scrolling by Jetpack ==
 You can enable this cool feature by simply decommenting the lines below and make sure you use the same classes on the right place in your html..

/* Globally hidden elements when Infinite Scroll is supported and in use.
 * Older / Newer Posts Navigation (the pagination, must always be hidden), Theme Footer only when set to scrolling.. */

/*
.infinite-scroll .page-links,
.infinite-scroll.neverending .site-footer {
	display: none;
}
*/

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */

/*
.infinity-end.neverending .site-footer {
	display: block;
}
*/

/* Hey, if you don't need my comments anymore, just delete me! :)  */


/* styles for _tk_pagination und _tk_link_pages */
nav form.tk-page-nav,
nav .input-group,
nav .input-group-btn,
nav .form-control {
    display: inline;
}

body {
    font-family: Lato, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #8c8c8c;
    background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
    font-family: Raleway, sans-serif;
    color: #636363;
    font-weight: 700;
}
a {
    color: #404d9c;
    text-decoration: none;
}

.navbar {
    margin-bottom: 0;
}

.navbar {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.navbar-default {
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    width: 100%;
    border: none;
    border-bottom: 1px solid #e7e7e7;
    background-color: #fff;
}
.navbar-no-background {
    background: white !important;
    border: none;
    z-index: 9999;
}
.navbar-light-font {
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background-color: white;
    border: none;
    border-bottom: 1px solid #efefef;
}
.navbar .container {
    position: relative;
    padding-bottom: 0;
}
.navbar-default .navbar-toggle {
    margin: 10px 0 0 15px;
}
.navbar-default .navbar-toggle, .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    border: none;
    background: #f3f3f3;
}
.navbar-light-font .navbar-toggle, .navbar-light-font .navbar-toggle:hover, .navbar-light-font .navbar-toggle:focus {
    background: #404d9c;
}
.navbar-default .navbar-toggle i {
    font-size: 31px;
}
.navbar-light-font .navbar-toggle i {
    color: #fff;
}

.navbar-brand {
    height: auto;
    padding: 10px 0px;
}

@media screen and (max-width: 480px) {

	.navbar-brand {
	    width: 200px;
	}
	.h3, h3 {
    	font-size: 19px;
    }

}

@media screen and (max-width: 992px) {
  .navbar-toggle {
    display: block;
  }

  .navbar-collapse.collapse {
    display: none !important;
  }

  .main-navbar-nav.navbar-nav,
  .main-navbar-nav.navbar-nav > li {
    float: none !important;
  }

  .navbar-collapse.collapse.in {
    display: block !important;
    overflow-y: auto !important;
  }
}
.navbar-brand>img {
    display: block;
    width: 150px;
    height: auto;
}

.navbar-default .navbar-collapse {
    float: right;
    border-top: none;
    padding-left: 0;
    padding-right: 0;
}
@media screen and (max-width: 768px) {
  .navbar-default .navbar-collapse {
    padding-left: inherit;
    padding-right: inherit;
  }
}
@media screen and (max-width: 992px) {
  .navbar-default .navbar-collapse {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    max-height: none;
  }
}
.nav {
    font-family: Raleway, sans-serif;
    font-weight: 700;
}
.nav-onepage {
    position: relative;
    top: 2em;
}


.nav-smaller > li > a {
    font-size: 12px;
}
.nav-onepage > li > a {
    padding-top: 0;
    padding-bottom: 0;
}

@media screen and (max-width: 992px) {
  .nav-onepage {
    top: 0;
  }
  .nav-onepage > li {
    float: none;
    margin: 18px 0;
  }
  .nav-onepage .btn {
    top: 0;
  }
}


.navbar-default .navbar-nav > li > a {
    color: #3B3B3B;
    font-weight: normal;
    font-size: 13px;
}
.navbar-light-font .navbar-nav > li > a {
    color: #9c9c9c;
}
.navbar-light-font .btn-outline {
    border-color: #fff;
}
.nav-onepage .btn {
    padding-top: 3px;
    padding-bottom: 3px;
    margin-left: 9px;
    position: relative;
    top: -5px;
    color: white!important;
}
.navbar-light-font .btn-outline.btn-primary:hover, .navbar-light-font .btn-outline.btn-primary:focus {
    background-color: #404d9c;
    border-color: ##404d9c;
    color: #fff;
}
.text-primary {
    color: #404d9c;
}

#servicios .btn{
	display: none;
}

.btn {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    font-family: Raleway, sans-serif;
    font-weight: 500;
}
.btn-primary {
    color: #FFF;
    background-color: #404d9c;
    border-color: #404d9c;
}
.hero-unit .btn-primary:hover, .hero-unit .btn-primary:visited, .hero-unit .btn-primary:active, .hero-unit .btn-primary:focus {
    color: #FFF;
    background-color: #404d9c!important;;
    border-color: #404d9c;
}
.btn-lg {
    font-size: 16px;
}

.hero-solid-color {
    height: 575px;
    background-color: #656565;
}
.hero-solid-color .container {
    position: relative;
    top: 30%;
}
.fullwidth-image, .fullwidth-image-solid {
    background-image: url(images/slide-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-unit .left {
    float: left;
    width: 60%;
}
.hero-unit .heading {
    font-size: 36px;
    font-weight: normal;
    color: #fff;
    background-color: rgba(171, 169, 168, 0.7);
    padding: 5px 15px;
}
.hero-unit .lead {
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 35px;
    color: #fff;
    background-color: rgba(171, 169, 168, 0.7);
    padding: 5px 15px;
}
.hero-unit .right {
    float: right;
    width: 40%;
}

@media screen and (max-width: 480px) {
  .hero-unit .left {
    width: 100%;
    text-align: center;
  }
  .hero-unit .right {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .hero-unit .heading {
    font-size: 36px;
  }
  .hero-unit .lead {
    font-size: 18px;
  }
}

.content-lead {
    padding: 50px 0;
}
.content-lead p {
    width: 75%;
    margin: 0 auto;
    font-size: 22px;
    font-weight: 300;
    text-align: center;
}
.content-lead p:after {
    content: '';
    display: block;
    border-top: 1px solid #404d9c;
    width: 120px;
    margin: 0 auto;
    margin-top: 35px;
}
.no-padding-bottom {
    padding-bottom: 0 !important;
}

.testimonial-carousel.owl-theme .owl-controls .owl-pagination {
  position: relative;
}

.testimonial-standard-carousel.owl-theme .owl-controls {
  margin-top: 30px;
}

.testimonial-standard {
  text-align: center;
}
.testimonial-standard .content {
  margin-bottom: 40px;
  font-style: italic;
  font-size: 26px;
}
.testimonial-standard .author img {
  width: 60px;
  margin-bottom: 10px;
}
.testimonial-standard .author .name, .testimonial-standard .author .title {
  display: block;
}
.testimonial-standard .author .name {
  font-weight: 700;
  font-size: 16px;
}

.testimonial-big-carousel.owl-theme .owl-controls {
  margin-top: 30px;
}

.testimonial-big {
  text-align: center;
}
.testimonial-big .content {
  display: inline;
  line-height: 1;
  position: relative;
  font-weight: 300;
  font-style: italic;
  font-size: 48px;
}
.testimonial-big .content:after {
  display: block;
  content: " ";
  width: 100px;
  height: 3px;
  margin: 40px auto;
  background-color: #404d9c;
}
.testimonial-big .content span {
  position: relative;
  z-index: 1;
}
.testimonial-big i {
  position: absolute;
  right: -50px;
  top: -40px;
  font-size: 3em;
  color: #ececec;
}
.testimonial-big .author img {
  width: 60px;
  margin-bottom: 10px;
}
.testimonial-big .author .name, .testimonial-big .author .title {
  display: block;
}
.testimonial-big .author .name {
  font-weight: 700;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .testimonial-big .content {
    font-size: 30px;
  }
  .testimonial-big i {
    display: none;
  }
}

.section-heading {
    margin-bottom: 30px;
    color: #636363;
}
.section-heading-center {
    padding-top: 40px;
    margin-bottom: 60px;
    text-align: center;
}
.section-heading-center .heading {
    margin-bottom: 10px;
    font-size: 48px;
    font-weight: 400;
}
.pricing-table2-set {
    padding-top: 20px;
    text-align: center;
}
.pricing-table2 {
    display: inline-block;
    vertical-align: middle;
    padding: 20px;
    margin: 0 8px;
    width: 25%;
    background-color: #FCFCFC;
    border: 1px solid #E7E7E7;
    border-top-width: 5px;
    border-top-color: #b9b9b9;
}
.pricing-table2.pricing-recommended {
    position: relative;
}
section {
    padding: 40px 0;
}
.section-dark {
    background-color: #393939;
    color: #868686;
}
.margin-bottom-30 {
    margin-bottom: 30px;
}
.list-logo {
    text-align: center;
}
.list-logo > li {
    margin: 1em 2.5em;
}
@media screen and (max-width: 480px) {

  .list-logo > li {
    margin: 1em 1.5em;
  }
}
@media screen and (max-width: 320px) {

  .list-logo > li {
    margin: 1em 0em;
  }
}
.back-to-top {
    display: none;
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 9999;
}
.back-to-top a {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    display: block;
    width: 40px;
    height: 40px;
    font-size: 17px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
}
/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
}

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center;
}

/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}

/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}

.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}

/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}

/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}

/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}

/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}
@-moz-keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@-moz-keyframes backSlideOut {
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes backSlideOut {
  25% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@-moz-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0);
  }
}
@keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}
@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
.morphext > .animated {
  display: inline-block;
}