/**
what controls what:
li -> whole progress bar item element
li:before -> circle with number
.pb-label -> item label
li:first-child:after -> line between progress bar circles
*/
.pb-container {
  width: 100%;
}
@media (min-width: 992px) {
  .pb-container {
    margin: 30px auto;
  }
}
.progressbar {
  counter-reset: step;
  padding-left: 0;
}
@media (min-width: 992px) {
  .progressbar {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.progressbar li {
  float: left;
  width: 25%;
  text-align: center;
  list-style-type: none;
  font-size: 12px;
  position: relative;
  color: #7d7d7d;
  line-height: 30px;
}
@media (min-width: 992px) {
  .progressbar li .pb-label {
    text-transform: uppercase;
  }
}
.progressbar li:before {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 auto 0px auto;
  content: counter(step);
  counter-increment: step;
  border: 2px solid #7d7d7d;
  display: block;
  text-align: center;
  border-radius: 50%;
  background-color: white;
}
.progressbar li:after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  background-color: #7d7d7d;
  top: 20px;
  left: -50%;
  z-index: -1;
}
@media (min-width: 992px) {
  .progressbar li:after {
    top: 15px;
  }
}
.progressbar li:first-child:after {
  content: none;
  float: left;
  padding-left: 10px;
}
.progressbar li.active {
  color: #89C136;
}
.progressbar li.active:before {
  border-color: #89C136;
}
.progressbar li.active + li:after {
  background-color: #89C136;
}
@media (min-width: 992px) {
  .progressbar li:before {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

body {
  position: relative;
}
.inactive-msg-container {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  height: 100vh;
  padding: 20px;
  justify-content: center;
  text-align: center;
}
#backdrop {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #95a5a6;
  opacity: 0.4;
  display: none;
}
.action {
  cursor: pointer;
}
.shop-container {
  background-color: white;
  position: relative;
  z-index: 100;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .shop-container {
    width: 600px;
    box-shadow: 0 0 24px 0 #ecf0f1;
  }
}
@media (min-width: 992px) {
  .shop-container {
    margin-top: 50px;
    width: 980px;
  }
}
.shop-container .header {
  border-bottom: thin solid #ecf0f1;
}
.shop-container .header .header-top {
  display: block;
}
.shop-container .header .header-top .language-selection .lang {
  user-select: none;
  font-size: 13px;
  display: inline-block;
  padding: 2px 4px;
  text-transform: uppercase;
  color: #b4bcc2;
  border: thin solid #ecf0f1;
}
.shop-container .header .header-top .language-selection .lang.selected {
  color: #A636C1;
  border-color: #A636C1;
}
.shop-container .header .header-top .cart {
  text-align: right;
  min-width: 300px;
}
@media (max-width: 767px) {
  .shop-container .header .header-top {
    background-color: #A636C1;
    padding: 5px;
  }
  .shop-container .header .header-top .language-selection .lang {
    color: #c26dd6;
    border-color: #c26dd6;
  }
  .shop-container .header .header-top .language-selection .lang.selected {
    color: white;
    border-color: white;
  }
  .shop-container .header .header-top .cart {
    color: white;
  }
}
@media (max-width: 991px) {
  .shop-container .header .header-top {
    padding: 10px;
  }
}
.shop-container .header .padding {
  clear: both;
}
@media (min-width: 768px) {
  .shop-container .header {
    margin-top: 15px;
    padding-top: 10px;
  }
}
@media (min-width: 992px) {
  .shop-container .header {
    margin: 15px;
    padding: 15px;
  }
  .shop-container .header .padding {
    clear: none;
  }
}
.shop-container .main-content {
  padding: 15px;
  overflow-y: auto;
  width: 100%;
  margin-bottom: 90px;
}
@media (min-width: 768px) {
  .shop-container .main-content {
    height: 400px;
  }
}
@media (min-width: 992px) {
  .shop-container .main-content {
    margin-top: 50px;
  }
}
.shop-container .footer {
  padding: 15px;
  border-top: thin solid #ecf0f1;
}
.shop-container .footer .terms-container a {
  color: #A636C1;
  text-decoration: none;
}
@media (max-width: 991px) {
  .shop-container .footer .terms-container {
    position: absolute;
    bottom: 5px;
  }
}
@media (min-width: 992px) {
  .shop-container .footer {
    margin: 15px;
  }
}
.shop-container .footer .next-button {
  float: right;
}
@media (min-width: 992px) {
  .shop-container .footer .next-button {
    margin-top: -70px;
  }
}
.shop-container .footer .prev-button {
  float: left;
}
@media (min-width: 992px) {
  .shop-container .footer .prev-button {
    margin-top: -70px;
  }
}
.shop-container .footer .logo img {
  max-width: 125px;
  max-height: 30px;
}
@media (max-width: 767px) {
  .shop-container .footer {
    background-color: white;
  }
}
.shop-container .cookies-required-warning {
  padding: 50px;
  background: #CBA74D;
  color: white;
  margin: 10px;
  margin-top: 20px;
  text-align: center;
}
.shop-container .cookies-required-warning .title {
  text-transform: uppercase;
  color: white;
}
@media (min-width: 768px) {
  .shop-container .cookies-required-warning {
    margin: 100px;
  }
}
.form-group.form-group-slim {
  margin-bottom: 2px;
}
.product {
  padding: 15px;
  border-bottom: thin solid #ecf0f1;
  margin-bottom: 5px;
}
.product .product-info .product-name {
  font-weight: 500;
}
/* enable absolute positioning */
.inner-addon {
  position: relative;
}
/* style icon */
.inner-addon .fa {
  position: absolute;
  padding: 10px;
  margin-top: 3px;
  pointer-events: none;
}
/* align icon */
.left-addon .fa {
  left: 0px;
}
.right-addon .fa {
  right: 0px;
}
/* add padding  */
.left-addon input {
  padding-left: 30px;
}
.right-addon input {
  padding-right: 30px;
}
body.embed {
  background-color: transparent;
}
body.embed .shop-container {
  margin-top: 0;
}
@media (max-width: 767px) {
  body.embed {
    background-color: white;
  }
}

#terms-backdrop {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1049;
}
.terms {
  display: block;
  opacity: 0;
  background: white;
  position: fixed;
  z-index: 1050;
  top: 1250px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 0 24px 0 #ecf0f1;
}
.terms h1,
.terms h2,
.terms h3,
.terms h4,
.terms h5,
.terms h6 {
  color: black;
}
.terms .text {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  color: black;
  overflow: auto;
}
@media (min-width: 768px) {
  .terms {
    width: 500px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .terms {
    width: 800px;
    padding-top: 30px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
.terms.visible {
  top: 65px;
  bottom: 0px;
  opacity: 1;
}

label.control-label.col-xs-4 {
  padding-right: 0px;
}

.cart-summary-page {
  position: relative;
  padding: 0 40px 0 40px;
}
@media all and (max-width: 768px) {
  .cart-summary-page {
    margin-bottom: 40px;
  }
}
@media all and (max-width: 480px) {
  .cart-summary-page {
    padding: 0;
  }
}
.cart-summary-page .cart-summary-page-title {
  margin-left: 20px;
  margin-bottom: 40px;
}
.cart-summary-page .cart-summary-list-item {
  max-width: 100%;
  padding-bottom: 15px;
}
.cart-summary-page .cart-summary-list-item .cart-summary-list-item-price {
  margin-right: 15px;
  margin-bottom: 5px;
}
.cart-summary-page .cart-summary-list-item .card-validation-error-wrapper {
  width: 100%;
}
.cart-summary-page .cart-summary-list-item .card-validation-error {
  cursor: action;
  font-size: small;
  font-weight: bold;
  padding: 2.5px 10px;
  border-radius: 2px;
  color: #ffffff;
  display: table;
  margin-left: auto;
}
.cart-summary-page .cart-summary-list-item .card-validation-error i {
  margin-right: 5px;
}
.cart-summary-page .cart-summary-list-item div[class^="col-"] {
  padding: 0 !important;
}
.cart-summary-page .cart-summary-list-item .cart-summary-list-item-product {
  border-bottom: 1px solid #b4bcc2;
  margin: 0 0 0 20px;
  padding-bottom: 10px;
}
.cart-summary-page .cart-summary-list-item .cart-summary-list-item-product.has-error {
  border-bottom: 2px solid #CE2F68;
}
.cart-summary-page .cart-summary-list-item .cart-summary-list-item-image {
  text-align: center;
}
.cart-summary-page .cart-summary-list-item .cart-summary-list-item-image img {
  min-height: 30px;
}
@media all and (max-width: 768px) {
  .cart-summary-page .cart-summary-list-item .cart-summary-list-item-image.col-xs-2 {
    padding: 0 !important;
  }
}
.cart-summary-page .cart-summary-list-item .cart-summary-list-item-details {
  padding: 0 0 0 15px;
}
.cart-summary-page .cart-summary-list-item-actions {
  display: inline-block;
  margin-bottom: 2.5px;
}
.cart-summary-page .cart-summary-list-item-actions a {
  margin-right: 10px;
}
.cart-summary-page .cart-summary-list-item-quantity-label {
  display: block;
  text-align: center;
  margin-left: 15px;
}
.cart-summary-page .cart-summary-list-item-quantity {
  padding-right: 0;
  text-align: right;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
@media all and (max-width: 767px) {
  .cart-summary-page .cart-summary-list-item-quantity {
    padding: 0;
  }
}
@media all and (max-width: 375px) {
  .cart-summary-page .cart-summary-list-item-quantity input[name="productQuantity"] {
    display: block;
    margin-left: 38px;
  }
  .cart-summary-page .cart-summary-list-item-quantity .decrement-btn,
  .cart-summary-page .cart-summary-list-item-quantity .increment-btn {
    display: block;
  }
}
.cart-summary-page .cart-summary-list-item-quantity input::-webkit-outer-spin-button,
.cart-summary-page .cart-summary-list-item-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-summary-page .cart-summary-list-item-quantity input[type=number] {
  -moz-appearance: textfield;
}
.cart-summary-page .cart-summary-list-item-quantity .form-control {
  padding: 5px;
  display: inline-block;
  width: 38px;
  height: 23px;
  text-align: center;
}
@media all and (max-width: 768px) {
  .cart-summary-page .cart-summary-list-item-quantity .form-control {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.cart-summary-page .cart-summary-list-item-quantity .decrement-btn {
  margin-right: 10px;
}
@media all and (max-width: 767px) {
  .cart-summary-page .cart-summary-list-item-quantity .decrement-btn {
    margin-right: 2.5px;
  }
}
.cart-summary-page .cart-summary-list-item-quantity .increment-btn {
  margin-left: 5px;
}
@media all and (max-width: 768px) {
  .cart-summary-page .cart-summary-list-item-quantity .increment-btn {
    margin-right: 10px;
  }
}
@media all and (max-width: 767px) {
  .cart-summary-page .cart-summary-list-item-quantity .increment-btn {
    margin-right: 0;
    margin-left: 2.5px;
  }
}
.cart-summary-page .cart-summary-page-actions {
  position: fixed;
  margin-left: 640px;
  padding: 15px;
  border: 1px solid #A636C1;
  border-radius: 2px;
  min-width: 230px;
}
.cart-summary-page .cart-summary-page-actions h3 {
  border-bottom: 1px solid;
  padding-bottom: 15px;
  margin-top: 15px;
}
.cart-summary-page .cart-summary-page-actions-xs {
  position: fixed;
  bottom: 10px;
  right: 0;
  background-color: #ffffffd9;
  border-top: 1px solid #A636C1;
  border-radius: 2px;
  padding-right: 20px;
  padding-top: 10px;
  text-align: right;
  width: 100%;
  z-index: 999;
  margin-bottom: 35px;
}
.cart-summary-page .cart-summary-page-actions-sm {
  background-color: #ffffffd9;
  border-radius: 2px;
  padding-bottom: 10px;
  padding-top: 10px;
  text-align: right;
  width: 100%;
}
.cart-summary-page .cart-summary-page-actions-sm .campaign-code-form-wrapper {
  margin-top: 10px;
}
.cart-summary-page .cart-summary-page-actions-sm .actions-wrapper {
  margin-top: 10px;
}
.cart-summary-page .cart-summary-page-actions-sm input[name="campaignCode"] {
  height: 33px;
}
.cart-summary-page .cart-summary-page-actions-sm .campaign-code-btn {
  margin-right: 18px;
}
.cart-summary-page .buy-more-btn-wrapper {
  text-align: right;
  margin-top: 20px;
  padding-right: 0;
}
@media all and (max-width: 768px) {
  .cart-summary-page .buy-more-btn-wrapper {
    padding-right: 10px;
  }
}
.cart-summary-page #pay-btn-desktop {
  width: 100%;
  margin-top: 10px;
}
.cart-summary-page .campaign-code-feedback {
  max-width: 230px;
}
@media all and (max-width: 768px) {
  .cart-summary-page .campaign-code-feedback {
    max-width: 100%;
  }
}
.cart-summary-page form[name="addressForm"] {
  padding: 0 10px 0 10px;
}
@media all and (max-width: 768px) {
  .cart-summary-page form[name="addressForm"] {
    padding: 0 0 0 10px;
  }
}
.cart-summary-page .cart-empty-txt {
  margin-left: 20px;
}

.purchase-confirmation .confirmation-container {
  color: #89C136;
  font-size: 1.5em;
  padding: 50px;
  margin: 30px;
  text-align: center;
}
.purchase-confirmation .confirmation-container .success-text {
  text-transform: uppercase;
  margin-top: 15px;
}

.delivery-selection .radio {
  white-space: nowrap;
}

.payment-page .payment-methods {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 300px;
  margin: 0 auto;
}
.payment-page .payment-methods h3 {
  margin-bottom: 40px;
}
.payment-page .payment-methods .payment-method {
  align-self: center;
  width: 100%;
}
.payment-page .payment-methods .payment-method button {
  width: 100%;
}
.payment-page .payment-pending {
  margin-top: 50px;
  text-align: center;
}
.payment-page .payment-pending .text {
  margin-top: 15px;
}
.payment-page .payment-error {
  padding: 50px;
  background: #CE2F68;
  color: white;
  margin: 10px;
  margin-top: 20px;
  text-align: center;
}
.payment-page .payment-error .error-title {
  text-transform: uppercase;
  color: white;
}
@media (min-width: 768px) {
  .payment-page .payment-error {
    margin: 100px;
  }
}

.product-selection h3 {
  margin-bottom: 35px;
}
.product-selection .banner {
  width: 100%;
  background: #0b93d5;
  padding: 15px 15px 5px;
  color: white;
  box-shadow: 0 0 10px 0 #b4bcc2;
  margin-bottom: 10px;
}
.product-selection .banner h3 {
  color: white;
  margin-top: 0;
  margin-bottom: 5px;
}
.product-selection .category-title {
  display: inline-block;
  padding: 5px 15px;
  text-transform: uppercase;
  background: #ecf0f1;
}
.product-selection .product-category {
  padding: 5px;
  background: #ecf0f1;
  margin-bottom: 15px;
}
.product-selection .product-category .product-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  -moz-flex-direction: row;
  -moz-flex-wrap: wrap;
  -webkit-flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-direction: row;
  -ms-flex-wrap: wrap;
}
.product-selection .product {
  float: left;
  width: 235px;
  padding: 30px;
  margin: 5px;
  background: white;
  box-shadow: 0 0 10px 0 #b4bcc2;
  cursor: pointer;
}
.product-selection .product .product-image {
  margin-bottom: 10px;
}
.product-selection .product .product-info {
  overflow-wrap: break-word;
}
.product-selection .product .product-info .product-price {
  font-size: 19px;
}
.product-selection .product .product-info .product-price.has-discount .default-price {
  font-size: 15px;
  text-decoration: line-through;
}
.product-selection .product .product-info .product-price.has-discount .discounted-price {
  font-size: 19px;
}
.product-selection .product .product-info .product-description {
  font-size: 13px;
}
.product-selection .selected-product form {
  text-align: left;
}
/* Active classes are outside of "scope" so we can override with stylemanager ez */
.product-category.active {
  border: 2px solid #A636C1;
  border-radius: 2px;
}
.category-title.active {
  margin-bottom: -2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  background: #A636C1;
  color: #ffffff;
}
.product.box.product-active {
  background: #A636C1;
  color: #ffffff;
}
h2 {
  overflow-wrap: break-word;
}

@import url(https://fonts.googleapis.com/css?family=Lato:700);
.box {
  position: relative;
}
/* common */
.ribbon {
  width: 140px;
  height: 140px;
  overflow: hidden;
  position: absolute;
}
.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
  border: 5px solid #2980b9;
}
.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: #3498db;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  font: 700 18px/1 'Lato', sans-serif;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
}
/* top right*/
.ribbon-top-right {
  top: -5px;
  right: -5px;
}
.ribbon-top-right::before,
.ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}
.ribbon-top-right::before {
  top: 0;
  left: 0;
}
.ribbon-top-right::after {
  bottom: 0;
  right: 0;
}
.ribbon-top-right span {
  left: -25px;
  top: 30px;
  transform: rotate(45deg);
}
