button.btn,a.btn{
	border:0px;
	width: 190px;
	min-width: 100px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	height: 43px;
	padding-left: 10px;
	padding-right: 10px;
	font-family: var(--secondary-font);
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	margin-bottom: 15px;
}

button.btn.btn_green,a.btn.btn_green{
	border:  2px solid var(--green-color);
	background-color: var(--green-color);
	color: white;
}
button.btn.btn_green.btn_outline,a.btn.btn_green.btn_outline{
	background-color: white;
	color:var(--green-color);
}
button.btn.btn_green.btn_outline:hover,a.btn.btn_green.btn_outline:hover{
	background-color: var(--gray);
}

button.btn.btn_green:hover,a.btn.btn_green:hover{
	background-color: var(--green-hover);
}

button.btn[disabled]{
	cursor: not-allowed;
}
button.btn.btn_green2,a.btn.btn_green2{
	border:  2px solid var(--accent-color);
	background-color: var(--accent-color);
	color: black;
}
button.btn.btn_green2.btn_outline,a.btn.btn_green2.btn_outline{
	background-color: white;
	color:black;
}
button.btn.btn_green2.btn_outline:hover,a.btn.btn_green2.btn_outline:hover{
	background-color: var(--gray);
}
button.btn.btn_green2:hover,a.btn.btn_green2:hover{
	background-color: var(--green-hover-accent);
}

button.btn.btn_gray,a.btn.btn_gray{
	border: 2px solid var(--green-color);
	background-color: var(--gray);
	color: var(--green-color);
}
button.btn.btn_gray.btn_outline,a.btn.btn_gray.btn_outline{
	background-color: white;
	color:var(--green-color);
}
button.btn.btn_gray.btn_outline:hover,a.btn.btn_gray.btn_outline:hover{
	background-color: var(--gray);
}
button.btn.btn_outline,a.btn.btn_outline{
	background-color: white;
	color: var(--green-color);
	border: 2px solid var(--green-color);
}

a.golink i{
	font-size: 20px;
}
/* BOTONES */

.golink {
    color: var(--green-color);
    align-items: center;
    outline: none;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
	text-decoration: none;
	font-size: 13px;
	font-family: var(--secondary-font);
	font-weight: bold;
	display: inline-flex;
}


.golink:hover{
	text-decoration: none !important;
}

.golink::before,
.golink::after {
    position: absolute;
    width: 85%;
    height: 1px;
    background: var(--green-color);
    top: 100%;
    left: 0;
    pointer-events: none;
}

.golink::before {
    content: '';
    /* show by default */
}

.link--thebe {
    font-family: var(--secondary-font);
/*     text-transform: uppercase; */
}

.link--thebe.link--thebe-white {
	color: white;	
}
.link--thebe.link--thebe-white:after,.link--thebe.link--thebe-white:before{
	background-color: white !important;
}


.link--thebe::before {
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
}

.link--thebe:hover::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 2, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}


.link--thebe:hover::after {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}
