/****************************************************************************************************/
/****************************************************************************************************/
/*********************************					MIXINS 		 						 	 ********************************/
/****************************************************************************************************/
/****************************************************************************************************/
/*********** MEDIA BREAKPOINTS **************/
/* Small only */
/* Medium and up */
/* Large and up */
/* Large and up */
/* XL and up */
.column {
  padding-left: 1.5%;
  padding-right: 1.5%;
  margin: 0;
  width: 97%;
  max-width: 97%;
}
@media screen and (min-width: 768px) {
  .column {
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .column {
    max-width: 980px;
  }
}
@media screen and (min-width: 1200px) {
  .column {
    max-width: 1024px;
  }
}
@media screen and (min-width: 1440px) {
  .column {
    max-width: 1280px;
  }
}
/*********** BREAKPOINT SHOW/HIDE RESETS **************/
.hide-for-small-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .hide-for-small-only {
    display: block;
  }
}
.flex_break {
  flex-basis: 100%;
  height: 0;
}
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
/****************************************************					STYLE RESETS  				 	  ***************************************************/
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
a {
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  color: #FE5F00;
}
a svg {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  filter: invert(46%) sepia(30%) saturate(7232%) hue-rotate(0deg) brightness(103%) contrast(106%);
}
a:hover {
  text-decoration: none;
  color: #666666;
}
a:hover svg {
  filter: none;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  text-transform: capitalize;
}
em {
  font-style: italic;
}
small {
  font-size: 0.8em;
}
hr {
  width: 100%;
  height: 1px;
  background-color: #EEEEEE;
}
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
/****************************************************					INPUTS 		 						 	  ***************************************************/
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
/********************** BUTTONS *************************************/
button, .btn {
  display: inline-block;
  font-weight: bold;
  color: #FE5F00;
  background-color: transparent;
  border: 1px solid #FE5F00;
  padding: 5px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
button:hover, .btn:hover {
  color: #666666;
  border: 1px solid #666666;
  background-color: transparent;
}
button.inverted, .btn.inverted {
  color: white;
  border: 1px solid white;
}
button.inverted:hover, .btn.inverted:hover {
  color: #FE5F00;
  border: 1px solid #FE5F00;
}
/***** DISABLED ************/
button.disabled {
  cursor: not-allowed;
  border: 1px solid #666666;
  color: #666666;
}
/****************************************************************************************/
/********************** 			TEXT INPUTS 					*************************************/
/****************************************************************************************/
input[type="text"], input[type="email"], input[type="url"], input[type="number"], input[type="search"], input[type="password"], input[type="tel"], textarea {
  border: 1px solid #FE5F00;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  color: #666666;
}
input[type="text"]:hover, input[type="email"]:hover, input[type="url"]:hover, input[type="number"]:hover, input[type="search"]:hover, input[type="password"]:hover, input[type="tel"]:hover, textarea:hover {
  border: 1px solid #666666;
}
input[type="text"].inverted, input[type="email"].inverted {
  border: 1px solid white;
  color: white;
  background-color: transparent;
}
input[type="text"].inverted:hover, input[type="email"].inverted:hover {
  border: 1px solid #FE5F00;
  color: #FE5F00;
  background-color: transparent;
}
/****************************************************************************************/
/********************** 			SELECTS			 					*************************************/
/****************************************************************************************/
.js-select__button:hover, .js-select__button:focus {
  color: #FE5F00;
  border: none;
}
/****************************************************************************************/
/********************** 			RADIOS & CHECKBOXES 	*************************************/
/****************************************************************************************/
input[type="radio"] + label:hover svg {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
input[type="radio"] + label:hover svg {
  filter: invert(46%) sepia(30%) saturate(7232%) hue-rotate(0deg) brightness(103%) contrast(106%);
}
.radio + label:before, .checkbox + label:before {
  border: 1px solid #666666;
  background-color: white;
  background-image: unset;
  border-radius: 0px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
}
.radio + label:hover:before, .checkbox + label:hover:before {
  border: 1px solid #FE5F00;
  background-color: #FE5F00;
  background-image: unset;
}
.radio:checked + label:before, .checkbox:checked + label:before {
  border: 1px solid #666666;
  background-color: #666666;
  background-image: unset;
}
.radio + label:before {
  border-radius: 50%;
}
/********** STANDARD DEFAULT INPUTS ****************/
input[type="checkbox"], input[type="radio"] {
  border: 1px solid #FE5F00;
  border-radius: 0px;
  background-color: white;
  appearance: none;
  width: 20px !important;
  height: 20px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
input[type="checkbox"]:hover, input[type="radio"]:hover {
  background-color: #FE5F00;
}
input[type="checkbox"]:checked, input[type="radio"]:checked {
  background-color: #666666;
  border: 1px solid #666666;
}
input[type="radio"] {
  border-radius: 50%;
}
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
/****************************************************					GUI OVERRIDES 				 	  ***************************************************/
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
.title, .gui-block-title, .gui-page-title, .gui-content-title {
  text-transform: capitalize;
}
#gui-wrapper.gui, .gui {
  /***************** BLOG ARTICLE ***************************/
  /********** LINKS & BUTTONS ***************/
  /*** TEXT **/
  /**** GUI FORM *****************************/
}
#gui-wrapper.gui .gui-page-title, .gui .gui-page-title {
  text-transform: capitalize;
}
#gui-wrapper.gui p, .gui p {
  margin-bottom: 12px;
  line-height: 1.2;
}
#gui-wrapper.gui .gui-blog-article header ul, .gui .gui-blog-article header ul {
  margin-left: 0px;
  list-style: none;
  margin-bottom: 8px;
}
#gui-wrapper.gui .gui-blog-article header ul li, .gui .gui-blog-article header ul li {
  margin-bottom: 6px;
  font-style: italic;
  font-size: 1em;
}
#gui-wrapper.gui .gui-blog-article header ul li:last-child(), .gui .gui-blog-article header ul li:last-child() {
  border: none;
}
#gui-wrapper.gui .gui-blog-article header ul .gui-blog-article-comments, .gui .gui-blog-article header ul .gui-blog-article-comments {
  display: none;
}
#gui-wrapper.gui .gui-blog-article .blog-article-summary, .gui .gui-blog-article .blog-article-summary {
  font-size: 1em;
  font-style: italic;
  margin-bottom: 12px;
  padding-bottom: 0px;
}
#gui-wrapper.gui .gui-blog-article ul, .gui .gui-blog-article ul {
  list-style: square;
  margin-left: 18px;
  margin-bottom: 18px;
}
#gui-wrapper.gui .gui-blog-article ul li, .gui .gui-blog-article ul li {
  font-size: 1.2em;
  margin-bottom: 12px;
}
#gui-wrapper.gui a, .gui a {
  color: #FE5F00;
}
#gui-wrapper.gui a:hover, .gui a:hover {
  color: #666666;
}
#gui-wrapper.gui a.gui-button-small, #gui-wrapper.gui a.gui-button-large, .gui a.gui-button-small, .gui a.gui-button-large {
  text-transform: capitalize;
}
#gui-wrapper.gui a.gui-button-small, .gui a.gui-button-small {
  border-radius: 0px;
  border: 1px solid #FE5F00;
  color: #FE5F00;
}
#gui-wrapper.gui a.gui-button-small:hover, .gui a.gui-button-small:hover {
  border: 1px solid #666666;
  color: #666666;
}
#gui-wrapper.gui a.gui-button-large, .gui a.gui-button-large {
  border: 1px solid #FE5F00;
  border-radius: 0px;
  color: white;
  background-color: #FE5F00;
}
#gui-wrapper.gui a.gui-button-large:hover, .gui a.gui-button-large:hover {
  border: 1px solid #666666;
  background-color: #666666;
  color: white;
}
#gui-wrapper.gui .gui-input, .gui .gui-input {
  border: none;
}
#gui-wrapper.gui .gui-form label, .gui .gui-form label {
  font-weight: bold;
}
#gui-wrapper.gui .gui-form .gui-text, .gui .gui-form .gui-text {
  border: none;
}
#gui-wrapper.gui .gui-form .gui-text textarea, .gui .gui-form .gui-text textarea {
  border: 1px solid #FE5F00;
}
#gui-wrapper.gui .gui-form .gui-text textarea:hover, .gui .gui-form .gui-text textarea:hover {
  border: 1px solid #666666;
}
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
/****************************************************					MESSAGES	 						 	  ***************************************************/
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
.messages {
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 24px;
}
.messages ul {
  width: auto;
  max-width: 600px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  text-align: center;
}
.messages ul li {
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
}
.messages ul .close_message {
  position: absolute;
  right: -10px;
  top: -10px;
}
.messages ul.closed {
  opacity: 0;
  pointer-events: none;
}
.messages .success {
  background-color: #d5e9ce;
  border: 1px solid #66af4c;
  color: #66af4c;
  border-radius: 0px;
}
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
/****************************************************					HEADER 		 						 	  ***************************************************/
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
#main_header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  background-color: white;
}
#main_header #preheader, #main_header #event_preheader {
  /*********** PREHEADERS **************************/
  width: 100%;
  background-color: #666666;
  color: white;
  font-size: 0.9em;
  height: 28px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}
