/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/


body { background: /*#edebec*/#fff; }

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  background: #fff; /* Added MC. */
  position: relative;
  width: 100%;
  /*max-width: 960px;*/
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    /*width: 85%;*/
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  /*.container {
    width: 80%; }*/
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222; }


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }
h1 { font-size: /*4.0rem*/1.3em; line-height: 1.2;  letter-spacing: -.1rem; font-weight: 400; }
h2 { font-size: /*3.6rem*/1.2em; line-height: 1.25; letter-spacing: -.1rem; font-weight: 400; }
h3 { font-size: /*3.0rem*/1.1em; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: /*5.0rem*/1.3em; }
  h2 { font-size: /*4.2rem*/1.2em; font-weight: 400;}
  h3 { font-size: /*3.6rem*/1.1em; }
  h4 { font-size: 3.0rem; }
  h5 { font-size: 2.4rem; }
  h6 { font-size: 1.5rem; }
}

p {
  margin-top: 0; }


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: /*#1EAEDB;*/#F93; }
a:hover {
  color: /*#0FA0CE*/#000; }


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 1.5rem; }


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }


/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}




/* ––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Custom Goodman Art CSS. */


/* Top Social Links. */
#gg-social-top-container { background: #333; margin-bottom: 10px; }
#gg-social-top { width: 100%; max-width: 960px; margin: 0px auto; font-size: 13px; text-align: right; padding: 8px 0px; }
#gg-social-top a { color: #fcfcfc; margin-right: 12px; }
#gg-social-top a:hover { color: #888; }

/* Logo and signature. */
#gg-swoosh { display: block; width: 12%; margin: 0px auto; max-width: 180px; }
#gg-swoosh img { width: 100%; }
#gg-signature { display: block; width: 55%; margin: 0px auto; max-width: 700px; }
#gg-signature img { width: 100%; }

#gg-banner { max-width: 960px; margin: 0px auto; min-height: 220px; } /* Still used in Cart from SI. */

#gg-page-content { max-width: 960px; margin: 0px auto; padding: 8px; }







/* Temp Gallery Links. */
.gallery-links ul { list-style: none; margin: 0; }
.gallery-links li { display: inline; padding: 0px 12px; font-size: 1.1em; }

.clear { display: block; clear: both; height: 1px; overflow: hidden; }

.gg-spacer20 { width: 100%; display: block; clear: both; min-height: 20px; }
.gg-spacer40 { width: 100%; display: block; clear: both; min-height: 40px; }
.gg-spacer80 { width: 100%; display: block; clear: both; min-height: 80px; }


