/*! UIkit 2.26.2 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
/* ========================================================================
   Component: Accordion
 ========================================================================== */
/* Sub-object: `uk-accordion-title`
 ========================================================================== */
.uk-accordion-title {
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;	
  margin-top: 0;
  margin-bottom: 0;
  padding: 5px 18px;
  cursor: pointer;
  font-weight:600;
}

.uk-accordion-title:hover {
	color:#0082A7;
}

.uk-accordion-title:before {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
	color:#0082A7;
	content: "\f0da";
	width:24px;
	margin-left:-24px;
	text-align:center;
}
.uk-accordion-title.uk-active:before {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
	color:#0082A7;
    content: "\f0d7";
	width:24px;
	margin-left:-24px;
	text-align:center;	
}




/* Sub-object: `uk-accordion-content`
 ========================================================================== */
.uk-accordion-content {
  padding: 0 16px 16px;
}
/*
 * Micro clearfix to make panels more robust
 */
.uk-accordion-content:before,
.uk-accordion-content:after {
  content: "";
  display: table;
}
.uk-accordion-content:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-accordion-content > :last-child {
  margin-bottom: 0;
}
