/* Accordion
-------------------------------------------------------------------------------------*/
.chill-accordion {
	background: none;
	border: 0;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin: 0 0 25px;
}

.chill-accordion [class^="fa-"],
.chill-accordion [class*="fa-"] {
	font-size: 16px;
	margin: 0 5px 0 0;
}

.chill-accordion [class^="fa-"].right,
.chill-accordion [class*="fa-"].right {
	float: right;
	margin: 0 0 0 5px;
}

.chill-accordion .chill-accordion-trigger {
	background-color: #FFF;
	border: 1px solid #EEE;
	color: #CCC;
	cursor: pointer;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	margin: -1px 0 0;
	outline: 0;
	padding: 22px 15px;
	text-transform: none;
}

.chill-accordion .chill-accordion-trigger:after {
	color: #333;
	content: "\f116";
	float: right;
	font-family: 'FontAwesome';
	font-size: 18px;
}

.chill-accordion .ui-accordion-header.ui-accordion-header-active:after {
	color: #333;
	content: "\f117";
	float: right;
	font-family: 'FontAwesome';
	font-size: 18px;
}

.chill-accordion .ui-accordion-header.ui-accordion-header-active {
	background-color: #FFF;
	color: #333;
}

.chill-accordion .ui-accordion-content {
	background-color: #FFF;
	border: 1px solid #EEE;
	border-top: 0;
	margin: 0 0 -1px;
	padding: 20px;
}

.chill-accordion .ui-accordion-content ul {
	margin: 0;
}

.chill-accordion .ui-accordion-content li {
	background: none;
	border-bottom: 1px solid #EEE;
	list-style: none;
	margin: 0 0 15px;
	padding: 0 0 15px;
}

.chill-accordion .ui-accordion-content li:last-child {
	border: 0;
	margin: 0;
	padding: 0;
}

/* Alerts
-------------------------------------------------------------------------------------*/

