html {
	font-size: 16px;
}
body {
	color: gray;
	font-family: "Montserrat", "Arial", serif;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.65;
	word-wrap: break-word;
	color: #40434e;
}
h2 {
	font-family: 'Raleway', 'Arial', serif;
	font-size: 2.25rem;
	line-height: 1.2;
	letter-spacing: 0;
	font-weight: 500;
	font-style: normal;
	color: #333;
}
p {
	margin: 0 0 10px;
	text-align: justify;
}
b {
	color: #40434e;
}
a {
	color: #009490;
}
.main {
	max-width: 720px;
	margin: 0 auto;
	padding: 80px 0;
}
.container {
	max-width: 100%;
}
.mt-5 {
	margin-top: 2rem;
}
.mt-6 {
	margin-top: 3rem;
}
.mb-5 {
	margin-bottom: 2rem;
}
.form-control {
	border-color: #cecece;
	box-shadow: none;
	border-radius: 4px;
	height: 40px;
}
.form-control::placeholder {
	color: #3336;
	opacity: 1;
}
.form-horizontal {
	margin: 0 -15px;
	padding-left: 30px;
}
.btn-md {
	height: 42px;
	min-width: 180px;
	font-weight: bold;
	letter-spacing: 0.025em;
	padding: 0 30px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-primary {
	border-radius: 0;
	border-color: #40434e;
	background: transparent;
	color: #212529;
	font-weight: 400;
	font-size: 1rem;
}
.btn-secondary {
	border-radius: 0;
	font-size: 1rem;
	font-weight: 400;
	color: #212529;
	background: #e3e3e3;
	border-color: #e3e3e3;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus,
.btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus {
	background-color: #009490;
	border-color: #009490;
	color: #fff;
}
#cancelauth {
	margin-right: 2rem;
}
.control-label {
	color: #666666;
	font-weight: 500;
}
.terms-link {
	font-weight: 400;
	color: #009490;
	text-decoration: underline;
	margin-left: 10px;
}
label.error {
	color: #ff0011;
	font-weight: normal;
	font-size: 0.75rem;
}
#cbox_terms-error {
	order: 1;
	width: 100%;
}
.check-container {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
}
/****/
.wrapper-overlay {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background: #fff;
	display: flex;
	justify-content: center;
	align-content: center;
	display: none;
}
.loading-sending {
	position: relative;
	margin: 0 auto;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: #c3092e;
	display: none;
}
.message-result {
	padding: 4rem;
	position: absolute;
	display: none;
	top: 30%;
	left: 50%;
	transform: translateX(-50%) translateY(-30%);
}
.message-result h3 {
	text-align: center;
	color: #363636;
}
.button-submit {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-radius linear 0.05s, width linear 0.05s;
}
.button-submit:focus {
  outline: 0;
}
.button-submit.animate {
	width: 128px;
	height: 128px;
	min-width: 0;
	border-radius: 50%;
	color: transparent;
	padding: 0;
	top: 50%;
	transform: translateY(-50%);
}
.button-submit.animate::after {
	position: absolute;
	content: '';
	width: 60px;
	height: 60px;
	border: 8px solid #fefefe;
	border-radius: 50%;
	border-left-color: transparent;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	animation: spin ease-in 2.5s forwards;
	animation-name: spin;
	-webkit-animation-name: spin;
	transition-timing-function: ease-in-out;
	-webkit-transition-timing-function: ease-in-out;
	animation-duration: 5s;
	-webkit-animation-duration: 5s;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
}
.loading-sending.button-submit.success {
	background: #34a853;
}
.button-submit.animate.success::before {
	position: absolute;
	content: '';
	width: 60px;
	height: 25px;
	border: 8px solid #fefefe;
	border-right: 0;
	border-top: 0;
	left: 50%;
	top: 47%;
	-webkit-transform: translate(-50%, -50%) rotate(0deg) scale(0);
	transform: translate(-50%, -50%) rotate(0deg) scale(0);
	-webkit-animation: success ease-in 0.15s forwards;
	animation: success ease-in 0.15s forwards;
	animation-delay: 5s;
}
.button-submit.animate.error {
  position: relative;
  -webkit-animation: vibrate ease-in 0.5s forwards;
  animation: vibrate ease-in 0.5s forwards;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.button-submit.animate.error::before {
	color: #fff;
	position: absolute;
	content: '!';
	font-size: 80px;
	font-weight: bold;
	text-align: center;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);
	-webkit-animation: error ease-in 0.5s forwards;
	animation: error ease-in 0.5s forwards;
	animation-delay: 5s;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  90% {
    transform: translate(-50%, -50%) rotate(1080deg) scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  98% {
    -webkit-transform: translate(-50%, -50%) rotate(1080deg) scale(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(1080deg) scale(0);
  }
}
@keyframes success {
  from {
    transform: translate(-50%, -50%) rotate(0) scale(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(-45deg) scale(1);
  }
}
@-webkit-keyframes success {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0) scale(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg) scale(1);
  }
}
@keyframes error {
  from {
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    background-color: #f44336;
  }
}
@-webkit-keyframes error {
  from {
    -webkit-transform: translate(-50%, -50%) scale(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) scale(1);
    background-color: #f44336;
  }
}
@keyframes vibrate {
  0%, 30%, 60%, 85%, 100% {
    left: 0;
    background-color: #f44336;
  }
  10%, 40%, 90%, 70% {
    left: -2px;
    background-color: #f44336;
  }
  20%, 50%, 80%, 95% {
    left: 2px;
    background-color: #f44336;
  }
}
#intro {
	margin-left: -15px;
	margin-right: -15px;
}
.wrapper-response {
	margin-top: -50px;
	margin-left: -15px;
	padding-right: 15px;
}
.data_result h3,
.table-results h3 {
	text-align: left !important;
	font-family: 'Raleway', 'Arial', serif;
	color: #333;
	margin: 10px 0 15px;
}
.list-data-response {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}
.list-data-response span {
	color: #313131;
	font-weight: 500;
}
.px-0 {
	padding-left: 0;
	width: calc(100% - 30px);
	padding-right: 0;
}
#wrapper-results {
	display: none;
}
.mr-3 {
	margin-right: 10px;
}
#contact-form {
	display: none;
}
.auth-wrap {
	position: relative;
}
#autorizacion-txt-bt {
	height: 280px;
	overflow: hidden;
	position: relative;
}
#cbox_terms {
    margin-top: 6px;
}
.gradient-bottom {
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 80%);
	display: block;
	width: 100%;
	height: 100px;
	content: "";
	position: absolute;
	bottom: 0;
}
.readless-link, #readless-wrapper {
	display:none;
}
.readmore-wrapper, .readless-wrapper {
	padding: 40px;
	text-align: center;
	margin-bottom: 28px;
	border-bottom: 1px solid #eaeaea;
}