/* 20260803215105 - v2 */
.gui,
.gui-block-linklist li a {
  color: #666666;
}

.gui-page-title,
.gui a.gui-bold,
.gui-block-subtitle,
.gui-table thead tr th,
.gui ul.gui-products li .gui-products-title a,
.gui-form label,
.gui-block-title.gui-dark strong,
.gui-block-title.gui-dark strong a,
.gui-content-subtitle {
  color: #000000;
}

.gui-block-inner strong {
  color: #848484;
}

.gui a {
  color: #0a8de9;
}

.gui-input.gui-focus,
.gui-text.gui-focus,
.gui-select.gui-focus {
  border-color: #0a8de9;
  box-shadow: 0 0 2px #0a8de9;
}

.gui-select.gui-focus .gui-handle {
  border-color: #0a8de9;
}

.gui-block,
.gui-block-title,
.gui-buttons.gui-border,
.gui-block-inner,
.gui-image {
  border-color: #8d8d8d;
}

.gui-block-title {
  color: #333333;
  background-color: #ffffff;
}

.gui-content-title {
  color: #333333;
}

.gui-form .gui-field .gui-description span {
  color: #666666;
}

.gui-block-inner {
  background-color: #f4f4f4;
}

.gui-block-option {
  border-color: #ededed;
  background-color: #f9f9f9;
}

.gui-block-option-block {
  border-color: #ededed;
}

.gui-block-title strong {
  color: #333333;
}

.gui-line,
.gui-cart-sum .gui-line {
  background-color: #cbcbcb;
}

.gui ul.gui-products li {
  border-color: #dcdcdc;
}

.gui-block-subcontent,
.gui-content-subtitle {
  border-color: #dcdcdc;
}

.gui-faq,
.gui-login,
.gui-password,
.gui-register,
.gui-review,
.gui-sitemap,
.gui-block-linklist li,
.gui-table {
  border-color: #dcdcdc;
}

.gui-block-content .gui-table {
  border-color: #ededed;
}

.gui-table thead tr th {
  border-color: #cbcbcb;
  background-color: #f9f9f9;
}

.gui-table tbody tr td {
  border-color: #ededed;
}

.gui a.gui-button-large,
.gui a.gui-button-small {
  border-color: #8d8d8d;
  color: #000000;
  background-color: #ffffff;
}

.gui a.gui-button-large.gui-button-action,
.gui a.gui-button-small.gui-button-action {
  border-color: #8d8d8d;
  color: #000000;
  background-color: #ffffff;
}

.gui a.gui-button-large:active,
.gui a.gui-button-small:active {
  background-color: #cccccc;
  border-color: #707070;
}

.gui a.gui-button-large.gui-button-action:active,
.gui a.gui-button-small.gui-button-action:active {
  background-color: #cccccc;
  border-color: #707070;
}

.gui-input,
.gui-text,
.gui-select,
.gui-number {
  border-color: #8d8d8d;
  background-color: #ffffff;
}

.gui-select .gui-handle,
.gui-number .gui-handle {
  border-color: #8d8d8d;
}

.gui-number .gui-handle a {
  background-color: #ffffff;
}

.gui-input input,
.gui-number input,
.gui-text textarea,
.gui-select .gui-value {
  color: #000000;
}

.gui-progressbar {
  background-color: #76c61b;
}

/* custom */
ul.nav a.nav-link[href*="/sales"] {
    color: #ff0000!important;
}

/* cart notify color */
.counter.counter--cart.margin-left-xxs {
	background-color: #EE9344;
}

.pre-header {
	height: 35px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.mega-nav {
	height: 50px;
}

@media only screen and (min-width: 1023px) {
  .mega-nav {
    height: 70px;
	}
}

/* landing image */
.hero {
	height: calc(100vh - 85px);
  background-position-y: top;
}

@media only screen and (min-width: 1023px) {
  .hero {
    height: calc(100vh - 105px);
	}
}

/* landing content */
a.text-white:hover {
	scale: 110%;
}

/* used for landing socials icons*/
.text-white {
	color: white;
}

@media only screen and (min-width: 1023px) {
  .text-white {
    margin-left: 40px;
	}
}

/* div element for socials*/
#socialsRow {
    z-index: 1;
    position: absolute;
  	bottom: 0px;
  	width: 100%;
  	display: flex;
  	flex-direction: row;
  	justify-content: space-evenly;
  	align-items: center;
  	padding-bottom: 20px;
	}

@media only screen and (min-width: 1023px) {
  #socialsRow {
    z-index: 1;
    position: absolute;
  	bottom: 0px;
  	width: 100%;
  	display: flex;
  	flex-direction: row;
  	justify-content: end;
  	align-items: end;
    padding-right: 20px;
    padding-bottom: 20px;
	}
}

