/*______________________________
Desktop version layout - place your custom code here */

@font-face {
	font-family: 'Gotham Book';
	src: url('Gotham-Book_-2254494672661942309.eot') format('eot'), 
	     url('Gotham-Book_2254494672661942309.otf')  format('opentype'),
	     url('Gotham-Book_2254494672661942309.woff') format('woff'), 
	     url('Gotham-Book_2254494672661942309.ttf')  format('truetype'),
	     url('http://cdn.shopify.com/s/files/1/0151/2509/t/29/assets/Gotham-Book.svg%23Gotham%20Book?2254494672661942309') format('svg');
}

body {

}

.tc {text-align:center;}
ul#nav li a {font-size:13px; padding:0 8px;}

fieldset {border:none;}
.icon-shopping-cart {font-size:18px;}
.banners {display: flex; align-items: center; margin-bottom:5px; position:relative;}
.banners img {width:100%; position:relative; }
.banners h2 {position:absolute; z-index:100; color:#fff; text-transform:uppercase; right:4%; text-align:center;
margin-bottom:0; margin-top:-20px; font-size:24px; top:47%;}
.banners h2 p {text-transform:none; max-width:450px; margin:0 auto; text-align:center;}
.banners h2.left {left:4%; right:auto;}
.thumbnail img {border: 1px solid #ccc;}
#product-add > label {margin-top:8px;}
#product-add #quantity { border: 1px solid #ccc; margin-bottom: 10px; padding: 8px 0;}
.video-container {width:33%; position:absolute; right:2%; z-index:2; top:13%;}
.video-container-mobile {display:none;}
#purchase {text-transform:uppercase; max-width:40%;}

#product_buy form {margin-top:10px;}

/* TEAM */

.teammate {
    display: block;
    margin-bottom: 20px;
    text-align: center;
}
.teamphoto img {
    border-radius: 50%;
    margin-bottom: 10px;
  max-width: 200px;
}
h5.teamtitle {
    font-size: 16px;
}
.team-desc {
    color: #000000;
    font-size: 13px;
}

/*_______________________________
Mobile version - single break point */

@media handheld, only screen and (max-width: 767px) {

	.examplecontainer {}

	body {}
  .banners h2 {font-size:16px;}
  .video-container {display:none;}
  .video-container-mobile {display:block;}
}


/*
_______________________________
Provide higher res assets for higher resolution mobile screens */

@media only screen and (-webkit-min-device-pixel-ratio: 2) { 

	/* An example of how to override an image with one twice the size for iPhone 4. Specify the original pixel size with background-size.
	.download {
	background: url(http://cdn.shopify.com/s/files/1/0151/2509/t/29/img/downarrow@2x.png) no-repeat;
	background-size: 27px 28px;
	}
	*/

}
a.findsize {margin-bottom:15px; font-size:11px; display:inline-block;}
/* 
   Swatches Styles
*/



.swatch { 
  margin:1em 0; 
}
/* Label */
.swatch .header {
  margin: 0.5em 0;
}
/* Hide radio buttons.*/
.swatch input { 
  display:none;
}
.swatch label {
  /* Rounded corners */
  -webkit-border-radius:2px;
  -moz-border-radius:2px;
  border-radius:2px;
  /* To give width and height */
  float:left;
  /* Color swatches contain no text so they need to have a width. */
  min-width:50px !important; 
  height:35px !important;
  /* No extra spacing between them */
  margin:0;
  /* The border when the button is not selected */
  border:#ccc 1px solid;
  /* Background color */
  background-color:#ddd;
  /* Styling text */
  font-size:12px;
  text-align:center;
  line-height:35px;
  white-space:nowrap;
  text-transform:uppercase;
}
.swatch-element label { padding:0 5px; }
.color.swatch-element label { padding:0; }
/* Styling selected swatch */
/* Slightly raised */
.swatch input:checked + label {
  -webkit-box-shadow:0px 2px 3px rgba(0,0,0,0.8);
  -moz-box-shadow:0px 2px 3px rgba(0,0,0,0.8);
  box-shadow:0px 2px 3px rgba(0,0,0,0.8);
  border-color:transparent;
  border:1px solid #000;
} 
.swatch .swatch-element {
  display:inline-block;
  -webkit-transform:translateZ(0); /* webkit flicker fix */
  -webkit-font-smoothing:antialiased; /* webkit text rendering fix */
  /* Spacing between buttons */
  margin:0px 5px 5px 0;
  /* To position the sold out graphic and tooltip */
  position:relative;
}
/* Image with the cross in it */
.crossed-out { position:absolute; width:100%; height:100%; left:0; top:0; }
.swatch .swatch-element .crossed-out { display:none; }
.swatch .swatch-element.soldout .crossed-out { display:block; }
.swatch .swatch-element.soldout label {
  filter: alpha(opacity=60); /* internet explorer */
  -khtml-opacity: 0.6;      /* khtml, old safari */
  -moz-opacity: 0.6;       /* mozilla, netscape */
  opacity: 0.6;           /* fx, safari, opera */
}
/* Tooltips */
.swatch .tooltip {
  text-align:center;
  background:gray;
  color:#fff;
  bottom:100%;
  padding: 10px;
  display:block;
  position:absolute;
  width:100px;
  left:-23px;
  margin-bottom:15px;
  /* Make it invisible by default */
  filter:alpha(opacity=0);
  -khtml-opacity: 0;
  -moz-opacity: 0;
  opacity:0;
  visibility:hidden;
  /* Animations */
  -webkit-transform: translateY(10px);
     -moz-transform: translateY(10px);
      -ms-transform: translateY(10px);
       -o-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all .25s ease-out;
     -moz-transition: all .25s ease-out;
      -ms-transition: all .25s ease-out;
       -o-transition: all .25s ease-out;
          transition: all .25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
     -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
      -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
       -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  z-index: 10000;
  -moz-box-sizing:border-box; 
  -webkit-box-sizing:border-box; 
  box-sizing:border-box;
}
.swatch .tooltip:before {
  bottom:-20px;
  content:" ";
  display:block;
  height:20px;
  left:0;
  position:absolute;
  width:100%;
}
/* CSS triangle */
.swatch .tooltip:after {
  border-left:solid transparent 10px;
  border-right:solid transparent 10px;
  border-top:solid gray 10px;
  bottom:-10px;
  content:" ";
  height:0;
  left:50%;
  margin-left:-13px;
  position:absolute;
  width:0;
}
.swatch .swatch-element:hover .tooltip {
  filter:alpha(opacity=100);
  -khtml-opacity:1;
  -moz-opacity:1;
  opacity:1;
  visibility:visible;
  -webkit-transform:translateY(0px);
     -moz-transform:translateY(0px);
      -ms-transform:translateY(0px);
       -o-transform:translateY(0px);
          transform:translateY(0px);
}
.swatch.error {
  background-color:#E8D2D2!important;
  color:#333!important;
  padding:1em;
  border-radius:5px;
}
.swatch.error p {
  margin:0.7em 0;
}
.swatch.error p:first-child {
  margin-top:0;
}
.swatch.error p:last-child {
  margin-bottom:0;
}
.swatch.error code {
  font-family:monospace;
}
.button-pay {
    border: 1px solid #0a4d6d;
    height: 20px;
    padding: 15px;
}