/* line 1648, sass/theme/_global.scss */
.star--notation__title {
  margin: 0;
}

/* line 1651, sass/theme/_global.scss */
.star--notation__title > strong {
  line-height: 1.4;
  display: block;
}

/* line 1656, sass/theme/_global.scss */
.star--notation__title .star--notation__with-tooltip {
  padding-top: 5px;
  display: block;
  position: relative;
  font-style: italic;
  font-size: 10px;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
  padding-bottom: 10px;
  margin-bottom: -10px;
}

/* line 1668, sass/theme/_global.scss */
.star--notation__title .star--notation__with-tooltip:hover {
  text-decoration: none;
}

/* line 1671, sass/theme/_global.scss */
.star--notation__title .star--notation__with-tooltip:hover .star--notation__tooltip {
  display: block;
}

/* line 1677, sass/theme/_global.scss */
.star--notation__title .star--notation__tooltip {
  position: absolute;
  font-size: 11px;
  z-index: 300;
  top: 100%;
  left: 50%;
  background-color: #fff;
  border: 1px #bdbdbd solid;
  padding: 1.5rem;
  border-radius: 5px;
  color: #7f7f7f;
  display: none;
  font-weight: 400;
  width: 450px;
  transform: translateX(-50%);
  text-align: left;
}

/* line 1694, sass/theme/_global.scss */
.star--notation__title .star--notation__tooltip a {
  text-decoration: none;
}

/* line 1697, sass/theme/_global.scss */
.star--notation__title .star--notation__tooltip a:hover {
  text-decoration: underline;
}

/* line 1703, sass/theme/_global.scss */
.star--notation__title .star--notation__tooltip:after,
.star--notation__title .star--notation__tooltip:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
}

/* line 1715, sass/theme/_global.scss */
.star--notation__title .star--notation__tooltip:after {
  margin-left: -6px;
  border-color: transparent transparent #fff transparent;
  border-width: 6px;
}

/* line 1721, sass/theme/_global.scss */
.star--notation__title .star--notation__tooltip:before {
  margin-left: -7px;
  border-color: transparent transparent #bdbdbd transparent;
  border-width: 7px;
}


@media only screen and (max-width: 580px) {
  /* line 109, sass/theme/_devices.scss */
  .star--notation__title > strong {
    font-size: 90%;
  }
  /* line 128, sass/theme/_devices.scss */
  .star--notation {
    font-size: 12px;
    padding-top: 0 !important;
  }
}

@media only screen and (max-width: 979px) {
  /* line 257, sass/theme/_devices.scss */
  .star--notation {
    line-height: 1.2;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

/* FAQ */
.faq-section{
	margin: 40px 0;
}

.faq-section p, .faq-section input{
	display: none;
}		

.faq-section label+p{
	display: block;	
	color: #999;
	font-size: .85em;
	-webkit-transition: all .15s ease-out; 
	-moz-transition: all .15s ease-out;
	-ms-transition: all .15s ease-out;
	-o-transition: all .15s ease-out;
	transition: all .15s ease-out;
	/* Clipping text */
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;						
}

.faq-section input[type=checkbox]:checked~p{
	display: block;
	color: #444;
	font-size: 1em;
	/* restore clipping defaults */
	text-overflow: clip; 
	white-space: normal;
	overflow: visible;	
}

.faq-section label{
	font-size: 1.2em;
	cursor: pointer;
	background: #eee;
	display: block;
	position: relative;
	padding: 7px 10px;
	margin-bottom: 0px;
	font-weight: bold;
	border: 1px solid #ddd;
	border-left: 3px solid #888;
	text-shadow: 0 1px 0 rgba(255,255,255,.5);
	-webkit-transition: all .15s ease-out; 
	-moz-transition: all .15s ease-out;
	-ms-transition: all .15s ease-out;
	-o-transition: all .15s ease-out;
	transition: all .15s ease-out;			
}

.faq-section h3{
	margin-bottom: 0px;
	padding: 7px 0px;
}

.faq-section label::-moz-selection{ /* remove text selection when toggle-ing */
	background: none;
}

.faq-section label::selection{
	background: none;
}

.faq-section label:hover{
	background: #f5f5f5;
}

.faq-section input[type=checkbox]:checked~label{
	border-color: #e4382c;			
	background: #FADAD8;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#FADAD8));
	background-image: -webkit-linear-gradient(top, #fff, #FADAD8); 
	background-image: -moz-linear-gradient(top, #fff, #FADAD8); 
	background-image: -ms-linear-gradient(top, #fff, #FADAD8); 
	background-image: -o-linear-gradient(top, #fff, #FADAD8); 
	background-image: linear-gradient(to bottom, #fff, #FADAD8);
	-moz-box-shadow: 0 0 1px rgba(0,0,0,.4);
	-webkit-box-shadow: 0 0 1px rgba(0,0,0,.4);
	box-shadow: 0 0 1px rgba(0,0,0,.4);				
}

.faq-section label::before{
	content: '';
	position: absolute;
	right: 4px;
	top: 50%;
	margin-top: -6px;
	border: 6px solid transparent;
	border-left-color: inherit;	
}

.faq-section input[type=checkbox]:checked~label::before{
	border: 6px solid transparent;
	border-top-color: inherit;
	margin-top: -3px;
	right: 10px;	
}