/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=Lora&family=Montserrat:wght@500&display=swap");
body {
  line-height: 1.2;
  font-family: "Lora", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #666; }

p, .paragraph {
  font-weight: 400;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  font-family: "Lora", sans-serif; }

.content p {
  font-size: 18px; }

h1, h2, h3, h4, h5, h6 {
  color: #171717;
  font-family: "Lora", sans-serif;
  line-height: 1.2; }

h1, .h1 {
  font-size: 47px; }

h2, .h2 {
  padding-top: 40px;
  font-size: 30px; }

h1.h2 {
  padding-top: 0; }

h3, .h3 {
  font-size: 24px; }

.card-body h3 {
  font-size: 22px; }

h4, .h4 {
  font-size: 24px; }

h5, .h5 {
  font-size: 16px; }

h6, .h6 {
  font-size: 14px; }

mark {
  padding: 0px 4px;
  border-radius: 4px;
  background-color: #ededed !important; }

/* Button style */
.btn {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  padding: 10px 30px;
  border-radius: 2px;
  border: 1px solid;
  position: relative;
  z-index: 1;
  transition: color .2s ease; }
  .btn:hover, .btn:active, .btn:focus {
    box-shadow: none !important;
    background-color: #c54821 !important;
    color: #fff; }

.btn-primary {
  background: #c54821;
  color: #fff;
  border-color: #c54821; }
  .btn-primary:active, .btn-primary:hover, .btn-primary.focus, .btn-primary.active {
    background-color: #c54821 !important;
    border-color: #c54821 !important; }

.btn-outline-primary {
  background: transparent;
  color: #666;
  border-color: #c54821; }
  .btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary.focus, .btn-outline-primary.active {
    background: #c54821 !important;
    border-color: #c54821 !important;
    color: #fff; }

span[class^="PIN_"] {
  opacity: 0.5; }
  span[class^="PIN_"]:active, span[class^="PIN_"]:hover, span[class^="PIN_"].focus, span[class^="PIN_"].active {
    opacity: 1; }

body {
  background-color: #F8F8F8;
  overflow-x: hidden; }

::selection {
  background: #99381a;
  color: #fff; }

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center; }

img {
  vertical-align: middle;
  border: 0;
  max-width: 100%; }

a:hover {
  color: #c54821; }

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

a,
button,
select {
  cursor: pointer;
  transition: color .2s ease; }

.slick-slide {
  outline: 0; }

.section {
  padding-top: 100px;
  padding-bottom: 100px; }
  .section-sm {
    padding-top: 60px;
    padding-bottom: 60px; }
  .section-title {
    margin-bottom: 20px; }
    .section-title-border {
      border-bottom: 1px solid #DEDEDE;
      padding-bottom: 20px;
      display: inline-block; }

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }

.border-default {
  border-color: #DEDEDE !important; }

.outline-0 {
  outline: 0 !important; }

.bg-primary {
  background: #c54821 !important; }

.bg-light {
  background: #ededed !important; }

.text-primary {
  color: #c54821 !important; }

.text-light {
  color: #666 !important; }

.text-dark {
  color: #171717 !important; }

.text-default {
  color: #666 !important; }

.font-primary {
  font-family: "Lora", sans-serif !important; }

.font-secondary {
  font-family: "Cormorant Garamond", sans-serif !important; }

.font-tertiary {
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: 1px; }

.zindex-1 {
  z-index: 1; }

.overflow-hidden {
  overflow: hidden; }

.mobile-view {
  display: none; }
  @media (max-width: 991px) {
    .mobile-view {
      display: block; } }
.desktop-view {
  display: block; }
  @media (max-width: 991px) {
    .desktop-view {
      display: none; } }
.form-group {
  margin-bottom: 40px; }
  .form-group label {
    font-family: "Montserrat", sans-serif;
    color: #171717;
    font-size: 14px; }
  .form-group .form-control {
    border: 0;
    border-bottom: 1px solid #DEDEDE;
    border-radius: 0;
    padding: 0;
    height: 40px; }

textarea.form-control {
  height: 100px !important; }

.input-group > .input-group-append:not(:last-child) > .btn {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px; }

.content p img {
  margin: 2em auto;
  display: block;
  border-radius: 2px; }

#go-to-top {
  background-color: #171717;
  border: none;
  border-radius: 50%;
  color: white;
  font-weight: 900;
  cursor: pointer;
  font-size: 22px;
  width: 44px;
  height: 44px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
  text-align: center;
  padding: 0; }
  @media (max-width: 575px) {
    #go-to-top {
      margin: 10px;
      bottom: 10px;
      right: 10px; } }
  #go-to-top.active {
    pointer-events: auto;
    opacity: 0.7; }

.subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  margin-top: 2px; }
  @media (max-width: 575px) {
    .subtitle {
      font-size: 12px; } }
.further-reading-container {
  padding: 2em;
  margin-top: 40px;
  margin-bottom: 80px !important; }
  .further-reading-container .row {
    max-width: 1400px;
    margin: auto; }
  @media (max-width: 767px) {
    .further-reading-container {
      margin-top: 0;
      padding: 0; } }
  @media (max-width: 575px) {
    .further-reading-container {
      margin-top: 0;
      padding: 0; } }
.navbar {
  padding: 0; }
  @media (max-width: 991px) {
    .navbar {
      padding: 10px; } }
  @media (max-width: 575px) {
    .navbar *:focus {
      outline: 0 !important; } }
.navbar-light .navbar-nav .nav-link {
  color: #666;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
  font-size: 14px; }
  .navbar-light .navbar-nav .nav-link:hover {
    color: #c54821; }

.navbar-expand-md .navbar-nav .nav-item {
  margin: 0; }
  .navbar-expand-md .navbar-nav .nav-item .nav-link {
    transition: none !important;
    padding: 15px 25px; }
  .navbar-expand-md .navbar-nav .nav-item .lang-list {
    margin: 15px 25px;
    color: #666;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    border: 0;
    background-color: transparent; }

.navbar-expand-md .navbar-nav .dropdown-menu {
  background-color: #F8F8F8;
  padding: 10px 0;
  margin: 0;
  border-radius: 0;
  border-color: #DEDEDE;
  text-align: center; }
  .navbar-expand-md .navbar-nav .dropdown-menu .dropdown-item {
    color: #666;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    padding: 7px 22px; }
    .navbar-expand-md .navbar-nav .dropdown-menu .dropdown-item:hover {
      color: #c54821; }

.search-wrapper {
  position: relative; }
  .search-wrapper input {
    height: 35px;
    width: 75%;
    margin-left: 25%;
    border: 1px solid #DEDEDE;
    border-radius: 40px;
    font-size: 12px;
    color: #666;
    background-color: transparent;
    padding: 0 15px; }
    @media (max-width: 1200px) {
      .search-wrapper input {
        width: 90%;
        margin-left: 10%; } }
    .search-wrapper input:focus {
      outline: 0;
      border-color: #666; }
    .search-wrapper input::placeholder {
      font-size: inherit;
      color: inherit; }
  .search-wrapper button {
    border: 0;
    background-color: transparent;
    position: absolute;
    right: 0;
    padding: 11px 15px 10px 10px;
    top: 0;
    font-size: 12px;
    color: #666; }

/* search mobile */
.search-btn {
  border: 0;
  background-color: transparent; }

.search-collapsed {
  max-height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 2;
  visibility: hidden;
  transition: .2s ease;
  opacity: 0; }
  .search-collapsed.open {
    visibility: visible;
    opacity: 1; }
  .search-collapsed form {
    height: 100%; }
  .search-collapsed input {
    height: 100%;
    width: 100%;
    border: 0;
    background-color: #fff;
    font-size: 14px;
    padding: 0 16px; }
    .search-collapsed input:focus {
      box-shadow: none !important;
      border: 0;
      outline: 0; }
  .search-collapsed button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background-color: transparent;
    padding: 10px;
    font-size: 20px; }

@media (max-width: 767px) {
  .ti-close, .ti-search {
    color: #171717 !important;
    font-size: 17px; }
  .ti-search {
    top: 2px;
    position: relative; }
  .navbar-toggler {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7) !important; }
  .ti-menu {
    top: 1px;
    position: relative; } }

.social-icons a {
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  display: block;
  border: 1px solid #DEDEDE;
  border-radius: 50%;
  font-size: 12px;
  color: #666; }
  .social-icons a:hover {
    color: #c54821;
    border-color: #c54821; }

.post-wrapper {
  position: relative; }
  .post-wrapper img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px; }
  .post-wrapper h3 {
    transition: color 0.2s ease-in-out; }
  .post-wrapper:hover .post-content {
    background-color: rgba(255, 255, 255, 0.93);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); }
    .post-wrapper:hover .post-content h2 a, .post-wrapper:hover .post-content h3 a, .post-wrapper:hover .post-content h2, .post-wrapper:hover .post-content h3 {
      color: #c54821; }
  .post-wrapper .post-content {
    transition: background-color 0.2s ease-in-out, box-shadow 0.3s ease-in-out, color 0.2s ease-in-out;
    position: absolute;
    text-align: center;
    padding: 30px 30px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px; }
    @media (max-width: 575px) {
      .post-wrapper .post-content {
        padding: 30px 30px;
        background-color: rgba(255, 255, 255, 0.93);
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); }
        .post-wrapper .post-content h2 {
          font-size: 22px; } }
.post-title {
  color: inherit; }
  .post-title:hover {
    color: #c54821; }

.post-category {
  font-family: "Montserrat", sans-serif;
  color: #666;
  display: block;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px; }

.post-date {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666; }

.date-style {
  position: relative; }
  .date-style::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 25px;
    background-color: #666;
    left: calc(100% + 5px);
    top: 50%;
    transform: translateY(-50%); }
  .date-style::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 25px;
    background-color: #666;
    right: calc(100% + 5px);
    top: 50%;
    transform: translateY(-50%); }
  .date-style.large::before, .date-style.large::after {
    width: 40px; }

.post-slider .post-wrapper {
  margin: 0 10px; }

.post-slider .slick-list {
  overflow: visible; }

.post-slider .slick-dots {
  padding: 0;
  text-align: center;
  margin-top: 20px; }
  .post-slider .slick-dots li {
    display: inline-block;
    list-style-type: none;
    margin: 5px; }
    .post-slider .slick-dots li button {
      padding: 0;
      height: 8px;
      width: 8px;
      border-radius: 50%;
      background-color: transparent;
      border: 1px solid #c54821;
      color: transparent;
      overflow: hidden; }
    .post-slider .slick-dots li.slick-active button {
      background-color: #c54821; }

.input-group {
  border-color: #DEDEDE; }
  .input-group .form-control {
    height: 50px; }

.form-control:focus {
  outline: 0;
  border-color: #c54821;
  box-shadow: none; }

.form-control::placeholder {
  color: #666; }

.footer-list a {
  color: #666;
  font-family: "Montserrat", sans-serif; }
  .footer-list a:hover {
    color: #c54821; }

.insta-font {
  background: #7C479C;
  background: -webkit-linear-gradient(to bottom left, #7C479C 28%, #EA3B35 50%, #ED9A29 100%);
  background: -moz-linear-gradient(to bottom left, #7C479C 28%, #EA3B35 50%, #ED9A29 100%);
  background: linear-gradient(to bottom left, #7C479C 28%, #EA3B35 50%, #ED9A29 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; }

.insta-footer {
  border-radius: 16px;
  border: 1px solid #DEDEDE;
  opacity: 0.9;
  transition: all .3s ease; }
  .insta-footer:hover {
    opacity: 1;
    border: 1px solid #AAAAAA; }

@media screen and (max-width: 990px) {
  .insta-footer {
    opacity: 1; }
  .footer-logo {
    margin: 32px 0px; }
  footer.section-sm {
    padding-top: 20px; } }

.card {
  border: 0;
  border-radius: 8px;
  transition: box-shadow 0.2s ease-in-out; }
  .card mark {
    color: #666; }
  .card h3 a, .card h3 mark {
    transition: color 0.2s ease-in-out; }
  @media (max-width: 575px) {
    .card {
      box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.08); } }
  .card img {
    border-radius: 8px; }
  .card-img-top {
    border-radius: 0; }
  .card:hover {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.08); }
    .card:hover h3 a, .card:hover h3 mark {
      color: #c54821; }

.widget {
  padding: 20px 15px;
  background-color: #fff;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 8px; }
  .widget-title {
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 1px solid #DEDEDE; }
  .widget-list a {
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    color: #666;
    display: block;
    padding: 7px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: none !important; }
    .widget-list a:hover {
      color: #c54821; }
  .widget .media {
    text-align: left; }
    .widget .media small {
      font-size: 10px; }

.content * {
  word-break: break-word;
  overflow-wrap: break-word; }

.content img {
  max-width: 100%;
  height: auto; }

.content iframe {
  width: 100%;
  min-height: 40vw;
  height: auto; }

.content blockquote + h3 {
  padding-top: 0 !important; }

.content blockquote table {
  width: auto !important;
  border: 0 !important; }

.content blockquote tbody {
  background-color: transparent !important; }

.content blockquote thead {
  display: none; }

.content blockquote tr {
  border: 0 !important; }

.content blockquote tr td:first-of-type {
  font-weight: bold; }

.content blockquote tr td {
  line-height: 1.4; }

.content .my-maps-container {
  overflow: hidden; }
  .content .my-maps-container > iframe {
    border: 0;
    border-radius: 8px;
    max-width: 100%;
    margin-top: -72px; }

.content .side-by-side img {
  min-width: auto; }

.content .rating-container img, .content .allergen-icon-container img, .content center img {
  min-height: auto;
  min-width: auto; }

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  font-weight: 500; }

.content h4 {
  padding-bottom: 0.5em; }

.content h3 {
  font-size: 26px;
  color: #c54821;
  padding-bottom: 0.5em;
  padding-top: 1.5em;
  letter-spacing: -0.5px; }
  .content h3 a {
    color: #c54821; }
  .content h3 a:hover {
    border-bottom: 0px; }

.content h2 + h3 {
  padding-top: 0.5em; }

.content strong {
  font-weight: 600; }

.content a {
  color: #666;
  border-bottom: 1px dotted #c54821; }
  .content a:hover {
    color: #c54821; }

.content iframe {
  padding-top: 13px;
  padding-bottom: 28px; }

.content ol,
.content ul {
  padding-left: 20px; }
  .content ol li,
  .content ul li {
    margin-bottom: 10px; }

.content ul {
  font-size: 18px;
  margin-bottom: 10px;
  list-style-type: none; }
  .content ul li {
    padding-left: 20px;
    position: relative;
    line-height: 1.3; }
    @media (max-width: 575px) {
      .content ul li {
        line-height: 1.6; } }
    .content ul li::before {
      position: absolute;
      content: '';
      height: 8px;
      width: 8px;
      border-radius: 50%;
      background: #c54821;
      left: 3px;
      top: 6px; }
      @media (max-width: 575px) {
        .content ul li::before {
          top: 12px; } }
    .content ul li p {
      font-size: 18px;
      line-height: 1.3; }
      @media (max-width: 575px) {
        .content ul li p {
          line-height: 1.6; } }
.content ul li ul {
  font-size: 16px;
  color: #212529;
  padding-left: 10px; }
  .content ul li ul li {
    padding-left: 20px;
    line-height: 1.6; }
    .content ul li ul li::before {
      position: absolute;
      content: '';
      height: 100%;
      width: 2px;
      border-radius: 0%;
      background: gray;
      opacity: 0.6;
      left: 9px;
      top: 0px; }
    .content ul li ul li p {
      font-size: 16px; }

.content table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #DEDEDE; }

.content table td,
.content table th {
  padding: .75rem;
  vertical-align: top;
  margin-bottom: 0; }

.content tr:not(:last-child) {
  border-bottom: 1px solid #DEDEDE; }

.content th {
  font-weight: 500; }

.content thead {
  background: #ededed;
  margin-bottom: 0; }
  .content thead tr {
    border-bottom: 1px solid #DEDEDE; }

.content tbody {
  background: #fafafa;
  margin-bottom: 0; }

.content .notices {
  margin: 2rem 0;
  position: relative;
  overflow: hidden; }

.content .notices p {
  padding: 10px;
  margin-bottom: 0; }

.content .notices p::before {
  position: absolute;
  top: 2px;
  color: #fff;
  font-family: "themify";
  font-weight: 900;
  content: "\e717";
  left: 10px; }

.content .notices.note p {
  border-top: 30px solid #6ab0de;
  background: #ededed; }

.content .notices.note p::after {
  content: 'Note';
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem; }

.content .notices.tip p {
  border-top: 30px solid #78C578;
  background: #ededed; }

.content .notices.tip p::after {
  content: 'Tip';
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem; }

.content .notices.info p {
  border-top: 30px solid #F0B37E;
  background: #ededed; }

.content .notices.info p::after {
  content: 'Info';
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem; }

.content .notices.warning p {
  border-top: 30px solid #E06F6C;
  background: #ededed; }

.content .notices.warning p::after {
  content: 'Warning';
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem; }

.content blockquote {
  font-size: 20px !important;
  color: #666;
  padding: 20px 40px;
  border-left: 2px solid #c54821;
  margin: 40px 0;
  background: #ededed; }
  .content blockquote h3 {
    padding-top: 0.5em; }
  .content blockquote p {
    margin-bottom: 0 !important; }
  @media (max-width: 575px) {
    .content blockquote {
      padding: 10px 20px; } }
.content pre {
  display: block;
  padding: 9.5px;
  margin: 10px 0px 10px;
  white-space: pre-wrap; }

.content code {
  margin-bottom: 0 !important;
  font-size: 100%; }

.content .caption {
  text-align: center;
  margin-top: -28px;
  margin-bottom: 28px;
  padding: 0 20px; }

.content div + .caption {
  margin-top: -20px; }

.content .attribute {
  padding: 40px 40px;
  clear: both; }

.content .side-by-side {
  margin-bottom: 3em;
  margin-top: 3em;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .content .side-by-side img {
    max-width: 48%; }
  @media (max-width: 575px) {
    .content .side-by-side {
      flex-direction: column;
      margin-bottom: 1em;
      margin-top: 1em; }
      .content .side-by-side img {
        max-width: 100%;
        margin: 2em; } }
.code-tabs {
  border: 1px solid #DEDEDE;
  overflow: hidden;
  margin-bottom: 20px; }
  .code-tabs .nav-tabs {
    margin-bottom: 0; }
    .code-tabs .nav-tabs .nav-item {
      padding-left: 0;
      border-right: 1px solid #DEDEDE; }
      .code-tabs .nav-tabs .nav-item .nav-link {
        text-decoration: none;
        font-weight: 500;
        border: 0; }
      .code-tabs .nav-tabs .nav-item::before {
        display: none; }
      .code-tabs .nav-tabs .nav-item.active {
        background: #c54821; }
        .code-tabs .nav-tabs .nav-item.active .nav-link {
          color: #fff; }
  .code-tabs .tab-content {
    padding: 20px 15px; }

.recent-thumb-alt {
  font-size: 0;
  height: 65px;
  width: 80px;
  background-color: #c54821;
  text-align: center; }
  .recent-thumb-alt::first-letter {
    font-size: 50px;
    line-height: 65px;
    color: #fff; }

.pagination {
  margin-top: 30px;
  justify-content: center; }
  .pagination .page-item .page-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #ededed;
    text-align: center;
    padding: 0;
    margin-right: 10px;
    border: 0;
    color: #666; }
    .pagination .page-item .page-link:hover {
      background: #c54821;
      color: #fff; }
  .pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
    border-radius: 50%; }
  .pagination .page-item.active .page-link {
    background: #c54821;
    color: #fff; }

.veggie-pattern {
  background-image: url("/images/pattern/radish.png");
  background-size: 570px;
  background-repeat: repeat;
  background-position-x: 20px;
  background-position-y: -10px;
  background-color: #ededed; }
  .veggie-pattern h1 {
    text-shadow: 2px 2px 2px #ededed; }

.veggie-pattern.Celiac {
  background-image: url("/images/pattern/morel.png");
  background-size: 323px; }

.veggie-pattern.Reviews {
  background-image: url("/images/pattern/donut.png");
  background-size: 541px;
  background-position-x: 20px;
  background-position-y: -270px; }

.veggie-pattern.Recipes {
  background-image: url("/images/pattern/lemon.png");
  background-size: 531px; }

.veggie-pattern.Drinks {
  background-image: url("/images/pattern/drinks.png");
  background-size: 550px; }

.widget .social-icons .list-inline-item {
  margin-top: .5rem; }

.rating-container {
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 20px;
  text-align: center;
  float: left; }

.allergen-icon-container {
  margin-top: 49px;
  margin-right: 20px;
  text-align: right;
  margin-bottom: 40px;
  float: right;
  max-width: 500px; }
  .allergen-icon-container img {
    margin-bottom: 7px; }

@media screen and (max-width: 990px) {
  .rating-container {
    margin-top: 20px;
    float: initial;
    margin-left: 0; }
  .allergen-icon-container {
    float: initial;
    text-align: center;
    margin: auto;
    margin-bottom: 20px; }
    .allergen-icon-container span {
      display: block !important;
      width: 100%; } }

@media (max-width: 575px) {
  .is-it-gf-container {
    text-align: center; } }

.search-results-container {
  max-width: 1400px;
  margin: auto;
  padding-top: 0px !important;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: -15px; }
  @media (max-width: 575px) {
    .search-results-container {
      padding: 1em; } }
#search-results {
  justify-content: center; }

blockquote.shop {
  margin-left: 2em;
  margin-right: 2em;
  transition: all 0.3s ease; }
  blockquote.shop span {
    transition: all 0.3s ease;
    color: #666; }
  blockquote.shop:hover {
    padding-left: 45px; }
    blockquote.shop:hover span {
      color: #c54821; }
  @media (max-width: 575px) {
    blockquote.shop {
      margin-left: 0em;
      margin-right: 0em; }
      blockquote.shop img {
        display: none; } }
.category-link {
  color: #666; }
