/*
    Theme Name: Fabulous Theme
    Theme URI: https://roi.com.au/
    Description: Theme developed by ROI.COM.AU
    Author: ROI Growth Agency
    Template: campuspress-flex
    Version: 1.0.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Text Domain: roi-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Inika:wght@400;700&family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

/*--------------------------------------------------------------
# Imports
--------------------------------------------------------------*/
@import "assets/css/forms.css"; 


body {
  font-family: 'Inika', serif;
}


@media only screen and (max-width: 600px) {
  h1 {
    font-size: 42px;
  }
}


/* Homepage Hero */
.fb-hero-title {
  position: relative;
}

.fb-hero-title::after {
  background: url('assets/images/on-time-and-hot.png') no-repeat;
  background-size: cover;
  position: absolute;
  top: -25px;
  right: -170px;
  content: '';
  width: 130px;
  height: 134px;
  display: inline-block;
}


@media only screen and (max-width: 600px) {
  .fb-hero-title::after {
    top: 24px;
    right: -71px;
    content: '';
    width: 100px;
    height: 103px;
  }
}

.hero-status {
  background: #F1F1F1;
  padding: 15px;
  width: 100%;
  display: block;
  margin: 0 auto;
  position: absolute;
  bottom: -59px;
  border-radius: 15px;
}

.image-card img {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  overflow: hidden;
}
 
.image-card:hover img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
  

/* Page */
.fb-page-conntent-wrap {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 100%;
}

/* Page Header */
.fb-page-header-wrap {
  background: url('assets/images/black-stone.jpg') no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.fb-page-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  /* width: 100% */
  width: 1440px;
  margin: 0 auto;
}

@media only screen and (max-width: 1440px) {
  .fb-page-header {
    width: 100%;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (max-width: 800px) {
  .fb-page-header {
    width: 100%;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (max-width: 500px) {
  .fb-page-header {
    width: 100%;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
  }
}




.fb-page-title > h1 {
  position: relative;
  color: #FFF !important;
  font-size: 42px !important;
  line-height: 42px !important;
  margin: 0px;
  padding: 30px 0;
}

.fb-page-title > h1::after {
  background: url('assets/images/on-time-and-hot.png') no-repeat;
  background-size: cover;
  position: absolute;
  top: 18px;
  right: -80px;
  content: '';
  width: 65px;
  height: 67px;
  display: inline-block;
}

@media only screen and (max-width: 600px) {
  .fb-page-title > h1::after {
    top: 20px;
    right: -80px;
  }
}

/* Page Body */
.fb-page-body-wrap {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  /* width: 100% */
  width: 1440px;
  margin: 0 auto;
  padding: 80px;
}

@media only screen and (max-width: 1440px) {
  .fb-page-body-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 40px;
  }
}

@media only screen and (max-width: 800px) {
  .fb-page-body-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 40px;
  }
}

@media only screen and (max-width: 500px) {
  .fb-page-body-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 25px;
  }
}


.fb-menurange-subtitle {
  color: #888;
  font-family: Inika;
  font-size: 16px;
  margin-bottom: 0 !important;
}






/* Product Grid */
.fb-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 25px;
  width: 100%;
}

@media only screen and (max-width: 1440px) {
  .fb-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
  }
}

@media only screen and (max-width: 800px) {
  .fb-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
  }
}

@media only screen and (max-width: 500px) {
  .fb-products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 25px;
  }
}


/* Product Card */
.fb-products-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  border-radius: 30px;
  overflow: hidden;

  box-shadow: 5px 5px 10px 0px rgba(199,199,199,0.75);
  -webkit-box-shadow: 5px 5px 10px 0px rgba(199,199,199,0.75);
  -moz-box-shadow: 5px 5px 10px 0px rgba(199,199,199,0.75);
}

.fb-products-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  padding: 25px;
}

.fb-products-card-content > div > .product-title {
  font-weight: bold;
  font-size: 16px !important;
  line-height: 19px !important;
}

.fb-products-card-content > div > .product-title > a {
  text-decoration: none !important;
}

.fb-products-card-content > div > .product-title > a:hover {
  text-decoration: none !important;
}

.fb-products-card-content > div > p {
  font-size: 13px !important;
  line-height: 18px !important;
}

.fb-products-card-content > div > p.fb-products-card-price {
  font-weight: bold;
  font-size: 16px !important;
  line-height: 19px !important;
  color: #040100 !important;
}

.fb-products-card-content > div > p.fb-products-card-price > span {
  font-weight: bold;
  font-size: 13px !important;
  line-height: 18px !important;
  color: #888 !important;
}


