/*
 *
 * Prefix Css Page
 *
 */
/*
 *
 * Colors Css
 *
 */
/*== Start Color Text Classes ==*/
.text-grey {
  color: #777;
}

/*
 *
 * Prefix Css Page
 *
 */
/*
 *
 * Extend Css
 *
 */
.dFlexCenterCenter {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexAroundCenter {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
}

.dFlexBetweenCenter {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.backgroundImage, .products .item .item-header .image {
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/*
 *
 * Global Css Page
 *
 */
body {
  font-family: Raleway, sans-serif;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.row {
  direction: ltr;
}

.error {
  color: red;
  display: block;
  width: 100%;
  text-align: left;
}

.parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/*== Start Scroll ==*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #1d4d4f;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #27a10c;
}

/*
 *
 * Products Css Component
 *
 */
.products .page-intro {
  font-size: 40px;
  color: #1d4d4f;
  text-align: center;
  margin-bottom: 50px;
}
.products .item {
  margin-bottom: 50px;
}
.products .item .item-header .image {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  width: 100%;
  height: 200px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.products .item .item-body h5 {
  color: #1d4d4f;
}
.products .item .item-body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  direction: ltr;
  color: #1d4d4f;
}
.products .item .item-footer {
  text-align: center;
}
.products .item .item-footer .btn-order {
  border: solid 1px #27a10c;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  color: #27a10c;
  padding: 8px 15px;
  margin-top: 5px;
}
.products .item .item-footer .btn-order:hover {
  background-color: #1d4d4f;
  border: solid 1px #1d4d4f;
  color: white;
}
.products .item:hover .item-header .image {
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.products .item:hover .item-body h5 {
  color: #27a10c;
}
.products .item-details .item-header .image {
  height: 400px;
}
.products .item-details .item-body {
  text-align: left;
}
.products .item-details .item-body h2 {
  margin: 40px 0 0;
}
.products .item-details .item-body p {
  display: block;
  white-space: pre-line;
}
.products .item-details:hover .item-header .image {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.products .item-details:hover .item-body h5 {
  color: #1d4d4f;
}
.products .not-found {
  font-size: 30px;
  color: #27a10c;
  text-align: center;
  margin-bottom: 50px;
}

/*== Responsive ==*/
@media (max-width: 576px) {
  .products .page-intro {
    font-size: 30px;
  }
}

/*# sourceMappingURL=products.css.map */
