* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}

:root {
	--main-color: #67c294;
	--main-grey: #7B8096;
	--main-light-grey: #8C8D8E;
}

.dropdown .dropdown-menu .dropdown-item:active,
.dropdown .dropdown-menu .dropdown-item:hover,
.dropleft .dropdown-menu .dropdown-item:active,
.dropleft .dropdown-menu .dropdown-item:hover,
.dropright .dropdown-menu .dropdown-item:active,
.dropright .dropdown-menu .dropdown-item:hover,
.dropup .dropdown-menu .dropdown-item:active,
.dropup .dropdown-menu .dropdown-item:hover {
	background-color: var(--main-color);
}


html,
body {
	height: 100%;
}

body {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	background-color: #f4f4f7;
	
    display: flex;
    height: 100vh;
	width: 100%;
}

.sign-up__container{
	grid-column: 1 / -1;
	width: 100%;
}

body.blanco {
	background-color: #fff;
}


.main-color{
	color: var(--main-color);
}

.wrapper {
	position: relative;
	overflow: hidden;
	display: flex;
	width: 100%;
	padding-left: 00px;
}

.wrapper-checkout {
	position: relative;
	overflow-x: hidden;
	display: flex;
	width: 100%;
	padding-left: 00px;
}


.main-grey-text{
	color:#828282;
}

.btn{
	padding: 0.6rem 1.14rem;
}

.btn-cv.dropdown-toggle{
	background-color: #64c497 !important;
}

.btn-cv.dropdown-toggle:focus, .btn-cv.dropdown-toggle:hover, .btn-cv.dropdown-toggle:active, .btn-cv.dropdown-toggle:visited{
	background-color: #47A97B !important;	
}

.icon-2x{
	font-size: 2rem;
}

.mt-10{
	margin-top: 10px;
}

.under {
	z-index: -1;
}

.btn-cv{
	background-color: var(--main-color);
	color: #fff ;
	padding: 0.5rem 2rem;
}

.btn-cv-secondary{
	color: #aaa ;
	box-shadow: none;
}

.btn-cv-secondary:hover{
	color: #aaa ;
}


.btn-cv:hover{
	color: #fff ;
}

.card-header{
	background-color: transparent;
}

/******************************************
SIDEBAR
******************************************/

.sidebar {
	transition: all .3s ease-out;
	display: flex;
	
}

@media screen and (min-width: 768px) {
	.sidebar {
		position: sticky;
		top: 0px;
		min-height: 100vh;		
		max-width: 350px;
		width: 100%;
		background-color: #fff;
		box-shadow: 0 9px 0px 0px white, 0 -9px 0px 0px white, 4px 0 4px -4px rgba(0, 0, 0, 0.5);
	}
}

.sidebar-edit{
	max-width: 300px;
}

.sidebar__user-nav{
	display: none;
}


::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #7b8096;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #7b8096 transparent;
}