/* Alert */
.chill-alert {
	background-color: #FCF8E3;
	border: 1px solid #FBEED5;
	border-radius: 4px;
	color: #C09853;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin: 0 0 20px;
	padding: 10px 12px;
	text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

.chill-alert [class^="fa-"],
.chill-alert [class*="fa-"] {
	font-size: 14px;
	margin: 5px 10px 0 0;
}

.chill-alert [class^="fa-"].right,
.chill-alert [class*="fa-"].right {
	float: right;
	margin: 5px 0 0 10px;
}

.chill-alert a,
.chill-alert a:hover  {
	background: none;
	border: 0;
	color: #C09853;
	padding: 0;
	text-decoration: underline;
}

/* Error */
.chill-alert-error {
	background-color: #F2DEDE;
	border-color: #EED3D7;
	color: #B94A48;
}

.chill-alert-error a,
.chill-alert-error a:hover {
	background: none;
	border: 0;
	color: #B94A48;
	padding: 0;
	text-decoration: underline;
}

/* Info */
.chill-alert-info {
	background-color: #D9EDF7;
	border-color: #BCE8F1;
	color: #3A87AD;
}

.chill-alert-info a,
.chill-alert-info a:hover {
	background: none;
	border: 0;
	color: #3A87AD;
	padding: 0;
	text-decoration: underline;
}

/* Success */
.chill-alert-success {
	background-color: #DFF0D8;
	border-color: #D6E9C6;
	color: #468847;
}

.chill-alert-success a,
.chill-alert-success a:hover {
	background: none;
	border: 0;
	color: #468847;
	padding: 0;
	text-decoration: underline;
}

/* Buttons
-------------------------------------------------------------------------------------*/
.chill-button,
.chill-button:hover {
	border: 0;
	display: inline-table;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 12px;
	padding: 13px 14px;
	font-size: 12px;
	color: #FFF;
	cursor: pointer;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
}

.chill-button [class^="fa-"],
.chill-button [class*="fa-"] {
	font-size: 14px;
	margin: 0 8px 0 0;
}

/* Black */
.chill-button.black {
	background-color: #2D2D2D;
	background-image: -o-linear-gradient(0deg, rgb(53,53,53) 0%, rgb(67,67,67) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(53,53,53) 0%, rgb(67,67,67) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(53,53,53) 0%, rgb(67,67,67) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(53,53,53) 0%, rgb(67,67,67) 100%);
	background-image: linear-gradient(0deg, rgb(53,53,53) 0%, rgb(67,67,67) 100%);
	border: 1px solid #000;
	box-shadow: inset 0 0 1px rgba(0,0,0,1);
	color: #FDFFFD;
	text-shadow: 0 1px rgba(0,0,0,1);
}

.chill-button.black:hover {
	background-color: #4C4C4C;
	background-image: -o-linear-gradient(0deg, rgb(63,63,63) 0%, rgb(79,79,79) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(63,63,63) 0%, rgb(79,79,79) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(63,63,63) 0%, rgb(79,79,79) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(63,63,63) 0%, rgb(79,79,79) 100%);
	background-image: linear-gradient(0deg, rgb(63,63,63) 0%, rgb(79,79,79) 100%);
	color: #FDFFFD;
}

.chill-button.black:active {
	background-color: #272727;
	background-image: -o-linear-gradient(0deg, rgb(67,67,67) 0%, rgb(53,53,53) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(67,67,67) 0%, rgb(53,53,53) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(67,67,67) 0%, rgb(53,53,53) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(67,67,67) 0%, rgb(53,53,53) 100%);
	background-image: linear-gradient(0deg, rgb(67,67,67) 0%, rgb(53,53,53) 100%);
	box-shadow: inset 0 0 5px rgba(0,0,0,1);
	color: #FDFFFD;
}

/* Blue */
.chill-button.blue {
	background-color: #5489D0;
	background-image: -o-linear-gradient(0deg, rgb(52,125,192) 0%, rgb(156,196,241) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(52,125,192) 0%, rgb(156,196,241) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(52,125,192) 0%, rgb(156,196,241) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(52,125,192) 0%, rgb(156,196,241) 100%);
	background-image: linear-gradient(0deg, rgb(52,125,192) 0%, rgb(156,196,241) 100%);
	border: 1px solid #3E6491;
	box-shadow: inset 0 0 1px rgba(79,122,162,1);
	color: #1E4F92;
	text-shadow: 0 1px rgba(254,252,252,0.5);
}

.chill-button.blue:hover {
	background-color: #86B1EC;
	background-image: -o-linear-gradient(0deg, rgb(89,149,206) 0%, rgb(183,210,241) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(89,149,206) 0%, rgb(183,210,241) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(89,149,206) 0%, rgb(183,210,241) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(89,149,206) 0%, rgb(183,210,241) 100%);
	background-image: linear-gradient(0deg, rgb(89,149,206) 0%, rgb(183,210,241) 100%);
	color: #1E4F92;
}

.chill-button.blue:active {
	background-color: #2964B4;
	background-image: -o-linear-gradient(0deg, rgb(156,196,241) 0%, rgb(52,125,192) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(156,196,241) 0%, rgb(52,125,192) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(156,196,241) 0%, rgb(52,125,192) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(156,196,241) 0%, rgb(52,125,192) 100%);
	background-image: linear-gradient(0deg, rgb(156,196,241) 0%, rgb(52,125,192) 100%);
	box-shadow: inset 0 0 5px rgba(79,122,162,1);
	color: #1E4F92;
}

/* Green */
.chill-button.green {
	background-color: #85DD7C;
	background-image: -o-linear-gradient(0deg, rgb(112,201,101) 0%, rgb(182,237,176) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(112,201,101) 0%, rgb(182,237,176) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(112,201,101) 0%, rgb(182,237,176) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(112,201,101) 0%, rgb(182,237,176) 100%);
	background-image: linear-gradient(0deg, rgb(112,201,101) 0%, rgb(182,237,176) 100%);
	border: 1px solid #158D34;
	box-shadow: inset 0 0 1px rgba(26,154,72,1);
	color: #1D7819;
	text-shadow: 0 1px rgba(254,252,252,0.5);
}

.chill-button.green:hover {
	background-color: #A7ED9E;
	background-image: -o-linear-gradient(0deg , rgb(138,211,129) 0%, rgb(204,237,200) 100%);
	background-image: -moz-linear-gradient(0deg , rgb(138,211,129) 0%, rgb(204,237,200) 100%);
	background-image: -webkit-linear-gradient(0deg , rgb(138,211,129) 0%, rgb(204,237,200) 100%);
	background-image: -ms-linear-gradient(0deg , rgb(138,211,129) 0%, rgb(204,237,200) 100%);
	background-image: linear-gradient(0deg , rgb(138,211,129) 0%, rgb(204,237,200) 100%);
	color: #1D7819;
}

.chill-button.green:active {
	background-color: #5DC34E;
	background-image: -o-linear-gradient(0deg, rgb(182,237,176) 0%, rgb(112,201,101) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(182,237,176) 0%, rgb(112,201,101) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(182,237,176) 0%, rgb(112,201,101) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(182,237,176) 0%, rgb(112,201,101) 100%);
	background-image: linear-gradient(0deg, rgb(182,237,176) 0%, rgb(112,201,101) 100%);
	box-shadow: inset 0 0 5px rgba(26,154,72,1);
	color: #1D7819;
}

/* Orange */
.chill-button.orange {
	background-color: #F39C45;
	background-image: -o-linear-gradient(0deg, rgb(250,153,60) 0%, rgb(244,197,140) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(250,153,60) 0%, rgb(244,197,140) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(250,153,60) 0%, rgb(244,197,140) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(250,153,60) 0%, rgb(244,197,140) 100%);
	background-image: linear-gradient(0deg, rgb(250,153,60) 0%, rgb(244,197,140) 100%);
	border: 1px solid #A87017;
	box-shadow: inset 0 0 1px rgba(184,129,39,1);
	color: #A8580B;
	text-shadow: 0 1px rgba(254,252,252,0.5);
}

.chill-button.orange:hover {
	background-color: #EAB26C;
	background-image: -o-linear-gradient(0deg, rgb(248,169,91) 0%, rgb(244,210,170) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(248,169,91) 0%, rgb(244,210,170) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(248,169,91) 0%, rgb(244,210,170) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(248,169,91) 0%, rgb(244,210,170) 100%);
	background-image: linear-gradient(0deg, rgb(248,169,91) 0%, rgb(244,210,170) 100%);
	color: #A8580B;
}

.chill-button.orange:active {
	background-color: #E77E21;
	background-image: -o-linear-gradient(0deg, rgb(244,197,140) 0%, rgb(250,153,60) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(244,197,140) 0%, rgb(250,153,60) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(244,197,140) 0%, rgb(250,153,60) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(244,197,140) 0%, rgb(250,153,60) 100%);
	background-image: linear-gradient(0deg, rgb(244,197,140) 0%, rgb(250,153,60) 100%);
	box-shadow: inset 0 0 5px rgba(184,129,39,1);
	color: #A8580B;
}

/* Purple */
.chill-button.purple {
	background-color: #9173EC;	
	background-image: -o-linear-gradient(0deg, rgb(137,115,232) 0%, rgb(188,173,242) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(137,115,232) 0%, rgb(188,173,242) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(137,115,232) 0%, rgb(188,173,242) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(137,115,232) 0%, rgb(188,173,242) 100%);
	background-image: linear-gradient(0deg, rgb(137,115,232) 0%, rgb(188,173,242) 100%);
	border: 1px solid #571DAC;
	box-shadow: inset 0 0 1px rgba(124,87,191,1);
	color: #571DAC;
	text-shadow: 0 1px rgba(254,252,252,0.5);
}

.chill-button.purple:hover {
	background-color: #A88FEF;
	background-image: -o-linear-gradient(0deg, rgb(154,135,235) 0%, rgb(199,188,242) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(154,135,235) 0%, rgb(199,188,242) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(154,135,235) 0%, rgb(199,188,242) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(154,135,235) 0%, rgb(199,188,242) 100%);
	background-image: linear-gradient(0deg, rgb(154,135,235) 0%, rgb(199,188,242) 100%);
	border: 1px solid #571DAC;
	color: #571DAC;
}

.chill-button.purple:active {
	background-color: #7D50E3;
	background-image: -o-linear-gradient(0deg, rgb(188,173,242) 0%, rgb(137,115,232) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(188,173,242) 0%, rgb(137,115,232) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(188,173,242) 0%, rgb(137,115,232) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(188,173,242) 0%, rgb(137,115,232) 100%);
	background-image: linear-gradient(0deg, rgb(188,173,242) 0%, rgb(137,115,232) 100%);
	box-shadow: inset 0 0 5px rgba(124,87,191,1);
	color: #571DAC;
}

/* Red */
.chill-button.red {
	background-color: #D85257;
	background-image: -o-linear-gradient(0deg, rgb(208,69,72) 0%, rgb(243,146,147) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(208,69,72) 0%, rgb(243,146,147) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(208,69,72) 0%, rgb(243,146,147) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(208,69,72) 0%, rgb(243,146,147) 100%);
	background-image: linear-gradient(0deg, rgb(208,69,72) 0%, rgb(243,146,147) 100%);
	border: 1px solid #951119;
	box-shadow: inset 0 0 1px rgba(167,32,35,1);
	color: #A7000F;
	text-shadow: 0 1px rgba(254,252,252,0.5);
}

.chill-button.red:hover {
	background-color: #F07D81;
	background-image: -o-linear-gradient(0deg , rgb(216,90,93) 0%, rgb(243,167,169) 100%);
	background-image: -moz-linear-gradient(0deg , rgb(216,90,93) 0%, rgb(243,167,169) 100%);
	background-image: -webkit-linear-gradient(0deg , rgb(216,90,93) 0%, rgb(243,167,169) 100%);
	background-image: -ms-linear-gradient(0deg , rgb(216,90,93) 0%, rgb(243,167,169) 100%);
	background-image: linear-gradient(0deg , rgb(216,90,93) 0%, rgb(243,167,169) 100%);
	color: #A7000F;
}

.chill-button.red:active {
	background-color: #C4262E;
	background-image: -o-linear-gradient(0deg, rgb(243,146,147) 0%, rgb(208,69,72) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(243,146,147) 0%, rgb(208,69,72) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(243,146,147) 0%, rgb(208,69,72) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(243,146,147) 0%, rgb(208,69,72) 100%);
	background-image: linear-gradient(0deg, rgb(243,146,147) 0%, rgb(208,69,72) 100%);
	box-shadow: inset 0 0 5px rgba(167,32,35,1);
	color: #A7000F;
}

/* White */
.chill-button.white {
	background-color: #F3F3F3;
	background-image: -o-linear-gradient(0deg, rgb(238,238,238) 0%, rgb(254,254,254) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(238,238,238) 0%, rgb(254,254,254) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(238,238,238) 0%, rgb(254,254,254) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(238,238,238) 0%, rgb(254,254,254) 100%);
	background-image: linear-gradient(0deg, rgb(238,238,238) 0%, rgb(254,254,254) 100%);
	border: 1px solid #ACACAC;
	box-shadow: inset 0 0 1px rgba(187,187,187,1);
	color: #2B2C2B;
	text-shadow: 0 1px rgba(254,254,254,0.5);
}

.chill-button.white:hover {
	background-color: #FFF;
	background-image: -o-linear-gradient(0deg, rgb(246,246,246) 0%, rgb(254,254,254) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(246,246,246) 0%, rgb(254,254,254) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(246,246,246) 0%, rgb(254,254,254) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(246,246,246) 0%, rgb(254,254,254) 100%);
	background-image: linear-gradient(0deg, rgb(246,246,246) 0%, rgb(254,254,254) 100%);
	color: #2B2C2B;
}

.chill-button.white:active {
	background-color: #F9F9F9;
	background-image: -o-linear-gradient(0deg, rgb(254,254,254) 0%, rgb(246,246,246) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(254,254,254) 0%, rgb(246,246,246) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(254,254,254) 0%, rgb(246,246,246) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(254,254,254) 0%, rgb(246,246,246) 100%);
	background-image: linear-gradient(0deg, rgb(254,254,254) 0%, rgb(246,246,246) 100%);
	box-shadow: inset 0 0 5px rgba(187,187,187,1);
	color: #2B2C2B;
}

/* Yellow */
.chill-button.yellow {
	background-color: #EBE584;
	background-image: -o-linear-gradient(0deg, rgb(233,220,126) 0%, rgb(246,241,180) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(233,220,126) 0%, rgb(246,241,180) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(233,220,126) 0%, rgb(246,241,180) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(233,220,126) 0%, rgb(246,241,180) 100%);
	background-image: linear-gradient(0deg, rgb(233,220,126) 0%, rgb(246,241,180) 100%);
	border: 1px solid #A89917;
	box-shadow: inset 0 0 1px rgba(184,166,43,1);
	color: #A78E0F;
	text-shadow: 0 1px rgba(254,252,252,0.5);
}

.chill-button.yellow:hover {
	background-color: #F1F09D;
	background-image: -o-linear-gradient(0deg , rgb(237,227,150) 0%, rgb(246,242,199) 100%);
	background-image: -moz-linear-gradient(0deg , rgb(237,227,150) 0%, rgb(246,242,199) 100%);
	background-image: -webkit-linear-gradient(0deg , rgb(237,227,150) 0%, rgb(246,242,199) 100%);
	background-image: -ms-linear-gradient(0deg , rgb(237,227,150) 0%, rgb(246,242,199) 100%);
	background-image: linear-gradient(0deg , rgb(237,227,150) 0%, rgb(246,242,199) 100%);
	color: #A78E0F;
}

.chill-button.yellow:active {
	background-color: #D4CC56;
	background-image: -o-linear-gradient(0deg, rgb(246,241,180) 0%, rgb(233,220,126) 100%);
	background-image: -moz-linear-gradient(0deg, rgb(246,241,180) 0%, rgb(233,220,126) 100%);
	background-image: -webkit-linear-gradient(0deg, rgb(246,241,180) 0%, rgb(233,220,126) 100%);
	background-image: -ms-linear-gradient(0deg, rgb(246,241,180) 0%, rgb(233,220,126) 100%);
	background-image: linear-gradient(0deg, rgb(246,241,180) 0%, rgb(233,220,126) 100%);
	box-shadow: inset 0 0 5px rgba(184,166,43,1);
	color: #A78E0F;
}

/* Columns
-------------------------------------------------------------------------------------*/
.chill-column {
	float: left;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin-bottom: 20px;
	margin-right: 4%;
}

.chill-column-last {
	clear: right;
	float: left;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin-bottom: 20px;
	margin-right: 0;
}

.chill-column > [class^="fa-"],
.chill-column > [class*="fa-"] {
	background-color: #333;
	color: #FFF;
	float: left;
	line-height: normal;
	margin: 6px 20px 0 0;
}

.chill-column .column-content {
	display: block;
	overflow: hidden;
}

.chill-column .column-content h1,
.chill-column .column-content h2,
.chill-column .column-content h3,
.chill-column .column-content h4,
.chill-column .column-content h5,
.chill-column .column-content h6 {
	line-height: normal;
	margin: 0 0 5px;
}

.full { width: 100%; }
.one_half, .one_half_last { width: 48%; }
.one_third, .one_third_last { width: 30.66%; }
.one_fourth, .one_fourth_last { width: 22%; }
.one_fifth, .one_fifth_last { width: 16.8%; }
.two_third, .two_third_last { width: 65.33%; }
.two_fifth, .two_fifth_last { width: 37.6%; }
.three_fourth, .three_fourth_last { width: 74%; }
.three_fifth, .three_fifth_last { width: 58.4%; }
.four_fifth, .four_fifth_last { width: 67.2%; }
.five_sixth, .five_sixth_last { width: 82.67%; }

/* Emphasis
-------------------------------------------------------------------------------------*/
.chill-emphasis {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Pricing
-------------------------------------------------------------------------------------*/
.chill-pricing {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin-bottom: 25px;
	text-align: center;
}

.chill-pricing-holder {
	padding: 35px 25px 30px;
}

.chill-pricing-plan {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 26px;
	font-weight: 200;
	line-height: normal;
	margin: 0 0 25px;
	padding: 0;
}

.chill-pricing-price {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	margin: 0 0 25px;
	padding: 0;
}

.chill-pricing-content {
	font-size: 16px;
	margin: 0;
	padding: 0;
}

.chill-pricing-content .chill-button {
	margin: 30px 0 10px !important;
}

/* Tabs
-------------------------------------------------------------------------------------*/
.chill-tabs {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin: 0 0 20px;
}

.chill-tabs .ui-tabs-nav {
	border: 0;
	display: block;
	margin: 0;
	padding: 0;
}

.chill-tabs .ui-tabs-nav li {
	background: none;
	border: 0;
	display: block;
	float: left;
	height: 50px;
	margin: 0;
	outline: none;
	padding: 0;
	width: auto;
}

.chill-tabs .ui-tabs-nav li a,
.chill-tabs .ui-tabs-nav li a:hover {
	background-color: #FFF;
	border: 1px solid #EEE;
	border-width: 1px 1px 0 1px;
	box-sizing: content-box !important;
		-moz-box-sizing: content-box !important;
		-webkit-box-sizing: content-box !important;
	color: #CCC;
	display: block;
	font-size: 16px;
	height: 39px;
	line-height: 40px;
	margin: 0 -1px 0 0;
	outline: none;
	padding: 5px 20px;
	text-decoration: none;
	width: auto;
}

.chill-tabs .ui-tabs-nav .ui-state-active a,
.chill-tabs .ui-tabs-nav .ui-state-active a:hover {
	background-color: #FFF;
	color: #333;
	height: 40px;
}

.chill-tabs .tab-content {
	background-color: #FFF;
	border: 1px solid #EEE;
	clear: both;
	margin: 0 0 -1px;
	padding: 20px;
}

/* Unordered List
-------------------------------------------------------------------------------------*/
.chill-list {
	margin-left: 0;
}

.chill-list li {
	background: none;
	border: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.chill-list li .chill-icon {
	margin: 0 5px 0 0;
}

/* Media Query
-------------------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {

	.one_half,
	.one_third,
	.one_fourth,
	.one_fifth,
	.two_third,
	.two_fifth,
	.three_fourth,
	.three_fifth,
	.four_fifth,
	.five_sixth,
	.one_half_last,
	.one_third_last,
	.one_fourth_last,
	.one_fifth_last,
	.two_third_last,
	.two_fifth_last,
	.three_fourth_last,
	.three_fifth_last,
	.four_fifth_last,
	.five_sixth_last {
		clear: none !important;
		float: none !important;
		margin-right: 0 !important;
		width: 100% !important;
	}

	.chill-button {
		float: none !important;
	}

}