.fb-products-card-btn {
  width: 100%;
  padding: 0 25px 25px 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
} 

@media screen and (max-width: 600px) {
  .fb-products-card-btn > a {
    font-size: 16px !important;
  } 
}








/* Page Steps */
.fb-pagesteps {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  background-color: #F1F1F1;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  min-height: 100px;
}

.fb-pagesteps-blank {
  min-height: 100px;
  background-color: #fff;
}

.fb-pagesteps-left {
  width: 25%;
}

.fb-pagesteps-center {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.fb-pagesteps-right {
  width: 25%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  padding-right: 50px;
}

.fb-pagesteps-center > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: Inika;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px; /* 162.5% */
  color: #040100;
  padding: 35px 0;
}

.fb-pagesteps-center > ul > li {
  display: inline;
  color: #040100;
  font-family: Inika;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-right: 25px;
}

.fb-pagesteps-center > ul > li > span.numbers {
  border: 1px solid #040100;
  border-radius: 50%;
  margin-right: 10px;
  width: 34px;
  height: 34px;
  text-align: center;
  display: inline-block;
}


.fb-pagesteps-center > ul > li > span.fb-current {
  background-color: #040100;
  color: #fff;
}

.fb-hide-mobile {
  display: inline-block;
}

@media screen and (max-width: 600px) {
  .fb-pagesteps {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 60px;
  }

  .fb-pagesteps-left {
    width: 100%;
  }
  
  .fb-pagesteps-center {
    width: 100%;
    flex-direction: column;
  }
  
  .fb-pagesteps-right {
    width: 100%;
  }

  .fb-pagesteps-center > ul {
    list-style: none;
    padding: 5px;
    margin: 0;
    display: flex;
    flex-direction: row;
  }
  .fb-hide-mobile {
    display: none;
  }
}


.fb-cart {
  background: url('assets/images/cart-icon.png') no-repeat;
  width: 50px;
  height: 50px;
  background-size: cover;
  position: relative;
}

.fb-items {
  background-color: #040100;
  border-radius: 50%;
  color: #fff;
  position: absolute;
  width: 34px;
  height: 34px;
  text-align: center;
  display: inline-block;
  top: -5px;
  left: -15px;
}

.fb-cart-items {
  display: none;
  padding: 25px;
  background: #fff;
  top: 47px;
  position: absolute;
  left: -150px;
  width: 300px;
  box-shadow: 1px 1px 10px #f7f7f7;
}

.fb-container {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  /* width: 100% */
  width: 1600px;
  margin: 0 auto;
}

.fb-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 25%;
  padding: 50px;
}

h3.fb-sidebar-title {
  color: #888;
  font-family: Inika !important;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: 16px;
  text-transform: uppercase;
  margin-bottom: 0;
}

h4.fb-sidebar-subtitle {
  color: #D4D4D4;
  font-family: Inika;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 162.5% */
  margin-bottom: 25px;
}

ul.fb-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: Inika;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px; /* 162.5% */
  color: #040100;
}

ul.fb-cat-list > li {
  padding-bottom: 5px;
}

ul.fb-cat-list > li > a {
  text-decoration: none;
}

ul.fb-cat-list > li > a:hover {
  color: #D4D4D4;
}

.fb-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 75%;
  padding-top: 50px;
  padding-right: 50px;
}

.fb-content-full {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 66%;
  padding-top: 50px;
  margin: 0 auto;
  position: relative;
}

.fb-content-full-center {
  align-items: center !important;
}

@media screen and (max-width: 600px) {
  .fb-container {
    width: 100%;
  }

  .fb-content-full {
    width: 90%;
  }
  .fb-cart {
    display: none;
  }

}


.fb-product-start-btn {
  display: inline-block;
  color: #040100;
  text-align: center;
  font-family: Inika;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 138.462% */
  background: #79F83E;
  width: 100%;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
}


.fb-product-start-btn:hover {
  color: #fff;
  background-color: #040100;
}


.fb-product-add-btn {
  display: inline-block;
  color: #FFF;
  text-align: center;
  font-family: Inika;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 138.462% */
  background: #040100;
  width: 100%;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease;
}

.fb-product-add-btn:hover {
  color: #040100;
  background-color: #79F83E;
}

.fb-product-remove-btn,
.fb-remove {
  text-decoration: none;
  background-color: #D4D4D4 !important;
  color: #040100 !important;
  font-size: 13px;
}

.fb-product-remove-btn:hover,
.fb-remove:hover {
  background-color: #040100 !important;
  color: #D4D4D4 !important;
}

.fb-cart-remove-btn {
  font-size: 13px;
  color: #888888;
}