#main_header #preheader #preheader_content, #main_header #preheader #event_preheader_content, #main_header #event_preheader #preheader_content, #main_header #event_preheader #event_preheader_content {
  align-items: space-around;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 4px;
  padding-top: 4px;
  padding-right: 8px;
}
#main_header #preheader #preheader_content a, #main_header #preheader #event_preheader_content a, #main_header #event_preheader #preheader_content a, #main_header #event_preheader #event_preheader_content a {
  color: white;
  font-weight: normal;
}
#main_header #preheader #preheader_content a:hover, #main_header #preheader #event_preheader_content a:hover, #main_header #event_preheader #preheader_content a:hover, #main_header #event_preheader #event_preheader_content a:hover {
  color: #FE5F00;
}
#main_header #preheader #preheader_content a:nth-child(2), #main_header #preheader #event_preheader_content a:nth-child(2), #main_header #event_preheader #preheader_content a:nth-child(2), #main_header #event_preheader #event_preheader_content a:nth-child(2) {
  margin-left: 12px;
}
#main_header #event_preheader.christmas {
  background-color: green;
}
#main_header #event_preheader.christmas #event_preheader_content {
  justify-content: center;
}
#main_header #event_preheader.christmas #event_preheader_content a {
  font-weight: bold;
}
#main_header #event_preheader.christmas #event_preheader_content a:hover {
  color: red;
}
#main_header #top_header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 12px;
  padding-right: 12px;
  /************ HAMBURGER ***********************/
  /************* TOP HEADER LINKS **************/
  /*********** NAV MENU **************************/
  /*********** SEARCH FORM ************/
}
#main_header #top_header #logo {
  width: 220px;
  height: auto;
  display: inline-block;
  margin-bottom: -12px;
}
#main_header #top_header #logo a {
  height: auto;
}
#main_header #top_header #logo img {
  width: 100%;
  height: auto;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
