.clear {
  clear: both;
}

#top-slider {
  .el-carousel__item {
    h3 {
      color: red;
      font-size: 18px;
      opacity: 0.75;
      line-height: 300px !important;
      margin: 0;
      display: block;
      text-align: center;
    }
  }

  .s-items {
    background-image: url("http://127.0.0.1:8000/uploads/no-image.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: block;
    height: 100%;

    a {
      display: block;
      width: 100%;
      height: 100%;
      padding-top: 12%;
    }

    .s-info {
      display: block;
      width: auto;
      height: auto;
      min-width: 50%;
      max-width: 70%;
      margin: auto;

      h2 {
        font-family: ProximaNova-Semibold, "Helvetica Neue", Verdana, Arial, sans-serif;
        color: #fff;
        text-transform: uppercase;
        font-size: 45px;
        font-weight: bold;
        letter-spacing: 2px;
      }

      p {
        color: #fff;
        margin-bottom: 20px;
      }

      button {
        border: solid 1px transparent;
        font-weight: normal;
        margin: 0;
        height: 44px;
        min-width: 250px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: rgb(26, 26, 26);
        background-color: rgb(255, 255, 255);
        font-family: ProximaNova-Semibold, "Helvetica Neue", Verdana, Arial, sans-serif;
        transition: opacity 0.3s ease 0s;
        opacity: 0.8;
        cursor: pointer;
        position: relative;
        overflow: hidden;

        &:hover {
          opacity: 1;
        }
      }
    }
  }

  .s-info-right {
    .s-info {
      text-align: right;
    }
  }
}


.left-control {
  .el-collapse-item__arrow {
    margin: 0 0 0 auto;
  }

  .el-collapse-item__header {
    text-transform: uppercase;
    color: #505050;
    font-size: 14px;
    font-weight: 600;
    font-family: "Montserrat";
  }

  .el-collapse-item__arrow.is-active {
    transform: inherit;
  }

  .el-icon-arrow-right:before {
    content: "\e6d9";
  }

  .el-collapse-item__arrow.is-active:before {
    content: "\e6d8";
  }

  .el-collapse-item__header i {
    font-size: 9px;
    border: solid 1px #505050;
    position: relative;
    width: 12px;
    height: 12px;
    color: #505050;
    border-radius: 2px;
  }

  .el-collapse-item__header i:before {
    position: absolute;
    top: 0;
    left: 1px;
    color: #505050;
    display: block;
    width: 12px;
    height: 12px;
  }

  .el-checkbox-group label {
    display: block;
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
  }

  .el-collapse-item__content {
    padding-bottom: 10px;
  }

  .el-checkbox-group {
    max-height: 230px;
    overflow-y: auto;

    &::-webkit-scrollbar {
      width: 5px;
    }

    &::-webkit-scrollbar-thumb {
      background: #ebebeb;
    }

    &::-webkit-scrollbar-track {
      background: #ffffff;
    }
  }

  .el-slider {
    .el-slider__runway {
      background-color: #e5e5e5 !important;
    }

    .el-slider__bar {
      background-color: rgba(245, 97, 77, 0.5) !important;
    }

    .el-slider__button {
      border: solid 2px #f5614d;
    }
  }

  .tab-padding .el-collapse-item__content {
    padding: 0 10px;

    p {
      font-size: 14px;
      padding: 8px 0;
      font-family: "Raleway";
      color: #8d8d8d;

      span {
        color: #3f3f3f;
        font-weight: bold;
        font-size: 16px;
        font-family: sans-serif;
      }
    }
  }
}


.product-items {
  padding-left: 40px;
  display: block;
  width: 100%;
  height: auto;

  a {
    display: block;
    width: 100%;
    height: auto;
    text-decoration: none;
    clear: both;

    .p-item-img {
      display: block;
      width: 100%;
      height: auto;
      position: relative;
      margin-bottom: 20px;

      img {
        margin-bottom: 0;
        box-shadow: none;
      }

      .secondary-image-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background: #ffffff;
        transition: 0.5s all ease-in-out;
        opacity: 0;

        img {
          transition: 0.5s all ease-in-out;
        }
      }

      &:hover {
        .secondary-image-container {
          opacity: 1;
          img {
            transform: translate3d(0,0,0) scale(1.2, 1.2);
          }
        }
      }

    }
  }

  .p-item {
    display: block;
    width: 100%;
    height: auto;
    padding: 0 15px;
    position: relative;
    clear: both;
    margin-bottom: 40px;

    img {
      margin-bottom: 20px;
    }

    p {
      font-family: "Montserrat";
      color: #3f3f3f;
      font-weight: 400;
      font-size: 14px;
      line-height: 1.5;
      padding: 5px 0;
      margin-bottom: 0;
    }

    .p-item-name {
      text-align: left;
      display: block;
      height: 73px;
      overflow: hidden;
    }

    .p-item-info {
      display: block;
      float: left;
      width: 80%;
    }

    .p-i-cate {
      padding-bottom: 15px;
      border-bottom: 1px solid #e9e9e9;
      height: 42px;
      text-transform: uppercase;
      font-size: 13px;
      color: #8d8d8d;
    }

    .p-i-price {
      padding: 12px 0;
      font-size: 15px;
      font-weight: bold;
      color: #3f3f3f;
      font-family: Montserrat;

      ins {
        text-decoration: none;
      }

      del {
        font-size: 16px;
        color: #ccc;
        opacity: 1;
        font-weight: normal;
        margin-right: 5px;
      }

      span {
        font-family: Montserrat;
      }
    }
  }

  .p-item > button {
    position: absolute;
    bottom: 28px;
    right: 15px;
    background-color: #f2f2f2;
    color: #8d8d8d;
    height: 40px;
    width: 40px;
    font-size: 16px;

    &:focus,
    &:active,
    &:hover {
      background-color: #f5614d;
      border-color: #f5614d;
      color: #fff;
    }
  }
}

