/*!
 * Copyright (c) 2017 Noel Wapp, - All Rights Reserved
 * Unauthorized copying of this file, via any medium is strictly prohibited
 * Proprietary and confidential
 */
.content-splitter .title {
  cursor: pointer;
  z-index: 2;
  position: relative;
  text-decoration: underline; }
  .content-splitter .title:after {
    display: inline-block;
    font-family: FontAwesome;
    content: "\f150";
    margin-left: 5px;
    transition: 0.2s; }
.content-splitter .content {
  position: relative;
  float: left;
  z-index: 1;
  display: none;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -ms-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out; }
  .content-splitter .content:after {
    content: "";
    clear: both;
    width: 100%; }
.content-splitter.open .content {
  display: inline;
  animation: fadeInFromNone 0.5s ease-out, slide-in 0.5s forwards;
  -webkit-animation: fadeInFromNone 0.5s ease-out, slide-in 0.5s forwards;
  filter: alpha(opacity=100);
  opacity: 1; }
.content-splitter.open .title:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }
.content-splitter.closed .content {
  animation: slide-out 0.5s forwards;
  -webkit-animation: slide-out 0.5s forwards; }
.content-splitter.closed .title:after {
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }

@keyframes slide-in {
  100% {
    transform: translateY(0%);
    position: relative; } }
@-webkit-keyframes slide-in {
  100% {
    -webkit-transform: translateY(0%);
    position: relative; } }
@keyframes slide-out {
  0% {
    transform: translateY(0%); }
  100% {
    transform: translateY(-100%); } }
@-webkit-keyframes slide-out {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(-100%);
    filter: alpha(opacity=100);
    /* For IE8 and earlier */ } }
@-webkit-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }
@-moz-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }
@-o-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }
@keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }

/*# sourceMappingURL=content-splitter.css.map */
