/* google fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Icons');
@import url('https://fonts.googleapis.com/css2?family=Material+Icons+Outlined');

html, body {
  height:100%;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-size: 16px;
  font-weight: 100;
  background: #fff;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #434343;
  box-sizing: border-box;
}
h1, h2, h3, h4, ul, li, p, input, label, button, div, .footer{
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
}

.material-icons, .material-icons-outlined {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

.material-icons.md-18, .material-icons-outlined.md-18 { font-size: 18px; }
.material-icons.md-24, .material-icons-outlined.md-24 { font-size: 24px; }
.material-icons.md-36, .material-icons-outlined.md-36 { font-size: 36px; }
.material-icons.md-48, .material-icons-outlined.md-48 { font-size: 48px; }

.material-icons-outlined {
  font-family: 'Material Icons Outlined';
}

ul {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: #434343;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 14px;
}
nav ul{
  display: flex;
  align-items: center;
}
nav li{
  margin-left: 20px;
}
nav li a{
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8em;
  display: block;
  padding: 10px 16px;
  letter-spacing: 2px;
}
.btn{
  border-radius: 36px;
  background: #FEE996;
}
form h2{
  font-size: 2.4em;
  font-weight: 900;
  margin-bottom: 40px;
}
form{
  margin: 0 auto;
  padding: 30px;
}
input, select, textarea {
  padding: 10px 12px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  width: 100%;
  color: #434343;
  background-color: #f4f5f5;
  font-family: 'Open Sans', sans-serif;
  font-weight: 100;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 99%;
  background-position-y: 8px;
  background-color: #f4f5f5;
}

input[type="checkbox"] {
  width: 30px;
  height: 30px;
}

label{
  display: block;
  margin: 10px 0;
}

button {
  border-radius: 4px;
  background-color: #f0f8ff;
  color: #3f51b5;
  border:0;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 20px 0 20px;
  font-size: 14px;
  min-width: 150px;
  max-width: 320px;
  height: 42px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .0892857143em;
  border: 1px solid transparent;
}

button.savedFavourite {
  color: #e30a81;
}

button:hover {
  border-color: #d6ebfd;
  color: #e30a81;
}

.buttonTitle.margin-right {
  margin-right: 10px;
}

.buttonTitle.marginLeft {
  margin-left: 10px;
}

button.noBG {
  border: none;
  background-color: transparent;
}

button.noLeftPadding {
  padding-left: 0;
}

.flexBoxRow {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flexBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section {
  margin: 80px 0;
}

.hidden {
  display: none;
}

#fpbg {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(48, 48, 48, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.fpbgBlock {
  background-color: #fff;
  width: 90%;
  max-width: 800px;
  min-height: 150px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  -webkit-box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
  position: relative;
}

.fpbgTitle {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 100;
  padding: 34px 16px 18px 16px;
  text-transform: capitalize;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fpbgBody {
  font-weight: 100;
  padding: 10px;
  text-align: center;
}

.fpbgButtonsContainer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 0;
  width: 100%;
}

.mainTitle {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 100;
  padding: 20px;
  text-transform: capitalize;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error{
  color: #ff0099;
  margin: 10px 2px;
  font-size: 14px;
}
header{
  display: flex;
  align-items: center;
}
header img{
  width: 250px;
  margin-right: 40px;
}
header h2{
  font-size: 3em;
  margin-bottom: 10px;
}
header h3{
  font-size: 1.6em;
  margin-bottom: 10px;
  margin-left: 2px;
  color: #999;
}
header .btn{
  margin-top: 20px;
  padding: 12px 18px;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  font-size: 0.8em;
}
#logo {
  width: 330px;
  margin: 25px 0;
  padding-left: 50px;
}

input:disabled {
  background-color: #fff;
}

#logoContainer, .navContainer {
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

.yellowDivider {
  background-color: #ffc733;
  height: 7px;
}

.navMenu {
  background-color: #f3f3f3;
}
.navContainer {
  padding: 10px 50px;
}

.break {
  flex-basis: 100%;
  height: 0;
}

.bodyContainer {
  flex-grow: 1;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.footer {
  text-align: center;
  margin-top: 120px;
  color: #434343;
  background-color: #f3f3f3;
  padding: 20px;
}

.footerContent {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.footerLogo img {
  width: 300px;
}

.boxShadow {
  box-shadow: 0px 0px 14px #ddd;
  padding: 30px;
  border-radius: 14px; 
}

.fullWidthBanner {
  background-position: center;
  height: 250px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}

.serif {
  font-family: 'Playfair Display', serif;
}

.bannerContentContainer {
  max-width: 1440px;
  margin: 0 auto;
  flex-grow: 1;
}

.bannerContent {
  max-width: 40%;
  padding-left: 100px;
}

.storeList {
  font-size: 14px;
  line-height: 30px;
}

.storeInfo {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.inputCategory {
  font-size: 14px;
  padding: 10px 0;
  margin: 10px 0;
}

.inputCategory > ul {
  display: flex;
  flex-wrap: wrap;
}

.inputCategory > ul > li {
  margin: 10px 0;
  background-color: lightyellow;
  padding: 5px 10px;
  margin: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.inputCategory > ul > li.primaryCategory {
  background-color: bisque;
}

/* BEGIN checkbox */

/* Customize the label (the container) */
.checkMarkContainer {
  display: block;
  position: relative;
  padding-left: 44px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkMarkContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -3px;
  left: 0;
  height: 28px;
  width: 28px;
  background-color: #eee;
  border-radius: 2px;
  border: 1px solid #cfcfcf;
}

/* On mouse-over, add a grey background color */
.checkMarkContainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkMarkContainer input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkMarkContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkMarkContainer .checkmark:after {
  left: 9px;
  top: 3px;
  width: 6px;
  height: 16px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* END checkbox */

