/*
@import url('https://fonts.googleapis.com/css?family=Ubuntu&display=swap');
body { font-family: 'Ubuntu', sans-serif; }
*/

html {
	/* font-size: 1rem; cambiar para ajuste global de font-size */
	font-size: inherited;
}


.loader {
	margin: 4px;
	border-radius: 50%;
	border: 6px solid;
	border-color: #ccf2ff #66d9ff #00bfff #007399;
	width: 30px;
	height: 30px;
	animation: spin 2s linear infinite;
	-webkit-animation: spin 2s linear infinite; /* Safari */
}
/* Safari */
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@media (max-width:576px) { /* sm */
	.wsH1 { font-size: 5.5vw }
	.wsH2 { font-size: 4vw }
}
@media (max-width:768px) { /* md */
}
@media (max-width:992px) { /* lg */
}
@media (min-width:992px) { /* xl */
}

.wsCurPointer { cursor: pointer }

@keyframes wsAnimationFadeIn {
	0% 		{ opacity: 0; }
	100% 	{ opacity: 1; }
}
.wsFadeIn {
	animation-name: wsAnimationFadeIn;
  	animation-duration: 2s;
}

/* Multilevel submenus  ---------------------------------------- */
.dropdown-submenu {	position: relative }
  
.dropdown-submenu>a:after {
	/* right arrow of menu */
	float: right;
	margin-top: .5em;
	content: "";
	border-top: .3em solid transparent;
	border-right: 0;
	border-bottom: .3em solid transparent;
	border-left: .3em solid;
}

.dropdown-submenu>.dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: 0px;
	margin-left: 0px;
}

/* Go Top Button ---------------------------------------- */
#btnGoTop {
	cursor: pointer;
	z-index: 99;
	position: fixed;
	bottom: 20px;
	left: 20px;
	background: rgba(0, 153, 204, 0.7);
	color: white;
	width: 50px;
	height: 50px;
	text-decoration: none;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	border-radius: 35px;
	display: none; 
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#btnGoTop i {
	color: rgb(255, 255, 255);
	margin: 0;
	position: relative;
	left: 16px;
	top: 13px;
	font-size: 19px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#btnGoTop:hover {
	background: rgba(0, 102, 153, 0.9);
}

#btnGoTop:hover i {
	color: #fff;
	top: 5px;
}