@media screen and (min-width:768px){
	.sidebar__user-nav{
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		height: 100vh;
		height: 100vh;
		width: 100px;
		z-index: 100;
		background: linear-gradient(176.07deg, #58D197 0%, #A9FBC3 65.2%, #58D197 98.77%);
	}
}

@media screen and (max-width:768px){
	.sidebar__user-nav{
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		position:static;
		top: 0px;
		background:linear-gradient(90deg, #A9FBC3 0%, #58D197 98.77%);
	}
	.sidebar__navigation{
		display:none;
	}
	.sidebar__profile{
		flex-direction: row-reverse;
		margin-top:0px;
		max-height: 65px;
		margin: 15px!important;
	}
	.sidebar.sidebar-small .sidebar__profile-name{
		display:block!important;
		margin-right:5px;
	}
	.sidebar__profile button{
		transform: rotate(3.142rad);
	}
	
}

@media screen and (min-width:992px){
	.sidebar-larger{
		width: 215px;
	} 
}

.sidebar-general .sidebar__user-nav{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.sidebar__logo {
	display: block;
	margin: 30px auto 0px;
	padding: 0px 20px;
}

.sidebar__logo--desktop {
	display: none;
}
@media screen and (min-width: 992px) {
	.sidebar__logo--desktop {
		display: block;
		max-width: 200px;
	}
	.sidebar__logo--mobile {
		display: none;
	}
}

.sidebar.sidebar-small .sidebar__logo--desktop,  .sidebar.sidebar-larger .sidebar__logo--desktop{
	display: none;
}

.sidebar.sidebar-small .sidebar__logo--mobile,   .sidebar.sidebar-larger .sidebar__logo--mobile{
	display: block;
}

.sidebar__navigation {
	margin: 30px 0px 0px;
}

.sidebar__navigation-list {
	list-style: none;
	padding: 0px 0px 0px 0px;
	margin: 0px;
}
@media screen and (min-width: 992px) {
	.sidebar__navigation-list {
		padding: 0px 0px 0px 0px;
	}
}

.sidebar__navigation-item {
	text-align: center;
}
.sidebar-larger .sidebar__navigation-item{
	padding: 25px 5px;
}

.sidebar-small .sidebar__navigation-item{
	padding: 25px 0px;
}

.sidebar__navigation-item:hover {
	background-color: #41b37b;
	color: #fff;
	cursor: pointer;
}

.sidebar__navigation-link {
	text-decoration: none;
	margin: 0px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
@media screen and (min-width: 992px) {
	.sidebar__navigation-link {
		width: 200px;
		justify-content: flex-start;
	}
}

.sidebar.sidebar-small .sidebar__navigation-link {
	width: 100px;
	justify-content: center;
}

.sidebar__navigation-link:hover {
	color: #fff;
}

.sidebar__navigation-fullname {
	display: none;
	font-size: 0.8rem;
}
@media screen and (min-width: 992px) {
	.sidebar__navigation-fullname {
		display: inline-block;
		margin-left: 10px;
	}
}

.sidebar.sidebar-small .sidebar__navigation-fullname, .sidebar.sidebar-larger .sidebar__navigation-fullname {
	display: none;
}

.sidebar__profile {
	width: 100%;
	margin: 0px auto;
	padding: 10px;
	display: flex;
	align-items: center;
	margin-top: auto;
}
@media screen and (min-width: 992px) {
	.sidebar__profile {
		width: 80%;
	}
}

.sidebar__profile:hover {
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
	-webkit-border-radius: 10px 10px 10px 10px;
}

.sidebar__profile-img {
	border-radius: 50%;
	max-width: 50px;
	display: block;
}

.sidebar__profile-button {
	background: transparent;
	border: 0px;
	color: #fff;
}

.sidebar__profile-name {
	color: #fff;
	cursor: pointer;
	margin: 0px 0px 0px 10px;
	display: none;
}
@media screen and (min-width: 992px) {
	.sidebar__profile-name {
		display: inline-flex;
	}
}

.sidebar.sidebar-small .sidebar__profile-name {
	display: none;
}

.sidebar.is-collapsed {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.sidebar__user-menu{
	min-width: 15rem;
}

.sidebar__profile-info{
	padding: 0.7rem;
}

.sidebar__profile-account-type{
	font-size: 0.9rem;
}






.cv__nav {
	max-width: 280px;
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: #2b4054;
	transition: transform 0.6s ease;
	top: 0px;
	left: 0px;
	padding: 1rem;
	overflow: auto;
	z-index: 10;
}
@media screen and (min-width: 768px) {
	.cv__nav {
		background-color: #fff;
		overflow: initial;
		position: relative;
	}
	
	.cv__nav--edit{
		max-width: 300px;
		overflow-y: scroll;
	}
}




.hidden-nav {
	transform: translate(-270px, 0);
}

.mobile-arrow {
	left: 270px;
	top: 45%;
	display: flex;
	align-items: center;
	border: 0px;
	cursor: pointer;
	position: fixed;
	background: #2b4054;
	color: #fff;
	padding: 0.5rem 0.1rem 0.5rem 0.5rem;
	font-size: 1.2rem;
	z-index: 10;
	-webkit-border-top-right-radius: 100px;
	-webkit-border-bottom-right-radius: 100px;
	-moz-border-radius-topright: 100px;
	-moz-border-radius-bottomright: 100px;
	border-top-right-radius: 100px;
	border-bottom-right-radius: 100px;
	
	transition: left 0.6s ease;
}
.collapsed-arrow {
	left: 5px;
}

.mobile-arrow i {
	transition: transform 0.3s ease;
}
.rotate-arrow {
	transform: rotate(180deg);
}

.mobile-arrow:hover {
	cursor: pointer;
}

@media screen and (min-width: 768px) {
	.mobile-arrow {
		display: none;
	}
}


.cv__nav-subtitle {
	text-transform: uppercase;
	color: var(--main-light-grey);
	font-weight: 400;
	font-size: 0.8rem;
	padding: 0px 1rem;
	margin: 2rem 0px 0.3rem;
}

/***/

.cv__nav-item {
	width: 100%;
	display: flex;
	align-items: center;
	text-decoration: none;
	color:  var(--main-grey);
	font-weight: 400;
	font-size: 0.8rem;
	padding: 1rem;
}

.cv__nav-edit-list-item, .cv__nav-edit-list-item a{
	color:  var(--main-grey);
}

.cv__nav-item:hover,
.cv__nav-item:focus {
	cursor: pointer;
	text-decoration: none;
}

.cv__nav-edit-list,
.cv__nav-sublist {
	list-style: none;
	padding: 0px;
}

.cv__nav-edit-list-link,
.cv__nav-edit-list-link:hover,
.cv__nav-edit-list-link:focus {
	color:  var(--main-grey);
	font-weight: 400;
	font-size: 0.8rem;
	padding: 1rem;
	position: relative;
	z-index: 5;
}

.cv__nav-edit-list-link[aria-expanded="true"] {
	background-color: transparent;
}

@media screen and (min-width: 768px) {
	.cv__nav-edit-list-link[aria-expanded="true"] {
		background-color: #fff;
		box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
	}
}

.accordion a:not(.collapsed) .rotate-icon {
	transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
	.cv__nav-collapse {
		background-color: #fff;
	}
}

.cv__nav-sublist {
	padding: 1rem 0px;
	border-radius: 3px;
	position: relative;
	background-color: #2b4054;
	z-index: 1;
}
@media screen and (min-width: 768px) {
	.cv__nav-sublist {
		background-color: #fff;
	}
	
	.addSections-list{
		background-color: #fff;
	}
}

.cv__nav-sublist-item {
	color: #9b9fb0;
	font-weight: 400;
	font-size: 0.8rem;
	padding: 0.6rem 0px 0.6rem 2.5rem;
	max-width:300px;
	position: relative;
	box-sizing: border-box;
	border-left: 3px solid transparent;
	
}

.cv__nav-sublist-item:hover,
.cv__nav-sublist-item:focus {
	cursor: pointer;
	color: var(--main-color);
}

@media screen and (min-width: 768px) {
	.cv__nav-sublist-item:hover,
	.cv__nav-sublist-item:focus {
		color: #9b9fb0;    
		border-left:3px solid var(--main-color);
		
	}
	
}



/**************************** 
End SIDEBAR
******************************/

.content {
	width: 100%;
	height: 100%;
	padding: 1rem;
	transition: all .3s ease-out;
	margin-left: 100px;
}
@media screen and (min-width: 992px) {
	.content {
		padding: 1rem 0px;
		margin-left: 250px;
	}
}

.content.is-full-width {
	margin-left: -300px;
}

.edit-cv-content {
	width: 100%;
    height: 100vh;
    overflow-y: scroll;
    padding: 1rem 2rem;
    transition: all .3s ease-out;
    margin-left: 0px;
}

/******************************************
DASHBOARD - HEADER
******************************************/

.dashboard__header {
	margin: 10px 0px 0px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
@media screen and (min-width: 992px) {
	.dashboard__header {
		margin: 0px;
		flex-direction: row;
		align-items: center;
		padding: 1rem 1rem 1.5rem;
		border-bottom: 1px solid #f0f0f0;
	}
}

.dashboard__header-title {
	display: flex;
	align-items: center;
}

.dashboard__header-title-icon {
	margin-right: 1rem;
	display: none;
	font-size: 2.4rem;
}
@media screen and (min-width: 992px) {
	.dashboard__header-title-icon {
		display: inline-flex;
	}
}

.dashboard__header-buttons {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 10px;
}
@media screen and (min-width: 992px) {
	.dashboard__header-buttons {
		margin-top: 0px;
	}
}

.dashboard__header-layout-button {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0px 0.5rem;
	background-color: #f0f3fb;
	color: #535458;
	border: 0px;
	padding: 0.5rem;
	border-radius: 0px;
	font-size: 1rem;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
	box-shadow 0.15s ease-in-out;
}

.dashboard__header-layout-button--list {
	display: none;
}
@media screen and (min-width: 992px) {
	.dashboard__header-layout-button--list {
		display: inline-flex;
	}
}

.dashboard__header-cv-button {
	display: flex;
	align-items: center;
	background-color: #2c50ee;
	color: #fff;
	padding: 0.5rem 0.9rem;
	border-radius: 6px;
}

.dashboard__header-cv-button::after {
	display: none;
}

.dashboard__header-cv-button:hover {
	color: #fff;
}

/******************************************
Manage CVs
******************************************/

.manage-cvs {
	position: relative;
    overflow-y: initial;
}
@media screen and (min-width: 992px) {
	.manage-cvs {
		padding: 0px 4.5rem;
	}
}

.manage-cvs__title {
	color: #7c7c7c;
	margin: 20px 0px 0px 0px;
	font-size: 1.2em;
}

.manage-cvs__subtitle {
	margin: 0px;
	font-size: 0.8em;
	color: #c0c0c0;
}

.manage-cvs__cards {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
}
@media screen and (min-width: 600px) {
	.manage-cvs__cards {
		flex-direction: row;
		flex-wrap: wrap;
	}
}

.manage-cvs__card {
	padding: 1rem;
	margin: 0.4rem;
	border-radius: 10px;
	flex-basis: 100%;
	background-color: #f2f5f8;
}
@media screen and (min-width: 600px) {
	.manage-cvs__card {
		flex-basis: 45%;
	}
}
@media screen and (min-width: 992px) {
	.manage-cvs__card {
		flex-basis: 48%;
	}
}
@media screen and (min-width: 1200px) {
	.manage-cvs__card {
		flex-basis: 31%;
	}
}

.manage-cvs__card-header {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.manage-cvs__card-icon {
	display: none;
	background-color: var(--main-color);
	color: #fff;
	padding: 5px;
	font-size: 1em;
	border-radius: 50%;
}

@media screen and (min-width: 992px) {
	.manage-cvs__card-icon {
		display: inline-block;
	}
}

.manage-cvs__card-title {
	font-size: 1em;
	font-weight: 500;
}
.manage-cvs__card-title a {
	color: #212529;
}

@media screen and (min-width: 992px) {
	.manage-cvs__card-title {
		margin-left: 10px;
		margin-bottom: 0px;
		margin-top: 4px;
	}
}

.manage-cvs__card-actions {
	display: inline-block;
	text-decoration: none;
	height: 24px;
	border-radius: 50%;
	
	margin-left: auto;
	color: #5b5857;
}

.manage-cvs__card-actions::after,
.manage-cvs__card-actions::before {
	display: none;
}

.manage-cvs__card-description {
	color: #afb5c1;
	font-size: 0.7em;
	margin: 10px 0px 10px;
}

.manage-cvs__card-date {
	color: #5b5857;
	font-size: 0.8em;
}


.pulldown {
	margin-left: auto;
	position: relative;
}

.pulldown .pulldown-toggle {
	cursor: pointer;
}

.manage-cvs__card .pulldown .pulldown-toggle.open {
	background: #eae9fa;
	color: #8b9cf4;
}

.pulldown .pulldown-menu {
	position: absolute;
	top: 22px;
	right: 15px;
	min-width: 250px;
	background-color: #fff;
	border-radius: 1px;
	display: none;
	z-index: 10;
	box-shadow: 0px 2px 12px rgba(0, 0, 0, .2);
}

.pulldown-right .pulldown-menu {
	left: auto;
	right: 0px;
}
.pulldown-toggle.open + .pulldown-menu {
	display: block;
	-webkit-animation-name: openPullDown;
	animation-name: openPullDown;
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform-origin: right top;
	transform-origin: right top;
}

.pulldown-right .pulldown-toggle.open + .pulldown-menu {
	-webkit-transform-origin: right top;
	transform-origin: right top;
}

.pulldown-menu ul {
	list-style: none;
	padding: 0;
	margin: 0px;
}

.pulldown-menu ul li {
	padding: 0;
	margin: 0;
}

.pulldown-menu ul li a {
	font-size: 0.9em;
	display: flex;
	align-items: center;
	height: 34px;
	padding: 20px 15px;
	line-height: 34px;
	cursor: pointer;
	color: #333;
	text-decoration: none;
}

.pulldown-menu ul li a i {
	font-size: 1.4em;
}

.pulldown-menu ul li a:hover {
	color: #fff;
	background-color: var(--main-color);
}


@media (max-width: 768px) {
    body {
      grid-template-columns: 1fr; /* Una sola columna */
      grid-template-rows: auto 1fr; /* Barra lateral arriba y contenido abajo */
    }

    aside {
      grid-column: 1 / -1; /* Toma toda la fila superior */
      grid-row: 1;
    }

    main {
      grid-column: 1 / -1; /* Toma toda la fila inferior */
      grid-row: 2;
    }
  }

@media (max-width: 600px) {
	.pulldown .pulldown-menu {
		position: fixed;
		top: auto !important;
		left: 0px !important;
		right: 0px !important;
		bottom: 10px !important;
		width: 95%;
		margin: auto;
		box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
		border-radius: 0;
		background-color: #67c294;
	}
	
	.pulldown-toggle.open + .pulldown-menu {
		-webkit-animation-name: openPullDownMobile;
		animation-name: openPullDownMobile;
		-webkit-animation-duration: 200ms;
		animation-duration: 200ms;
	}
	
	.pulldown-menu ul {
		margin: 10px;
	}
	
	.pulldown-menu ul li a {
		display: block;
		height: 40px;
		padding: 0 10px;
		line-height: 50px;
		cursor: pointer;
		color: #333;
		text-decoration: none;
		color: #fff !important;
	}
	
	.pulldown .pulldown-menu li {
		background-color: #67c294;
		border-bottom: 1px solid #fff;
		margin-bottom: 1px;
		width: 100%;
	}

	.pulldown .pulldown-menu li:last-child{
		border-bottom: 0px;
	}
}

@-webkit-keyframes openPullDown {
	0% {
		opacity: 0;
		-webkit-transform: scale(.7);
		transform: scale(.7);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes openPullDown {
	0% {
		opacity: 0;
		-webkit-transform: scale(.7);
		-ms-transform: scale(.7);
		transform: scale(.7);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes openPullDownMobile {
	0% {
		-webkit-transform: translate(0%, 100%);
		transform: translate(0%, 100%);
	}
	100% {
		-webkit-transform: translate(0%, 0%);
		transform: translate(0%, 0%);
	}
}

@keyframes openPullDownMobile {
	0% {
		-webkit-transform: translate(0%, 100%);
		-ms-transform: translate(0%, 100%);
		transform: translate(0%, 100%);
	}
	100% {
		-webkit-transform: translate(0%, 0%);
		-ms-transform: translate(0%, 0%);
		transform: translate(0%, 0%);
	}
}

.gray-bg {
	background-color: #f4f4f7;
}


.cv__modal-header {
	border: 0px;
}


.cv__modal-header .modal-title{
	text-transform: uppercase;
	font-weight: 400;
}

.cv__modal-text {
	margin: 0px;
	color: #9b9fb0;
}

.cv__modal-small {
	color: #9b9fb0;
}

.cv__modal-btn-dismiss,
.cv__modal-btn-dismiss:hover,
.cv__modal-btn-dismiss:focus {
	color: #aaaaaa;
	text-decoration: none;
}

.cv__modal-btn-action,
.cv__modal-btn-action:hover,
.cv__modal-btn-action:focus {
	font-weight: 500;
	color: #6200ee;
	text-decoration: none;
}

.cv__modal-footer {
	border: 0px;
}

.dropdown-content li > a,
.dropdown-content li > span {
	color: #333;
}

.cv__nav-switch {
	display: flex;
	justify-content: space-between;
	padding: 0.6rem 0.6rem 0.6rem 2.5rem;
}

.cv__nav-switch:hover,
.cv__nav-switch:focus {
	border-left: 0px;
}

.cv__nav-switch .switch label input[type=checkbox]:checked + .lever:after {
	background-color: #58d197;
}

.cv__nav-switch .switch label input[type=checkbox]:checked + .lever {
	background-color: #a9f0ce;
}

.cv__nav-switch .switch label .lever:after {
	top: -0.28rem;
	width: 1rem;
	height: 1rem;
}

.cv__nav-switch .switch label .lever {
	height: .46rem;
}

/******************************************
CV EDITOR
******************************************/

.icons-container {
	width: 100%;
	max-height: 300px;
	overflow-y: scroll;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
  }
  
  .icons-container svg {
	width: 48px;
	height: 48px;
	cursor: pointer;
  }
  
  .pdf-icon {
	cursor: pointer;
	padding: 1.2rem 0.5rem;
	width: 28%;
	margin: 1% 2%;
	border-radius: 50%;
	display: flex;
	justify-content: center;
  }
  @media screen and (min-width: 768px) {
	.pdf-icon {
	  width: 20%;
	}
  }
  
  .pdf-icon--background {
	background: #f0f0f0;
  }
  
  .cv__editor {
	flex-grow: 1;
	position: relative;
	background-color: #f4f4f7;
  }
  @media screen and (min-width: 768px) {
	.cv__editor {
	  z-index: 1;
	}
  }
  
  .cv__editor-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	position: relative;
  }
  @media screen and (min-width: 768px) {
	.cv__editor-header {
	  justify-content: space-between;
	  max-width: 800px;
	  margin: 0 auto;
	}
  }
  
  .cv__editor-header-title {
	margin: 0px;
	font-size: 1.4em;
	font-weight: 400;
	width: 100%;
  }
  .mwocvt{
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	max-width: 500px;
  }
  .mwpdfcvt{
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	max-width: 250px;
  }
  @media screen and (min-width: 768px) {
	.cv__editor-header-title {
	  width: auto;
	}
  }
  
  .cv__editor-header-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
  }
  @media screen and (min-width: 768px) {
	.cv__editor-header-info {
	  width: auto;
	}
  }
  
  .cv__editor-header-saveText {
	margin: 10px 0px;
	display: flex;
	font-size: 0.8em;
	align-items: center;
  }
  
  .cv__editor-header-saveText i {
	color: #03e95f;
  }
  
  @media screen and (min-width: 768px) {
	.cv__editor-header-comment {
	  margin-left: 2rem;
	}
  }
  
  @media screen and (min-width: 1200px) {
	.cv__editor-header-comment {
	  margin-left: 4rem;
	}
  }
  
  @media screen and (min-width: 1400px) {
	.cv__editor-header-comment {
	  margin-left: 8rem;
	}
  }
  
  .cv__editor-header-button {
	width: 100%;
	font-size: 0.9rem;
	text-align: center;
	justify-content: center;
  }
  @media screen and (min-width: 768px) {
	.cv__editor-header-button {
	  width: auto;
	  justify-content: flex-start;
	}
  }
  
  .cv__preview {
	margin: 2rem 0px;
	display: flex;
	justify-content: center;
  }
  
  .cv__iframe {
	max-width: 800px;
	width: 100%;
	/*max-height: 500px;
	overflow: scroll;
	background-color: peru;
	z-index: 1;*/
  }
  @media screen and (max-width: 768px) {
	.cv__iframe {
	  /*max-height: 1000px;*/
	  overflow-x: scroll;
	}
  }



/******************************************
COLORS
******************************************/

.colors {
	display: flex;
	justify-content: space-around;
	max-width: 70%;
	margin: 0px auto;
	padding: 20px 0px;
}

.color {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 0px;
}

.color1 {
	background-color: #2f80ed;
}

.color2 {
	background-color: #eda12f;
}

.color3 {
	background-color: #74777a;
}

.color4 {
	background-color: #8cc07f;
}

.color5 {
	background-color: #e47e52;
}

.colors-btn {
	width: 200px;
	margin: 0px auto;
}

.btn-more-colors{
	background: none;
	color: inherit;
	border: 2px solid #4285f4;
	padding: 0.5rem 1rem;
	font: inherit;
	cursor: pointer;
	outline: inherit
}

.btn-more-colors span{
	color: #4285f4;
	font-weight: 500;
	font-size: 0.9rem;
}


/******************************************
FONTS
******************************************/


.font-label {
	color: #7b8096;
	margin-bottom: 0px;
	font-size: 0.9rem;
  }
  
  #select-options-header-font li:nth-child(3) span,
  #select-options-text-font li:nth-child(3) span {
	font-family: 'Montserrat', sans-serif;
  }
  
  #select-options-header-font li:nth-child(4) span,
  #select-options-text-font li:nth-child(4) span {
	font-family: 'Lato', sans-serif;
  }
  
  .font-regular {
	font-size: 1.8rem;
  }
  
  .font-active,
  .font-active:active,
  .font-active:focus {
	color: #1976d2;
  }
  .font-active:hover {
	color: #2996f2;
  }
  
  .font-large {
	font-size: 2.3rem;
  }


/******************************************
CHANGE TEMPLATE
******************************************/

.template{
	margin: 20px auto;
	display: block;
	position: relative;
}

.template__type{
	position: absolute;
	top: -15px;
	right: -10px;
	background-color: #2c50ee;
	color: white;
	padding: 2px 4px;
	font-size: 0.7em;
	font-weight: bold;
	display: flex;
	align-items: center;
	border-radius: 10px;
}

.free{
	background-color: #9b9fb0;
	color: #5b5857;
}

.template__type i{
	margin-right: 2px;
	font-size: 0.9em;
}


/******************************************
ACCOUNT SETINGS
******************************************/

.account__header{
	padding: 1rem;
}

.account__content-wrapper{
	display: flex;
	justify-content: center;
	width: 92%;
	margin: 0 auto;
}

.account__card{
	width: 100%;
}



.account_profile-picture{
	display: flex;
	align-items: center;
	flex-direction: column;
	height: 100%;
}

.account_profile-picture img{
	border:2px solid #60D5A8;
	width: 200px;
	height: 200px;
	object-fit: cover;
    display: block;
	background-color: whitesmoke;
}

.account__form{
	padding: 1rem 3rem 1rem 1rem;
}

.account__picture-button{
	background-color: #fff;
	position: absolute;
	bottom: 10px;
	right: -10px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	padding: 0.8rem;
}

.account__picture-button span{
	font-size: 2.2em;
}

.password-icon{
	position: absolute;
	right: 0px;
	bottom: 5px;
	cursor: pointer;
}

.password-icon:hover{
	cursor: pointer;
}



.account__features-subtitle{
	text-align: center;
	color: #495057;
	font-weight: bold;
}

.account__features-text{
	font-size: 1rem;
}

.account__features-plan{
	margin: 1.5rem 0px;
	text-align: center;
	padding: 1rem 0px;
}

.account__features-plan--current{
	outline: 1px solid #7ACE6C;
	border-radius: 10px;
}

.account__features-job{
	font-weight: bold;
	color: #495057;
	text-transform: uppercase;
	margin: 1.6rem 0px;
}

.account__features-price{
	font-size: 1.5rem;
	color: #495057;
	margin: 2rem 0px 1.5rem;
}


.account__features-item{
	color: #495057;
	padding: 0.2rem 0px;
}
.mtop-10{
	margin-top: -10px;
}

.account__features-label{
	font-weight: bold;
	color: #7B8096;
}


.switch .account__features-label input[type="checkbox"]:checked + .lever{
	background:#3CD277 ;
}

.switch .account__features-label input[type="checkbox"]:checked + .lever::after {
	background:#3CD277;
}

.company{
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	margin: 0.5rem;
}

.company__price{
	margin: 0px;
	padding:0.5rem;
	color: #7B8096;
}

.testimonial-card{
	margin: 3rem 0px;
}

.testimonial__header{
	position: relative;
}
.testimonial__image{
	position: absolute;
	left: -2rem;
	top:-1rem;
	box-sizing: border-box;
	z-index: 10;
}

.testimonial-shape{
	width: 64px;
	height: 64px;
	position: absolute;
	left: -1.3rem;
	top:-0.4rem;
	z-index: 2;
	background: #FD5959;
	border-radius: 10px;
	transform: rotate(-15deg);
}

.testimonial--shape2{
	background: #5A9CFF;
	border-radius: 50%;
	top: -1rem;
	left: -1rem;
}


.testimonial--shape3{
	background: #F5D738;
	border-radius: 10px;
	top: -1rem;
	left: -1rem;
}



.testimonial__text{
	padding: 1.2rem 2rem 1rem;
	text-align: left;
}


.testimonial__name{
	text-align: left;
	padding-left: 2rem;
	margin: 0px;
}

.testimonial__job{
	text-align: left;
	padding-left: 2rem;
	color: #7B8096;
	font-weight: 500;
}


.accordion-card{
	background: transparent;
}

.testimonial-link{
	color:#666C77;
}

/******************************************
DOWNGRADE
******************************************/
.btn-disabled{
	color: #cccccc;
	border: 2px solid #cccccc;
}

.downgrade__icon{
	font-size: 3rem;
}

.downgrade__arrow{
	font-size: 1rem;
	padding-bottom: 0.7rem;
}






/******************************************
CHECKOUT
******************************************/
.checkout__back-button{
	margin: 1rem 0px 2rem;
}
@media screen and (min-width:768px){
	
	.checkout__wrapper{
		height: 100%;
	}
	.checkout__back-button{
		position: absolute;
		top: 0px;
		left: 0px;
		padding: 1rem 2rem;
	}
}


.checkout__container{
	max-width: 1263px;
	width: 95%;
}

.checkout__card{
	max-width: 800px;
	margin: 0px auto 2rem;
	padding: 2rem;
	
}








/******************************************
ONLINE EDITOR
******************************************/


.cv__section-editor{
	margin: 0px auto;
	max-width: 800px;
}


.cv__section-editor-title{
	margin: 2rem 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	
}


.cv__section-editor-title-input{
	width: 80%;
	height: 100%;
	border-radius: 0px;
}

.cv__section-editor-title-button{
	margin: 0px;
	border-radius: 0px;
	padding: 0.55rem 1rem;
}


.cv__section-editor-position{
	cursor:move;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	padding: 0.2rem 1rem;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
}

.cv__section-editor-item{
	margin: 0px;
	text-overflow: ellipsis; 
	overflow: hidden; 
	white-space: nowrap;
}

.mwtrabajo .cv__section-editor-item:first-of-type{
	max-width: 160px;
}

.mwtrabajo .cv__section-editor-item:nth-of-type(2){
	max-width: 290px;
}

.mwtrabajo .cv__section-editor-item:nth-of-type(3){
	max-width: 185px;
}

.mweducacion .cv__section-editor-item:first-of-type{
	max-width: 380px;
}

.mweducacion .cv__section-editor-item:nth-of-type(2){
	max-width: 185px;
}

.mwlista-simple .cv__section-editor-item:first-of-type{
	max-width:500px;
}

.mwlista-doble .cv__section-editor-item:first-of-type{
	max-width:200px;
}

.mwlista-doble .cv__section-editor-item:nth-of-type(2){
	max-width:200px;
}

.mwlista-triple .cv__section-editor-item:first-of-type{
	max-width:180px;
}

.mwlista-triple .cv__section-editor-item:nth-of-type(2){
	max-width:180px;
}

.mwlista-triple .cv__section-editor-item:nth-of-type(3){
	max-width:180px;
}

.mwtabla .cv__section-editor-item:first-of-type{
	max-width:200px;
}

.mwtabla .cv__section-editor-item:nth-of-type(2){
	max-width:200px;
}

.mwdestacados .cv__section-editor-item:first-of-type{
	max-width: 500px;
}

.mwreferencias .cv__section-editor-item:first-of-type{
	max-width:180px;
}

.mwreferencias .cv__section-editor-item:nth-of-type(2){
	max-width:180px;
}

.mwreferencias .cv__section-editor-item:nth-of-type(3){
	max-width:180px;
}

.mwhabilidades .cv__section-editor-item:first-of-type{
	max-width: 500px;
}
.mwordenar .cv__section-editor-item:first-of-type{
	max-width: 500px;
}

.cv__section-editor-item--position{
	font-weight: bold;
	width: 100%;
}
@media screen and (min-width:992px){
	.cv__section-editor-item--position, .cv__section-editor-item--list-item{
		width: auto;
	}
	
	.cv__section-editor-item--school, .cv__section-editor-item--row-header{
		width: 50%;
	}
}

.cv__section-editor-item--grey{
	color:#828282;
}

.cv__section-editor-button{
	box-shadow: none;
}

.cv__section-editor-button:hover{
	box-shadow: none;
	background-color: #f0f0f0;
}

.cv__section-editor-button span{
	display: inline-block;
	width: inherit;
	line-height: 1.4em;
	text-align: center;
}

.blue-background-class {
	background-color: #C8EBFB;
}

.cv__section-editor-content{
	margin: 1rem 0px;
	background-color: #fff;
	padding: 1rem;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
}

.cv__section-add-button span{
	color: #212529;
}




.preview-tab{
	width: 40%;
	text-align: center;
}

.preview-panel{
	position: relative;
}

.iframe-desktop-container{
	width: 67.60%;
	height:69%;
	position:absolute;
	background-color: red;
	top: 6.5%;
	left: 16%;
}
@media screen and (min-width:768px){
	.iframe-desktop-container{
		width: 67.60%;
		height:69%;
		top: 6.5%;
		left: 16%;
	}
}

.md-tabs{
	background-color: var(--main-color);
}

.classic-tabs .nav li a{
	font-weight: bold;
}

.edit-font-text{
	font-size: 0.8rem;
}


.design-container{
	cursor: pointer;
	border: 0;
	-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
	border-radius: .25rem;
	margin: 1rem 0px;
	padding-bottom: 0.5rem;
}

.design-image-container{
	background: linear-gradient(118.71deg, #5CD399 0%, #7AE3AA 25%, #A7FAC2 50.52%, #80E6AD 74.48%, #5DD49A 100%);
	
	
}

.design-image{
	padding: 1rem 0px;
	margin: 0px auto;
	display: block;
}

.design-text{
	font-weight: 500;
	padding-top: 0.8rem;
	padding-left: 1rem;
}


.btn-cv-white, .btn-cv-white:hover, .btn-cv-white:focus{
	background-color: #fff;
	color: #1DBDD4;
	font-weight: 500;
}

.btn-cv-link, .btn-cv-link:hover{
	color: #fff;
	font-weight: 500;
}






/* ´PASSWORD */


.password-background{
	/* background: url(/images/password-bg.png) no-repeat; */
	background-size: cover;
	height: 100%;
}

.password-wrapper{
	max-width: 1200px;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
@media screen and (min-width:768px){
	.password-wrapper{
		justify-content: center;
	}
}

.password-content{
	color: #fff;
	padding: 0.5rem 1rem;
	max-width: 600px;
}
@media screen and (min-width:768px){
	.password-content{
		padding: 0.5rem 1rem;
		max-width: 600px;
	}
}

.password-content__title{
	font-weight: bold;
	font-size: 3rem;
}

.password-content__title span{
	font-size: 2.4rem;
}

.password-content__text{
	line-height: 2rem;
	font-size: 1.4rem;
}

.password-image{
	position: absolute;
	display: none;
	right: 0px;
	
}
@media screen and (min-width:992px){
	.password-image{
		display: block;
		bottom: 0px;
		max-width: 400px;
	}
}

@media screen and (min-width:1300px){
	.password-image{
		display: block;
		bottom: auto;
		max-width: 550px;
	}
}

.modal-title__icon{
	color: #4DAA7C;
}



.virtual-coach{
	background-color: #fff;
	max-width: 400px;
	padding: 1rem;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	right: -450px;
	z-index: 999;
	box-shadow: 1px 0px 0px 9px white, 0 0px 0px -9px white, 4px 0px 4px 13px rgba(0, 0, 0, 0.5);
	
	
	
	-webkit-transform: translateX(0);
	transform: translateX(0);
	
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	
	-webkit-transition: 300ms ease all;
	transition: 300ms ease all;
	
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	
}


.virtual-coach.show-nav {
	right: 400px;
	-webkit-transform: translateX(400px);
	transform: translateX(400px);
	
	-webkit-transform: translate3d(400px, 0, 0);
	transform: translate3d(400px, 0, 0);
}

.virtual-coach__profile{
	display: flex;
	justify-content: flex-end;
}

.virtual-coach__text{
	text-align: center;
	margin: 2rem 0px;
}

.virtual-coach__features{
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	margin: 2rem 0px;
	-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
}

.virtual-coach__btn, .virtual-coach__btn:hover{
	background: linear-gradient(90deg, #73B65E 0%, #23BBA6 100%);
	border-radius: 27px;
	color: #fff;
	width: 200px;
	display: block !important; /* Lo siento*/
	margin: 2rem auto;
}

.toggle-nav{
	cursor: pointer;
}


.limit-modal{
	padding: 0px;
}

.limit-modal__bg{
	height: 420px;
	background-repeat: no-repeat;
	background-image: url(../images/fondo-pop-up-1.png);
	background-position: center top;
	background-size: contain;
}

.limit-modal__close{
	right: 15px;
	position: absolute;
	top: 10px;
	color: #fff;
	opacity: 1;
}

.limit-modal__title{
	color: #fff;
	text-align: center;
	padding: 2rem;
	font-weight: bold;
}
.limit-modal__human{
	position: relative;
	top: 11%;
	left: 50%;
	transform: translateX(-50%);
	max-width: 270px;
}


.limit-modal__human--large{
	max-width: 450px;
	top: -60px;
}

.limit-modal__lead{
	font-weight: bold;
	font-size: 1.1rem;
	text-align: center;
	margin-top: 0.5rem;
	padding: 1rem;
}

.fixcenter > span.material-icons{
    top: 6px;
    position: relative;
}

.limit-modal__button, .limit-modal__button:hover, .limit-modal__button:focus{
	background: linear-gradient(90deg, #73B65E 0%, #23BBA6 100%);
	border-radius: 27px;
	color: #fff;
	font-weight: 400;
	font-size: 0.8rem;
}



.disabled-cv .manage-cvs__card-icon{
	background-color:#ccc;
}

.disabled-cv .manage-cvs__card-title, .disabled-cv .manage-cvs__card-date, .disabled-cv .manage-cvs__card-action i{
	color:#ccc;
}

.disabled-cv tr i{
   background-color: #ccc;
}


.disabled-cv td{
   color:#ccc!important;
}

.btnVerCv {
	padding: 0.5rem 0.9rem 0.7rem 0.9rem;
}

.btnVerCv i {
	position: relative;
	top: 7px;
}

.p070{
	padding:0px 70px;
}
.jcfe{
	justify-content: flex-end;
}
.mtop20{
	margin-top: 20px;
}
.centeredas:first-of-type{
	text-align: center;
	margin: 0vh 0vh 4vh 0vh;
}
.centeredas{
	text-align: center;
	margin: 4vh 0vh;
}
.adsbygoogle{
	margin:0 auto;
	display:inline-block;
	width:728px;
	height:90px;
}
.tooltipmessage{
	font-size: 0.8em;
	float:right;
	color:#3668ee!important;
}

.tooltipmessage i{
	font-size: 0.9em;
}

input[type=text] {
	z-index:1 !important;
	position:relative !important;
}

#chaskiqPrime {
	display: none;
}

.css-b2nnx2{
	overflow: auto!important;
	font-size: 0.7rem!important;
}
.css-b2nnx2 .graf--p{
	font-size: 0.7rem!important;
}

.css-b2nnx2{    
	overflow: auto;
}


trix-toolbar .trix-button--icon-resumir::after,
trix-toolbar .trix-button--icon-mejorar::after,
trix-toolbar .trix-button--icon-adaptar::after,
trix-toolbar .trix-button--icon-traducir::after {
	content: "";
	background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 10 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.89263 5.39579C5.95158 4.72422 5.51158 4.26106 4.84 1.25053C4.81684 1.11158 4.70105 1.01895 4.56211 1.01895C4.42316 1.01895 4.30737 1.11158 4.28421 1.25053C3.61263 4.26106 3.17263 4.72422 0.231579 5.39579C0.0926316 5.41895 0 5.5579 0 5.69685C0 5.83579 0.0926316 5.95158 0.231579 5.9979C3.17263 6.66948 3.61263 7.13264 4.28421 10.1432C4.30737 10.2821 4.42316 10.3747 4.56211 10.3747C4.70105 10.3747 4.81684 10.2821 4.84 10.1432C5.51158 7.13264 5.95158 6.66948 8.89263 5.9979C9.03158 5.97474 9.12421 5.83579 9.12421 5.69685C9.12421 5.5579 9.03158 5.41895 8.89263 5.39579Z' fill='%2358D197'/%3E%3Cpath d='M9.72625 1.55158C8.7073 1.32 8.56836 1.18105 8.33678 0.162105C8.31362 0.0926316 8.24415 0 8.15152 0C8.08204 0 7.98941 0.0694737 7.96625 0.162105C7.73467 1.18105 7.59573 1.32 6.57678 1.55158C6.5073 1.57474 6.41467 1.64421 6.41467 1.73684C6.41467 1.82947 6.46099 1.89895 6.57678 1.92211C7.59573 2.15368 7.73467 2.29263 7.96625 3.31158C7.98941 3.38105 8.05888 3.47368 8.15152 3.47368C8.22099 3.47368 8.31362 3.40421 8.33678 3.31158C8.56836 2.29263 8.7073 2.15368 9.72625 1.92211C9.79573 1.89895 9.88836 1.82947 9.88836 1.73684C9.88836 1.64421 9.81888 1.57474 9.72625 1.55158Z' fill='%2358D197'/%3E%3Cpath d='M9.72625 9.07789C8.7073 8.84631 8.56836 8.70736 8.33678 7.68841C8.31362 7.61894 8.24415 7.52631 8.15152 7.52631C8.08204 7.52631 7.98941 7.59578 7.96625 7.68841C7.73467 8.70736 7.59573 8.84631 6.57678 9.07789C6.5073 9.10104 6.41467 9.17052 6.41467 9.26315C6.41467 9.35578 6.46099 9.42525 6.57678 9.44841C7.59573 9.67999 7.73467 9.81894 7.96625 10.8379C7.98941 10.9074 8.05888 11 8.15152 11C8.22099 11 8.31362 10.9305 8.33678 10.8379C8.56836 9.81894 8.7073 9.67999 9.72625 9.44841C9.79573 9.42525 9.88836 9.35578 9.88836 9.26315C9.8652 9.17052 9.81888 9.10104 9.72625 9.07789Z' fill='%2358D197'/%3E%3C/svg%3E%0A") no-repeat center right;
	padding-left: 20px;
}

trix-toolbar .trix-button--icon-resumir,
trix-toolbar .trix-button--icon-mejorar,
trix-toolbar .trix-button--icon-adaptar,
trix-toolbar .trix-button--icon-traducir {
	font-size: 0.8em !important;
}

.ia-mejora-creatividad {
	display: flex;
	justify-content: space-between;
}

.ia-resumen-porcentajes {
	display: grid;
	grid-template-columns: 6fr repeat(5, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 5px;
	grid-row-gap: 0px;
	text-align: end;
	margin-right: -11px;
	font-size: 16px;
}

.font-size-16 {
	font-size: 16px;
}

.boton-ia-resumir {
	color: rgb(83, 0, 233);
}

.boton-ia-resumir::before {
	content: "";
	background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 10 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.89263 5.39579C5.95158 4.72422 5.51158 4.26106 4.84 1.25053C4.81684 1.11158 4.70105 1.01895 4.56211 1.01895C4.42316 1.01895 4.30737 1.11158 4.28421 1.25053C3.61263 4.26106 3.17263 4.72422 0.231579 5.39579C0.0926316 5.41895 0 5.5579 0 5.69685C0 5.83579 0.0926316 5.95158 0.231579 5.9979C3.17263 6.66948 3.61263 7.13264 4.28421 10.1432C4.30737 10.2821 4.42316 10.3747 4.56211 10.3747C4.70105 10.3747 4.81684 10.2821 4.84 10.1432C5.51158 7.13264 5.95158 6.66948 8.89263 5.9979C9.03158 5.97474 9.12421 5.83579 9.12421 5.69685C9.12421 5.5579 9.03158 5.41895 8.89263 5.39579Z' fill='%2358D197'/%3E%3Cpath d='M9.72625 1.55158C8.7073 1.32 8.56836 1.18105 8.33678 0.162105C8.31362 0.0926316 8.24415 0 8.15152 0C8.08204 0 7.98941 0.0694737 7.96625 0.162105C7.73467 1.18105 7.59573 1.32 6.57678 1.55158C6.5073 1.57474 6.41467 1.64421 6.41467 1.73684C6.41467 1.82947 6.46099 1.89895 6.57678 1.92211C7.59573 2.15368 7.73467 2.29263 7.96625 3.31158C7.98941 3.38105 8.05888 3.47368 8.15152 3.47368C8.22099 3.47368 8.31362 3.40421 8.33678 3.31158C8.56836 2.29263 8.7073 2.15368 9.72625 1.92211C9.79573 1.89895 9.88836 1.82947 9.88836 1.73684C9.88836 1.64421 9.81888 1.57474 9.72625 1.55158Z' fill='%2358D197'/%3E%3Cpath d='M9.72625 9.07789C8.7073 8.84631 8.56836 8.70736 8.33678 7.68841C8.31362 7.61894 8.24415 7.52631 8.15152 7.52631C8.08204 7.52631 7.98941 7.59578 7.96625 7.68841C7.73467 8.70736 7.59573 8.84631 6.57678 9.07789C6.5073 9.10104 6.41467 9.17052 6.41467 9.26315C6.41467 9.35578 6.46099 9.42525 6.57678 9.44841C7.59573 9.67999 7.73467 9.81894 7.96625 10.8379C7.98941 10.9074 8.05888 11 8.15152 11C8.22099 11 8.31362 10.9305 8.33678 10.8379C8.56836 9.81894 8.7073 9.67999 9.72625 9.44841C9.79573 9.42525 9.88836 9.35578 9.88836 9.26315C9.8652 9.17052 9.81888 9.10104 9.72625 9.07789Z' fill='%2358D197'/%3E%3C/svg%3E%0A") no-repeat center right;
	padding-left: 15px;
	margin-right: 10px;
}

/* Incentives to create CV versions STARTs */
.cardincentive{
	background-color: #ffffff;
	border:2px solid #60D59B;
}
.cardincentive a, .trincentive a{
 display:block;
 width:100%;
 height:100%!important;
}
.cardincentive h4{
	color:#5bd399;
}
.trincentive{
	background-color:#f3fff7;
}
/* Incentives to create CV versions ENDs */

.barra-tokens {
    height: 9px;
    background: lightgray;
    margin: 6px 10px;
}

.tokens-restantes {
	height: 9px;
    background: #5DD59B;
}
.ai-icon{
	display: flex;
	margin-right: 10px;
}
.ai-icon svg{
	fill:  var(--main-grey);
}
.contendor-creditos {
	padding: 0 .5rem;
	justify-content: space-between;
	text-transform: uppercase;
	color: var(--main-light-grey);
	font-weight: 400;
	font-size: 0.8rem;
	padding: 0px 1rem;
	margin: 2rem 0px 0.3rem;
}

.contendor-creditos p{
	display: flex;
	align-items: center;
}

.tokensinfo{
 color:lightgray;
}

.remainingtokens{
color: #c0c0c0;
}

.flexcol{
	display:flex;
	flex-direction: column;
}

.aitokens{
	margin-top: auto;
}

@media screen and (min-width: 768px) {
	.remainingtokens{
		color: var(--main-light-grey);
	}
}