/*
Theme Name: Enfold Child
Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold Wordpress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating wil be much easier then.
Version: 1.0
Author: Jette
Author URI:
Template: enfold
*/



/*Add your own styles here:*/
add_filter('avf_parallax_speed','avia_change_parallax_ratio', 10, 2); 
function avia_change_parallax_ratio($ratio, $id){
    $ratio = "0.8"

/*----------------------------------------
// CSS - .my-custom-tabs
//--------------------------------------*/

/* Tab title style */
.my-custom-tabs .toggler {
    font-size: 24px;
    font-family: 'Kreon', serif;
    letter-spacing: .05em;
    font-weight: lighter;
    border-left:none;
    border-right: none;	
}

/* Extra content in tab title */
.my-custom-tabs .toggler span.extra-content {
    letter-spacing: 0em;
    font-weight: bolder;    
    font-size: 18px;
    position: absolute;
    right: 20px;
}

/* Accordion icon */
.my-custom-tabs .toggle_icon:before {
	position: absolute;
	font-size: 18px;
 	top:50%;
 	transform: translateY(-50%);
	left: 0;
	content:"e817";
	font-family: 'entypo-fontello';	 	
 	line-height: 0;
}

/* Active tab icon */
.my-custom-tabs .activeTitle .toggle_icon:before {
	content:"e81a";
	font-family: 'entypo-fontello';	 	 	
}

/* Hide default icon */
.my-custom-tabs .toggle_icon {
	border:none;	
}
.my-custom-tabs .toggle_icon .vert_icon,
.my-custom-tabs .toggle_icon .hor_icon {
	display:none;
}

;
    return $ratio;
}