*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@font-face {
    font-family: 'antonregular';
    src: url('../fonts/anton-regular-webfont.woff2') format('woff2'),
         url('../fonts/anton-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'robotocondensed';
    src: url('../fonts/roboto-condensed-webfont.woff2') format('woff2'),
         url('../fonts/roboto-condensed-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.special-text {
  font-size:2.3em !important;
  text-align: left;
}

body, html {
	width: 100%;
	overflow-x: hidden;
}

h1,h2,h3,h4 {
	font-family: 'antonregular', serif;
	text-align: center;
}
h1, .cbp-l-project-title {
	font-size: 3em;
	background-color: black;
    display: inline-block;
    padding: 0.1em;
    color: white !important;
  padding-bottom: 0.3em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.special-text {
  /*Josefin Slab*/
}


#wwd-cont {
  padding-bottom: 3em;
}

.cbp-l-project-title {
	    letter-spacing: 0;
    font-style: italic;
}
h2 {
	font-size: 2.6em;
}
h3 {
	font-size: 2.2em;
}
h4 {
    font-size: 1.4em;
    display: inline-block;
    padding: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: normal;
    margin-top: 1em;
}
.open h4 {
	color: #00ABA0;
}
p {
	font-size: 1.5em;
}

.center {
	text-align: center;
}

html {
	/*background: #00a79c;*/
	background: black;
}
body {
	font-family: 'robotocondensed', sans-serif;	
	background: transparent;
	font-size: 1.2em;
}

::-webkit-scrollbar {
	display:none;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 15;
    width: 100%;
    -webkit-font-smoothing: auto;
    background: 0 0;
    -webkit-touch-callout: none;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    text-align: center;
}

.header-logo, .header-logo-black {
    width: 42px;
    height: 18px;
    float: left;
    left: -10px;
}


nav a {
	position: relative;
	display: inline-block;
	margin: 1em 1.2em;
	outline: none;
	color:#fafafa;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	font-size: 1.35em;
}
.footer nav a {
    margin-bottom: 0;
}
.footer nav ol {
    margin: 0;
    padding: 0;
}

nav a:hover,
nav a:focus {
	outline: none;
	text-decoration: none;
	color:#fafafa;
}

.navbar {
  position: fixed;
  width: 100%;
  font-size: 3em;
  color: white;
  text-align: center;
  line-height: 0.8em;
  z-index:9999999;
  top:0;
  left: 0;
}



.white {
 z-index:99999991;
	position: fixed;
	top:12px;
	width:34px;
	height: 34px;
	cursor: pointer;
	left: 5%;
}

.navbar {
  border-radius: 0;
  min-height: 0;
  top:-1px;
  font-size: 1em;
  left:0;
  border:0;
}
.is-active .header-background {

}

.header-background {
    position: fixed;
    left: 0;
    height: 66px;
    width: 100%;
    color: #000;
    -webkit-font-smoothing: auto;
    background-color: rgba(0,0,0,0.8);
}


.navbar ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar ol li {
  display: inline-block;
  margin-right: 1.6em;
}
.navbar nav a {
  opacity: 0;
}
.navbar.is-active a {
  opacity: 1;
}

.container-fluid {
	padding:0;
}

.main-content {
		-webkit-transform: translate3d(0px, 0px, 0px);
	/*
	-webkit-transition:all 1s linear;
                    -moz-transition:all 1s linear;
                    -o-transition:all 1s linear;
                    -ms-transition:all 1s linear;
                    transition:all 1s linear;
*/
	width:100%;

	background: transparent;
	top:0;
	left: 0;
	z-index: 999999;
	position: absolute;
}

.white-bg {
    background: white;
}

/* LINK HOVER */
/* Effect 14: border switch */

.cl-effect-14 a {
	padding: 0 10px;
	height: 25px;
	line-height: 25px;
}

.cl-effect-14 a::before,
.cl-effect-14 a::after {
	position: absolute;
	width: 25px;
	height: 1px;
	background: #fff;
	content: '';
	opacity: 0.2;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	pointer-events: none;
}

.cl-effect-14 a::before {
	top: 0;
	left: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	transform-origin: 0 0;
}

.cl-effect-14 a::after {
	right: 0;
	bottom: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.cl-effect-14 a:hover::before,
.cl-effect-14 a:hover::after,
.cl-effect-14 a:focus::before,
.cl-effect-14 a:focus::after {
	opacity: 1;
}

.cl-effect-14 a:hover::before,
.cl-effect-14 a:focus::before {
	left: 50%;
	-webkit-transform: rotate(0deg) translateX(-50%);
	-moz-transform: rotate(0deg) translateX(-50%);
	transform: rotate(0deg) translateX(-50%);
}

.cl-effect-14 a:hover::after,
.cl-effect-14 a:focus::after {
	right: 50%;
	-webkit-transform: rotate(0deg) translateX(50%);
	-moz-transform: rotate(0deg) translateX(50%);
	transform: rotate(0deg) translateX(50%);
}





.front-cover {
  padding: 0;
  /*background-image: url("../img/front-spumma.jpg");
  background-size: contain;
  background-position: center;
  box-shadow:0 0 20px #666;*/
  height:100%;
-webkit-transform: translate3d(0px, 0px, 0px);
}

.text-row {
	padding-top: 4em;
}


/* WHO WE ARE */

.wwa .col-md-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}





/* PORTFOLIO */
.cbp-panel {
}

#portfolio .cbp-filter-item {
	color: #231F20;
	border-color: #b1d0cd;
}
#portfolio .cbp-filter-item-active {
	color:#b1d0cd;
}
.cbp-l-loadMore-link {
	background: white;
}

