:root {
  /*These define colors specific to this brand*/
  --spinlife-orange: #D46027;
  --spinlife-hover-orange: #F88146;
  --spinlife-purple: #532279;
  --spinlife-dark-purple: #361754;
  --spinlife-cream: #F6F5F0;
  --spinlife-background: #E1E2E3;
  --error-text-danger: #DC3545;
  --error-color: #721C24;
  --error-bg-color: #F8D7DA;
  --error-border-color: #F5C6CB;
  --error-border-dark-color: #860915;

  /*These rules are what gets used in other css files*/
  --primary-color: var(--spinlife-orange);
  --secondary-color: var(--spinlife-purple);
  --link-color: var(--spinlife-orange);
  --link-hover-color: var(--spinlife-hover-orange);
  --alt-color-scheme: var(--spinlife-purple);
  --alt-light-color-scheme: var(--spinlife-orange);
  --dark-color-scheme: var(--spinlife-dark-purple);
  --alt-dark-color-scheme: var(--spinlife-dark-purple);
  --primary-font: "Montserrat", "Montserrat-fallback";
  --primary-font-color: #101010;
  --secondary-font: "Montserrat", "Montserrat-fallback";
  --secondary-font-weight: 600;
  --secondary-font-color: #4A4A4A;
  --alt-font-color: #4A4A4A;
  --background-color: var(--spinlife-background);
  --alt-background-color: var(--spinlife-cream);
  --light-background-color: #FFF;
  --alt-light-background-color: var(--spinlife-cream);
  --standard-border: 1px solid var(--background-color);
  --alt-border: 1px solid #DDD;
  --dark-border: 1px solid #C3C3C3;
}

@font-face {
  font-family: "Montserrat-fallback";
  size-adjust: 113.89999999999998%;
  ascent-override: 85%;
  src: local("Arial");
}

body {
  margin: 0;
  font-family: "Montserrat", "Montserrat-fallback";
  font-size: 14px;
}

.btn,
input.btn {
  font-family: "Montserrat", "Montserrat-fallback";
}

.background-color-wrapper {
  background-color: #F6F5F0;
}

a:hover {
  cursor: pointer;
}

.btn {
  height: 40px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  display: table;
  padding: 0 30px;
  cursor: pointer;
}

.btn-white {
  color: #d46027 !important;
  background-color: #FFF;
  transition: .5s all;
  border: 1px solid #d46027;
  height: 38px;
  line-height: 38px;
}

.btn-orange {
  color: #fff !important;
  background-color: #d46027;
  transition: .5s all;
  border: none;
}

.btn-orange:hover {
  background-color: #f88146;
}

.btn[disabled] {
  background-color: #aaa !important;
  cursor: not-allowed;
}

select:focus:not(.focus-visible) {
  outline: 0;
}

input[type="email"],
input[type="number"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: unset;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  padding: 10px 35px 10px 15px;
  line-height: 20px;
  height: 20px;
  border: 1px solid #e1e2e3;
  border-radius: 10px;
  background-color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

input:matches([type="button"], [type="submit"], [type="reset"]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type="email"][disabled],
input[type="number"][disabled],
:not(#mobile_search_form)>input[type="search"][disabled]:not(#search),
input[type="text"][disabled],
input[type="tel"][disabled],
input[type="url"][disabled],
input[type="password"][disabled],
textarea[disabled],
select[disabled],
input[type="email"][readonly],
input[type="number"][readonly],
:not(#mobile_search_form)>input[type="search"][readonly]:not(#search),
input[type="text"][readonly],
input[type="tel"][readonly],
input[type="url"][readonly],
input[type="password"][readonly],
textarea[readonly],
select[readonly] {
  background-color: #efefef;
}

textarea {
  overflow-y: auto;
  text-overflow: unset;
  white-space: normal;
}

@media screen and (max-width: 992px) {

  .footer-main .footer-container,
  .header-container,
  .products-container {
    max-width: 500px;
  }
}

a {
  color: #532279;
}

a[data-featherlight] {
  text-decoration: underline;
}

.loading-swirly {
  width: 32px;
  height: 32px;
  background: transparent url(/images/loading.gif) no-repeat;
}

@media screen and (min-width: 993px) {
  .main-body {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* fix for featherlight due to accessebi */
.featherlight {
  background: rgba(0, 0, 0, .8) !important;
}

.featherlight.responsive-featherlight .featherlight-content img.featherlight-inner {
  width: 100%;
  height: auto;
  max-width: 100%;
}