/** Shopify CDN: Minification failed

Line 11:20 Expected identifier but found bad string token
Line 11:21 Unterminated string token

**/
/***** The Section below contains General purpose Style classes *****/
/* This section styles the navigation menu to scroll be limited in how much it can display */
.sub-menu-overflow { 
  overflow-y: scroll;
  max-height: 400px;"
}

.drawer-menu-overflow { 
  overflow-y: scroll;
}

.menu-overflow {
  overflow-y: scroll;
}

/* Sizes the logo embedded on the store pages */
.logo-size {
  height: 64.5px;
  width: 225px;
}

/* Making the embedded google maps iFrame scale properly once its size breaks the layout */
@media (max-width: 378px) {
  .google-maps {
    position: relative;
    padding-bottom: 25%;
    height: 0;
    overflow: hidden;
    text-align: center;
  }

  .google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

/*** The classes below create a flex row to stacks for mobile optimisation ***/
.flex-row {
  display: flex;
  justify-content: center;
}

.flex-column {
  flex: 50%;
  padding-right: 10px;
  justify-content: center;
}

/* Creates a column row which centers all content */
.flex-column-center {
  flex: 50%;
  padding-left: 10px;
  align-self: center;
  text-align: center;
}

/***** The classes below are used to format the In-Store page *****/
/* Changing the values required to allow the divs to stack and optimize mobile usability */
@media (max-width: 800px) {
  .flex-row,
  #in-store-mapFlex {
    display: flex;
    flex-direction: column;
  }
}

/***** The Section below formats the way the cotact us page is displayed *****/
/*** Classes below are used to allow the elements of the page to scale properly between Desktop and mobile ***/
.text-row {
  display: flex;
  justify-content: center;
}

.text-column-1 {
  flex: 50%;
}

/* Centers the opening hours table inside the div */
.text-column-2 {
  flex: 50%;
  align-self: center;
  padding-left: 40px;
}

/* Changing the values required to allow the divs to stack and optimize mobile usability */
@media (max-width: 613px) {
  .text-row {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .text-column-2 {
    padding-left: 0px;
  }
}

/*** The classes below size and position the Social Media Icon hyperlinks above the contact us form ***/
.social-media-icons {
  text-align: center;
  padding-top: 20px;
}

.contact-socials {
  height: 30px;
  width: 30px;
}

.social-row {
  padding: 20px;
  display: inline-block;
}


/*** Creates img-row ***/
.img-row {
    display: flex;
    padding-top: 15px;
    padding-bottom: 15px;
}

.img-row-stream {
    display: flex;
}

.img-row-stream-btm {
    display: flex;
    padding-top: 15px;
}

.no-border {
    border: none !important;
}

