/*Estilos*/

/*Vars*/
:root{
	--main-primary-color: rgb(0, 25, 252); /*#0019fc*/
	--main-primary-border-color: rgb(0, 24, 243); /*#0018f3*/

	--main-primary-color-hover: #0016e0; /*#0016e0*/
	--main-primary-border-color-hover: #0113b4; /*#0113b4*/

	--main-gradient-dark-color: rgb(54, 0, 174); /*#360093*/

	--main-font-text: 'Open Sans', sans-serif;
	--main-font-primary: 'Montserrat', sans-serif;
	
}

/**/

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    height: auto;
	min-height: 100%;
	font-family: var(--main-font-text);
	font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--main-font-primary);
	font-weight: 700;
}
.rg-theme-light {
	color: #333333;
	background-color: #ffffff;
}
.rg-theme-light.gradient {
	color: #ffffff;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0019fc+0,360093+100 */
	background: var(--main-primary-color); /* Old browsers */
	background: -moz-linear-gradient(top,  var(--main-primary-color) 0%, var(--main-gradient-dark-color) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  var(--main-primary-color) 0%,var(--main-gradient-dark-color) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  var(--main-primary-color) 0%,var(--main-gradient-dark-color) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--main-primary-color)', endColorstr='var(--main-gradient-dark-color)',GradientType=0 ); /* IE6-9 */
	background-repeat: no-repeat;
	background-size: cover;
}

.btn {
	border-radius: 4.25rem;
	font-family: var(--main-font-primary);
	font-weight: 400;
}

.rg-theme-light .btn-primary {
    color: #fff;
    background-color: var(--main-primary-color);
    border-color: var(--main-primary-border-color);
}
	.rg-theme-light .btn-primary:hover {
		color: #fff;
		background-color: var(--main-primary-color-hover);
		border-color: var(--main-primary-border-color-hover);
	}
.rg-theme-light.gradient .btn-primary {
	color: var(--main-primary-color);
	background-color: #ffffff;
	border-color: #ffffff;
}
	.rg-theme-light.gradient .btn-primary:hover {
		color: var(--main-primary-color);
		background-color: #ebebeb;
		border-color: #dbdbdb;
	}
.rg-theme-light.gradient .btn-secondary {
	color: #ffffff;
	background-color: transparent;
	border-color: rgba(255, 255, 255, .5);
}
	.rg-theme-light.gradient .btn-secondary:hover {
		color: #ffffff;
		background-color: transparent;
		border-color: rgba(255, 255, 255, .5);
	}


/*Login*/
.rg-login-header {
	margin-bottom: 40px;
}
	.rg-login-header h1 {
		font-size: 1.2rem;
	}
	.rg-login-header h2 {
		font-size: .7rem;
	}
	.rg-login-header-logo {
		max-width: 200px;
		margin: 0 auto 30px auto;
	}
		.rg-login-header-logo img {
			width: 100%;
		}
.rg-separator-line {
	position: relative;
	margin: 10px 0;
	text-transform: uppercase;
	font-family: var(--main-font-primary);
	color: rgba(255, 255, 255, .5);
}
	.rg-separator-line::before,
	.rg-separator-line::after {
		content: '';
		display: block;
		position: absolute;
		border-bottom: 1px solid rgba(255, 255, 255, .5);
	}
	.rg-separator-line::before {
		top: 50%;
		right: calc(50% + 20px);
		left: 0;
	}
	.rg-separator-line::after {
		top: 50%;
		right: 0;
		left: calc(50% + 20px);
	}
.rg-login-buttons {
	max-width: 300px;
	margin: 0 auto;
}
.rg-login-forget-password {
	margin: 10px 0;
}
	.rg-theme-light .rg-login-forget-password a {
		color: #ffffff;
		text-decoration: none;
		font-size: .7rem;
	}
/**/










.page-wrapper {
	margin-top: 100px;
}
.nav-controls {
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}

/**/
.ui-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	position : fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index : 9999999;
	background: rgba(255,255,255,1);
}
/*Loading CSS*/
.lds-ring {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
  }
  .lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 64px;
	height: 64px;
	margin: 8px;
	border: 8px solid #034694;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #034694 transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
  }
  @keyframes lds-ring {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  }
  /*sizes*/
  .lds-ring.small {
	width: 30px;
	height: 30px;
  }
	.lds-ring.small div {
		width: 24px;
		height: 24px;
		margin: 4px;
		border-width: 4px;
	}