:root {
	--display-font-family: Lora;
	--body-font-family: Raleway;

	--font-size: 16px

	--logo-padding: 16px;
	--logo-height: 218px;

	--header-width: 100%;
	--header-border-position: bottom;
	--header-border-size: 0;
	--header-bg-color: 233 235 234;
	--header-border-color: 226 114 56;

	--brand-color: 221 153 39;
	--brand-color-inverted: 255 255 255;

	--background-color: 255 15 ;
	--text-color: 61 61 61;
	--link-color: 221 153 39;

	--action-color: 221 153 39;
	--action-color-inverted: 255 255 255;

	--announcement-bar-bg-color: 245 206 112;
	--announcement-bar-text-color: 68 62 79;
	--announcement-bar-link-color: 68 139 148;

	--main-navigation-bg-color: 233 235 234;
	--main-navigation-link-color: 68 62 79;
	--main-navigation-link-color-hover: 134 174 179;
	--main-navigation-link-bg-color: 66 54 38;
	--main-navigation-link-font-size: 19px;
	--main-navigation-link-alignment: center;

	--auxiliary-bg-color: 233 235 234;
	--auxiliary-border-color: transparent;
	--auxiliary-link-color: 68 62 79;

	--order-status-bg-color: 134 174 179;
	--order-status-color: 68 62 79;

	--store-menu-bg_color: 248 248 248;
	--store-menu-color: 119 7 ;

	--footer-bg-color: 68 62 79;
	--footer-color: 255 15 ;
	--footer-link-color: 255 15 ;
}

/*Custom Styles*/
/* Make logo bigger on mobile */

@media only screen and (max-device-width: 480px) {
        .logo__img {
        max-height: 150px;
        }}
        
/* Drop down responsive FAQs */

.faq {
  width: 80%;
  margin: 0 auto;
}

.centerplease {
  text-align:center;
  margin: 0 auto;
  font-size: 40px;
}

.question {
  color:#000000;
  font-size: 18px;
  font-weight: normal;
  position: relative;
  background: #f5ce70;
  margin: 0 auto;
  opacity: .9;
  padding: 10px 10px 10px 50px;
  display: block;
  cursor: pointer;
}

.answers {
  border-top: 1px solid #2a4163;
  padding: 0 15px;
  margin: 0 0 7px 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  -webkit-transition: .7s ease;
  -moz-transition: .7s ease;
  -o-transition: .7s ease;
  transition: .7s ease;
}

.questions:checked ~ .answers{
  height: auto;
  opacity: 1;
  padding: 15px;
}

.plus {
  position: absolute;
  margin-left: 10px;
  z-index: 5;
  font-size: 1.8em;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}

.questions:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.questions {
  display: none;
}

/*Product Description Tabs */

.tabs {
  display: flex;
  flex-wrap: wrap;
  max-width:800px;
  font-family: sans-serif;
  margin-top:-15px;
}

.tabs__label {
  padding: 10px 16px;
  cursor: pointer;
  font-family: Lora;
  font-weight: 600;
  font-size: 1.2em;
  width:25%;
  text-align:center;
  border-bottom: 1px solid #e9ebea;
  align-self: flex-end;
}

.tabs__radio {
  display: none;
}

.tabs__content {
  order: 1;
  width: 100%;
  line-height: 1.5;
  font-size: 1em;
  display: none;
  padding-top: 15px;
  padding-bottom: 30px;
  font-family: Raleway;
  border-bottom: 1px solid #e9ebea;
}

.tabs__radio:checked + .tabs__label {
  font-weight: bold;
  color: #86aeb3;
  border-bottom: 2px solid #86aeb3;
}

.tabs__radio:checked + .tabs__label + .tabs__content {
  display: inline;
}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  
.tabs {
  max-width:768px;
  margin-top:15px;
}
  
.tabs__label {
  width:25%;
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

  }
  
/* Make vendor logos centered */

.vendorsWidget__coverPhoto {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