.fb-cart-remove-btn:hover {
  color: #040100;
}


.fb-btn {
  display: inline-block;
  color: #FFF;
  text-align: center;
  font-family: Inika;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  background: #040100;
  width: 100%;
  padding: 20px 45px;
  border-radius: 30px;
  text-decoration: none;
  border: none;
}

.fb-products-footer {
  width: 100%;
  padding-top: 50px;
}

.fb-products-footer-buttons {
  width: 100%;
  text-align: center;
  padding-bottom: 50px;
}

.fb-products-footer-buttons::after {
  display: block;
  position: relative;
  top: -30px;
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: #D4D4D4;
  content: "";
  z-index: -1;
}

.fb-products-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.fb-form-btn {
  display: inline-block;
  color: #FFF;
  text-align: center;
  font-family: Inika;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  background: #040100;
  padding: 20px 45px;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  margin-left: 15px;
  margin-right: 15px;
}


.fb-btn-green {
  background-color: #79F83E;
  color: #040100;
}

.fb-btn-green:hover {
  background-color: #040100;
  color: #fff;
}

.fb-btn-white {
  background-color: #fff;
  color: #040100;
  border: 1px solid #D4D4D4;
}

.fb-btn-white:hover {
  background-color: #040100;
  color: #fff;
}

.fb-btn-disabled {
  background-color: #D4D4D4 !important;
}

.fb-btn-disabled:hover {
  color: #040100 !important;
}

.fb-spacing-50 {
  display: block;
  padding-top: 50px;
}

.fb-spacing-25 {
  display: block;
  padding-top: 25px;
}

.fb-form-row {
  display: flex;
  flex-direction: row;
  width: 50%;
  text-align: center;
}


.fb-form-group {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

.fb-form-group-center {
  margin-bottom: 50px;
  width: 50%; 
  text-align: center; 
  position: relative;
}

.fb-form-group > p {
  color: #888888;
}

.first-field {
  margin-right: 15px;
}

.fb-form-group > label,
.fb-form-group-center > label {
  color: #040100;
  font-family: Inria Serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
}


.fb-form-row-full {
  display: flex;
  flex-direction: row;
  text-align: center;
  width: 100% !important;
  gap: 50px;
}

@media screen and (max-width: 600px) {
  .fb-form-group > label {
    font-size: 30px;
    margin: 0 auto;
  }

  .fb-form-group-center {
    margin-bottom: 35px;
    width: 90%; 
  }

  .fb-form-row {
    flex-direction: column;
    width: 90%;
  }

  .fb-form-row-full {
    flex-direction: column;
    gap: 0px;
  }

  .fb-form-row > .fb-form-group-center {
    width: 100%; 
  }

  .first-field {
    margin-right: 0;
  }
}

input[type="text"],
input[type="email"],
select,
textarea {
  outline: none !important;
  border-radius: 10px !important;
  border: 1px solid #C9C9C9 !important;
  background-color: #FBFBFB !important;
}

input[type="text"].center-text,
input[type="email"].center-text,
select.center-text {
  text-align: center;
}

select {
  appearance: none;
  /* safari */
  -webkit-appearance: none;
  /* other styles for aesthetics */
  cursor: pointer;
}


input[type="text"].checkpostcode {
  background-color: #fff !important;
  border-radius: 0px !important;
  border: none !important;
  border-bottom: 1px solid #040100 !important;
  font-size: 13px !important;
  line-height: 17px !important;
  font-weight: bold !important;
  position: relative;
  padding-left: 0 !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}

input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

input[type="text"].has-error,
input[type="email"].has-error,
select.has-error,
textarea.has-error {
  border: 2px solid #D30303 !important;
}

.fb-messages {
  position: absolute !important;
  width: 100%;
}

p.help-block {
  font-size: 12px;
  color: #D30303;
}

.van::after {
  position: absolute;
  display: inline-block;
  width: 28px;
  height: 20px;
  top: 15px;
  right: 0px;
  content: "";
  background-image: url('assets/images/van.png');
  background-repeat: no-repeat;
}

.fb-products-footer-icons {
  background: url('assets/images/footer-icons.png') no-repeat;
  background-position: center center;
  width: 100%;
  display: inline-block;
  min-height: 65px;
}

.fb-desert::after {
  display: block;
  position: absolute;
  right: -100px;
  bottom: 150px;
  width: 493px;
  height: 505px;
  background: url('assets/images/dessert.jpg') no-repeat;
  content: "";
  z-index: -1;
}

@media screen and (max-width: 600px) {
  .fb-desert::after {
    display: none;
  }
}


.fb-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 100%;
  padding: 25px;
}

