
.catalog {
  

  &-results-number {
    color : @grey;
    font-size : 14px;
    font-family: Arial, Helvetica, sans-serif;
  }

  &-order-form {
    color : @red;
    font-size : 14px;
    font-family: Arial, Helvetica, sans-serif;
    float : right;

    i {
      margin-right : 5px;
    }
  }

  &-container {
    width: @width-container;
    margin: 0 auto;
  }

	&-list {
    width:100%;
		display : inline-block;
    margin-top : 30px;
    margin-left : -15px;
    margin-right : -15px;
	}

	&-list-item {
    padding : 0 15px;
    width : 25%;
    float : left; 
    display : inline-block;
    box-sizing : border-box;
    margin-bottom : 30px;
	}

  &-list-item-more {
    opacity : 0;
    position : absolute;
    display : inline-block;
    width : 100%;
    text-align : center;
    left : 0;
    font-size : 12px;
    color : @grey;
    text-transform : uppercase;
  }

  &-list-item-link {
    display : inline-block;
    width : 100%;

    &:hover {

      .catalog-list-item-more {
        opacity : 1;
      }

      .catalog-list-item-img {
        opacity : 0.2;
      }

    }
  }

  &-list-item-link-head {
    border : 1px solid #dedede;
    border-bottom : none;
    border-top-left-radius : 5px;
    border-top-right-radius : 5px;
    text-align : center;
    position : relative;
    height : 225px;
    line-height : 225px;
  }

  &-list-item-link-footer {
    background-color : @grey-background;
    border-bottom-left-radius : 5px;
    border-bottom-right-radius : 5px;
    padding : 15px 20px;

    h5 {
      text-transform : uppercase;
      color : @black;
      font-size : 12px;
      margin-bottom : 3px;
      .textoverflow;
    }

    p {
      margin : 0;
      font-size : 14px;
      color : @grey;

      .available {
        color : @red;
      }

    }

  }

  &-list-item-img {
    vertical-align: middle;;
    border : none;
  }

  &-list-item-img-unavailable {
    position : absolute;
    top : 0;
    left : 0;
    border : none;
  }

  &-list-item-img-new {
    position : absolute;
    top : 0;
    left : 0;
    border : none;
  }

}


