/*--------------------------------------------------------------
    WIDGET #5 - PORTFOLIO FILTER
-----------------------------------------------------------------*/

#portfolio_filter_wrapper{
    margin: 10px 0 60px
}

/* background of our portfolio items */
.projects{
    width: 100%;
    margin: 0 auto; 
    background: #fff;
}

/* our filter items wrapper */
#options{
    margin: 35px 0;
    padding: 10px;
    text-align:left;
    width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#filters li {
    display:inline-block;
	border-right: 1px solid #ddd
}

#filters li:last-child{
	border-right: none
}

#filters li a {
    margin:0;
    font-family:inherit;
    line-height:26px;
	margin: 0 10px;
    display:block;
    color: #999;
    font-size: 16px;
    border-bottom: 1px solid transparent;
}

#filters li a.selected, #filters li a:hover {
	color: #555;
}

#filters li a.selected{
	font-style: italic;
}

.blockelement{
    width: 250px;
    min-height: 200px;
    margin: 5px;
    padding: 5px;
    height: auto;
    border: 1px solid #eee;
    background: #f9fafb;
}

.blockelement:hover{
    background: #64c7ab;
	border: 1px solid #5E9586;
}

.blockelement:hover *{
	color: #fff;
}

.blockelement h2{
    font-size: 1.1em;
    line-height: 1;
}

.blockelement h3{
    font-size: 1.1em;
    line-height: 1.3;
}

.blockelement p{
    font-size: .9em;
    line-height: 1.3;
}

.blockelement {
  position: relative;
}
.blockelement img {
    max-width:100%;
}


/*-- MODIFYING THE BELOW COULD LOSE THE FUNCTIONALITY OF THE PLUGIN --*/

.cf:before,
.cf:after {
    content: " "; 
    display: table; 
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}

/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
          transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
          transition-property:         transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
     -moz-transition-duration: 0s;
          transition-duration: 0s;
}

/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
     -moz-transition: none;
          transition: none;
}

#icontent .blockelement{
    margin: 20px 5px;
}

#icontent #filters li a{
    cursor:text;
}

#icontent #filters li:nth-child(2){
    border: 1px solid red;
}

#icontent #filters li:nth-child(3){
    border: 1px solid yellow;
}

#icontent #filters li:nth-child(4){
    border: 1px solid green;
}

#icontent #filters li:nth-child(5){
    border: 1px solid blue;
}

#icontent #filters li:nth-child(6){
    border: 1px solid blueViolet;
}

#icontent #filters li:nth-child(7){
    border: 1px solid Coral;
}

#icontent #filters li:nth-child(8){
    border: 1px solid DarkTurquoise;
}

#icontent .blockelement{
    margin-bottom: 50px;
    float:left;
}

#icontent .category01{
    border: 1px solid red;
}

#icontent .category02{
    border: 1px solid yellow;
}

#icontent .category03{
    border: 1px solid green;
}

#icontent .category04{
    border: 1px solid blue;
}
#icontent .category05{
    border: 1px solid blueViolet;
}
#icontent .category06{
    border: 1px solid Coral;
}
#icontent .category07{
    border: 1px solid DarkTurquoise;
}

@media screen and (max-width: 767px){
  #filters{
    text-align: center;
  }
  
  #filters li{
    margin: 7px 2px;
  }
}

/*--------------------------------------------------------------
        END  DD-PORTFOLIO
-----------------------------------------------------------------*/