/*----------------------------
 GENERAL
------------------------------*/

.filter-tools{
	text-align: left;
	margin-top:40px;
}
.table-list{
	background-color: white;
	display: table;
	width:100%;
	border-bottom:1px solid #bddef1;
	margin:20px 0px 60px 0px;
}

/*-------------------------
 TAble row
 -----------------------*/
 .table-list .row{
	 display: table-row;
 	 border-top:1px solid #bddef1;
 }

.table-list .title-row{
	background-color: #bddef1;
	border: 0px;
}
.table-list .title-row .cell{
	border: 0px;
	font-weight: bold;
}
@media all and (max-width: 600px) {
	.table-list{
		border-bottom:0px;
	}
	.table-list .row{
		display: block;
		border-top:0px;
	}
	.table-list .title-row{
		display:none;
	}
}

/*-------------------------
 Table cell
 -----------------------*/
.table-list .title-row .cell:first-of-type{
	border-left:0px;
}
.table-list .cell{
	display: inline-block;
	display: table-cell;
	padding: 12px 20px 12px 20px;
	border-right:1px dashed  #bddef1;
	vertical-align: top;
	width:25%;
	font-size:14px;
	border-bottom:1px solid #bddef1;
}
.table-list .cell:first-of-type{
	border-left:1px solid #bddef1;
}
.table-list .cell:last-of-type{
	border-right:1px solid #bddef1;
}
.table-list .cell p{
	margin-bottom:0px;
	margin-top:0px;
}


@media all and (max-width: 600px) {

	.table-list .cell{
		padding: 5px 20px 5px 20px;
		display:block;
		width:100%;
		border:0px;
		text-align: center;
	}
	.table-list .cell:first-of-type{
		border-left			: 0px;
		background-color: #f5f9ff;
		text-align			: center;
		padding					: 12px 20px 12px 20px;
		margin-bottom		: 10px;
	}
	.table-list .cell:last-of-type{
		border-right:0px;
		margin-bottom:20px;
	}

}

/*----------------------
  Flexbox items
 ----------------------*/
.flex{
	display			:flex;
}

.flex.wrap{
	flex-flow		: wrap;
}
.flex.center{
	justify-content	: center;
}
.flex.middle{
	align-items		: center;
}

.flex-item{
	flex-grow		: 1;
	margin-right	: 5px;
}
.flex-item:last-of-type{
	margin-right	: 0px;
}

@media (max-width: 900px) {
	.flex{
		display			: block;
	}
	.flex-item{
		margin-right	: 0px;
		margin-bottom	: 5px;
	}
}
/*----------------------
  Grid items
 ----------------------*/
.grid > .item{
  display			: inline-block;
  vertical-align	: top;
}
.grid.items-middle > .item{
  vertical-align	: middle;
}
.grid > .item.middle{
  vertical-align	: middle;
}

.grid > .item figure{
  width:100%;
  height: auto;
}
.grid > .item figure img{
  width:100%;
  height: auto;
}

.pad{
  padding			: 20px;
}
.pad-large{
  padding			: 30px;
}
.pad-small{
  padding			: 10px;
}
.pad-bottom{
  padding			: 0px 0px 20px 0px;
}


/* Colors*/
.c-bg-white{
  background-color	:white;
}
.c-bg-transparent{
	background-color: transparent;
}
.c-green{
	color			: #87b623;
}
.c-blue{
	color			: #3891c4;
}
.c-grey{
	color			: rgba(0,0,0,0.5);
}

.green{
	color			: #87b623;
}
.blue{
	color			: #3891c4;
}

.transparent-bg{
	background-color: transparent;
}
.white-bg{
	background-color: white;
}

/* Borders */
.border-grey{
	border			: 1px solid rgba(0,0,0,0.05);
}
/* Shadows */
.box-shadow-small{
	box-shadow		: 1px 2px 4px rgba(0,0,0,0.2);
}

/* Align */
.middle{
	vertical-align	: middle;
}
.left{
	float			: left;
}
.right{
	float			: right;
}
.center{
	text-align		: center;
}
.text-left{
	text-align		: left;
}
.text-right{
	text-align		: right;
}

@media (max-width: 900px) {
	.text-left{
		text-align		: center;
	}
	.text-right{
		text-align		: center;
	}
}

/* Fonts */
.roboto{
	font-family		: roboto;
}