.product-items > .el-col > .el-row {
  margin-right: -15px;
  margin-left: -15px;
}



.left-control {
  .search-control {
    padding: 10px;
    border-radius: 50px;
    font-weight: 400;
    transition: 0.25s background;
    border: 1px solid #ddd;
    color: #8d8d8d;

    input {
      margin-bottom: 0;
      outline: none;
      border: solid 0px transparent;
      padding: 0 10px;

      &:focus,&:active,&:hover {
        border: solid 0 transparent;
      }
    }

    .el-input-group__append, .el-input-group__prepend {
      padding: 0 10px;
      border: solid 0 transparent;
      background-color: #fff;
      button {
        border: solid 0 transparent;
        font-size: 16px;
      }
    }

  }

}



.product-items > .el-col > .el-row.filter-items {
  margin-bottom: 22px;
  margin-left: 0;
  margin-right: 0;
}

.product-items > .el-col > .el-row.filter-items .el-select input {
  height: 58px;
  margin-bottom: 0;
  border-radius: 50px;
}

.product-items > .el-col > .el-row.filter-items .el-select input:focus,
.product-items > .el-col > .el-row.filter-items .el-select input:active,
.product-items > .el-col > .el-row.filter-items .el-select input:hover {
  border: 1px solid #e3e3e3;
}

.product-items > .el-col > .el-row.filter-items .el-select .el-input .el-input__suffix {
  right: 10px;

}

.product-items > .el-col > .el-row.filter-items p {
  text-align: right;
  line-height: 58px;
}

.left-control .l-items {
  margin-top: 40px;
}

.left-control .l-items h3 {
  color: #505050;
  font-size: 14px;
  margin-bottom: 15px;
  font-family: "Montserrat";
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
}

.left-control .l-items .l-item {
  width: 100%;
  display: block;
  position: relative;
  min-height: 65px;
  border-bottom: solid 1px #ddd;
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.l-item a {
  text-decoration: none;
}

.l-item a span {
  line-height: 1;
  transition: 0.3s all ease-in-out;
  color: #3f3f3f;
  font-weight: 700;
  max-height: 85px;
  overflow: hidden;
}

.l-item a span:hover {
  opacity: 0.8;
}


.l-item a img {
  width: 65px;
  height: 65px;
  float: left;
  margin-right: 15px;
  margin-top: 5px;
}

.l-item ins {
  display: block;
  padding-left: 80px;
  text-decoration: none;
  font-weight: bold;
  color: #3f3f3f;
  font-size: 16px;
}


/* Custom cart */
.cart-items {
  table {
    border: 0 solid #e5e5e5!important;

    td {
      padding: 10px!important;

      input {
        margin-bottom: 0;
      }

      img {
        height: 80px;
        width: 80px;
        margin-top: 15px;
        margin-bottom: 15px;
      }

      a {
        color: #8d8d8d;
        text-decoration: none;
        font-size: 15px;

        &:hover {
          text-decoration: underline;
        }
      }
    }
  }

  .el-table--group, .el-table--border {
    border: solid 1px #dfe6ec;
  }

  .el-table--border {
    th, td {
      .cell {
        padding-left: 0;
        padding-right: 0;
      }
    }
  }

  .cart-discount, .cart-total {
    input, button, a.btn-process-cart {
      height: 50px;
    }

    a.btn-process-cart,
    button {
      border-radius: 100px;
      font-size: 13px;
      text-transform: uppercase;
      background-color: #f2f2f2;
      color: #8d8d8d;
      border: solid 0 transparent;
      font-weight: bold;
      padding-left: 30px;
      padding-right: 30px;

      &:hover, &:active {
        background-color: #e5e5e5;
      }

      &:disabled[disabled] {
        cursor: not-allowed;
        opacity: .5;
      }
    }

    a.btn-process-cart,
    button.btn-update-cart {
      float: right;
      background-color: #f5614d;
      color: #fff;

      &:hover, &:active {
        background-color: #3f3f3f;
      }
    }

    a.btn-process-cart,
    button.btn-process-cart {
      float: left;
    }

    a.btn-process-cart {
      line-height: 50px;
      text-decoration: none;
      text-align: center;
    }
  }

  .cart-discount {
    display: block;
    padding: 30px;
    border-left: 2px solid #e5e5e5;
    border-right: 2px solid #e5e5e5;
    border-bottom: 2px solid #e5e5e5;

    .el-input {
      max-width: 250px;

      input {
        margin-bottom: 0;
        border-radius: 0;

        &:active, &:focus {
          border: 1px solid #e3e3e3;
        }
      }
    }
  }

  .cart-total {
    padding-top: 70px;
    padding-bottom: 50px;

    h2 {
      color: #000;
    }

    table {
      width: 100%;
      margin-bottom: 20px;
      border: 2px solid #e5e5e5!important;

      th {
        width: 30%;
        max-width: 180px;
      }

      td {
        padding-left: 15px!important;
        font-size: 16px;
      }

      tr {
        &:last-child {
          td {
            font-weight: bold;
          }
        }
      }

    }
  }
}