/*PARALLAX*/

.front-cover {
position: fixed;
width: 100%;
top:0;
left:0;
z-index: 1;
}
.front-cover .el {
	position:fixed;
	width:100%;
	height:100%;
	display:none;
	  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.front-cover div.el1 {
	display:block;
}

.narrow .front-cover div {
     background-position: 10% 9%;
}

.vertical .front-cover div {
	background-position: 10% center;
    background-size: auto 100%;
}



.slide-content {
	position: relative;
	width:100%;
	z-index: 2;
	background: white;
}

.second-container {

	background: #00ABA0;
	color: white;

	text-align: center;
}
.second-container h1 {
	font-size: 4em;
	margin-bottom: 0.6em;
}
.second-container p {
}
#wwd-cont p {
    font-size: 1.25em;
}
.big-text {
	  display: table;
  text-align: center;
}
.vcenter {
  display: table-cell;
  vertical-align: middle;
      -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    position: relative;
}

.third-container {
  background: white;
  color: #231F20;
}
.third-container p {
}
.spumma-lab-row {
    position: relative;
    z-index: 99999;
  }
#spumma-lab p {
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 1em;
    font-size:1.7em;
    transition:2s linear all;
}


#contact-us p strong {
}

/* LINKS COVER */

.coverLink {
	display: none;
	position:absolute;
	z-index: 99999;
}

#portfolio-link {

}

/* WHAT WE DO */


.col-md-4, .col-md-3 {
	text-align: center;
}

.pic {
    height: 185px;
    width: 185px;
    display: inline-block;
}
.pic img {
	width:100%;
}
.do .pic img {
  height: 100%;
  width: auto;
}
/*B&W*/
.wwa-img {
    height: 141px;
}

.wwa h4 {
  margin-top:2em;
}

.wwa-img img.anim {
  display:none;
}

.wwa-column {
      display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-around;
}

.open .wwa-img img.anim {
    display: block;
}
.open .wwa-img img.cover {
  display: none;
}
#executive .wwa-img img {

}
#video .wwa-img img {

}
#digital .wwa-img img {

}
#publications .wwa-img img {

}

#publications.open .pic {
background:none;
}


.wwa-img:hover {
	  cursor:pointer;
}

.parent {
	padding-bottom: 2em;
}
.www-info {
    color: white;
    position: relative;
    margin-top: 10px;
 }
 .www-info .col-lg-10 {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
 }

.arrow-up {
    border-bottom: 9px solid black;
    width: 110px;
    height: 0;
    margin-top: 15px;
}

 .text-cont {
    padding: 20px;
    color: #000;
    padding-top: 0;
    margin-left: 1em;
 }