#main_header #top_header #hamburger {
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin: 0px;
}
#main_header #top_header #hamburger span {
  width: 40px;
  height: 8px;
  background-color: #FE5F00;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
#main_header #top_header #hamburger span:nth-child(2) {
  top: 12px;
}
#main_header #top_header #hamburger span:nth-child(3) {
  top: 24px;
}
#main_header #top_header #hamburger:hover span {
  background-color: #666666;
}
#main_header #top_header #hamburger.open span {
  background-color: #666666;
}
#main_header #top_header #hamburger.open span:nth-child(2) {
  display: none;
}
#main_header #top_header #hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(15px, 15px);
  top: -6px;
}
#main_header #top_header #hamburger.open span:nth-child(3) {
  top: 16px;
  transform: rotate(-45deg) translate(-10px, -10px);
  left: 14px;
}
#main_header #top_header #hamburger.open:hover span {
  background-color: #FE5F00;
}
#main_header #top_header #top_header_links {
  display: inline-flex;
  position: relative;
}
#main_header #top_header #top_header_links .header_link img {
  height: 35px;
  width: auto;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
#main_header #top_header #top_header_links .header_link:hover {
  color: #666666;
}
#main_header #top_header #top_header_links .header_link:hover img {
  -webkit-filter: saturate(0%);
  -moz-filter: saturate(0%);
  filter: saturate(0%);
}
#main_header #top_header #top_header_links .header_link:nth-child(2) {
  margin-left: 12px;
}
#main_header #top_header #top_header_links .account_header_link {
  position: relative;
}
#main_header #top_header #my_account_options_menu {
  display: none;
  position: absolute;
  background-color: white;
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
}
#main_header #top_header #my_account_options_menu ul {
  list-style: none;
  margin-left: 0px;
  padding-left: 0px;
}
#main_header #top_header #main_header_nav {
  position: absolute;
  z-index: 10;
  top: 140px;
  left: 0;
  padding-top: 12px;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  background-color: white;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
  /****************** BACK BUTTON **************************/
  /******** SUB MENUS *********************/
}
@media screen and (min-width: 370px) {
  #main_header #top_header #main_header_nav {
    top: 100px;
  }
}
#main_header #top_header #main_header_nav .main-header-item {
  display: block;
  width: 100%;
  text-align: center;
  color: #FE5F00;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
#main_header #top_header #main_header_nav .main-header-item a {
  color: inherit;
  font-weight: normal;
}
#main_header #top_header #main_header_nav .main-header-item .main-header-item_border {
  display: block;
  width: 0%;
  height: 1px;
  background-color: #666666;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
#main_header #top_header #main_header_nav .main-header-item:hover .main-header-item_border {
  width: 80%;
  margin-left: -40%;
}
#main_header #top_header #main_header_nav .main-header-item.open .main-header-item_border {
  width: 80%;
  margin-left: -40%;
  background-color: #FE5F00;
}
#main_header #top_header #main_header_nav .main-header-back {
  position: relative;
  text-align: center;
  cursor: pointer;
  padding-top: 8px;
  padding-bottom: 5px;
}
#main_header #top_header #main_header_nav .main-header-back a {
  color: #FE5F00;
  font-weight: normal;
  font-size: 0.9em;
}
#main_header #top_header #main_header_nav .main-header-back img {
  position: absolute;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  width: 10px;
  height: auto;
  transform: rotate(90deg);
  margin-right: 24px;
  left: 25%;
  top: 10px;
}
#main_header #top_header #main_header_nav .main-header-back:hover a {
  color: #666666;
}
#main_header #top_header #main_header_nav .main-header-back:hover img {
  -webkit-filter: brightness(0%);
  filter: brightness(0%);
}
#main_header #top_header #main_header_nav .main-header-sub {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 100px;
  left: 100%;
  z-index: 100;
  -webkit-box-shadow: inset 0px 0px 18px -12px rgba(0, 0, 0, 0.55);
  box-shadow: inset 0px 0px 18px -12px rgba(0, 0, 0, 0.55);
  box-sizing: border-box;
  background-color: white;
  overflow: hidden;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  /**** SUB SUB MENU ***/
}
#main_header #top_header #main_header_nav .main-header-sub .main-header-item {
  font-size: 0.8em;
  padding-top: 4px;
  padding-bottom: 4px;
  color: #666666;
}
#main_header #top_header #main_header_nav .main-header-sub .main-header-item .main-header-item_border {
  width: 60%;
  margin-left: -30%;
  background-color: #EEEEEE;
}
#main_header #top_header #main_header_nav .main-header-sub .main-header-item:hover {
  colour: #FE5F00;
}
#main_header #top_header #main_header_nav .main-header-sub .main-header-item:hover .main-header-item_border {
  background-color: #666666;
}
#main_header #top_header #main_header_nav .main-header-sub .main-header-item.has-children:after {
  content: url("https://cdn.shoplightspeed.com/shops/629346/themes/17702/assets/small-arrow.svg");
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  right: 20%;
  top: 12px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  transform-origin: 5px 14px;
  transform: rotate(270deg);
}
#main_header #top_header #main_header_nav .main-header-sub .main-header-item.has-children:hover:after {
  -webkit-filter: brightness(0%);
  filter: brightness(0%);
}
#main_header #top_header #main_header_nav .main-header-sub .main-header-item.has-children:after {
  width: 10px;
  height: 10px;
  top: 0px;
}
#main_header #top_header #main_header_nav .main-header-sub .main-header-item.open .main-header-item_border {
  width: 60%;
  margin-left: -30%;
  background-color: #666666;
}
#main_header #top_header #main_header_nav .main-header-sub .main-header-sub-item {
  text-align: center;
  padding-top: 6px;
  padding-bottom: 6px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
