/*
* Packery - Mixins & Variables
*/
//Less Variables

//colors
@color1: #333;
@color2: #5b443d; //brown
@border-color: #ccc;
@block-bg: #fff;
@block-padding: 15px;

//MEDIA-QUERIES
@full-hd:   ~"(min-width: 1400px)";
@desktop:   ~"(min-width: 1600px)";
@laptop2:   ~"(min-width:1200px)";
@laptop:   ~"(min-width:992px)";
@tablet:    ~"(min-width: 768px)";
@mobile:    ~"(min-width: 240px)";
@onlyMobile:    ~"(min-width: 240px) and (max-width: 767px)";


//Elements
.ecbw-catalog-item-wrapper {  
  width: 49%;
  vertical-align: top;
  display: inline-block;
  padding-right: 20px;
  margin-bottom: 20px;
}

.ecbw-catalog-item {
 border: 1px solid @border-color;
}

.ecbw-catalog-item-title {
  h2 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 8px;    
  }
  a {
    text-decoration: none;
    border-bottom: 0;
  }
}

.ecbw-catalog-item-content {  
  border-top: 0;
  padding: 20px;
}

.ecbw-catalog-item-text {
  font-size: 14px;
}

.ecbw-catalog-item-buttons {
  margin-top: 15px;
  a {
    display: inline-block;
    padding: 5px 10px;
    background: @color1;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    border: 0;
  }
}

//categories
.ecbw-categories-wrapper {
  margin-bottom: 20px;
  a {
    display: inline-block;
    margin-right: 5px;
  }
}

