/*

 Theme Name:   Elevated Coaching Theme
 Theme URI:    http://www.writecraftwp.com/
 Description:  Theme for Elevated Coaching & Consulting Services, a child theme based on Spacious
 Author:       WriteCraft Enterprises
 Author URI:   http://www.writecraftwp.com/
 Template:     spacious
 Text Domain:  elevated-coaching
------------------------------------------*/



/* =Theme customization starts here 
------------------------------------------------------- */

/* Ordered List with big numbers */

ol.big-ordered-list {
    /* Initiate a counter */
    counter-reset: li; 
    /* Remove the default left margin */
	margin-left: 0; 
	/* Remove the default left padding */
	padding-left: 0; 
}
ol.big-ordered-list > li {
	position:relative; /* Create a positioning context */
	margin:0 0 16px 4em; /* Give each list item a left margin to make room for the numbers */
	padding:8px 16px; /* Add some spacing around the content */
	list-style:none; /* Disable the normal item numbering */
	border-top:2px solid #46729F;
	background:#fff;
}
ol.big-ordered-list > li:before {
	content:counter(li); /* Use the counter as content */
	counter-increment:li; /* Increment the counter by 1 */
	/* Position and style the number */
	position:absolute;
	top:-2px;
	left:-1.5em;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing: border-box;
	width:1.5em;
	/* Some space between the number and the content in browsers that support
	   generated content but not positioning it (Camino 2 is one example) */
	margin-right:16px;
	padding:8px;
	border-top:2px solid #46729F;
	color:#fff;
	background:#46729F;
	font-weight:bold;
	font-family:"Helvetica Neue", Arial, sans-serif;
	font-size: 2em;
	text-align:center;
}
ol.big-ordered-list > li > h3 {
	  padding: 0 6px 6px 6px;
    margin-top: -6px;
	  font-weight: bold;
	  color: #46729F;
}
ol.big-ordered-list > li > p {
	margin-top: 6px;
	padding-left: 12px;
}