/*      RESET      */
body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    background-color: #F0F0F0;
}

body::-webkit-scrollbar {
    width: 7px;
}
body::-webkit-scrollbar-track {
    background-color: #ECF0F1;
}
body::-webkit-scrollbar-thumb {
    background-color: #D71A22;
    z-index: 5;
}


.btn {
    padding: 10px 50px;
    border-radius: 0;
    transition: all .3s ease;
}

.btn.btn-white {
    border-color: #FFF;
}

.btn.btn-white:hover,
.btn.btn-white:active {
    background: #D71A22;
    border-color: #D71A22;
    color: #FFF;
}

.btn.btn-white:focus {
    background: #B2151C;
    border-color: #B2151C;
    color: #FFF;
}

.btn.btn-red {
    background: #D71A22;
    border-color: #D71A22;
    color: #FFF;
}
.btn.btn-red:hover,
.btn.btn-red:focus,
.btn.btn-red:active {
    background: #231F20;
    border-color: #231F20;
    color: #FFF;
}

@media only screen and (min-width: 768px) {
   .row {
       margin-right: 0;
   }
}

.white-bg {
    background: #FFF;
}


/*      NAVBAR      */
.navbar.navbar-default {
    height: 140px;
    box-shadow: 3px 0px 16px rgba(0, 0, 0, .65);
    background: #FFF;
    margin-bottom: 0;
}

.navbar-brand {
    height: 100px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 25px;
    padding-bottom: 5px;
}

.navbar-brand img {
    height: 120px;
    vertical-align: middle;
    margin-top: -15px;
}

@media only screen and (max-width: 767px) {
   .navbar-brand img {
      height: 70px;
   }
   .navbar.navbar-default {
      height: 90px;
   }
}

.navbar-nav > li > a {
    line-height: 100px;
    color: #000 !important;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .3s ease;
}
.navbar-nav > li > a:hover {
    color: #D71A22 !important;
}

.navbar-nav > li > a img.cart-icon {
    height: 20px;
    user-select: none;
}

.navbar-nav > li > a .badge {
    background: #D71A22;
    color: #FFF;
}

.navbar-nav > li > a.menu-cart {
    position: relative;
}

.navbar-nav > li > a.menu-cart .badge {
    position: absolute;
    top: 40%;
    right: 0;
    transform: translateY(-60%);
    padding: 3px 6px;
    font-size: 11px;
}

.navbar-toggle {
    margin-top: 30px;
}

@media only screen and (max-width: 767px) {
    .navbar-nav > li > a {
        line-height: 20px;
    }
}

.navbar-default .navbar-collapse {
    background: #FFF !important;
    z-index: 999;
}

@media only screen and (max-width: 768px) {
    .navbar.navbar-default {
        z-index: 999;
    }

    .navbar-nav > li > a.menu-cart .badge {
        right: 90%;
    }

    .navbar-nav > li:nth-child(3) {
      display: none;
   }
}

.navbar-default .navbar-toggle {
   background: #FFF;
   border-color: #FFF !important;
}

.navbar-default .navbar-toggle li {
   list-style: none;
   margin-right: 20px;
}

.navbar-default .navbar-toggle li a {
   color: #000;
   text-transform: uppercase;
   font-weight: 600;
}