.www-info p {
}

#spumma-lab {
  background:black;
  transition: 2s linear all;
  padding-top:4em;
  padding-bottom: 2em;
}

#spumma-lab.active-lab {
  background:white;
}

#spumma-lab.active-lab p {
    color:#000;
        padding: 20px;
}
.spumma-lab-icon, .static-lab{
    width: 127px;
    height: 110px;
    margin: 0 auto;
}
#spumma-lab .static-lab {
    background: url(../img/lab-icon.png);
    opacity:1;
    transition: 2s linear all;
}
.spumma-lab-icon {
  margin-bottom: 3.5em;
  position: relative;
}
.spumma-lab-icon > *{
  position: absolute;
  top:0;
  left:0;
}
#spumma-lab.active-lab .static-lab {
    opacity:0;
}
#spumma-lab .spumma-lab-icon img {
    opacity:0;
    width: 156px;
    margin-left: -20px;
    margin-top: -54px;
    transition: 1s linear all;
}
#spumma-lab.active-lab-logo .spumma-lab-icon img {
    display:inline-block;
    opacity: 1;
}



ul.contentUl {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.contentUl li {
  padding-left: 1em;
  text-indent: -1em;
}

.contentUl li:before {
    content: "•";
    padding-right: 5px;
    color: #00ABA0;
    font-size: 2em;
    font-family: sans-serif;
    line-height: 0em;
    position: relative;
    top: 5px;
}

.third-container {
	height:auto;
}

#portfolio, .contact-us-container, .third-container {
    background: url(../img/bgr/Fondos_WEB_02.jpg);
}

.contact {
padding: 20px;
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 20px;
    text-align: left;
    width: 260px;
    background: url(../img/small-icons.png) scroll -175px 24px no-repeat;
    padding-left: 48px;
    display: inline-block;

}
.contact.no-bg {
  background:none;
  padding-left:0;
}
.contact.no-bg p {
      display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size:1.7em;
    position: relative;
}
.small-sep {
  border: 1px solid #000;
    position: absolute;
    height: 35px;
    right: 0;
    top:6px;
}
.contact.right {
	float:right;
}
.contact h3 {
font-weight: bold;
    font-size: 2.5em;
    text-align: left;
}
.small-icon {
      background: url(../img/small-icons.png);
    display: inline-block;
    width: 43px;
    height: 40px;
    margin-right: 8px;
}
.small-icon.instagram-icon {
      background-position: -56px 0;
}
.small-icon.twitter-icon {
      background-position: -115px 0;
}
.contact p {
	color:black;
	font-style: 1.8em;
	font-size: 2em;
}
.contact-us-container {
	background-color: white;
  color: #231F20;
}

#contact-us {
	padding-bottom: 100px;
	padding-top:40px;
}
.white-text {
  color: white;
}

