/** Shopify CDN: Minification failed

Line 100:37 Unexpected "{"
Line 178:37 Unexpected "{"

**/
/* from DivTable.com used for Bike Service & Repair, et al */
.divTable{
	display: table;
  	width: 100%;
}
.divTableRow {
	display: table-row;
}
.divTable .divTableRowZebra:nth-child(odd) {
  background: #EEEEEE;
}
.divTableRowZebra {
	display: table-row;
}
.divTableCell, .divTableHead {
	border: none;
	display: table-cell;
	padding: 3px 10px;
}
.divTableBody {
	display: table-row-group;
}
/* .map-table {
  	width: 100%;
  	border-collapse: collapse;
    border: 0px;
} */
.map-tablerow {
    vertical-align: top;
}
@media screen and (min-width: 1024px) {
	.map-tablecell {
    width: 50%;
    border: none;
    }
}
@media screen and (max-width: 1024px) {
    .map-tablecell {
    display: block;
    border: none;
  }
}
/* from https://www.codingnepalweb.com/2020/11/pure-css-tabs-with-slide-indicator.html used for Rentals */
/* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */
/* body{
  overflow: hidden;
  padding: 0 20px;
    background: #FFFFFF;
}
::selection{
  background: #004271;
} */
.wrapper{
  max-width: 900px;
  width: 100%;
  margin: 0px auto;
  padding: 30px 0px 0px 0px;
  border-radius: 5px;
  background: #FFFFFF;
}
.wrapper nav{
  position: relative;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}
.wrapper nav label{
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: #004271;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  margin: 0 0px;
  transition: all 0.3s ease;
}
/* .wrapper nav label:hover{
  background: rgba(23,162,184,0.3);
} */
#home:checked ~ nav label.wetsuits,
#blog:checked ~ nav label.bikes,
#code:checked ~ nav label.bike-cases,{
  color: #E5ECF1;
}
nav label i{
  padding-right: 0px;
}
nav .slider{
  position: absolute;
  height: 100%;
  width: 33%;
  left: 0;
  bottom: 0;
  z-index: 0;
  border-radius: 5px;
  background: #E5ECF1;
  transition: all 0.3s ease;
}
input[type="radio"]{
  display: none;
}
#bikes:checked ~ nav .slider{
  left: 33%;
}
#bike-cases:checked ~ nav .slider{
  left: 66%;
}
section .content{
  display: none;
  background: #FFFFFF;
}
#wetsuits:checked ~ section .content-1,
#bikes:checked ~ section .content-2,
#bike-cases:checked ~ section .content-3{
  display: block;
}
section .content .title{
  font-size: 17px;
  margin: 30px 0 10px 0;
}

/* Tab slider used for product pages */
.wrapper-product{
  width: 100%;
  margin: 0px auto;
  padding-top: 30px;
  border-radius: 2px;
  background: #FFFFFF;
}
.wrapper-product nav{
  position: relative;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}
.wrapper-product nav label{
  display: block;
  height: 100%;
  width: 100%;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  color: #004271;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 2px;
  margin: 0 0px;
  transition: all 0.3s ease;
}
/* .wrapper nav label:hover{
  background: rgba(23,162,184,0.3);
} */
#overview:checked ~ nav label.overview,
#specs:checked ~ nav label.specs,
#fit:checked ~ nav label.fit,
#reviews:checked ~ nav label.reviews,{
  color: #E5ECF1;
}
nav label i{
  padding-right: 0px;
}
nav .slider-product{
  position: absolute;
  height: 100%;
  width: 25%;
  left: 0;
  bottom: 0;
  z-index: 0;
  border-radius: 2px;
  background: #E5ECF1;
  transition: all 0.3s ease;
}
input[type="radio"]{
  display: none;
}
#specs:checked ~ nav .slider-product{
  left: 25%;
}
#fit:checked ~ nav .slider-product{
  left: 50%;
}
#reviews:checked ~ nav .slider-product{
  left: 75%;
}
section .content{
  display: none;
  background: #FFFFFF;
}
#overview:checked ~ section .content-1,
#specs:checked ~ section .content-2,
#fit:checked ~ section .content-3,
#reviews:checked ~ section .content-4{
  display: block;
}
section .content .title{
  font-size: 17px;
  margin: 30px 0 10px 0;
}