/*      MAIN HEADER      */
.main-header {
    background-color: #9F8C7D;
    background-image: url('../images/header/home-header.jpg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding: 40px 0;
}

.main-header .header-title {
    color: #FFF;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    display: inline-block;
    background: #231F20;
    padding: 10px;
    margin-bottom: 30px;
}

.main-header p {
    color: #FFF;
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
    .main-header {
        padding: 30px 0;
        padding-top: 20px;
    }

    .main-header p {
        max-width: 800px;
        font-size: 17px;
    }

    .product-card h3 {
      font-size: 13px;
   }
}

@media only screen and (max-width: 768px) {
    .main-header .col-lg-12 {
        text-align: center;
    }

    .main-header .header-title {
        font-size: 30px;
    }
}


/*      MAIN PRODUCTS      */
.main-products {
    padding: 20px 0;
}

.main-products-title {
    color: #000;
    font-weight: 600;
}

.main-products .products-row .col-md-3 {
    padding-left: 0;
    padding-right: 0;
}

.product-cards-wrapper {
    margin-top: 20px;
}
.product-cards-wrapper.last {
    margin-top: 5px;
}

@media only screen and (max-width: 768px) {
    .product-cards-wrapper {
        flex-direction: column;
    }
}


.product-card {
    background: #FFF;
    padding: 20px 15px;
    text-align: center;
    position: relative;
    margin: 2px 0;
    display: inline-block;
    width: 25%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.product-card::before,
.product-card::after {
    border: 0 solid transparent;
    box-sizing: border-box;
    content: '';
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    right: 0;
}
.product-card::before {
    border-bottom-width: 3px;
    border-left-width: 3px;
}
.product-card::after {
    border-top-width: 3px;
    border-right-width: 3px;
}
.product-card:hover::before,
.product-card:hover::after {
    border-color: #D71A22;
    transition: border-color 0s, width 0.77s, height 0.77s;
    width: 100%;
    height: 100%;
}
.product-card:hover::before {
    transition-delay: 0s, 0s, 0.77s;
}
.product-card:hover::after {
    transition-delay: 0s, 0.77s, 0s;
}

.product-card:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.product-card .product-link {
    display: block;
}
.product-card .product-img-link {
    display: block;
    width: 100%;
    height: 150px;
}
.product-card .product-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.product-card h3 {
    margin-top: 0;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
}

.product-card .product-link {
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #D71A22;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    transition: all .3s ease;
}
.product-card .product-link:hover {
    text-decoration: none;
    color: #000;
}



/*      FOOTER      */
.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: #FFF;
}

.footer p {
    margin: 20px 0;
    color: #8A8A8A;
}


/*      CTA      */
.cta {
    background-color: #9F8C7D;
    background-image: url('../images/footer/footer-bg.jpg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding: 40px 0;
    margin-top: 30px;
}

.cta .cta-title {
    color: #FFF;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    display: inline-block;
    background: #231F20;
    padding: 10px;
    margin-bottom: 30px;
}

.cta p {
    color: #FFF;
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
    .cta {
        padding: 80px 0;
    }

    .cta p {
        max-width: 800px;
        font-size: 17px;
        margin: 0 auto;
        margin-bottom: 30px;
    }
}

/*      PRODUCT HEADER      */
.product-header {
    background-color: #9F8C7D;
    background-image: url('../images/header/subheader.jpg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding: 40px 0;
}
.product-header.single-level {
   padding: 15px 0;
}

.product-header .header-title {
    color: #FFF;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    display: inline-block;
    background: #231F20;
    padding: 10px;
    margin-bottom: 30px;
}
.product-header.single-level .header-title {
   margin-bottom: 20px;
}

.product-header p {
    color: #FFF;
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
    .product-header p {
        max-width: 800px;
        font-size: 17px;
    }
}

@media only screen and (max-width: 768px) {
    .product-header .col-lg-12 {
        text-align: center;
    }

    .product-header .header-title {
        font-size: 30px;
    }
}


/*      PRODUCT LIST CARD       */
.product-list {
    margin: 20px 0;
}

.product-list-card,
.product-details {
    position: relative;
}

.product-list-card {
   background: #FFF;
    padding: 5px;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
    color: #000 !important;
    text-decoration: none !important;
    width: 100%;
}

.product-list-card .product-img {
   width: 100%;
   height: 200px;
}

.product-list-card .product-title {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 17px;
    min-height: 50px;
}

.product-list-card .product-price b {
    color: #000;
}

.product-list-card .product-img img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.product-details .product-add-to-cart {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.product-details .product-add-to-cart a {
    background: #D71A22;
    color: #FFF;
    border-radius: 50%;
    padding: 8px 10px;
    transition: all .3s ease;
}
.product-details .product-add-to-cart a:hover {
    background: #231F20;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .3s ease;
}

.product-list-card:hover .product-overlay {
    opacity: 1;
}

.product-list .row {
    margin-bottom: 30px;
}
.product-list .row:last-child {
    margin-bottom: 0;
}

.product-list-card:hover {
    background: #FFF;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}


/*      BREADCRUMB      */
.page-breadcrumb {
    padding: 30px 0;
    padding-bottom: 0;
}

.page-breadcrumb a {
    color: #000;
    text-decoration: none;
    transition: all .3s ease;
}

.page-breadcrumb a span {
    color: #8A8A8A;
}

.page-breadcrumb a:hover {
    color: #D71A22;
}
.page-breadcrumb a:hover span {
    color: #8A8A8A;
}


/*      SINGLE PRODUCT      */
.single-product-wrapper {
    margin: 40px 0;
    margin-top: 0px;
}

.price {
    font-weight: 800;
}
.price-per-kg {
    color: #8A8A8A;
    margin-top: -10px;
}

.cart-block {
    margin-top: 20px;
}

.single-product-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-product-main-img {
    margin-bottom: 20px;
    border: 1px solid rgba(145, 145, 145, 0.4);
}

.single-product-list-images {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.single-product-thumb {
    width: 150px;
    height: 100px;
    margin-right: 5px;
    border: 1px solid rgba(145, 145, 145, 0.9);
}

.single-product-thumb:last-child {
    margin-right: 0;
}

.single-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qty-block label,
.amount-block label {
    min-width: 80px;
}
.amount-block label span {
    color: #8A8A8A;
}

.option-block {
    margin: 20px 0;
    padding-left: 30px;
}

.btn-toggle {
    margin: 0 4rem;
    padding: 0;
    position: relative;
    border: none;
    height: 3rem;
    width: 6rem;
    border-radius: 3rem;
    color: #6b7381;
    background: #35363A;
    outline: none;
  }
  .btn-toggle:focus,
  .btn-toggle.focus,
  .btn-toggle:focus.active,
  .btn-toggle.focus.active {
    outline: none;
  }
  .btn-toggle:before,
  .btn-toggle:after {
    line-height: 3rem;
    width: 8rem;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    transition: opacity 0.25s;
  }
  .btn-toggle:before {
    content: 'Quantity';
    left: -8rem;
  }
  .btn-toggle:after {
    content: 'Amount';
    right: -8rem;
    opacity: 0.5;
  }
  .btn-toggle > .handle {
    position: absolute;
    top: 0.375rem;
    left: 0.375rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 2.25rem;
    background: #fff;
    transition: left 0.25s;
  }
  .btn-toggle.active {
    transition: background-color 0.25s;
  }
  .btn-toggle.active > .handle {
    left: 3.375rem;
    transition: left 0.25s;
  }
  .btn-toggle.active:before {
    opacity: 0.5;
  }
  .btn-toggle.active:after {
    opacity: 1;
  }

/*      REGISTER FORM      */
.form-wrapper {
   background: #FFF;
   margin: 30px 0;
   border-radius: 5px;
   padding: 20px;
}

.hidden {
   display: none !important;
}

tr.disabled {
   background: #bdc3c7;
}

.nav-pills li a {
   cursor: pointer;
}

.table-btn.delete {
   color: red;
}

.product-preview-img {
   width: 80px !important;
   height: 80px !important;
   object-fit: cover;
   margin-right: 10px;
}

.product-title-wrapper {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: flex-start;
}

.req {
   color: red;
   font-weight: bold;
}

.hidden-price {
   border-color: transparent;
   cursor: pointer;
   background: transparent;
}

#products-table table tr.lam td:first-child,
.order-status-td.received {
   background: #3498db;
   color: #FFF;
}

#products-table table tr.skaap td:first-child,
.order-status-td.completed {
   background: #2ecc71;
   color: #FFF;
}

#products-table table tr.bees td:first-child {
   background: #e74c3c;
   color: #FFF;
}

#products-table table tr.hoender td:first-child,
.order-status-td.being-processed {
   background: #f1c40f;
   color: #FFF;
}

#products-table table tr.vark td:first-child,
.order-status-td.ready {
   background: #9b59b6;
   color: #FFF;
}

.cart-link,
.cat-link {
   color: #8F191C;
   cursor: pointer;
}
.cart-link.alt {
   color: #3498DB;
   cursor: pointer;
}
.cart-link:hover,
.cat-link:hover {
   color: #000;
   text-decoration: none;
}

.cart-table > tbody > tr > td {
   border: 0;
   border-bottom: 1px solid #ECF0F1;
   vertical-align: middle;
}

.cart-table > tbody > tr:last-child > td {
   border-bottom: 0;
}

.cart-table .cart-img {
   margin-right: 0;
   width: 40px !important;
   height: 40px !important;
   object-fit: cover;
}

#products-table .table>thead>tr>th,
#orders-table .table>thead>tr>th {
   cursor: pointer;
}

.order-last-item {
   border-bottom: 2px dotted #bdc3c7;
   margin-bottom: 15px;
   padding-bottom: 10px;
}

.stats-wrapper {
   text-align: center;
   margin-top: 60px;
}
.stat-count {
   width: 75px;
   height: 75px;
   background: #8F191C;
   border-radius: 50%;
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   color: #FFF;
   font-size: 20px;
}
.stat-count.products {
   background: #777;
}
.stat-count.activeOrders {
   background: #3498DB;
}
.stat-count.completedOrders {
   background: #2ECC71;
}
.stat-title {
   font-size: 14px;
   font-weight: bold;
}

#u_phone.error {
   border-color: #8F191C;
   box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px #ce8483;
}

#phone-help {
   display: none;
}
#phone-help.active {
   display: block;
}

.owl-dots {
   text-align: center !important;
}

.owl-carousel button.owl-dot {
   width: 10px !important;
   height: 10px !important;
   border-radius: 50px !important;
   background: #31343F !important;
   margin-right: 5px;
}
.owl-carousel button.owl-dot.active {
   background: #D71A22 !important;
}

.product-card.alt {
   padding: 30px !important;
}

.product-cards-wrapper.top-sellers .product-list-card .product-img {
   height: 150px;
}

.product-cards-wrapper.top-sellers {
   background: #FFF;
   border-radius: 10px;
   padding: 10px;
}
.specials-link img {
   height: 120px;
}

@media only screen and (min-width: 768px) {
   .specials-link {
      padding-top: 50px;
   }
}

@media only screen and (max-width: 480px) {
   .main-header .header-title {
      font-size: 25px;
      text-align: center;
   }

   .main-header p {
      text-align: center;
   }

   .main-header .btn.btn-red {
      display: block;
   }

   .specials-link {
      margin-top: 30px;
      text-align: center;
   }

   .specials-link img {
      height: 100px;
   }
}

@media only screen and (max-width: 768px) {
   .product-cards-wrapper .product-card {
      margin: 5px auto;
      display: block;
      width: 60%;
   }

   .top-sellers .product-list-card {
      width: 60%;
      margin: 0 auto;
   }
}

@media only screen and (max-width: 480px) {
   .top-sellers .product-list-card {
      width: 80%;
      margin: 0 auto;
   }

   .product-cards-wrapper .product-card {
      width: 100%;
   }

   .cta .cta-title {
      font-size: 25px;
   }

   .product-card .product-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
   }
}