/* Footer etc. */
.gg-maxwidth { max-width: 960px; }
.gg-footer-content-container { margin: 0px auto; padding: 10px; min-height: 100px; }
.gg-footer-content-container a { color: #666; }
.gg-footer-content-container a:hover { color: #000; text-decoration: underline; }
.gg-footer-content-container h2 { width: 100%; padding-bottom: 6px; border-bottom: 1px solid #cfcfcf; }

#gg-footer { margin: 4px auto 0px; max-width:960px; display: block; padding-right: 20px; text-align: right; font-size: 0.9em; margin-top: 30px; }
#gg-footer-right { float: right; padding-top: 14px; border-top: 1px solid #eee; /*border-bottom: 1px solid #eee;*/ }
#gg-footer-right a { text-decoration: none; margin-left: 10px; margin-right: 10px; color: #888; }
#gg-footer-right a:hover, #gg-copyright a:hover { color: #000; text-decoration: underline; }
#gg-copyright { margin: 4px auto 20px; max-width:960px; display: block; padding-right: 20px; text-align: right; font-size: 0.8em; margin-top: 10px; color: #666; }

#gg-footer-thumb { float: left; overflow: hidden; /* Important */ width: 70px; height: 70px; border: 2px solid #ccc; margin-right: 14px; margin-top: -10px; padding: 1px; }


/* Back to Top link. */
.to-top { float:right; margin-top: 4px; }
a.link-top { padding: 3px 0px 0px 17px; position:relative; font-size: 15px; margin: -10px 0px 15px 10px; float: right; }
a.link-top:before { font-family: FontAwesome; display: inline-block; content:"\f062"; font-weight: normal; position:absolute; left:1px; top:3px; color: #888!important; }
#gg-copyright a  { color: #888; }
#gg-copyright a:hover  { color: #000; }
#gg-copyright .to-top a.link-top,
#gg-copyright .to-top a.link-top:hover { color: #888!important; font-weight: bold; text-decoration: none; margin-top: -8px; }
#gg-copyright .to-top a.link-top:hover { color: #000; }


/* Responsive Navigation. */
/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

/* Basic Styles */
nav {
	height: 30px; width: 100%; background: #fff; font-size: 1.1em; border-top: 1px solid #eee; border-bottom: 1px solid #eee;
	text-transform: uppercase; text-align: center; padding: 18px 0px; position: relative;
}
nav ul {
	padding: 0; margin: 0 auto; width: 650px; height: 30px; 
}
nav li {
	display: inline;
}
nav a {
	color: #999;
	display: inline-block; padding: 0px 15px 0px 12px; text-align: center; text-decoration: none; line-height: 30px;
}
nav li a {
	border-right: 1px solid #ccc; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;
}
nav li:last-child a {
	border-right: 0;
}
nav a:hover, nav a:active {
	color: #333;
}
nav a#pull {
	display: none;
}

/*Styles for screen 768px and lower*/
@media screen and (max-width: 768px) {
	nav { 
  		height: auto;
  	}
  	nav ul {
  		width: 100%; display: none; height: auto;
  	}
  	nav a {
	  	text-align: left; font-size: 0.8em; color: #999; width: 100%; text-indent: 25px;
  	}
	nav a#pull { /* The whole small menu bar, including menu text and icon. */
		display: block; position: relative; background-color: #fff; /*width: 100%;*/width: 95%;
	}
	nav a#pull:after {
		content:""; background: url('/images/nav-icon-grey.png') no-repeat;
		width: 30px; height: 30px; display: inline-block; position: absolute; right: 5px; top: 5px;
	}
	nav li {
		display: block; float: none; width: 100%;
	}
	nav li a {
		border-bottom: 1px solid #ccc; border-right: none;
	}
}

.gg-nav-current { color: #333; }


/* About. */
.gg-genny { max-width: 100%; height: auto; }


/* Testimonials. */
.testimonial-divider { display: block; clear: both; width: 300px; height: 1px; overflow: hidden; background: #eee; margin: 20px 0px; }


/* Gallery. */
#galleryBreadcrumbs { max-width: 960px; margin: 10px auto 20px; color: #999!important; font-size: 1.0em; }
#galleryBreadcrumbs a { text-decoration: none; color: #999; }
#galleryBreadcrumbs a:hover { text-decoration: underline; color: #000; }
#galleryBreadcrumbs i { margin: 0px 15px; }


/* Contact Page. */
.gg-contact-details i { margin-right: 10px; color:#F93; } /* McL: #FF8C00 ? */
.gg-contact-details a { color: #000; }
.gg-contact-details a:hover { color: #000; text-decoration: underline; }

#map-container {
    width: 100%; max-width: /*1200px*/960px; margin: 0px auto;
    filter: grayscale(100%);    
    filter: gray;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);    
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
#map-container:hover{
    filter: none;
    -webkit-filter: grayscale(0%);
}

#map-image {
	width: 100%;
	padding-bottom: /*37.5%*/40.33%; /* 480px/1280px x 100 < NO. Now 1200x484*/
	background-image: url('/images/Location-of-Genny-Goodman-960x380.jpg');
	background-size: cover;
	background-position: center; /* IE fix */
}
@media (max-width: 768px) {
	#map-image { /* Use smaller, more central map for legibility. */
		width: 100%;
		padding-bottom: /*37.5%*/68.35%; /* 525px/768px x 100 */
		background-image: url('/images/Location-of-Genny-Goodman-768x525.jpg');
		background-size: cover;
		background-position: center; /* IE fix */
	}
}
@media (max-width: 500px) {
	#map-image { /* Use smaller, more central map for legibility. */
		width: 100%;
		padding-bottom: /*37.5%*/98%; /* 490px/500px x 100 */
		background-image: url('/images/Location-of-Genny-Goodman-500x490.jpg');
		background-size: cover;
		background-position: center; /* IE fix */
	}
}



/* Products. */
.four.columns.si-products { margin-bottom: 30px; color: #a1a1a1; text-align: center;}
.four.columns.si-products img { width: 100%; padding-bottom: 30px; /*border-bottom: 1px solid #ccc;*/ }
.four.columns.si-products span { margin-left: 10px; font-size: 1.3em; }
.four.columns.si-products a { display: block; color: /*orange*/#a1a1a1; text-decoration: none; }
.four.columns.si-products a:hover { display: block; color: #000; }
/*.four.columns.si-products a::before { font-family: FontAwesome; content: "\f105"; font-size: 15px; margin-right: 6px; }*/
/*.four.columns.si-products:last-of-type { margin-bottom: 80px; }*/

.five.columns.si-products { margin-bottom: 30px; color: #a1a1a1; text-align: center; }
.five.columns.si-products img { width: 100%; padding-bottom: 30px; /*border-bottom: 1px solid #ccc;*/ }
.five.columns.si-products span { margin-left: 10px; font-size: 1.3em; }
.five.columns.si-products a { display: block; color: #a1a1a1; text-decoration: none; }
.five.columns.si-products a:hover { display: block; color: #000; }

.six.columns.si-products { margin-bottom: 30px; color: #a1a1a1; text-align: center; }
.six.columns.si-products img { width: 100%; padding-bottom: 30px; /*border-bottom: 1px solid #ccc;*/ }
.six.columns.si-products span { margin-left: 10px; font-size: 1.3em; }
.six.columns.si-products a { display: block; color: #a1a1a1; text-decoration: none; }
.six.columns.si-products a:hover { display: block; color: #000; }


.eight.columns.si-items a { /*display: block;*/ color: /*orange*/#86b6ee; text-decoration: none; padding-top: 10px; border-top: 1px solid #ccc;}
.eight.columns.si-items a:hover { color: #000; }
.eight.columns.si-items a:before { font-family: FontAwesome; content: "\f105"; font-size: 15px; margin-right: 6px; }
.eight.columns.si-items #prod-name { margin-top: 30px; }
.eight.columns.si-items #prod-name a, .eight.columns.si-items #prod-name a:hover { text-decoration: none; color: #000; border: none; }
.eight.columns.si-items #prod-name a:before { content: none; }

.product-overview { margin: 20px; background: #ccffcc; }

#prod-breadcrumb { font-size: 0.9em; margin-bottom: 30px; }
#prod-breadcrumb a { color: #666; text-decoration: none!important; }
#prod-breadcrumb a:hover { color: #135472; text-decoration: underline!important; }
#prod-breadcrumb i { margin: 0px 10px; }

#prod-name { display: block; font-size: 1.3em; }
#prod-code { display: block; font-size: 0.8em; color: #666; margin-bottom: 12px; }
#prod-price { display: block; font-size: 1.3em; margin-bottom: 12px; }
#prod-desc { display: block; margin-bottom: 22px; }
#prod-size { display: block; color: #666; font-size: 0.8em; margin-bottom: 10px; }
#prod-size span { color: #666; margin-right: 8px; }
#prod-size span:hover { color: #000; text-decoration: underline; }
.sizing-table { width: 100%; font-size: 0.9em; color: #666; margin-bottom: 24px; }
/* Size css altered in current versions. If revert to accordion, swap css back. */

.shop-now {  margin-top: 30px; text-align: center; } /* For button. */

/* In the absence of a form/basket, use the simple link below. */
.si-shop { background-color: #39b3d7 !important; min-width: 100px; border: 1px solid #ccc; padding: 10px 30px; display: inline-block; text-align: center !important; text-decoration: none; color: #fff !important; font: 13px/15px Arial, Helvetica, sans-serif; text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.26) !important; border-radius: 3px !important; }
.si-shop:hover { background-color: #44c7ed !important; border: 1px solid #666; }





/* Whistles accordion. */
h3 { margin:0; padding:0; border:0; outline:0; font-size:100%; font:inherit; vertical-align:baseline; }

a { text-decoration: none; /* This affects the whole site. */
-webkit-transition: all .2s ease; -moz-transition: all .2s ease; -ms-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease; }

/* All Whistles (tabs, accordion, toggle) */
.whistles {}
.whistle-title { display: block; cursor: pointer; }
.whistles-toggle .whistle-title:hover::before, .whistles-accordion .whistle-title:hover::before { background: #EA8E00; color: red; }
.whistle-content { clear: both; }

.whistles-tabs {}
.whistles-tabs-nav, ul.tabs { display: block; float: left; margin-bottom: 2em; border-bottom: 1px solid #222; padding: 0 !important; }
.whistles-tabs-nav li, ul.tabs li { display: block; float: left; margin: .2em 6px 0 0; padding: 0 !important; }
.whistles-tabs-nav .whistle-title {}
.whistles-tabs-nav li a, ul.tabs li a { display: block; padding: 8px 18px 5px 18px; text-align: center; font-size: 0.9em; cursor: pointer; background: #EA8E00; border: 1px solid #222; border-bottom: 0; color: #F7F6F5; position: relative; top: 2px; white-space: nowrap; text-decoration: none; 
 -webkit-transition: background .4s ease; -moz-transition: background .4s ease; -ms-transition: background .4s ease; -o-transition: background .4s ease; transition: background .4s ease; }
.whistles-tabs-nav li[aria-selected="true"] a, .whistles-tabs-nav li[aria-selected="true"] a:hover, ul.tabs li.active a:hover, ul.tabs li.active a { color: #222; background: transparent; border-bottom: 2px solid #F7F6F5; }
.whistles-tabs-nav li a:hover, ul.tabs li a:hover { color: #222; background: transparent; }
.whistles-tabs-wrap {}
.whistles-tabs-wrap .whistle-content {}

.whistles-toggle {}
.whistles-toggle .whistle-title { display: block; padding: .3em 0;  }
/*.whistles-toggle .whistle-title::before { content: '+'; font-weight: bold; font-size: 1.1em; color: #222; position: relative; display: inline-block; width: 22px; height: 22px; line-height: 22px; vertical-align: middle; margin: -2px 12px 0 0; text-align: center;
 -webkit-transition: background .4s ease; -moz-transition: background .4s ease; -ms-transition: background .4s ease; -o-transition: background .4s ease; transition: background .4s ease; }
.whistles-toggle .whistle-title[aria-selected="true"]::before { content: '-'; line-height: 20px; }*/
.whistles-toggle .whistle-title[aria-selected="true"] {  }
.whistles-toggle .whistle-content {}

.whistles-accordion {}
.whistles-accordion .whistle-title { display: block;  padding: .3em 0 0 0;  }
/*.whistles-accordion .whistle-title::before { content: '+'; font-weight: bold; font-size: 1.1em; color: #222; position: relative; display: inline-block; width: 22px; height: 22px; line-height: 22px; vertical-align: middle; margin: -2px 12px 0 0; text-align: center;
 -webkit-transition: background .4s ease; -moz-transition: background .4s ease; -ms-transition: background .4s ease; -o-transition: background .4s ease; transition: background .4s ease; }
.whistles-accordion .whistle-title[aria-selected="true"]::before { content: '-'; line-height: 20px; }*/
.whistles-accordion .whistle-content {}