.sans-secondary{
	font-family		: roboto;
}
.slab{
	font-family		: roboto slab;
	font-weight		: 400;
}
.bold{
	font-weight		: 600;
}
.uppercase{
	text-transform	: uppercase;
}
.caps{
	text-transform	: uppercase;
}
.small-text{
	font-size		: 13px;
}


.pointer{
	cursor			: pointer;
}

/* Images */
img.size-original{
	width			: auto;
	height			: auto;
}


/* Cols */
.col-100{
  width				: 100%;
}
.col-70{
  width				: 70%;
}
.col-60{
  width				: 60%;
}
.col-50{
  width				: 50%;
}
.col-40{
  width				: 40%;
}
.col-30{
  width				: 30%;
}
.col-33{
  width				: 33.333%;
}
.col-25{
  width				: 25%
}
.col-20{
  width				: 20%;
}
.col-15{
  width				: 15%;
}

.width-250{
	width			: 245px;
}

.p100{
	width			: 100%;
}
.p50{
	width			: 50%;
}
.p33{
	width			: 33%;
}


@media (max-width: 900px) {

	.width-250{
		width		: 100%;
	}
	.p50{
		width		: 100%;
	}
	.p33{
		width		: 100%;
	}
	.col-33{
	  width			: 100%;
	}
	.col-50{
	  width			: 100%;
	}
}

.inner-padding{
	padding-left	: 20px;
}
.italic{
	font-style		: italic;
}

.inline{
	display			: inline-block ;
}
.block{
	display			: block;
}
.relative{
	position		: relative;
}
.absolute{
	position		: absolute;
	z-index			: 10;
	top				: 0px;
	left			: 0px;
}


.text-shadow{
	text-shadow		: 0px 1px 1px rgba(0,0,0,0.5);
}

.no-padding{		padding			: 0px;	}
.padding-10{		padding			: 10px;	}
.padding-15{		padding			: 15px;	}

.padding-right-0{	padding-right 	: 0px;	}
.padding-right-5{	padding-right 	: 5px;	}
.padding-right-10{	padding-right 	: 10px;	}
.padding-right-20{ 	padding-right 	: 20px;	}
.padding-right-40{ 	padding-right 	: 40px;	}
.padding-right-40{ 	padding-right 	: 50px;	}

.padding-top-10{ 	padding-top		: 10px;	}
.padding-top-20{ 	padding-top		: 20px;	}
.padding-top-20{ 	padding-top		: 20px;	}


.no-margin{			margin			: 0px;	}

.margin-right-5{ 	margin-right 	: 5px;	}
.margin-right-10{ 	margin-right 	: 10px;	}
.margin-right-15{ 	margin-right 	: 15px;	}
.margin-right-20{ 	margin-right 	: 20px;	}
.margin-right-25{ 	margin-right 	: 25px;	}
.margin-right-30{ 	margin-right 	: 30px;	}
.margin-right-40{ 	margin-right 	: 40px;	}

.margin-left-10{ 	margin-left 	: 10px;	}
.margin-left-15{ 	margin-left 	: 15px;	}
.margin-left-20{ 	margin-left 	: 20px;	}



.margin-top-5{ 		margin-top 		: 5px !important;	}
.margin-top-10{ 	margin-top 		: 10px;	}
.margin-top-15{ 	margin-top 		: 15px;	}
.margin-top-20{ 	margin-top 		: 20px;	}
.margin-top-30{ 	margin-top 		: 30px;	}
.margin-top-35{ 	margin-top 		: 35px;	}
.margin-top-45{ 	margin-top 		: 45px;	}

.margin-bottom-5{ 	margin-bottom 	: 5px	}
.margin-bottom-10{ 	margin-bottom 	: 10px	}
.margin-bottom-15{ 	margin-bottom 	: 15px	}
.margin-bottom-20{ 	margin-bottom 	: 20px	!important; }
.margin-bottom-25{ 	margin-bottom 	: 25px;	}
.margin-bottom-30{ 	margin-bottom 	: 30px;	}
.margin-bottom-35{ 	margin-bottom 	: 35px;	}
.margin-bottom-60{ 	margin-bottom 	: 60px;	}

@media (max-width: 900px) {
	.padding-right-40{ 	padding-right 	: 40px;	}
}


.hidden{
	display:none !important;
}
.clear{
	clear:both;
}
.group:before,
.group:after {
  content: "";
  display: table;
}
.group:after {
  clear: both;
}
.group {
  zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}
