body {
	padding: 0;
	background-color: #f5f3f7;
	height: 100%;
}
a {
    color: #f75369;
}
::selection { color: #242424 !important; }
/* LOADER */
.loading-more {
	visibility: hidden;
	opacity: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: fixed;
	padding: 30px 20px;
	text-align: center;
	background-color: #3f2a56;
	filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FF403754', endColorstr='#FFFC6573');
	background-image: url(data:image/svg+xml; base64, PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiP…B3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=);
	background-size: 100%;
	background-image: -moz-linear-gradient(20deg, #615e9b 40%, #fc6573 100%);
	background-image: -webkit-linear-gradient(20deg, #615e9b 40%, #fc6573 100%);
	background-image: linear-gradient(70deg, #615e9b 40%, #fc6573 100%);
	transition-duration: 0.3s;
}
.loading-more-relative {
	visibility: hidden;
	opacity: 0;
	margin-top: -100px;
	position: relative;
	padding: 30px 20px;
	text-align: center;
	background-color: transparent
	filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FF403754', endColorstr='#FFFC6573');
	/* background-image: url(data:image/svg+xml; base64, PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiP…B3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=);
	background-size: 100%;
	background-image: -moz-linear-gradient(20deg, #615e9b 40%, #fc6573 100%);
	background-image: -webkit-linear-gradient(20deg, #615e9b 40%, #fc6573 100%);
	background-image: linear-gradient(70deg, #615e9b 40%, #fc6573 100%); */
	transition-duration: 0.3s;
	width: 100%;
}
.loading-more-relative.load-show,
.loading-more.load-show {
	opacity: 1;
	visibility: visible;
}
/* .loading-more-relative.load-show {
	opacity: 1;
	visibility: visible;
} */
.loading-more-relative i,
.loading-more i {
	display: block;
	padding-top: 10px;
	font-size: 16px;
}
.loading-more-relative .spinner,
.loading-more .spinner {
	margin: 0 auto;
	width: 70px;
	text-align: center;
}
.loading-more-relative .spinner .bounce1,
.loading-more .spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.loading-more-relative .spinner .bounce2,
.loading-more .spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
.loading-more-relative .spinner > div,
.loading-more .spinner > div {
	width: 12px;
	height: 12px;
	margin: 0 2px;
	background-color: #ffffff;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

/* Loader animation */
@-webkit-keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1);
	}
}

@keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

/* Onboarding chat style form */
.chat-form {
	color: #ffffff;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
}
.chat-form-relative {
	color: #ffffff;
	position: relative;
}

/* Step Style */
.chat-step {
	position: relative;
	padding: 0 20px;
	width: 100%;
	max-width: 680px;
	margin: 0 auto;
}

.chat-step:after {
	content: '';
	display: block;
	height:100px;
}

.chat-help {
	padding: 0 20px;
	position: absolute;
	top: 0;
	left: 0;
	height: calc(100% - 100px);
	z-index: 1;
}

/* Help steps animations */
.chat-help-enter {
	opacity: 0;
}

.chat-help-enter-active {
	opacity: 1;
}

.chat-help-exit {
	opacity: 1;
}

.chat-help-exit-active {
	opacity: 0;
}

.step-disabled {
	opacity: 0;
}

/* Active Step */
.step-active {
	max-height: 0px;
	-webkit-transition: all 1s ease-out;
	-moz-transition: all 1s ease-out;
	-o-transition: all 1s ease-out;
	transition: all 1s ease-out;
}

.step-active div {
	-webkit-transition: all 1s ease-out;
	-moz-transition: all 1s ease-out;
	-o-transition: all 1s ease-out;
	transition: all 1s ease-out;
}

/* Enter Step Animation */
.chat-step-appear,
.chat-step-enter {
	opacity: 0;
	max-height: 0px;
	max-height: 0vh;
}

.chat-step-appear div,
.chat-step-enter div {
	transform: translate(0, 100%);
}

.chat-step-appear-active,
.chat-step-enter-active {
	opacity: 1;
	max-height: 1000px;
	max-height: 100vh;
}

.chat-step-appear-active div,
.chat-step-enter-active div {
	transform: translate(0, 0);
}

.chat-step-enter-done {
	max-height: 1000px;
	max-height: 100vh;
}

/* Inactive Step */
.step-inactive {
	opacity: 0;
	-webkit-transition: all 2s ease-out;
	-moz-transition: all 2s ease-out;
	-o-transition: all 2s ease-out;
	transition: all 2s ease-out;
}

/* Exit Step Animation */
.chat-step-exit {
	transform: translate(0, 0);
}

.chat-step-exit-active {
	opacity: 0;
	transform: translate(0, -100%);
}

/* Texts styles */
.chat-step {
	font-size: 13px;
}

.chat-step h1,
.chat-step h2,
.chat-step h3,
.chat-step h4,
.chat-step h5,
.chat-step h6 {
	font-style: normal;
}

.chat-step h1 {
	font-size: 2em;
}

.chat-step h2 {
	font-size: 1.8em;
}

.chat-step h3 {
	font-size: 1.75em;
}

.chat-step h4 {
	font-size: 1.7em;
}

.chat-step h5 {
	font-size: 1.65em;
}

.chat-step h6 {
	font-size: 1.6em;
}

.chat-step p {
	font-size: 1.6em;
}

.chat-step .message p {
	font-size: 13px;
}

@media (max-width: 768px) {
	.chat-step {
		font-size: 15px;
		padding-top: 50px;
		font-size: 0.8em;
	}
}

@media (pointer: coarse) {
	.button-box {
		text-align: right;
	}
}

/* Splash screen */
.splash-screen {
	color: #ffffff;
	position: fixed;
	font-size: 40px;
	font-weight: 300;
	font-style: italic;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99999;
	text-align: center;
	padding: 15px;
	background: #242424;
	opacity: 1;
}

.splash-screen .splash-enter {
	opacity: 1;
}

.splash-enter-active {
	opacity: 1;
}

.splash-enter-done {
	opacity: 1;
	transition: opacity 1000ms ease-in;
}

.splash-exit {
	opacity: 1;
}

.splash-exit-active {
	opacity: 0;
	transition: opacity 1000ms ease-in-out;
}

.splash-exit-done {
	opacity: 0;
}

/*Mobile*/
.mobile-highlight {
	color: #ffffff;
	border-radius: 10px;
	background-color: #3f2a56;
	filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FF403754', endColorstr='#FFFC6573');
	background-image: url(data:image/svg+xml;base64, PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiP…B3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=);
	background-size: 100%;
	background-image: -moz-linear-gradient(20deg, #615e9b 40%, #fc6573 100%);
	background-image: -webkit-linear-gradient(20deg, #615e9b 40%, #fc6573 100%);
	background-image: linear-gradient(70deg, #615e9b 40%, #fc6573 100%);
	transition-duration: 0.3s;
	padding: 40px;
}
@media (max-width: 768px) {
	.mobile-highlight {
		padding: 10px;
	}
}
@media (max-width: 768px) {
	.card {
		padding: 10px;
	}
}

.productcard {
	color: #ffffff;
	border-radius: 10px;
	background-color: #3f2a56;
	filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FF403754', endColorstr='#FFFC6573');
	background-image: url(data:image/svg+xml;
base64, PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiP…B3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=);
	background-size: 100%;
	background-image: -moz-linear-gradient(20deg, #615e9b 40%, #fc6573 100%);
	background-image: -webkit-linear-gradient(20deg, #615e9b 40%, #fc6573 100%);
	background-image: linear-gradient(70deg, #615e9b 40%, #fc6573 100%);
	transition-duration: 0.3s;

	padding: 20px;
	padding-bottom:0;
}

@media (max-width: 767px) {
	.productcard {
		margin-left: -15px;
		margin-right: -15px;
	}
}
.productcard-inactive {
  color: #ffffff;
  border-radius: 10px;
  background-color: #3F2A56;
  opacity:0.5;
  pointer-events: none;


  padding: 20px;
  padding-bottom:0;
}

@media (max-width: 767px) {
  .productcard-inactive {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.dot {
	height: 10px;
	width: 10px;
	background-color: #00ff00;
	border-radius: 50%;
	display: inline-block;
}
.lamp {
	position: absolute;
	z-index: 0.1;
	pointer-events: none;
	top: 10px;
	left: 65%;
	max-height: 600px;
}
.aconto-image {
	position: absolute;
	z-index: 0.1;
	pointer-events: none;
	top: 150px;
	left: 65%;
	max-height: 300px;
}

/* .chat-bubble {
	background-color: #ffffff;
	color: #3f2a56;
	border-radius: 10px;
	padding: 5px;
}
.chat-bubble h2 {
	font-size: 16px;
}
.chat-bubble p {
	font-size: 16px;
} */
.terms-highlight h2 {
	font-size: 19px;
}
@media (max-width: 767px) {
	.terms-highlight h2 {
		font-size: 12px;
	}
}


/* -------------------
	ACONTO LANDING
------------------- */
.public-aconto-header {
	color: #ffffff;
	padding: 125px 0 60px;
}
.public-aconto-header h1{
	font-size: 40px;
	margin-bottom: 35px;
}
.aconto-cards-image{
	position: absolute;
	width: 90%;
	max-width: 500px;
	bottom: -50px;
	right: 0;
	z-index: 4;
}
@media screen and (min-width: 480px) {
	.public-aconto-header h1{
		font-size: calc(30px + 40 * ((100vw - 320px) / 680));
	}
	.public-aconto-header h2{
		font-size: 24px;
	}
}
@media screen and (min-width: 1000px) {
	.public-aconto-header h1{
		font-size: 70px;
	}
	.public-aconto-header h2{
		font-size: 30px;
		margin-top: 40px;
	}
}
.aconto-disclaimer{
	font-size: 16;
	opacity: 0.5;
}
.aconto-logo{
	height: 12px;
	transform: translateY(0.5px);
	margin-right: 3px;
}
.aconto-faq{
	padding: 50px 0 80px;
	background-color: #fffff7;
	position: relative;
}
.aconto-faq .svg-curve{
	height: 60px;
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	z-index: 3;
}
.aconto-faq .svg-curve svg{
	position: absolute;
	bottom: 0;
	left: 0;
}
.aconto-faq .section-title{
	font-size: 50px;
	margin-bottom: 50px;
}
.aconto-faq a{
	font-size: 20px;
	display: block;
	margin-bottom: 40px;
}


/* -------------------
	MOBILE LANDING
------------------- */
.mobile-overview{
	color: #ffffff;
}
.mobile-overview .card{
	color: #3F2A56;
}
.mobile-information{
	padding: 15px 0;
	background: #242424;
}

/* Header */
.public-mobile-header {
	color: #ffffff;
	padding: 125px 0 100px;
}
.public-mobile-header h1{
	font-size: 40px;
	margin-bottom: 35px;
}
.mobile-disclaimer{
	font-size: 16;
	opacity: 0.8;
}
@media screen and (min-width: 480px) {
	.public-mobile-header h1{
		font-size: calc(30px + 40 * ((100vw - 320px) / 680));
	}
	.public-mobile-header h2{
		font-size: 24px;
	}
}
@media screen and (min-width: 1000px) {
	.public-mobile-header h1{
		font-size: 70px;
	}
	.public-mobile-header h2{
		font-size: 30px;
		margin-top: 40px;
	}
}

/* Include */
.mobile-includes{
	padding: 60px 0 0px;
}
.mobile-includes p{
	font-size: 20px;
}
.line-back-title{
	color: rgba(255,255,255,0.8);
	position: relative;
	margin-bottom: 30px!important;
}
.line-back-title span{
	padding: 0 2rem;
	display: inline-block;
	position: relative;
	background-color: #3F2A56;
}
.line-back-title::before{
	content: '';
	display: block;
	position: absolute;
	height: 1px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(255,255,255,0.2);
}

/* Plans Cards */
.mobile-plans .ui.fluid.card{

	margin: auto;

}
.plan-card .ui.grid{
	margin-left: -3px;
	margin-right: -3px;
}
.plan-card .ui.grid>.row>.column{
	padding-left: 3px;
	padding-right: 3px;
}
.mobile-plans{
	padding: 60px 0 30px;
	background-color: #242424;
}
.mobile-plans .ui.grid>.row>.column{
	margin-bottom: 2em;
}
.plan-card .plan-card-title{
	font-size: 30px;
	font-style: normal;
}
.plan-card-info{
	color: #8E8E8E;
	padding: 10px;
	font-size: 12px;
	border-radius: 6px;
	background-color: rgba(242,220,233,0.25);
}
.plan-card-info strong{
	color: #4B4A4D;
	font-size: 22px;
}
.plan-card .plan-card-price{
	color: #4B4A4D;
	font-size: 40px;
	font-weight: 900;
	line-height: 1;
	margin: 0!important;
}
.plan-card .plan-card-price-detail{
	color: #8E8E8E;
	font-size: 16px;
	margin-bottom: 20px!important;
}
.plan-card .ui.button{
	color: #ffffff;
	font-weight: 600;
	border-radius: 30px;
	margin-bottom: 15px;
	background: linear-gradient(225deg, #FB637E 0%, #FF6900 100%);
}
.plan-card .link-more-info{
	color: #615E9B;
	font-size: 14px;
}


/* Switch */
.mobile-switch{
	padding: 40px 0 80px;
}
.mobile-switch .switch-title{
	color: #FF6900;
	font-size: 40px;
	margin-bottom: 45px;
}
.switch-item{
	position: relative;
	padding: 10px 0 2rem 85px;
	color: #666666;
}
.switch-item .switch-icon{
	position: absolute;
	display: inline-block;
	top: 0;
	left: 0;
	padding: 20px;
	border-radius: 60px;
	background-color: rgba(255,105,0,0.05);
}
.switch-item .switch-icon img{
	float: left;
}
.switch-item .switch-item-title{
	color: #FF6900;
	font-size: 22px;
	font-style: normal;
	margin: 0 0 1rem;
}
@media screen and ( max-width: 767px ){
	.mobile-switch .switch-title{
		font-size: 26px;
		padding-right: 75px;
		margin-bottom: 30px;
	}
	.mobile-switch .phone-img{
		width: 85px;
		position: absolute;
		top: -35px;
		right: 0;
	}
	.switch-item{
		padding: 10px 0 2rem 50px;
	}
	.switch-item .switch-icon{
		left: -5px;
		padding: 15px;
	}
	.switch-item .switch-icon img{
		width: 15px;
	}
	.switch-item .switch-item-title{
		font-size: 16px;
	}
}
@media screen and ( min-width: 768px ){
	.mobile-switch .switch-title{
		padding: 20px 0 0 30px;
	}
	.mobile-switch .phone-img{
		width: 280px;
		margin-bottom: -120px;
	}
}

/* Help Card */
.ui.card.help-card .grid{
	align-items: center;
	justify-content: flex-end;
}
.ui.card.help-card{
	color: #ffffff;
	height: 100%;
	background: linear-gradient(227.79deg, #FB637E 0%, #FF6900 100%);
}
.ui.card.help-card .ui.button{
	color: #ffffff;
	font-weight: bold;
	margin-top: 20px;
	border-radius: 30px;
	background-color: #3F2A56;
}
.ui.card.help-card img{
	max-width: 100%;
	margin: 0 -2.25rem -6rem 2.25rem;
}
.ui.card.help-card .help-title{
	font-size: 30px;
}
.ui.card.help-card.big-help .help-title{
	font-size: 50px;
}
.ui.card.help-card.big-help p{
	font-size: 18px;
}
@media screen and ( max-width: 767px ){
	.ui.card.help-card.big-help{
		text-align: center;
	}
	.ui.card.help-card.big-help img{
		width: 280px;
		margin: 0 -3.25rem -6rem 3.25rem;
	}
	.ui.card.help-card.big-help .help-title{
		font-size: 30px;
	}
	.mobile-plans .ui.card.help-card img{
		display: none;
	}
}

/* Mobile FAQ Accordions */
.mobile-faq-accordions{
	padding: 40px 0;
}
.faq-accordions-title{
	font-size: 30px;
	font-weight: 300;
}
.mobile-faq-accordions .ui.card>.content{
	padding: 1rem 2rem;
}
.mobile-faq-accordions .ui.card{
	margin-bottom: 1rem;
}
.mobile-faq-accordions .title{
	position: relative;
	padding-right: 20px;
}
.mobile-faq-accordions .title i{
	position: absolute;
	color: #FF6900;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	height: 22px;
}
.mobile-faq-accordions .content{
    margin-top: 10px;
	border-top: 1px solid rgba(63, 41, 86, 0.2);
}






  .ribbon-wrapper-green {
	width: 85px;
	height: 88px;
	overflow: hidden;
	position: absolute;
	top: -3px;
	right: -3px;
  }



  .ribbon-green {
	  font: bold 15px Sans-Serif;
	  color: #fff;
	  text-align: center;
	  text-shadow: rgba(255,255,255,0.5) 0px 1px 0px;
	  -webkit-transform: rotate(45deg);
	  -moz-transform: rotate(45deg);
	  -ms-transform: rotate(45deg);
	  -o-transform: rotate(45deg);
	  position: relative;
	  padding: 7px 0;
	  left: -5px;
	  top: 15px;
	  width: 120px;
	  background-color: #FF6900;
	  color: #fff;
	  -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	  -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	  box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
  }



  .ribbon-green:after,
  .ribbon-green:after{
	content: "";
	border-top: 3px solid #6e8900;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	position:absolute;
	bottom: -3px;
  }


  .ribbon-green:before{
	right: 0;
  }


  .ribbon-green:after{
	left: 0;
  }



.mobile-sale-v2{
	position: absolute;
	top: 55px;
	right: 0px;
	height: 150px;
	margin:auto;
	opacity:1;
	z-index: 0.9;



}
@media screen and (min-width: 769px) {
	.mobile-sale-v2{

		height: 250px;
		right:36%;
		z-index:0;
		opacity:0.9;
		}

}

@media only screen and (min-width: 1920px) {
	.mobile-sale-v2{
		height: 250px;
		right:42%;
		z-index:0;
		opacity:0.9;
		}
}
.mobile-sale-home{
	position: absolute;
	top: 60px;
	right: 30%;
	height: 150px;
	margin:auto;
	opacity:1;
	z-index: 0.9;



}
@media screen and (min-width: 769px) {
	.mobile-sale-home{
		height: 250px;
		right:0.5%;
		z-index:0;
		opacity:0.9;
		}

}

@media only screen and (min-width: 1920px) {
	.mobile-sale-home{
		height: 250px;
		right:10%;
		z-index:0;
		opacity:0.9;
		}
}
