/****** Icons button *****/
.icobutton {
	font-size: 4em;
	position: relative;
	margin: 0;
	padding: 0;
    /*Color de iconos inactivos*/
	color: #707789;
	border: 0;
    cursor: pointer;
	background: none;
	overflow: visible;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

.icobutton .fa {
	display: block;
	padding: 0 0.1em;
}

.icobutton__text {
	font-size: 0.75em;
	position: absolute;
	top: 100%;
	left: -50%;
	width: 200%;
	text-align: center;
	line-height: 1.5;
    /*Color de texto que acompaña a los iconos*/
	color: #CA3CFC;
}

.icobutton__text--side {
	top: 0;
	left: 100%;
	width: 100%;
	width: auto;
	padding: 0 0 0 0.25em;
}

/* fix for mo.js */
.icobutton svg {
	left: 0;
}

.icobutton:hover,
.icobutton:focus {
	outline: none;
}

.special-link {
    position: relative;
    color: #c39f77;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}
.special-link:hover {
    color: #9f8465;
}

.grid {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0;
    list-style: none;
    margin: 3em auto 0;
}

.grid__item {
    position: relative;
    text-align: center;
    background: transparent;
    margin: 0 0 5em;
    width: 20%;
    display: -ms-flexbox;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-align-content: center;
    align-content: center;
}
/****** End Icons button *****/