.flex-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.flex-row {
	width: 100%;
  height: 80px;
	display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

/* landing animation */
.fade-in-element {
  opacity: 0; 
  animation: fadeInAnimation 2s ease-in forwards;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0; 
  }
  to {
    opacity: 1;
  }
} 

/* large text customization */
.custom-text-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* theme text modifier */
.sygh {
	font-size: 22px;
}

/* used for accessing images, but never displayed */
.hero-carousel {
  display: none;
}

/* socials */
/* hide original "follow us" socials */
.section-control.instagram .container.max-width-xl > div:first-child {
    display: none;
  }

/* text-beige */
.text-beige {
	color: #ECBA9B;
}

a.text-beige:hover {
	scale: 110%;
}

/* email newsletter */
p.text-xs {
	display: none;
}

div.socials__grid.container.max-width-xl {
	display: flex;
  flex-direction: column;
}

div.socials__grid-item {
	display: flex;
  flex-direction: row;
  justify-content: center;
}

form.socials__form {
  margin: 0px 0px 0px 0px;
}

h2.socials__title {
	text-align: center;
  font-size: 50px;
}

/* footer */
footer {
  position:relative;
	height: 100vh;
  width: 100%;
 	background-image: url('https://cdn.webshopapp.com/shops/220634/themes/171512/v/2166520/assets/hero-slideshow-1-background.jpg');
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
}

footer div {
 	color: white;
	font-size: 22px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

@media only screen and (min-width: 1023px) {
    footer div {
    color: white;
    font-size: 22px;
    display: flex;
    flex-direction: column-reverse;
    align-items: unset;
	}
}

.payments-footer {
	text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 500px;
}

@media only screen and (min-width: 1023px) {
    .payments-footer {
    align-self: center;
	}
}

#info {
	display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 1023px) {
  #info {
    position: relative;
    top: 135px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
	}
}

#info1 a {
	color: white;
}

#info2 a {
	color: white;
}

#info1 {
  margin-bottom: 20px;
  text-align: center;
  position: absolute;
  bottom: 300px;
}

@media only screen and (min-width: 1023px) {
  #info1 {
    position: relative;
    bottom: 0px;
    margin-left: 10px;
    text-align: start;
	}
}

#info2 {
  margin-bottom: 20px;
  text-align: center;
  position: absolute;
  bottom: 200px;
}

@media only screen and (min-width: 1023px) {
  #info2 {
    position: relative;
    bottom: 0px;
    margin-right: 10px;
    text-align: end;
	}
}

.footer__colophon {
	display: flex;
  flex-direction: column;
  padding-top: 0px;
}

.footer__socials {
	display: none;
}

.footer__body {
  display: none;
}

.footer__print {
	justify-content: space-evenly;
}

.payments-footer {
	opacity: 100%;
}

.dropdown.dropdown--language {
	margin-top: 20px;
}

/* hides duplicate display of category */
.text-component.text-md {
	display: none;
}

/* brand logo's */
.customer-logos__logo {
	scale: 175%;
}

/* sales label color */
.prod-card__badge.prod-card__badge--sale {
	background-color: #FFFFFFDD;
  color: #121212;
  border-style: solid;
  border-color: #121212;
  font-weight: bold;
  text-transform: uppercase;
}

/* newsletter email design */
.socials__form.margin-bottom-sm {
	width: 100%;
  height: 60px;
}

.socials__input-wrapper {
	height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-control.form-control--transparent {
	border-style: solid;
  border-width: 3px;
  border-radius: 100px;
  border-color: #EE9344;
  width: 100%;
  height: 100%;
  padding: 0px 10px;
  margin: 0px;
}

.socials__input-wrapper button.btn {
  position: absolute;
  margin: 0px 0px 0px 0px !important;
  padding: 0px;
  top: 0px;
  bottom: 0px;
	right: 10px;
}

/* shopping cart drawer */
footer.padding-x-md.padding-y-sm.flex-shrink-0 {
    height: 0px;
    background-image: none;
}

.btn.btn--arrow.btn--lg.margin-bottom-xs {
	color: #121212;
}

.dr-cart__product-additional-costs {
	display: none;
}

/* hide enter coupon */
#accordion-header-1 {
	display: none;
}

/* styling accordion items */
.accordion__item {
	border: none;
}

/* hide toptext and breadcrumb cadeaubon */
.gui-locations-title {
	display: none;
}

.gui-align-center.gui-small.breadcrumbs {
	display: none;
}

/* adjust display cadeaubon*/
.design-select {
  	background-size: contain !important;
 		background-repeat: no-repeat;
}

.hide {
	display: hidden;
}