.specials-link {
   transition: all .3s ease;
}
.specials-link:hover {
   transform: translateY(-10px);
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
   .main-header {
      padding: 10px 0;
   }
   .specials-link {
      padding-top: 20px;
   }

   .main-header .header-title {
      font-size: 25px;
   }

   .main-header p {
      font-size: 14px;
   }

   .product-list-card .product-title {
      font-size: 14px !important;
   }

   .navbar-nav > li > a {
      font-size: 9px;
   }

   .navbar-brand img {
      height: 100px;
      margin-top: 0;
   }

   .navbar-nav > li > a img.cart-icon {
      height: 15px;
   }
}

@media only screen and (max-width: 768px) {
   .navbar-default .navbar-toggle {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-around;
   }

   .navbar-default .navbar-toggle .icon-bar {
      background-color: #000;
   }
}

.maintenance-wrapper {
z-index: 999999;
position: fixed;
top: 50%;
width: 100%;
left: 50%;
height: 100%;
background: #FFF;
transform: translate(-50%, -50%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.spinners .spinner-1,
.spinners .spinner-3 {
   font-size: 80px;
   color: #383838;
   animation: spin-one 1.5s infinite linear;
}
.spinners .spinner-2 {
   font-size: 100px;
   color: #8F191C;
   animation: spin-two 2s infinite linear;
}


@keyframes spin-one {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-359deg) ;
    transform: rotate(-359deg) ;
  }
}

@keyframes spin-two {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-359deg);
    transform: rotate(359deg);
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
   .product-card h3 {
      font-size: 11px;
   }

   .product-card {
      padding: 20px 10px;
   }
}

#backtotop {
   display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 13px;
  border: none;
  outline: none;
  background-color: #8F191C;
  color: white;
  cursor: pointer;
  padding: 5px 7px;
  text-align: center;
  border-radius: 50px;
}

.floating-wpp .floating-wpp-button {
   width: 45px !important;
   height: 45px !important;
}

.contact-wrapper {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: space-around;
   margin-top: 20px;
}

.contact-wrapper > div {
   margin: 5px 0;
}

@media only screen and (min-width: 768px) {
   .contact-wrapper {
      flex-direction: row;
      font-size: 16px;
   }
}

.contact-wrapper a,
.contact-wrapper a:hover {
   color: #FFF;
   text-decoration: none;
}

.contact-wrapper a i {
   color: rgba(255, 255, 255, .6);
}

.alert.alert-danger.message {
   background: #8F191C;
   border-color: #8F191C;
   color: #FFF;
   text-align: center;
}
.alert.alert-danger.message i {
   padding-right: 10px;
   color: rgba(255, 255, 255, 0.6);
}