.footer {
	    width: 100%;
    height: 50px;
    position: fixed;
    bottom: 0;
    background: black;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate3d(0, 100px, 0);
    -moz-transform: translate3d(0, 100px, 0);
    -ms-transform: translate3d(0, 100px, 0);
    -o-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
    outline: none;
    z-index: 9999999;

    text-align: center;
}
.isTouch .footer {
      -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* PRELOADER */

.preloader {
    background: #fff;
    text-align: center;
    line-height: 100%;
    z-index: 99999999;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader img {
	display: inline-block;
	max-width: 100%;
}

.content-main {
	visibility:hidden;
}

/* ERROR GIF */

.gif-error {
	width: 100%;
	height: 100vh;
}

.gif-error img {
	width: 400px;
	height: 320px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -200px;
	margin-top: -160px;
	-webkit-animation-duration: 3s;
	-moz-animation-duration: 3s;
	-ms-animation-duration: 3s;
}

.error-text {
	width: 50%;
	height: auto;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px; 
	font-style:italic; 
	color: #27aca1;
	text-align:center;
	display: block;
	left: 50%;
	margin-left: -25%;
	position: absolute;
	bottom: 30px;
}


/* arrrow */

/* the wrapper element that will become the outer circle */
.arrow-wrap {
 position: absolute;
    z-index: 1;
    left: 50%;
    top: 86%;
    margin-left: -5em;
    background: #111;
    width: auto;
    height: auto;
    padding: 2em 3.5em;
    border-radius: 5em;
    font-size: 0.35em;
    display: block;
    box-shadow: 0px 0px 5px 0px #333;
}

/* a triangle to make the main part of the arrow. Adjust the border-color to fit your needs */
.arrow {
    float: left;
    width: 100%;
    height: 150%;
    background: url(../img/down.png) no-repeat scroll 0 0;
    background-size: 100% 100%;
}

@media (max-width: 590px) {
	nav a {
		    margin: 1em 0.2em;
	}
}

@media (max-width: 530px) {
	.white {
		    display: none;
	}
}

@media (max-width: 991px) {
	.pic {
    width: 185px;
    height: 185px;
	}
  .wwa .col-md-3 {
    margin: 0;
    width: 175px;
  }

	.wwa .col-md-3 h4 {
		    font-size: 1.2em;
	}
  .wwa h4 {
    margin-top: 0em;
  }
}

@media (max-width: 850px) {
	body {
	font-size:0.9em;
	}
	.pic {
    width: 165px;
    height: 165px;
	}
	.wwa {
    width: 114%;
    margin-left: -5%;
	}
}

@media (max-width: 770px) {
	.pic {
    width: 145px;
    height: 145px;
	}
	.wwa .col-md-3 {
        margin: 0;
    padding: 2px;
	}
	.wwa {
    width: inherit;
    margin-left: 0;
    text-align: center;
	}
}

.twitBut {
    font-size: 1em;
    margin-bottom: 0;
    padding-bottom: 0;
    margin-right: 3em;
    margin-left: 0;
    position: relative;
    top: -3px;
}

.contentUl {
	font-size: 1.2em;
}


.cbp-popup-singlePage-open {
    left: 0;
    z-index: 9999999;
}
.cbp-popup-singlePage {
    background: #b1d0cd;
}
.cbp-popup-singlePage .cbp-popup-navigation-wrap {
    background-color: #a6c5c5;
}

.cbp-popup-singlePage .cbp-popup-close {
    background-position:  -92px -138px;
    }

.cbp-l-project-subtitle {
    margin: 10px;
    text-align: left;
    padding: 0;
    margin-left: 0;
    font-size: 2em;
    margin-bottom: 1em;
    color: white;
}

.cbp-popup-singlePage .cbp-l-project-desc {
    float: left;
    width: 64%;
    background-color: #a6c5c5;
    padding: 15px;
    color: white;
}
.cbp-l-project-desc-text, .cbp-popup-singlePage .cbp-l-grid-masonry-projects-desc {
color: black;
font-size: 1.5em;
line-height: 1.3em;
}
.cbp-item .cbp-l-grid-masonry-projects-desc {
    color: #666;
}
.cbp-l-project-details-list {
  font-size: 0.8em !important;
}

.cbp-popup-singlePage .cbp-l-project-details * {
    color: black !important;
    font-size: 1.2em;
}
.cbp-l-grid-masonry-projects-title {
    color: #231F20;
}
.cbp-slider {
	max-height: 550px;

}
.cbp-slider .cbp-item-wrapper {
    background-color: black;
    }
.cbp img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 550px;
    margin: 0 auto;
    min-width: 0px;
}
.embed-container, .embed-container iframe {
	height: 480px;
}
.audio audio {
	width:100%;
}
.pdf-obj {
    margin-bottom: 1em;
    text-align: center;
}
.pdf-obj a {
	    color: white;
    font-weight: bold;
    font-size: 1.4em;
    background-color: #8ebbbb;
    padding: 0.5em;
    text-decoration: none;
}


@media (max-width: 480px) {
  .navbar nav a {
    font-size: 0.9em;
  }
  .cl-effect-14 a {
    padding: 0 5px;
  }
}


.arrow-wrap span
{
    display: block;
    width: 6px;
    height: 6px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    margin: 0 0 1px 4px;
}

.unu
{
  margin-top: 6px;
}

.unu, .doi, .trei
{
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
}

.unu
{
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate;
}

.doi
{
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
}

.trei
{
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-direction: alternate;
}




.mouse
{
height: 21px;
width: 14px;
  border-radius: 10px;
  transform: none;
  border: 2px solid white;
}

.wheel
{
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: white;
  position: relative;
}

.wheel
{
  -webkit-animation: mouse-wheel 1.2s ease infinite;
  -moz-animation: mouse-wheel 1.2s ease infinite;
}

@-webkit-keyframes mouse-wheel
{
   0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}

@-moz-keyframes mouse-wheel
{
  0% { top: 1px; }
  50% { top: 2px; }
  100% { top: 3px;}
}

@-webkit-keyframes mouse-scroll {

  0%   { opacity: 0;}
  50%  { opacity: .5;}
  100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@-o-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}


.black-finish {
    border-bottom: 9px solid black;
    width: 110px;
    height: 0;
    margin-top: 15px;
}

.cbp-popup-singlePage-sticky .cbp-popup-navigation-wrap {
    width: 100% !important;
        z-index: 99999999;
}


#cover-filters {

}
.coverImage {
    width: 100%;
    height: 205px;
    background-size: cover;
    background-position: center;
}
.coverItem {
    width: 31%;
    height: auto;
    display: inline-block;
    margin-right: 2%;
    vertical-align: top;
    margin-bottom: 4em;
}
.coverItem:hover {
  text-decoration: none;
}
.coverItem h3 {
    text-align: left;
    color: #231F20;
    margin-top: 10px;
    font-size: 1.5em;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/*
.not-show {
  position:absolute;
  left:10000px;
}*/
.grid-cover.no {
    height: 0;
    overflow: hidden;
}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
  .coverItem {
      width: 323px;
  }
}

