/** Shopify CDN: Minification failed

Line 97:8 Expected identifier but found whitespace
Line 97:10 Unexpected "{"
Line 97:20 Expected ":"
Line 160:0 Unexpected "}"

**/
/* Image Hidden on Mobile (mobile-hidden) */
@media (max-width:629px) {
  img#mobile-hidden {
    display: none;
  }
}

/* Detail & Summary Customisation */
details {
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: .5em 2em 0;
}

summary {
    font-weight: bold;
    margin: -.5em -.5em 0;
    padding: .5em;
}


details[open] {
    padding: .5em 2em 0;
}

details[open] summary {
    border-bottom: 1px solid #aaa;
    margin: -.5em -.5em 0;
}

/* Hover Over Image for Text */
.container {
  position: relative;
  width: 100%;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #4c4c4c;
}

.container:hover .overlay {
  opacity: 1;
}

.text {
  color: white;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* Center for Table */
.CenterTable{
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  }
@media (max-device-width: 629px) {
  .CenterTable {
    width: 100%;
    margin-left: auto;
  	margin-right: auto;
  }
}

/* Center for Collection Title */
.center-collection-title {
	font-size: var(--font-size-heading-large);
  	text-align: center;
 	line-height: 1.3;
 	color: {{ settings.color_text_headings }};
}

/* Button Styling */
.button {
  background-color: #222;
  border-radius: 4px;
  border-style: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  max-width: none;
  min-height: 44px;
  min-width: 20px;
  outline: none;
  overflow: hidden;
  padding: 9px 20px 8px;
  position: relative;
  text-align: center;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: 100%;
}

.button:hover,
.button:focus {
  opacity: .75;
}

/* Hover Image to Show Other Image */
.figure {
        position: relative;
        width: 100%;
        max-width: 100%;
    }
    .figure img.image-hover {
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      object-fit: contain;
      opacity: 0;
      transition: opacity .2s;
    }
    .figure:hover img.image-hover {
      opacity: 1;
    }

/* Table Styling */
.table-border {
    border: 1px solid black;
}
table {
    border-collapse: collapse;
}
}