



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/montserrat/Montserrat-Bold.ttf'); 
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Poppins-Regular, sans-serif;
}

/*---------------------------------------------*/
a {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #114d8d;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #999999; }
input:-moz-placeholder { color: #999999; }
input::-moz-placeholder { color: #999999; }
input:-ms-input-placeholder { color: #999999; }

textarea::-webkit-input-placeholder { color: #999999; }
textarea:-moz-placeholder { color: #999999; }
textarea::-moz-placeholder { color: #999999; }
textarea:-ms-input-placeholder { color: #999999; }

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Poppins-Regular;
  font-size: 13px;
  line-height: 1.5;
  color: #000000;
}

.txt2 {
  font-family: Poppins-Regular;
  font-size: 13px;
  line-height: 1.5;
  color: #e80606;
}


/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  /* background: linear-gradient(-135deg, #14599e, #15426f) ; */
}

.wrap-login100 {
  width: 960px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 177px 130px 33px 95px;
  padding-bottom: 100px;
}

/*------------------------------------------------------------------
[  ]*/
.login100-pic {
  width: 365px;
}

.login100-pic img {
  max-width: 100%;
}


/*------------------------------------------------------------------
[  ]*/
.login100-form {
  width: 290px;
}

.login100-form-title {
  font-family: Poppins-Bold;
  font-size: 24px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  display: block;
  padding-bottom: 54px;
}

.login100-form-title2 {
	font-family: Poppins-Bold;
	font-size: 24px;
	color: #333333;
	line-height: 1.2;
	text-align: center;
	width: 100%;
	display: block;
	padding-bottom: 54px;
	display: none;
  }

/*---------------------------------------------*/
.wrap-input100 {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 10px;
}

.input100 {
  font-family: Poppins-Medium;
  font-size: 15px;
  line-height: 1.5;
  color: #666666;

  display: block;
  width: 100%;
  background: #e6e6e6;
  height: 50px;
  border-radius: 25px;
  padding: 0 30px 0 68px;
}


/*------------------------------------------------------------------
[ Focus ]*/
.focus-input100 {
  display: block;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: #114d8d;
}

.input100:focus + .focus-input100 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 70px 25px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 70px 25px;
    opacity: 0;
  }
}

.symbol-input100 {
  font-size: 15px;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 35px;
  pointer-events: none;
  color: #666666;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus + .focus-input100 + .symbol-input100 {
  color: #114d8d;
  padding-left: 28px;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}

.login100-form-btn {
  font-family: Montserrat-Bold;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background: #3971a9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:hover {
  background: #333333;
}

.login100-form-btn2 {
	font-family: Montserrat-Bold;
	font-size: 15px;
	line-height: 1.5;
	color: #fff;
	text-transform: uppercase;
	
	width: 100%;
	height: 50px;
	border-radius: 25px;
	background: tomato;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 25px;
  
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
  }
  
  .login100-form-btn2:hover {
	background: #333333;
  }


/*------------------------------------------------------------------
[ Responsive ]*/



@media (max-width: 992px) {
  .wrap-login100 {
	padding: 177px 90px 33px 85px;
	padding-bottom: 100px;
  }

  .login100-pic {
    width: 35%;
  }

  .login100-form {
	width: 50%;
  }
  .login100-form-title2 {
	display: none;
  }
}

@media (max-width: 768px) {
  .wrap-login100 {
	padding: 100px 80px 33px 80px;
	padding-bottom: 100px;
  }

  .login100-pic {
    display: none;
  }

  .login100-form {
	width: 100%;
	margin-top: -15vw
  }
  
  .login100-form-title2 {
	display: block;
  }
}

@media (max-width: 576px) {
  .wrap-login100 {
	padding: 100px 15px 33px 15px;
	padding-bottom: 80px;
    padding-top: 80px;
  }
  .login100-form-title2 {
	display: block;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: white;
  border: 1px solid #c80000;
  border-radius: 13px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
  pointer-events: none;

  font-family: Poppins-Medium;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 13px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}


html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  height:100%;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* IE 6 no admite max-width (anchura mÃ¡xima), por lo que usa de manera predeterminada una anchura del 100% */
.ie6 img {
	width:100%;
}

*{
	margin:0;
}
*:focus{
	outline:none;
}
.vacio{
	display: block;height: 150px;width: 100%;}
@import url(https://fonts.googleapis.com/css?family=Raleway:300,200|Work+Sans:300,200);

body{
	font-family:'Work Sans', Arial, sans-serif;
	font-size:18px;
}
.cajafondo{
	width: 100%;
	height: 100vh;
	display: block;
	position: fixed;
	overflow: hidden;
	top: 0;
	z-index: -1;
}
.fondoanimado{
	position: fixed;
	width: 120%;
	height: 120vh;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
	-webkit-animation-name:shh;
	-o-animation-name:shh;
	animation-name:shh;
	-webkit-animation-duration: 20s;
	-o-animation-duration: 20s;
	animation-duration: 20s;
	-webkit-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	will-Change: transform, animation;
}
.foto, .foto1{
	position: absolute;
	width: 960px;
}
.foto1{
	-webkit-animation-name: op;
	-o-animation-name: op;
	animation-name: op;
	-webkit-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: 20s;
	-o-animation-duration: 20s;
	animation-duration: 20s;
}
@-webkit-keyframes op{
	0%{
		opacity: 1;
	}
	30%{
		opacity: 1;
	}
	60%{
		opacity: 0;
	}
	100%{
		opacity: 0;
	}
}
@-webkit-keyframes shh{

	to{}
	from{
		-webkit-transform: translate(-150px, -100px);
		-ms-transform: translate(-150px, -100px);
		-o-transform: translate(-150px, -100px);
		transform: translate(-150px, -100px);
	}

}
.transparent-text{
	color: transparent !important;
}
.responsive-img{
	max-width: 100%;
	height: auto;
}
/*
	Propiedades de cuadrÃ­cula fluida de Dreamweaver
	----------------------------------
	dw-num-cols-mobile:		dw-num-cols-mobile-value;
	dw-num-cols-tablet:		dw-num-cols-tablet-value;
	dw-num-cols-desktop:	dw-num-cols-desktop-value;
	dw-gutter-percentage:	dw-gutter-percentage-value;
	
	InspiraciÃ³n obtenida de "Responsive Web Design" de Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	y Golden Grid System de Joni Korpi
	http://goldengridsystem.com/
*/

/* DiseÃ±o mÃ³vil: 480 px e inferior. */

.gridContainer {
	margin:0;
	width: 100%;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: auto;
	display: block;
}
.center{
	text-align:center;
}

.contenido{
	clear:both;
	padding-top:4em;
	width:90%;
	padding-left:5%;
	padding-right:5%;
}

.formulario{
	clear:both;
	margin:0 auto;
	background-image:url(../images/formulario.png);
	background-repeat: no-repeat;
	width:469px;
	height:431px;
}

.info-empresa{
	clear:both;
	text-align:center;
	color:#474c76;
	letter-spacing:.5pt;
	padding-top:14px;
}

.serie{
	clear:both;
	text-align:center;
	color:#474c76;
	letter-spacing:.5pt;
	width:100%;
	position:absolute;
	top:440px;
	z-index:100;
}

.ayuda{
	text-align:center;
	margin-top:5px;
	display:block;}
.opacity{	
	opacity: .7;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.opacity:hover{
	opacity: 1;
}

footer{
	background-repeat:repeat-x;
	width:100%;
	float:left;
	margin-left:0;
  height:auto;
position: static;
	color:#474c76;
  bottom:0;

}
.izquierda{
	clear:both;
	float:left;
	width:100%;
	text-align:center;
}
.centro{
	clear:none;
	width:100%;
	float:left;
	text-align:center;
	padding-top:0;
}
.derecha{
	clear:none;
	text-align:center;
	width:100%;
	padding-top:15px;
}

/* DiseÃ±o tableta: de 481 px a 768 px. Hereda estilos de: DiseÃ±o mÃ³vil. */

@media only screen and (min-width: 481px) {
.gridContainer {
	width: 100%;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: auto;
	display: block;
}
.foto, .foto1{
	position: absolute;
	width: 1700px;
}
}
footer a{
	color: #474c76;
	text-decoration: none;
}
footer a:hover{
	color: #195999;
}
/* DiseÃ±o escritorio */

@media only screen and (min-width: 960px) {
.gridContainer {
	width: 100%;
	margin: auto;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 70%;
	width: auto;
	display: block;
}
.contenido{
	clear:both;
	padding-top:4em;
	width:70%;
	padding-left:15%;
	padding-right:15%;
}
.center{
	text-align:center;
}
.formulario{
	clear:both;
	margin:0 auto;
	background-image:url(../images/formulario.png);
	background-repeat: no-repeat;
	width:469px;
	height:431px;
}

footer{
	position: static;
	background: white;
	background-repeat:repeat-x;
	width:100%;
	float:left;
	margin-left:0;
	height:64px;
	line-height: 32px;
  color:#474c76;
  
}

.izquierda{
	clear:both;
	float:left;
	width:20%;
	margin-left:10%;
	padding-top:25px;
}
.centro{
	clear:none;
	width:30%;
	margin-left:4%;
	float:left;
	text-align:center;
	padding-top:25px;
}
.derecha{
	clear:none;
	float:left;
	width:15%;
	padding-top:23px;
	margin-left:7%;
}

.cajafondo{
	width: 100%;
	height: 100vh;
	display: block;
	position: fixed;
	overflow: hidden;
	top: 0;
	z-index: -1;
}
.fondoanimado{
	position: relative;
	width: 120%;
	height: 120vh;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
	-webkit-animation-name:shh;
	-o-animation-name:shh;
	animation-name:shh;
	-webkit-animation-duration: 20s;
	-o-animation-duration: 20s;
	animation-duration: 20s;
	-webkit-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	will-Change: transform, animation;
}
.foto, .foto1{
	position: absolute;
	width: 2150px;
}
.foto1{
	-webkit-animation-name: op;
	-o-animation-name: op;
	animation-name: op;
	-webkit-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: 20s;
	-o-animation-duration: 20s;
	animation-duration: 20s;
}
@-webkit-keyframes op{
	0%{
		opacity: 1;
	}
	30%{
		opacity: 1;
	}
	60%{
		opacity: 0;
	}
	100%{
		opacity: 0;
	}
}
@-webkit-keyframes shh{

	to{}
	from{
		-webkit-transform: translate(-150px, -100px);
		-ms-transform: translate(-150px, -100px);
		-o-transform: translate(-150px, -100px);
		transform: translate(-150px, -100px);
	}

}

}

.salir{
    position: absolute;
    top: 0px;
    right: 0px;
    width: 14%;
    background-color: rgba(25,89,153,0.27);
    border-left: solid 2px rgba(255,0,0,0.25);
    border-bottom: solid 2px rgba(255,0,0,0.25);
    border-right: solid 2px rgba(255,0,0,0.25);
    border-radius: 0px 0px 23px 23px;
    text-align: center;
    color: rgba(236,0,26,0.34);
    font-weight: bold;
    cursor: pointer;
}

.hora{
    font-size: 14px;
    color: rgba(25,89,153,0.49);
}

.bubbles {
	position: relative;
	width: 100%;
	height: 93.2vh;
	overflow: hidden;
  }
  
  .bubble {
	position: absolute;
	left: var(--bubble-left-offset);
	bottom: -75%;
	display: block;
	width: var(--bubble-radius);
	height: var(--bubble-radius);
	border-radius: 50%;
	/* animation: float-up var(--bubble-float-duration) var(--bubble-float-delay) ease-in infinite; */
	animation: none;
  }
  .bubble::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(136, 246, 251, 0.3);
	border-radius: inherit;
	animation: var(--bubble-sway-type) var(--bubble-sway-duration) var(--bubble-sway-delay) ease-in-out alternate infinite;
  }
  .bubble:nth-child(0) {
	--bubble-left-offset: 64vw;
	--bubble-radius: 9vw;
	--bubble-float-duration: 6s;
	--bubble-sway-duration: 5s;
	--bubble-float-delay: 0s;
	--bubble-sway-delay: 0s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(1) {
	--bubble-left-offset: 5vw;
	--bubble-radius: 6vw;
	--bubble-float-duration: 11s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 4s;
	--bubble-sway-delay: 1s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(2) {
	--bubble-left-offset: 62vw;
	--bubble-radius: 6vw;
	--bubble-float-duration: 6s;
	--bubble-sway-duration: 5s;
	--bubble-float-delay: 1s;
	--bubble-sway-delay: 0s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(3) {
	--bubble-left-offset: 18vw;
	--bubble-radius: 6vw;
	--bubble-float-duration: 12s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 2s;
	--bubble-sway-delay: 0s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(4) {
	--bubble-left-offset: 58vw;
	--bubble-radius: 9vw;
	--bubble-float-duration: 10s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 4s;
	--bubble-sway-delay: 0s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(5) {
	--bubble-left-offset: 11vw;
	--bubble-radius: 5vw;
	--bubble-float-duration: 12s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 2s;
	--bubble-sway-delay: 0s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(6) {
	--bubble-left-offset: 49vw;
	--bubble-radius: 5vw;
	--bubble-float-duration: 11s;
	--bubble-sway-duration: 6s;
	--bubble-float-delay: 4s;
	--bubble-sway-delay: 3s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(7) {
	--bubble-left-offset: 31vw;
	--bubble-radius: 6vw;
	--bubble-float-duration: 10s;
	--bubble-sway-duration: 6s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 0s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(8) {
	--bubble-left-offset: 41vw;
	--bubble-radius: 10vw;
	--bubble-float-duration: 9s;
	--bubble-sway-duration: 6s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 0s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(9) {
	--bubble-left-offset: 60vw;
	--bubble-radius: 3vw;
	--bubble-float-duration: 12s;
	--bubble-sway-duration: 6s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 2s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(10) {
	--bubble-left-offset: 45vw;
	--bubble-radius: 8vw;
	--bubble-float-duration: 12s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 1s;
	--bubble-sway-delay: 1s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(11) {
	--bubble-left-offset: 44vw;
	--bubble-radius: 7vw;
	--bubble-float-duration: 7s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 4s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(12) {
	--bubble-left-offset: 5vw;
	--bubble-radius: 6vw;
	--bubble-float-duration: 10s;
	--bubble-sway-duration: 6s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 0s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(13) {
	--bubble-left-offset: 64vw;
	--bubble-radius: 1vw;
	--bubble-float-duration: 12s;
	--bubble-sway-duration: 5s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 0s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(14) {
	--bubble-left-offset: 92vw;
	--bubble-radius: 2vw;
	--bubble-float-duration: 12s;
	--bubble-sway-duration: 6s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 0s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(15) {
	--bubble-left-offset: 31vw;
	--bubble-radius: 6vw;
	--bubble-float-duration: 11s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 4s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(16) {
	--bubble-left-offset: 60vw;
	--bubble-radius: 5vw;
	--bubble-float-duration: 8s;
	--bubble-sway-duration: 5s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 2s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(17) {
	--bubble-left-offset: 22vw;
	--bubble-radius: 10vw;
	--bubble-float-duration: 11s;
	--bubble-sway-duration: 5s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 1s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(18) {
	--bubble-left-offset: 96vw;
	--bubble-radius: 8vw;
	--bubble-float-duration: 8s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 4s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(19) {
	--bubble-left-offset: 41vw;
	--bubble-radius: 5vw;
	--bubble-float-duration: 7s;
	--bubble-sway-duration: 5s;
	--bubble-float-delay: 2s;
	--bubble-sway-delay: 3s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(20) {
	--bubble-left-offset: 8vw;
	--bubble-radius: 4vw;
	--bubble-float-duration: 12s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 0s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(21) {
	--bubble-left-offset: 7vw;
	--bubble-radius: 1vw;
	--bubble-float-duration: 12s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 2s;
	--bubble-sway-delay: 4s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(22) {
	--bubble-left-offset: 86vw;
	--bubble-radius: 1vw;
	--bubble-float-duration: 7s;
	--bubble-sway-duration: 6s;
	--bubble-float-delay: 1s;
	--bubble-sway-delay: 2s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(23) {
	--bubble-left-offset: 15vw;
	--bubble-radius: 5vw;
	--bubble-float-duration: 6s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 1s;
	--bubble-sway-delay: 2s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(24) {
	--bubble-left-offset: 69vw;
	--bubble-radius: 8vw;
	--bubble-float-duration: 11s;
	--bubble-sway-duration: 5s;
	--bubble-float-delay: 0s;
	--bubble-sway-delay: 4s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(25) {
	--bubble-left-offset: 61vw;
	--bubble-radius: 5vw;
	--bubble-float-duration: 8s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 0s;
	--bubble-sway-delay: 4s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(26) {
	--bubble-left-offset: 15vw;
	--bubble-radius: 5vw;
	--bubble-float-duration: 8s;
	--bubble-sway-duration: 6s;
	--bubble-float-delay: 2s;
	--bubble-sway-delay: 0s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(27) {
	--bubble-left-offset: 77vw;
	--bubble-radius: 3vw;
	--bubble-float-duration: 12s;
	--bubble-sway-duration: 5s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 1s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(28) {
	--bubble-left-offset: 69vw;
	--bubble-radius: 4vw;
	--bubble-float-duration: 12s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 1s;
	--bubble-sway-delay: 2s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(29) {
	--bubble-left-offset: 4vw;
	--bubble-radius: 6vw;
	--bubble-float-duration: 11s;
	--bubble-sway-duration: 6s;
	--bubble-float-delay: 0s;
	--bubble-sway-delay: 0s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(30) {
	--bubble-left-offset: 52vw;
	--bubble-radius: 1vw;
	--bubble-float-duration: 8s;
	--bubble-sway-duration: 5s;
	--bubble-float-delay: 2s;
	--bubble-sway-delay: 1s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(31) {
	--bubble-left-offset: 17vw;
	--bubble-radius: 7vw;
	--bubble-float-duration: 8s;
	--bubble-sway-duration: 6s;
	--bubble-float-delay: 2s;
	--bubble-sway-delay: 0s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(32) {
	--bubble-left-offset: 63vw;
	--bubble-radius: 1vw;
	--bubble-float-duration: 12s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 0s;
	--bubble-sway-delay: 3s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(33) {
	--bubble-left-offset: 33vw;
	--bubble-radius: 9vw;
	--bubble-float-duration: 12s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 0s;
	--bubble-sway-delay: 2s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(34) {
	--bubble-left-offset: 29vw;
	--bubble-radius: 3vw;
	--bubble-float-duration: 7s;
	--bubble-sway-duration: 5s;
	--bubble-float-delay: 2s;
	--bubble-sway-delay: 3s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(35) {
	--bubble-left-offset: 76vw;
	--bubble-radius: 1vw;
	--bubble-float-duration: 11s;
	--bubble-sway-duration: 6s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 3s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(36) {
	--bubble-left-offset: 34vw;
	--bubble-radius: 7vw;
	--bubble-float-duration: 7s;
	--bubble-sway-duration: 6s;
	--bubble-float-delay: 1s;
	--bubble-sway-delay: 1s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(37) {
	--bubble-left-offset: 58vw;
	--bubble-radius: 8vw;
	--bubble-float-duration: 9s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 1s;
	--bubble-sway-delay: 0s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(38) {
	--bubble-left-offset: 91vw;
	--bubble-radius: 6vw;
	--bubble-float-duration: 12s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 1s;
	--bubble-sway-delay: 2s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(39) {
	--bubble-left-offset: 47vw;
	--bubble-radius: 3vw;
	--bubble-float-duration: 6s;
	--bubble-sway-duration: 5s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 1s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(40) {
	--bubble-left-offset: 32vw;
	--bubble-radius: 2vw;
	--bubble-float-duration: 7s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 1s;
	--bubble-sway-delay: 4s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(41) {
	--bubble-left-offset: 5vw;
	--bubble-radius: 6vw;
	--bubble-float-duration: 9s;
	--bubble-sway-duration: 5s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 2s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(42) {
	--bubble-left-offset: 92vw;
	--bubble-radius: 8vw;
	--bubble-float-duration: 9s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 2s;
	--bubble-sway-delay: 1s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(43) {
	--bubble-left-offset: 39vw;
	--bubble-radius: 10vw;
	--bubble-float-duration: 11s;
	--bubble-sway-duration: 5s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 1s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(44) {
	--bubble-left-offset: 74vw;
	--bubble-radius: 6vw;
	--bubble-float-duration: 6s;
	--bubble-sway-duration: 6s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 2s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(45) {
	--bubble-left-offset: 43vw;
	--bubble-radius: 3vw;
	--bubble-float-duration: 12s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 4s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(46) {
	--bubble-left-offset: 4vw;
	--bubble-radius: 3vw;
	--bubble-float-duration: 11s;
	--bubble-sway-duration: 5s;
	--bubble-float-delay: 2s;
	--bubble-sway-delay: 0s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(47) {
	--bubble-left-offset: 87vw;
	--bubble-radius: 10vw;
	--bubble-float-duration: 8s;
	--bubble-sway-duration: 6s;
	--bubble-float-delay: 4s;
	--bubble-sway-delay: 2s;
	--bubble-sway-type: sway-left-to-right;
  }
  .bubble:nth-child(48) {
	--bubble-left-offset: 80vw;
	--bubble-radius: 7vw;
	--bubble-float-duration: 6s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 4s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(49) {
	--bubble-left-offset: 44vw;
	--bubble-radius: 9vw;
	--bubble-float-duration: 7s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 3s;
	--bubble-sway-delay: 0s;
	--bubble-sway-type: sway-right-to-left;
  }
  .bubble:nth-child(50) {
	--bubble-left-offset: 14vw;
	--bubble-radius: 5vw;
	--bubble-float-duration: 6s;
	--bubble-sway-duration: 4s;
	--bubble-float-delay: 4s;
	--bubble-sway-delay: 2s;
	--bubble-sway-type: sway-left-to-right;
  }
  
  @keyframes float-up {
	to {
	  transform: translateY(-175vh);
	}
  }
  @keyframes sway-left-to-right {
	from {
	  transform: translateX(-100%);
	}
	to {
	  transform: translateX(100%);
	}
  }
  @keyframes sway-right-to-left {
	from {
	  transform: translateX(100%);
	}
	to {
	  transform: translateX(-100%);
	}
  }