@media (max-width: 760px) {
  .coverItem {
    width: 300px;
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 551px) {
  .small-sep {
    display: none;
  }
}

.col-md-3 .text-cont-mobile {
    display: none;
    width: 290%;
    text-align: left;
    margin-top: 2em;
    max-width: 400px;
}

@media (max-width:744px) {
  .wwa .col-md-3 {
    margin-left: 10em;
    margin-right: 10em;
  }

  .col-md-3.open .text-cont-mobile {
      display:block;
  }

  .www-info .text-cont {
    display:none !important;
  }
}

@media (min-width:745px) {
  .text-cont-mobile {
    display:none !important;
  }
}

/* BUBBLES */


.bubble-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.5);
  font-family: sans-serif;
  font-size: 13px;
  color: #333;
}
.bubble-toggle:hover {
  background: rgba(255, 255, 255, 0.75);
}

.bubbles {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.bubble-container {
  position: absolute;
  bottom: 0;
  will-change: transform;
  -webkit-animation: bubblerise 4s infinite ease-in;
  -moz-animation: bubblerise 4s infinite ease-in;
  -ms-animation: bubblerise 4s infinite ease-in;
  animation: bubblerise 4s infinite ease-in;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.bubble {
  width: 6px;
  height: 6px;
  margin: 0 auto;
  background: rgba(0,171,160,0.3);
  will-change: transform;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-animation: bubblewobble 0.4s infinite linear;
  -moz-animation: bubblewobble 0.4s infinite linear;
  -ms-animation: bubblewobble 0.4s infinite linear;
  animation: bubblewobble 0.4s infinite linear;
}

@-webkit-keyframes bubblerise {
  0% {
    bottom: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
  5% {
    bottom: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  99% {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  100% {
    bottom: 100%;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}
@-moz-keyframes bubblerise {
  0% {
    bottom: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
  5% {
    bottom: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  99% {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  100% {
    bottom: 100%;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}
@-ms-keyframes bubblerise {
  0% {
    bottom: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
  5% {
    bottom: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  99% {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  100% {
    bottom: 100%;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}
@keyframes bubblerise {
  0% {
    bottom: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
  5% {
    bottom: 0;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  99% {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  100% {
    bottom: 100%;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}
@-webkit-keyframes bubblewobble {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 2px;
  }
}
@-moz-keyframes bubblewobble {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 2px;
  }
}
@-ms-keyframes bubblewobble {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 2px;
  }
}
@keyframes bubblewobble {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 2px;
  }
}

