/*--- standard variables ---*/
/* @fontFamily1:        'PT Sans', sans-serif;*/
/*--- product item ratio (thumb + content) ---*/
/*--- media queries. When using responsive ---*/
/*--- media queries. When not using responsive ---
@useResponsive:			false;

@breakPointLargePhone:	~"only screen and (min-width : 1px)";
@breakPointTablet:		~"only screen and (min-width : 1px)";
@breakPointDesktop:		~"only screen and (min-width : 1px)";

@breakPointUpToTablet:	~"only screen and (max-width: 1px)";
@breakPointUpToTabletLand:~"only screen and (max-width: 1023px)";
@breakPointUpToDesktop:	~"only screen and (max-width: 1px)";
*/
/*--- media queries. When using responsive: only mobile & desktop ---
@useResponsive:			false;
@breakPointLargePhone:	~"only screen and (min-width : 480px) and (max-width: 768px )";
@breakPointTablet:		~"only screen and (min-width : 999999999px)";
@breakPointDesktop:		~"only screen and (min-width : 768px)";

@breakPointUpToTablet:	~"only screen and (max-width: 768px)";
@breakPointUpToDesktop:	~"only screen and (max-width: 768px)";
*/
/*--- custom class functions ---*/
/*----- Default functions -----*/
/*----- LESS functions -----*/
.accordion {
  list-style: none !important;
  margin-left: 0 !important;
}
.accordion .accordion__row {
  border-bottom: 1px solid #dedede;
  padding: 8px 0;
}
.accordion .accordion__row:first-child {
  border-top: 1px solid #dedede;
}
.accordion .accordion__row.open .accordion__content {
  display: block;
}
.accordion .accordion__toggle {
  font-size: 14px;
  font-weight: normal;
  position: relative;
  margin: 0;
}
.accordion .accordion__toggle:hover {
  cursor: pointer;
  color: #4ca950;
}
.accordion .accordion__toggle:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: "\f078";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 16px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 18px;
  height: 18px;
  line-height: 18px;
}
.accordion .accordion__toggle[data-accordion-opened="true"]:after {
  transform: rotate(180deg);
}
.accordion .accordion__content {
  display: none;
  margin-top: 15px;
  margin-bottom: 0;
}
.accordion .accordion__content dt {
  width: 44%;
  float: left;
}
.accordion .accordion_question {
  color: #383838;
}
.accordion .accordion_question:after {
  content: "\f128";
  right: -2px;
}
.accordion .accordion__toggle[data-accordion-opened="true"]:after {
  right: 4px;
}
.accordion__toggle a {
  color: #383838;
}
.accordion__toggle a:hover {
  color: #4ca950;
}
a#sizeInfo {
  font-size: 14px;
  font-weight: normal;
  color: #383838;
}
a:hover#sizeInfo {
  color: #4ca950;
}
h2 hover#sizeInfo:after {
  content: "\f128";
}
@media only screen and (max-width: 440px) {
  .accordion .accordion__content dt {
    width: 55%;
    float: left;
  }
}
