/** Shopify CDN: Minification failed

Line 104:0 Expected "}" to go with "{"

**/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: auto; /* Prevent default scrolling */
  font-family: Tahoma, Geneva, sans-serif;
}

body {
  background-color: white;
  border: 8px solid #d4d0c8;
  width: 100vw;
}

.container {
  display: flex;
  flex-direction: column;

}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Give the header full content height */
.fixed-header header,
.grey-background,
.address-background {
  width: 100%;
}

.header {
  background-color: blue;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30px;
  color: white;
  line-height: 30px;
  padding: 0 10px;
}

#close-button {
  height: 27px;
  width: auto;
}

#close-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.grey-background {
  background-color: #d4d0c8;
  height: 30px;
  border-bottom: 2px solid darkgrey;
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.address-background {
  background-color: #d4d0c8;
  height: 30px;
  border-bottom: 2px solid darkgrey;
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.address {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  margin-right: 10px;
}

#extra-links {
    padding-right: 10px;
}

#address-link {
  background-color: white;
  height: 20px;
  padding-left: 5px;
  border-top: 1px solid black;
  border-left: 1px solid black;
  display: flex;
  align-items: center