/* Increase/Decrease */
.quantity-field {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px; 
  height: 40px;
  margin: 0 auto;    
}

.quantity-field .value-button{ 
  border: 1px solid #ddd;
  margin: 0px;
  width: 40px;
  height: 100%;   
  padding: 0;
  background: #fff; 
  outline: none;
  cursor: pointer;
}

.quantity-field .value-button:hover {
  background: #fff; 
}

.quantity-field .value-button:active{
  background: #fff; 
}

.quantity-field .decrease-button {
  margin-right: -4px;
  border-radius: 8px 0 0 8px;
}

.quantity-field .increase-button {
  margin-left: -4px;
  border-radius: 0 8px 8px 0;
  border-left: 0px;
}
 
.quantity-field .number{
  display: inline-block;
  text-align: center;
  border: none;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: 0px;
  width: 40px;
  height: 100%;
  line-height: 40px;
  font-size: 11pt;
  box-sizing: border-box; 
  background: white;
}

.quantity-field .number::selection{
  background: none;
}

/*
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
*/

.fb-min-order {
  color: red;
}

/* Hero Form */

form.fb-hero-form {
  display:flex;
  flex-direction:row;
  align-items: center;
  border: 1px solid grey;
  padding:1px;
  background-color: #fff;
  border-radius: 30px;
  padding: 5px;
  position: relative;
}

form.fb-hero-form > input {
  /* Tell the input to use all the available space */
  flex-grow: 2;
  /* And hide the input's outline, so the form looks like the outline */
  border:none;
}

/* remove the input focus blue box, it will be in the wrong place. */
form.fb-hero-form > input:focus {
  outline: none;
  box-shadow: none !important;
}

/* Add the focus effect to the form so it contains the button */
form.fb-hero-form > form:focus-within { 
  outline: none !important;
  box-shadow: none !important;
}

form.fb-hero-form > button {
  /* Just a little styling to make it pretty */
  border: 1px solid #040100;
  background: #040100;
  color: #fff;
  border-radius: 30px;
  padding: 10px 15px;
  font-weight: bold !important;
  font-size: 20px !important;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

form.fb-hero-form > button:hover {
  background-color: #FEC000;
  border: 1px solid #FEC000;  
}

input[type="text"].herocheckpostcode {
  background-color: #fff !important;
  border-radius: 0px !important;
  border: none !important;
  font-size: 20px !important;
  line-height: 22px !important;
  font-weight: bold !important;
  width: 50% !important;
  margin-left: 5px;
}

.fb-address {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 66%;
  padding-top: 50px;
  margin: 0 auto;
  position: relative;
}

.fb-address > h2 {
  margin-bottom: 0px;
  position: relative;
}

.fb-address > h2::before {
  background: url('assets/images/marker.png') no-repeat;
  background-size: cover;
  position: absolute;
  top: 10px;
  left: -40px;
  content: '';
  width: 25px;
  height: 31px;
  display: inline-block;
}

.fb-address > h3 {
  margin-bottom: 0px;
  color: #888888;
}

.fb-address > p {
  margin-bottom: 0px;
  color: #888888;
}

.fb-address > h3 > a {
  color: #888888;
  text-decoration: none;
}

.fb-address > h3 > a:hover {
  color: #222;
  text-decoration: none;
}




.fb-desktop-only {
  display: block;
}

.fb-mobile-only {
  display: none;
}



/* Mobile Pages */
.fb-content-full-mobile {
  padding: 25px;
}



/* Modal */
/* The Modal (background) */
.modal-popup-wrap {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-popup {
  display: block; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 80; /* Sit on top */
  left: 30%;
  top: 30%;
  /* width: 550px; */
  /* height: 450px; */
  overflow: auto; /* Enable scroll if needed */
  background-color: #fff;
  border-radius: 30px;
}

/* Modal Content/Box */
.modal-popup-content {
  background-color: #fff;
  padding: 50px;
  width: 100%; /* Could be more or less, depending on screen size */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-popup-content > h2 {
  color: #040100;
  font-size: 50px !important;
  line-height: 40px !important;
}

a.fb-browsemenu-btn {
    border: 1px solid #040100;
    background: #040100;
    color: #fff;
    border-radius: 30px;
    padding: 15px 25px;
    font-weight: bold !important;
    font-size: 20px !important;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

a.fb-browsemenu-btn:hover {
  background: #FEC000;
  color: #fff;
  border: 1px solid #FEC000; 
}


/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


/* Special Request Page */
h2.special-title {
  width: 66%;
}

@media only screen and (max-width: 600px) {
  h2.special-title {
    margin-bottom: 25px;
    width: 100%;
  }
}