#main_header #top_header #main_header_nav .main-header-sub .main-header-sub-item a {
  color: #666666;
  font-weight: normal;
}
#main_header #top_header #main_header_nav .main-header-sub .main-header-sub-item a.view-all-link {
  font-weight: bold;
}
#main_header #top_header #main_header_nav .main-header-sub .main-header-sub-item:hover a {
  color: #FE5F00;
}
#main_header #top_header #main_header_nav .main-header-sub.open {
  left: 0px;
}
#main_header #top_header #main_header_nav.open {
  opacity: 1;
  pointer-events: all;
}
#main_header #top_header form {
  width: 100%;
  margin-left: 0px;
  margin-right: 0px;
  display: flex;
}
#main_header #top_header form button {
  margin-left: 12px;
  padding-left: 12px;
  padding-right: 12px;
}
/*********** SCROLLING ************/
#main_header.scrolling {
  background-color: #FE5F00;
}
#main_header.scrolling #preheader {
  height: 0px;
}
#main_header.scrolling #top_header #logo img {
  -webkit-filter: brightness(0) invert(1);
  -moz-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#main_header.scrolling #top_header #logo:hover img {
  -webkit-filter: brightness(0%);
  -moz-filter: brightness(0%);
  filter: brightness(0%);
}
#main_header.scrolling #top_header #hamburger span {
  background-color: white;
}
#main_header.scrolling #top_header #hamburger:hover span {
  background-color: #666666;
}
#main_header.scrolling #top_header #top_header_links a {
  color: white;
}
#main_header.scrolling #top_header #top_header_links a span {
  color: white;
}
#main_header.scrolling #top_header #top_header_links a:hover {
  color: #666666;
}
#main_header.scrolling #top_header #top_header_links a:hover span {
  color: #666666;
}
#main_header.scrolling #top_header form {
  padding-top: 6px;
  padding-bottom: 6px;
}
#main_header.scrolling #top_header form button {
  border: 1px solid white;
  color: white;
}
#main_header.scrolling #top_header form button:hover {
  border: 1px solid #666666;
  color: #666666;
}
#header_spacer {
  width: 100%;
  display: block;
  position: relative;
  height: 195px;
}
@media screen and (min-width: 370px) {
  #header_spacer {
    height: 155px;
  }
}
/****************************************************************/
/*********************** MEDIUM *********************************/
/****************************************************************/
@media screen and (min-width: 768px) {
  /****************************************/
  /******** MEDIUM SCROLLING **************/
  /****************************************/
  #main_header #top_header {
    position: relative;
    justify-content: normal;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 6px;
    padding-left: 12px;
    padding-right: 12px;
    text-align: right;
    /*** NAV MENU ****/
  }
  #main_header #top_header #hamburger, #main_header #top_header .flex_break {
    display: none;
  }
  #main_header #top_header #logo {
    margin-left: 0;
    position: absolute;
    left: 12px;
    top: 12px;
  }
  #main_header #top_header #top_header_links {
    display: inline-flex;
    margin-top: 6px;
    margin-bottom: 6px;
    margin-left: 24px;
  }
  #main_header #top_header #top_header_links .header_link {
    text-align: center;
    margin-left: 12px;
  }
  #main_header #top_header #top_header_links .header_link img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #main_header #top_header #top_header_links .header_link span {
    display: inline-block;
    font-size: 0.8em;
    color: #FE5F00;
  }
  #main_header #top_header #top_header_links a:hover span {
    color: black;
  }
  #main_header #top_header #top_header_links:after {
    clear: both;
    content: "";
    display: block;
  }
  #main_header #top_header #my_account_options_menu {
    display: block;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
    z-index: 1000;
    padding: 12px;
    right: 0;
  }
  #main_header #top_header #my_account_options_menu ul {
    text-align: right;
  }
  #main_header #top_header #my_account_options_menu ul li {
    text-align: right;
    white-space: nowrap;
    font-size: 0.9em;
    line-height: 2;
  }
  #main_header #top_header #my_account_options_menu ul li a {
    color: #FE5F00 !important;
  }
  #main_header #top_header #my_account_options_menu ul li a:hover {
    color: #666666 !important;
  }
  #main_header #top_header #my_account_options_menu.open {
    opacity: 1;
    pointer-events: all;
  }
  #main_header #top_header form {
    width: auto;
  }
  #main_header #top_header #main_header_nav {
    top: 0;
    text-align: center;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    max-height: auto;
    opacity: 1;
    pointer-events: all;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    white-space: nowrap;
    background-color: transparent;
    /**** DROPDOWN SUBMENU *****/
  }
  #main_header #top_header #main_header_nav .main-header-item {
    display: inline-block;
    width: calc(98% / 6);
    padding-bottom: 8px;
  }
  #main_header #top_header #main_header_nav .main-header-item:hover {
    color: #666666;
  }
  #main_header #top_header #main_header_nav #main_header_grocery {
    padding-top: 24px;
    pointer-events: none;
    opacity: 0;
  }
  #main_header #top_header #main_header_nav .main-header-sub {
    padding-left: 12px;
    padding-right: 12px;
    background-color: white;
    position: absolute;
    left: 0;
    width: 100%;
    position: fixed;
    top: 152px;
    -webkit-box-shadow: inset 0px 0px 0px 0px rgba(0, 0, 0, 0);
    box-shadow: inset 0px 0px 0px 0px rgba(0, 0, 0, 0);
    white-space: normal;
    /** SUB SUB MENU **/
  }
  #main_header #top_header #main_header_nav .main-header-sub .main-header-back {
    display: none;
  }
  #main_header #top_header #main_header_nav .main-header-sub .main-header-item {
    float: left;
    height: 65px;
    display: flex;
    align-items: center;
    background-color: white;
    width: calc(100%/6);
    text-align: center;
    margin-bottom: 24px;
    padding-left: 24px;
    padding-right: 32px;
  }
  #main_header #top_header #main_header_nav .main-header-sub .main-header-item a {
    display: block;
    width: 100%;
    text-align: right;
  }
  #main_header #top_header #main_header_nav .main-header-sub .main-header-item .main-header-item_border {
    width: 0%;
    margin-left: 0;
    left: 0px;
  }
  #main_header #top_header #main_header_nav .main-header-sub .main-header-item:hover .main-header-item_border {
    width: 100%;
  }
  #main_header #top_header #main_header_nav .main-header-sub .main-header-sub {
    left: 102%;
    -webkit-box-shadow: -12px 0px 15px -18px rgba(0, 0, 0, 0.55);
    box-shadow: -12px 0px 15px -18px rgba(0, 0, 0, 0.55);
  }
  #main_header #top_header #main_header_nav .main-header-sub .main-header-sub .main-header-sub-item {
    padding-top: 6px;
    padding-bottom: 6px;
    text-align: center;
    font-size: 1em;
    width: 100%;
  }
  #main_header #top_header #main_header_nav .main-header-sub .main-header-sub .main-header-sub-item a {
    text-align: center;
  }
  #main_header #top_header #main_header_nav .main-header-sub .main-header-sub .main-header-back {
    width: 100%;
    display: inline-block;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  #main_header #top_header #main_header_nav .main-header-sub .main-header-sub .main-header-back a {
    font-size: 1em;
    text-align: center;
  }
  #main_header #top_header #main_header_nav .main-header-sub .main-header-sub.open {
    left: 0%;
  }
  #main_header #top_header #main_header_nav .main-header-sub .main-header-item.has-children:after {
    right: 4px;
    top: 30%;
  }
  #main_header #top_header #main_header_nav .main-header-sub .main-header-item:nth-child(8) {
    clear: both;
  }
  #main_header #top_header #main_header_nav #menu-shop.open {
    color: black;
  }
  #main_header #top_header #main_header_nav #main_header_grocery.open {
    opacity: 1;
    pointer-events: all;
  }
  #main_header #top_header:after {
    content: "";
    display: block;
    clear: both;
  }
  #main_header.scrolling #top_header #logo {
    top: 12px;
  }
  #main_header.scrolling #top_header #main_header_nav {
    opacity: 0;
    pointer-events: none;
    max-height: 0px;
    height: auto;
    overflow: hidden;
  }
  #main_header.scrolling #top_header #main_header_nav .top-level-item {
    color: white;
    padding-bottom: 0px;
    padding-top: 0px;
  }
  #main_header.scrolling #top_header #main_header_nav .top-level-item:hover {
    color: #666666;
  }
  #main_header.scrolling #top_header #main_header_nav #main_header_grocery {
    top: 96px;
  }
  #main_header.scrolling:hover #top_header #main_header_nav {
    opacity: 1;
    pointer-events: all;
    max-height: 100px;
  }
}
/*********************************************************/
/****************** LARGE SCREEN *************************/
/*********************************************************/
@media screen and (min-width: 992px) {
  #main_header #top_header {
    width: auto;
    max-width: 1024px;
    padding-bottom: 12px;
  }
  #main_header #top_header #logo {
    top: 24px;
    width: 30%;
  }
  #main_header #top_header form {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  #main_header #top_header #main_header_grocery_container {
    max-width: 1280px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #main_header #top_header #main_header_nav {
    width: 65%;
    padding-top: 0px;
  }
  #main_header.scrolling #top_header {
    padding-bottom: 6px;
  }
  #main_header.scrolling #top_header #logo {
    top: 0px;
    width: 22%;
  }
  #main_header.scrolling:hover #logo {
    top: 24px;
    width: 30%;
  }
}
/*********************************************************/
/****************** XLARGE SCREEN ************************/
/*********************************************************/
@media screen and (min-width: 1200px) {
  #main_header #top_header {
    width: auto;
    max-width: 1280px;
  }
  #main_header #top_header #logo {
    width: 24%;
  }
  #main_header #top_header #main_header_nav {
    width: 75%;
  }
}
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
/****************************************************					HOME PAGE 		 						 	  ***********************************************/
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
/*********************************************************/
/******************		 SLIDER	 		************************/
/*********************************************************/
.hero-slideshow ol.carousel__list {
  height: 400px;
}
@media screen and (min-width: 992px) {
  .hero-slideshow ol.carousel__list {
    height: 600px;
  }
}
.hero-slideshow ol.carousel__list li.carousel__item .hero-slideshow__banner {
  max-height: 100%;
  min-height: auto;
}
.headline {
  width: 100%;
  height: 400px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .headline {
    height: 600px;
  }
}
.headline .slider {
  width: 100%;
  height: 100%;
}
.headline ul {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.headline ul li {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  background-size: cover;
  background-position: center;
}
.headline ul li .headline_link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.headline ul li.active {
  left: 0;
}
.headline .slider_nav {
  position: absolute;
  z-index: 10;
  top: 40%;
  left: 12px;
  cursor: pointer;
}
.headline .slider_nav img {
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  webkit-filter: brightness(100%);
  filter: brightness(100%);
  -webkit-filter: drop-shadow(0px 0px 1px #666);
  filter: drop-shadow(0px 0px 1px #666);
}
.headline .slider-next {
  left: auto;
  right: 12px;
}
.headline .slider-next img {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.headline .slider_nav:hover img {
  webkit-filter: brightness(1000%);
  filter: brightness(1000%);
}
.headline .slider-pagination {
  text-align: center;
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  z-index: 10;
}
.headline .slider-pagination span {
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
  margin-left: 8px;
  margin-right: 8px;
  display: inline-block;
}
.headline .slider-pagination span:hover, .headline .slider-pagination span.active:hover {
  background-color: #FE5F00;
}
.headline .slider-pagination span.active {
  background-color: #666666;
}
/*********************************************************/
/******************		 CALLOUTS 		 *********************/
/*********************************************************/
#home_callouts {
  background-color: #666666;
}
#home_callouts .home_callout {
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
  width: 50%;
  height: 200px;
  float: left;
  color: white;
  text-align: center;
}
#home_callouts .home_callout h2 {
  font-size: 1.2em;
}
#home_callouts .home_callout p {
  font-style: italic;
}
#home_callouts .home_callout span {
  position: absolute;
  height: 1px;
  background-color: white;
  width: 80%;
  left: 10%;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  #home_callouts .home_callout {
    width: 25%;
    height: 220px;
  }
  #home_callouts .home_callout span {
    display: none;
  }
}
#home_callouts .home_callout:after {
  height: 80%;
  top: 10%;
  position: absolute;
  right: 0;
  width: 1px;
  background-color: white;
  content: "";
  display: block;
}
#home_callouts .home_callout:nth-child(2):after {
  display: none;
}
@media screen and (min-width: 768px) {
  #home_callouts .home_callout:nth-child(2):after {
    display: block;
  }
}
#home_callouts .home_callout:last-child:after {
  display: none;
}
#home_callouts:after {
  clear: both;
  display: block;
  content: "";
}
/*****************************************************************************************************************************/
/*****************************************************************************************************************************/
/*********************************											HOME PAGE REVIEWS			 					 			 *******************************/
/*****************************************************************************************************************************/
/*****************************************************************************************************************************/
.reviews {
  background-color: #FE5F00;
  color: white;
  padding-top: 36px;
  padding-bottom: 36px;
}
.reviews .review_box {
  padding: 12px;
}
.reviews .review_box .review_content {
  font-style: italic;
  font-size: 0.9em;
  line-height: 1.2;
}
.reviews .review_box .review_author {
  font-weight: bold;
  padding-top: 6px;
}
.reviews .btn.inverted:hover {
  border-color: #666666;
  color: #666666;
}
.review_stars {
  margin-bottom: 8px;
  display: block;
}
.review_stars img {
  width: auto;
  height: 25px;
}
.reviews_after {
  text-align: center;
}
.reviews_after a {
  display: inline-block;
}
/*****************************************************************************************************************************/
/*****************************************************************************************************************************/
/*********************************														SEARCH PAGE 					 			 *******************************/
/*****************************************************************************************************************************/
/*****************************************************************************************************************************/
.sidebar__panel .accordion__header:hover, .sidebar__panel .accordian__header:focus {
  border: none;
  color: #FE5F00;
}
/*********************************************************/
/******************		 PRICE SLIDER 		******************/
/*********************************************************/
/*****************************************************************************************************************************/
/*****************************************************************************************************************************/
/*********************************														PRODUCT RESULTS 					 			 *******************************/
/*****************************************************************************************************************************/
/*****************************************************************************************************************************/
.prod-card {
  position: relative;
}
.prod-card .prod-card__badge {
  background-color: #FE5F00;
}
.prod-card .prod-card__img-wrapper .prod-card__img-link figure {
  background-color: transparent;
}
.prod-card .prod-card__img-link:hover img:nth-child(1) {
  opacity: 1;
}
.prod-card .btn.btn--icon.prod-card__wishlist {
  display: block;
  width: 20px;
  height: 20px;
  border: none;
  opacity: 0;
  pointer-events: none;
}
.prod-card .btn.btn--icon.prod-card__wishlist svg path {
  stroke: #FE5F00;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.prod-card .btn.btn--icon.prod-card__wishlist:hover svg path {
  fill: #FE5F00;
}
.prod-card .product_card_info .product-card__brand {
  font-weight: bold;
  font-size: 0.6em;
  color: #666666;
}
.prod-card .product_card_info .product-card__brand:hover {
  color: #FE5F00;
}
.prod-card .product_card_info .product-card__title {
  font-weight: bold;
  font-size: 1.3em;
  color: #FE5F00;
}
.prod-card .product_card_info .product-card__title:hover {
  color: #666666;
  text-decoration: none;
}
.prod-card .product_card_info .product__card__lower {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .prod-card .product_card_info .product__card__lower {
    flex-direction: row;
  }
}
.prod-card .product_card_info .prod-card__action-button {
  opacity: 1;
  display: inline-block;
  z-index: 100;
  width: auto;
  position: relative;
  bottom: 4px;
  left: 4px;
  visibility: visible;
}
.prod-card .product_card_info .prod-card__action-button.out_of_stock {
  color: #666666;
  border: 2px solid #666666;
}
.prod-card .product_card_price .prod-card__price.on_sale {
  font-weight: bold;
}
.prod-card .hover_border {
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  top: 0;
  background-color: #FE5F00;
  opacity: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.prod-card .hover_border_2 {
  right: 0;
  left: auto;
  width: 2px;
}
.prod-card .hover_border_3 {
  right: 0;
  bottom: 0;
  left: auto;
  top: auto;
}
.prod-card .hover_border_4 {
  bottom: 0;
  top: auto;
  width: 2px;
  height: 0%;
}
.prod-card:hover .btn.btn--icon.prod-card__wishlist {
  opacity: 1;
  pointer-events: all;
}
.prod-card:hover .hover_border {
  opacity: 1;
}
.prod-card:hover .hover_border {
  width: 100%;
}
.prod-card:hover .hover_border_2, .prod-card:hover .hover_border_4 {
  width: 2px;
  height: 100%;
}
/*******************************************/
/**********		LIST MODE ********************/
/*******************************************/
.prod-card.grid {
  border-bottom: 1px solid #666666;
}
.prod-card.grid .prod-card__action-button {
  visibility: visible;
  opacity: 1;
  display: block;
  width: auto;
  position: absolute;
  bottom: 28px;
  right: 6px;
  max-width: 200px;
  left: auto;
}
.prod-card.grid .prod-card__action-button.out_of_stock {
  color: #666666;
  border: 2px solid #666666;
}
.prod-card.grid:hover {
  border-bottom: 1px solid #FE5F00;
}
/*****************************************************************************************************************************/
/*****************************************************************************************************************************/
/*********************************											PRODUCT CAROUSEL			 					 			 *******************************/
/*****************************************************************************************************************************/
/*****************************************************************************************************************************/
.carousel__controls .carousel__control {
  width: 36px;
  height: 36px;
  background-color: white;
  border: 2px solid #FE5F00;
  color: #FE5F00;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.carousel__controls .carousel__control:hover {
  border: 2px solid #666666;
  color: #666666;
  transform: translate(-50%, -50%) scale(0.9);
}
/*****************************************************************************************************************************/
/*****************************************************************************************************************************/
/*********************************											CATEGORY CARD					 					 			 *******************************/
/*****************************************************************************************************************************/
/*****************************************************************************************************************************/
.category-card {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  background-color: transparent;
}
.category-card figure {
  background-color: transparent;
}
.category-card figure img {
  border-radius: 50%;
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.65);
  width: 90%;
  height: 90%;
  margin-left: 5%;
  margin-bottom: 5%;
  margin-top: 5%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
.category-card a {
  margin-top: 12px;
  color: #FE5F00;
}
.category-card a:hover {
  color: #666666;
  text-decoration: none;
}
.category-card .category-card__title {
  position: relative;
}
.category-card .category-card__count {
  position: absolute;
  right: 4px;
  font-size: 0.8em;
  color: #999999;
  font-style: italic;
}
.category-card:hover figure img {
  width: 95%;
  height: 95%;
  margin-left: 2.5%;
  margin-bottom: 2.5%;
  margin-top: 2.5%;
}
.category-card:hover a {
  color: #666666;
}
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
/****************************************************					PRODUCT SINGLE PAGE 	 	  ***************************************************/
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
#product_single__container {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 992px) {
  #product_single__container {
    flex-direction: row;
  }
}
#product_single__checkout {
  border: 1px solid #FE5F00;
  padding: 12px;
}
#product_single__checkout #product_configure_variants {
  width: 100%;
}
#product_single__checkout #add_to_cart_area .product_stock {
  font-size: 0.9em;
  font-style: italic;
}
#product_single__checkout #add_to_cart_area #add_to_cart_options {
  align-items: center;
}
#product_single__checkout #add_to_cart_area #add_to_cart_options #add_to_cart_qty {
  margin-left: 16px;
}
#product_single__checkout #add_to_cart_area #add_to_cart_options #add_to_cart_qty #qtyInput .number-input__btn {
  border: 1px solid white;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
}
#product_single__checkout #add_to_cart_area #add_to_cart_options #add_to_cart_commit {
  margin-left: 16px;
}
@media screen and (min-width: 992px) {
  #product_single_details {
    min-height: 600px;
  }
}
#product_single__image {
  margin-left: 0px;
  min-height: 320px;
  margin-bottom: 100px;
  position: relative;
}
#product_single__image ul.slideshow__content {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
}
@media screen and (min-width: 992px) {
  #product_single__image ul.slideshow__content {
    max-width: 100%;
  }
}
#product_single__image ul.slideshow__content .img-mag {
  text-align: center;
  background-color: white;
}
#product_single__image ul.slideshow__content .img-mag img.img-mag__asset {
  position: relative;
  display: inline;
  width: auto;
  max-width: 100%;
  height: auto;
}
#product_single__image .thumbslide__nav-wrapper {
  position: absolute;
  bottom: -110px;
  margin-bottom: 24px;
  margin-left: 12px;
}
@media screen and (min-width: 992px) {
  #product_single__image .thumbslide__nav-wrapper {
    bottom: auto;
    top: 560px;
  }
}
#product_single__image .thumbslide__nav-wrapper .thumbslide__nav-item {
  cursor: pointer;
  background-color: white;
}
#product_single__image.one_image {
  margin-bottom: 0px;
}
.sharebar .sharebar__btn svg.icon {
  fill: grey;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  filter: invert(46%) sepia(30%) saturate(7232%) hue-rotate(0deg) brightness(103%) contrast(106%);
}
.sharebar .sharebar__btn svg.icon path, .sharebar .sharebar__btn svg.icon rect, .sharebar .sharebar__btn svg.icon circle {
  fill: #666666;
}
.sharebar .sharebar__btn:hover svg {
  filter: none;
}
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
/****************************************************					CONTENT PAGE					 	  ***************************************************/
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
/****************************************************					CART & CHECKOUT				 	  ***************************************************/
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
.gui .gui-div-cart-related .gui-block-title {
  text-transform: capitalize;
}
.gui .gui-div-cart-related ul.gui-products li .gui-products-title {
  max-width: 80%;
  white-space: normal;
}
.gui .gui-div-cart-related ul.gui-products li .gui-products-option {
  top: auto;
  bottom: 24px;
  right: 18px;
}
.gui-compare-row.gui-compare-row-article-number, .gui-compare-row.gui-compare-row-size, .gui-compare-row.gui-compare-row-description, .gui-compare-row.gui-compare-row-price {
  display: none;
}
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
/****************************************************					CONTACT US						 	  ***************************************************/
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
#gui-wrapper .gui-div-faq-questions {
  width: 100%;
  float: none;
  clear: both;
}
#gui-wrapper .gui-div-faq-right {
  width: 100%;
  float: none;
  clear: both;
}
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
/****************************************************					ACCOUNT PAGE					 	  ***************************************************/
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
.gui.gui-account .gui-account-links .gui-block-linklist li a {
  text-transform: capitalize;
  color: #FE5F00;
}
.gui.gui-account .gui-account-links .gui-block-linklist li a:hover {
  color: #666666;
}
.gui.gui-account .gui-account-links .gui-block-linklist li.gui-active a {
  color: #666666;
}
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
/****************************************************					TEXT PAGE 		 						 	  ***************************************************/
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
.text-page__content img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 600px;
}
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
/****************************************************					FOOTER 		 						 	  ***************************************************/
/******************************************************************************************************************************************/
/******************************************************************************************************************************************/
.main-footer {
  background-color: #666666;
  color: white;
}
.main-footer a {
  font-weight: bold;
  color: white;
}
.main-footer a svg {
  filter: none;
}
.main-footer a:hover {
  color: #FE5F00;
  text-decoration: none;
}
.main-footer .main-footer__social-btn {
  margin-top: 6px;
  margin-bottom: 18px;
}
.main-footer .main-footer__social-btn svg {
  width: 30px;
  height: 30px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  transition: 0.5s;
  fill: white;
}
.main-footer .main-footer__social-btn:hover svg {
  fill: #FE5F00;
}
