/*
 * jQuery FlexSlider v2.7.1
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/

.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: 4px solid #fff;
  position: relative;
  zoom: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.flexslider .slides {
  zoom: 1;
}
.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
@-moz-document url-prefix() {
  .loading .flex-viewport {
    max-height: none;
  }
}
.carousel li {
  margin-right: 5px;
}
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  content: '\f001';
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}
.flex-direction-nav a.flex-next:before {
  content: '\f002';
}
.flex-direction-nav .flex-prev {
  left: -50px;
}
.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}
.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}
.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a.flex-play:before {
  content: '\f003';
}
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}
.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */

button,hr,input{overflow:visible}audio,canvas,progress,video{display:inline-block}progress,sub,sup{vertical-align:baseline}html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0} menu,article,aside,details,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{}button,select{text-transform:none}[type=submit], [type=reset],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}/*# sourceMappingURL=normalize.min.css.map */
* {
  box-sizing: border-box;
}

html {
  height: 100%;
  min-height: 100%;
  position: relative;
  width: 100%;
}

body {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #FAD5E8;
  background-image: url('https://assets.bigcartel.com/theme_images/76375443/stars-background-600px.png?auto=format&fit=max&h=200&w=200');
  background-repeat: repeat;
  background-size: 200px 200px;
  color: #ED6CA6;
  font-family: Varela Round;
  font-size: 16px;
  height: 100%;
  letter-spacing: 1px;
  line-height: 1;
  margin: 0;
  padding: 0;
  width: 100%;
}
body.maintenance-page {
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 100px 20px;
}
body.maintenance-page .maintenance-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 3px solid #ED6CA6;
  color: #ED6CA6;
  font-size: 22px;
  line-height: 1.25em;
  padding: 32px 24px;
  max-width: 600px;
  min-height: 200px;
  text-align: center;
  width: 100%;
}
body.maintenance-page .social-links {
  margin: 16px 0 0;
}

a.skip-link {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #FAD5E8;
  border: 1px solid #ED6CA6;
  color: #ED6CA6;
  left: 25px;
  padding: 15px 20px;
  position: absolute;
  text-decoration: underline;
  top: -150px;
  z-index: 100;
}
a.skip-link:focus {
  top: 20px;
}

.wrapper {
  padding: 0 24px;
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .wrapper {
    padding: 0 16px;
  }
}

a {
  -webkit-transition: color 0.1s linear;
  transition: color 0.1s linear;
  color: #ED6CA6;
  text-decoration: none;
}
a:focus, a:hover {
  color: #ED6CA6;
  text-decoration: underline;
}

h1, h2, h3, h4, h5 {
  color: #ED6CA6;
  font-weight: normal;
  line-height: 1.4em;
  margin: 0;
  padding: 0;
  position: relative;
  text-transform: uppercase;
}
h1.has-dash, h2.has-dash, h3.has-dash, h4.has-dash, h5.has-dash {
  margin-bottom: 48px;
}
h1.has-dash:after, h2.has-dash:after, h3.has-dash:after, h4.has-dash:after, h5.has-dash:after {
  bottom: -8px;
  content: "";
  background-color: #ED6CA6;
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 24px;
}

a[href], label[for], select, button, .pointer {
  cursor: pointer;
}

button, input, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  border-radius: 4px;
  color: #ED6CA6;
  font-family: Varela Round;
  letter-spacing: 1px;
  padding: 0;
}

header {
  text-align: center;
}
header.has-background {
  background-color: #FDEDFB;
  padding-bottom: 60px;
}

.header-nav {
  font-family: Varela Round;
  margin-top: 8px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}
.header-nav ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav ul li {
  border-bottom: 1px solid #ED6CA6;
  padding: 8px;
}
@media screen and (max-width: 767px) {
  .header-nav ul li {
    border-bottom: none;
  }
}
.header-nav ul li.selected a {
  color: #ED6CA6;
}
.header-nav ul a {
  color: #ED6CA6;
  display: block;
  font-size: 14px;
  padding: 8px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .header-nav ul a {
    font-size: 16px;
    text-decoration: underline;
  }
}
.header-nav ul a:hover, .header-nav ul a:focus {
  color: #ED6CA6 !important;
}
.header-nav.mobile-nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .header-nav.mobile-nav {
    display: block;
    font-family: Verdana;
    padding-bottom: 16px;
  }
}

.branding {
  font-size: 20px;
  margin: 76px auto;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .branding {
    margin: 30px auto;
  }
}
.branding > a {
  display: inline-block;
}
.branding > a:hover, .branding > a:focus {
  text-decoration: none;
}

.store-header {
  font-size: 42px;
  letter-spacing: 4px;
}
@media screen and (max-width: 767px) {
  .store-header {
    font-size: 36px;
    letter-spacing: 2px;
  }
}

.page-title {
  text-align: center;
}

.store-logo {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 200px;
}

.main {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .main {
    padding-bottom: 0;
  }
}

_:-ms-fullscreen, :root .main {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

#cart_page .main, #contact_page .main, #maintenance_page .main, #product_page .main, .custom .main {
  background-color: #FDEDFB;
  padding-bottom: 64px;
  padding-top: 64px;
}
@media screen and (max-width: 767px) {
  #cart_page .main, #contact_page .main, #maintenance_page .main, #product_page .main, .custom .main {
    padding-bottom: 32px;
    padding-top: 32px;
  }
}

button, a.button {
  -webkit-transition: color, background-color 0.1s linear;
  transition: color, background-color 0.1s linear;
  background: #ED6CA6;
  color: #FFFFFF;
  display: block;
  font-size: 15px;
  height: 58px;
  line-height: 58px;
  max-width: 100%;
  padding: 0 16px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
button.minimal-button, a.button.minimal-button {
  background: none;
  color: #ED6CA6;
  border: none;
  font-size: 14px;
}
button.minimal-button:not(:disabled):hover, button.minimal-button:not(:disabled):focus, a.button.minimal-button:not(:disabled):hover, a.button.minimal-button:not(:disabled):focus {
  background: none !important;
  color: #ED6CA6;
  text-decoration: underline;
}
button:disabled, button.disabled, a.button:disabled, a.button.disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
button.no-border, a.button.no-border {
  border: none;
}
button:not(:disabled):hover, button:not(:disabled):focus, a.button:not(:disabled):hover, a.button:not(:disabled):focus {
  background: #EA4D96;
}

.select {
  border: 2px solid #ED6CA6;
  border-radius: 4px;
  height: 58px;
  margin-bottom: 24px;
  max-width: 100%;
  padding: 0;
  position: relative;
  text-transform: uppercase;
  width: 100%;
}
.select select {
  height: 100%;
  line-height: 58px;
  padding: 0 66px 0 16px;
  position: relative;
  text-transform: uppercase;
  width: 100%;
  z-index: 2;
}
.select select option {
  background-color: #FFFFFF;
  color: #000;
}
.select select option:disabled {
  background-color: #FFFFFF;
  color: graytext;
}
.select select:focus {
  box-shadow: none;
  outline: none;
}
.select select::-ms-expand {
  display: none;
}
.select svg {
  fill: #ED6CA6;
  height: 8px;
  margin-top: -2px;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 13px;
  z-index: 1;
}
.select:hover, .select:active, .select:focus, .select:focus-within {
  color: #ED6CA6;
  border-color: #ED6CA6;
}
.select:hover select, .select:active select, .select:focus select, .select:focus-within select {
  color: #ED6CA6;
}
.select:hover select option:disabled, .select:active select option:disabled, .select:focus select option:disabled, .select:focus-within select option:disabled {
  color: graytext;
}
.select:hover svg, .select:active svg, .select:focus svg, .select:focus-within svg {
  fill: #ED6CA6;
}

.custom-page-header {
  text-align: center;
}

.custom-page-content {
  font-family: Verdana;
  font-size: 16px;
  letter-spacing: normal;
  line-height: 1.5em;
  margin: 0 auto;
  max-width: 700px;
}
.custom-page-content a {
  color: #ED6CA6;
  text-decoration: underline;
}
.custom-page-content a:hover, .custom-page-content a:focus {
  color: #ED6CA6;
}
.custom-page-content ol, .custom-page-content ul {
  padding-left: 1em;
}
.custom-page-content img, .custom-page-content iframe {
  max-width: 100%;
}

.custom .footer-nav {
  border: none;
}

.footer-nav {
  border-top: 1px solid #ED6CA6;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-family: Varela Round;
  list-style: none;
  margin: 0;
  padding: 40px 0;
}
.footer-nav ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}
.footer-nav ul.footer-links {
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .footer-nav ul.footer-links {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 15px;
    padding: 0;
    width: 100%;
  }
  .footer-nav ul.footer-links li {
    border-bottom: 1px solid #ED6CA6;
  }
  .footer-nav ul.footer-links a {
    font-family: Verdana;
    padding: 16px 0;
    text-align: center;
    text-transform: uppercase;
  }
}
.footer-nav ul a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
}
.footer-nav ul a:hover, .footer-nav ul a:focus {
  color: #ED6CA6;
  text-decoration: underline;
}

.social-links {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}
.social-links a {
  display: flex !important;
  fill: #ED6CA6;
  padding: 8px 16px;
}
.social-links svg {
  display: block;
  height: 26px;
  width: 26px;
}
.social-links svg.tumblr-icon {
  width: 16px;
}
.social-links:hover, .social-links:focus {
  fill: #ED6CA6;
}

.search-form {
  position: relative;
}
.search-form:focus-within .search-icon {
  display: block;
}

.search-input {
  border: 1px solid transparent !important;
  cursor: pointer;
  margin-left: 8px;
  padding: 6px 32px 6px 8px;
  width: 130px;
}
.search-input::-webkit-input-placeholder {
  color: #ED6CA6;
}
.search-input::-moz-placeholder {
  color: #ED6CA6;
}
.search-input:-ms-input-placeholder {
  color: #ED6CA6;
}
.search-input:-moz-placeholder {
  color: #ED6CA6;
}
@media screen and (max-width: 767px) {
  .search-input {
    display: block;
    margin: 8px auto;
    padding: 6px 16px;
    text-align: center;
    text-transform: uppercase;
    width: 250px;
  }
}
.search-input:hover {
  border: 1px solid #ED6CA6 !important;
}
.search-input:focus {
  border: 1px solid #ED6CA6 !important;
}

button.search-button {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none;
  height: 20px;
  padding: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
@media screen and (max-width: 767px) {
  button.search-button {
    display: none;
  }
}
button.search-button:hover, button.search-button:focus {
  background: none;
}

.search-icon {
  fill: #ED6CA6;
  display: block;
  height: 16px;
  width: 16px;
}

.errors {
  border-radius: 4px;
  background-color: #b11a2a;
  color: #FFFFFF;
  line-height: 1.5em;
  list-style: none;
  margin: 0 auto 32px;
  padding: 12px 16px;
  text-align: center;
}

input, textarea {
  appearance: none;
  border: 2px solid #ED6CA6;
  background: none;
  color: #ED6CA6;
  font-family: Varela Round;
  font-size: 16px;
  padding: 8px;
  outline: none;
}
input:focus, input:active, textarea:focus, textarea:active {
  background: #FAD5E8;
  border: 2px solid #ED6CA6;
}

a.back-to-site {
  background: none;
  border-radius: 4px;
  border: 2px solid #ED6CA6;
  color: #ED6CA6;
  font-size: 12px;
  height: auto;
  line-height: 1em;
  padding: 16px 32px;
  width: auto;
}
a.back-to-site:hover, a.back-to-site:focus {
  background: none !important;
  border: 2px solid #ED6CA6;
  color: #ED6CA6;
  text-decoration: none;
}

.back-to-site + .badge {
  margin-top: 24px;
}

.badge {
  padding: 8px 16px;
}
.badge a {
  background: url("https://assets.bigcartel.com/theme_assets/6/2.5.3/images/bc_badge.png") no-repeat;
  background-size: 100%;
  border: none;
  display: block;
  height: 23px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 79px;
}

.announcement-message {
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: #FDEDFB;
  color: #ED6CA6;
  display: none;
  font-size: 15px;
  padding: 16px 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .announcement-message {
    padding: 16px 60px;
  }
}
.has-announcement-message .announcement-message {
  display: block;
}

.announcement-message-text {
  text-align: center;
}

.announcement-message-close {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 50%;
  border: 0;
  background-color: #FDEDFB;
  height: 44px;
  padding: 0;
  width: 44px;
}
.announcement-message-close:hover, .announcement-message-close:focus {
  background: none !important;
}
.announcement-message-close:hover svg, .announcement-message-close:focus svg {
  fill: #ED6CA6;
}
.announcement-message-close svg {
  display: block;
  fill: #ED6CA6;
  height: 16px;
  width: 16px;
}

.centered-message {
  color: #ED6CA6;
  font-family: Verdana;
  font-size: 20px;
  line-height: 1.5em;
  padding: 0 16px;
  text-align: center;
}
.centered-message a {
  text-decoration: underline;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@keyframes reset {
  from {
    opacity: 0;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  animation-name: reset, fade-in;
  -webkit-animation-name: reset, fade-in;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease-in;
  -webkit-animation-timing-function: ease-in;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
}
.flex-viewport {
  border-radius: 4px;
}

.flexslider {
  background: none;
  border: none;
  margin: 0 auto 80px;
}
.flexslider .slides img {
  margin: 0 auto;
  width: 100%;
}
.flexslider .slides > li {
  -webkit-transform: translateZ(0px);
  transform: translateZ(0px);
}

.flex-direction-nav li a {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  background-image: url("https://assets.bigcartel.com/theme_assets/6/2.5.3/images/slideshow_arrows.png");
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.7);
  background-size: 65px auto;
  border-radius: 4px;
  border: none;
  height: 66px;
  margin: -33px 0 0;
  position: absolute;
  text-indent: -9999px;
  text-align: initial !important;
  width: 33px;
}
@media screen and (max-width: 767px) {
  .flex-direction-nav li a {
    display: none !important;
  }
}
.flex-direction-nav li a:hover {
  background-color: black;
}
.flex-direction-nav li a.flex-prev {
  background-position: 6px 15px;
  border-radius: 4px;
  left: 18px;
}
.flex-direction-nav li a.flex-next {
  background-position: -38px 15px;
  right: 18px;
}

.flex-control-nav {
  bottom: -32px;
}

.flex-control-paging li {
  border-radius: 50%;
  height: 11px;
  margin: 6px;
  width: 11px;
  -webkit-backface-visibility: hidden;
}
.flex-control-paging li a {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  background: #ED6CA6;
  border-radius: 50%;
  border: none;
  opacity: 0.5;
}
.flex-control-paging li a.flex-active {
  opacity: 0.3;
}
.flex-control-paging li a:hover {
  opacity: 0.7;
}
.artist-category-nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-bottom: 1px solid #ED6CA6;
  border-top: 1px solid #ED6CA6;
  font-size: 16px;
  margin-bottom: 40px;
  padding: 24px 16px;
}
@media screen and (max-width: 767px) {
  .artist-category-nav {
    padding: 16px 0;
  }
}
.artist-category-nav .nav-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}
.artist-category-nav nav {
  text-align: center;
  max-width: 100%;
}
.artist-category-nav ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-family: Verdana;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.artist-category-nav ul li {
  margin: 4px 2px;
}
.artist-category-nav ul li a {
  display: inline-block;
  padding: 4px;
  white-space: nowrap;
}
.artist-category-nav ul li a:hover {
  text-decoration: underline;
}
.artist-category-nav ul li.selected a {
  text-decoration: underline;
}
.artist-category-nav ul li:not(:last-child):after {
  content: "/";
  padding: 0 2px;
  opacity: 0.5;
}

.products-nav + .products-nav {
  margin-top: 20px;
}

.product-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin: 8px -8px;
}

.product-list-link {
  text-decoration: none;
}
.product-list-link:hover, .product-list-link:focus {
  text-decoration: none;
}

.product-list-thumb {
  border-radius: 4px;
  color: #ED6CA6;
  display: block;
  font-size: 0;
  padding: 8px;
  padding-bottom: 16px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  width: calc(100% / 2);
  word-break: break-word;
}
.product-list-thumb:hover, .product-list-thumb:focus {
  text-decoration: none;
}
.product-list-thumb:hover:not(.rollover) .product-list-image, .product-list-thumb:focus:not(.rollover) .product-list-image {
  opacity: 0.9;
}
.product-list-thumb:hover:not(.rollover) .product-list-thumb-name:after, .product-list-thumb:focus:not(.rollover) .product-list-thumb-name:after {
  background-color: #ED6CA6;
}
.product-list-thumb:hover:not(.rollover) .product-list-thumb-status, .product-list-thumb:focus:not(.rollover) .product-list-thumb-status {
  color: #ED6CA6;
}
@media screen and (max-width: 1023px) {
  .product-list-thumb {
    width: calc(100% / 3);
  }
}
@media screen and (max-width: 767px) {
  .product-list-thumb {
    padding: 8px;
    width: calc(100% / 1);
  }
}
@media (hover: hover), (-moz-touch-enabled: 0) {
  .product-list-thumb.rollover {
    padding-bottom: 8px;
  }
  .product-list-thumb.rollover .product-list-thumb-info {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    color: #FFFFFF;
    opacity: 0;
    padding: 16px;
    position: absolute;
    top: 8px;
    left: 8px;
    width: calc(100% - (8px * 2));
    height: calc(100% - (8px * 2));
  }
  .product-list-thumb.rollover .product-list-thumb-info-headers {
    -webkit-transition: top 0.2s linear;
    transition: top 0.2s linear;
    position: relative;
    top: 5%;
  }
  .product-list-thumb.rollover .product-list-thumb-status {
    color: #FFFFFF;
  }
  .product-list-thumb.rollover .product-list-thumb-name:after {
    background-color: #FFFFFF;
  }
  .product-list-thumb.rollover:hover .product-list-item-background, .product-list-thumb.rollover:focus .product-list-item-background {
    opacity: 0.6;
  }
  .product-list-thumb.rollover:hover .product-list-thumb-info, .product-list-thumb.rollover:focus .product-list-thumb-info {
    opacity: 1;
  }
  .product-list-thumb.rollover:hover .product-list-thumb-info-headers, .product-list-thumb.rollover:focus .product-list-thumb-info-headers {
    top: 0;
  }
}

_:-ms-fullscreen, :root .product-list-thumb {
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.product-list-thumb-container {
  position: relative;
  width: 100%;
}

.product-list-image-container {
  border-radius: 4px;
  font-size: 0;
  margin: 0;
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
}
.default .product-list-image-container {
  padding-bottom: 0;
}

.product-list-image {
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
  border-radius: 4px;
  display: block;
  overflow: hidden;
}
.product-list-image.lazy {
  filter: blur(5px);
}
.default .product-list-image {
  width: 100%;
}
.crop-to-square .product-list-image {
  height: 100% !important;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.fit-to-square .product-list-image {
  left: 0;
  will-change: transform;
  cursor: pointer;
  position: absolute;
  max-width: 100%;
  height: 100%;
  top: 0;
  width: 100%;
}
.fit-to-square .product-list-image.image-tall {
  height: 100%;
  left: auto;
  width: auto;
}
.fit-to-square .product-list-image.image-wide {
  height: auto;
  top: auto;
  width: 100%;
}
.fit-to-square .product-list-image.image-square {
  height: 100%;
  width: 100%;
}
.product-list-image:last-child {
  opacity: 0;
  visibility: hidden;
}
.product-list-image:only-child {
  opacity: 1;
  visibility: visible;
}

.image-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  position: absolute;
  width: 100%;
}

.product-list-thumb-info {
  font-size: 20px;
  line-height: 1.25em;
  padding: 16px 8px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .product-list-thumb-info {
    font-size: 18px;
    padding: 8px;
  }
}

.product-list-item-background {
  background-color: #FDEDFB;
  border-radius: 4px;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.product-list-thumb-name {
  letter-spacing: 2px;
  overflow-wrap: break-word;
  position: relative;
}
.product-list-thumb-name:after {
  bottom: -8px;
  content: "";
  background-color: #ED6CA6;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 20px;
}

.product-list-thumb-price {
  font-family: Verdana;
  font-size: 16px;
  margin-top: 16px;
}

.product-list-thumb-status {
  color: #ED6CA6;
  font-family: Verdana;
  font-size: 16px;
  font-style: italic;
  text-transform: none;
}

.pagination {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0;
  padding: 24px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin: 16px 0;
  }
}
.pagination a, .pagination span {
  padding: 8px 10px;
  margin: 2px 4px;
}
.pagination a:not(.disabled):hover, .pagination a:not(.disabled):focus, .pagination span:not(.disabled):hover, .pagination span:not(.disabled):focus {
  color: #ED6CA6;
  text-decoration: underline;
}
.pagination a.disabled, .pagination span.disabled {
  display: none;
}
.pagination a.current, .pagination span.current {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  #products_page .footer-nav, #home_page .footer-nav {
    border-top: 0px;
  }
}

@media screen and (max-width: 767px) {
  #products_page .main .wrapper, #home_page .main .wrapper {
    border-bottom: 1px solid #ED6CA6;
  }
  #products_page .main .wrapper .empty-products, #home_page .main .wrapper .empty-products {
    padding-bottom: 64px;
  }
}
#instant-checkout-button {
  margin-top: 12px;
}

#product_page .footer-nav {
  border: none;
}
#product_page .related-products-container.under_image + footer .footer-nav {
  border-top: 1px solid #ED6CA6;
}

.product-page {
  padding-bottom: 30px;
  position: relative;
}
.product-page:before, .product-page:after {
  content: "";
  display: table;
  clear: both;
}
.product-page .product-page-headings {
  float: left;
  max-width: 35%;
  padding-right: 40px;
  padding-left: 0;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .product-page .product-page-headings {
    max-width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .product-page .product-page-headings {
    float: none;
    max-width: 100%;
    padding: 0;
  }
}
.product-page .product-title {
  margin-bottom: 24px;
  text-align: center;
}
.product-page .product-price {
  font-family: Verdana;
  margin-bottom: 32px;
  text-align: center;
  font-size: 23px;
  font-weight: normal;
  line-height: 1.4em;
}
.product-page .product-status {
  color: #ED6CA6;
  display: block;
  font-family: Verdana;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 16px;
  text-align: center;
  vertical-align: top;
}
.product-page .product-details {
  clear: left;
  float: left;
  max-width: 35%;
  padding-right: 24px;
  padding-left: 0;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .product-page .product-details {
    max-width: 40%;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .product-page .product-details {
    float: none;
    max-width: 100%;
    padding: 0;
  }
}
.product-page .product-details:last-child {
  margin-bottom: 0;
}
.product-page .add-to-cart-button {
  display: block;
  width: 100%;
}
.product-page .reset-selection-button-container {
  text-align: center;
  width: 100%;
}
.product-page button.reset-selection-button {
  display: none;
  height: auto;
  max-width: 100%;
  line-height: normal;
  margin: 20px auto 0;
  padding: 4px;
  width: auto;
  font-size: 14px;
}
.product-page .product-description {
  font-family: Verdana;
  font-size: 16px;
  letter-spacing: normal;
  line-height: 1.5em;
  margin-bottom: 32px;
}
.product-page .product-description a {
  color: #ED6CA6;
  text-decoration: underline;
}
.product-page .product-description a:hover, .product-page .product-description a:focus {
  color: #ED6CA6;
}
.product-page .product-description ol, .product-page .product-description ul {
  padding-left: 1em;
}
.product-page .product-description img, .product-page .product-description iframe {
  max-width: 100%;
}
.product-page .product-images {
  float: right;
  max-width: 63%;
  padding-left: 24px;
  padding-right: 0;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .product-page .product-images {
    max-width: 58%;
  }
}
@media screen and (max-width: 767px) {
  .product-page .product-images {
    float: none;
    max-width: 100%;
    padding: 0;
  }
}
.product-page .product-image {
  border-radius: 4px;
  display: block;
  margin-bottom: 32px;
  max-width: 100%;
  width: 100%;
}
.product-page .social-buttons {
  border: 1px solid #ED6CA6;
  font-family: Verdana;
  font-size: 14px;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  text-transform: uppercase;
}
.product-page .social-buttons li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #ED6CA6;
  height: 54px;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.product-page .social-buttons li .social-title {
  display: block;
  position: absolute;
  width: 100%;
}
.product-page .social-buttons li .social-action {
  opacity: 0;
  position: relative;
  visibility: hidden;
}
.product-page .social-buttons li:hover .social-title {
  display: none;
}
.product-page .social-buttons li:hover .social-action {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .product-page .social-buttons li .social-title {
    display: none;
  }
  .product-page .social-buttons li .social-action {
    opacity: 1;
    visibility: visible;
  }
}
.product-page .social-buttons li:last-child {
  border-bottom: 0px;
}

.similar-product-list {
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.similar-product-list .product-list-item {
  width: 33.33%;
}
@media screen and (max-width: 767px) {
  .similar-product-list .product-list-item {
    width:  100% ;
  }
}

.similar-products-header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 24px 0;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .similar-products-header {
    margin-top: 0;
    padding-bottom: 8px;
  }
}
.similar-products-header .similar-products-title {
  font-size: 24px;
  text-transform: uppercase;
}
.similar-products-header .prev-next-products {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: none;
  font-size: 15px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .similar-products-header .prev-next-products {
    display: none;
  }
}

.prev-next-products {
  border-bottom: 1px solid #ED6CA6;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-family: Verdana;
  font-size: 15px;
  list-style: none;
  margin: 0;
  margin-left: auto;
  padding: 24px 0;
}
.prev-next-products li:not(:last-child):after {
  content: "/";
  padding: 0 8px;
}
.prev-next-products a {
  text-decoration: underline;
  padding: 8px 8px;
}
.prev-next-products.with-related {
  display: none;
}
@media screen and (max-width: 767px) {
  .prev-next-products.with-related {
    border-top: 1px solid #ED6CA6;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.product-form select span, .product-form select span option {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.product-inventory {
  border-top: 1px solid #ED6CA6;
  margin: 32px 0 16px;
  padding: 16px 0;
}
.product-inventory .product-inventory-header {
  color: Verdana;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-size: 15px;
  text-align: center;
}

.inventory-bars {
  font-family: Verdana;
  list-style: none;
  margin: 0;
  padding: 0;
}
.inventory-bars li {
  margin-bottom: 18px;
}
.inventory-bars .option-name {
  margin-bottom: 4px;
  font-size: 15px;
  text-transform: none;
}
.inventory-bars .inventory-bar {
  background-color: #ED6CA6;
  height: 2px;
  position: relative;
  width: 100%;
}
.inventory-bars .inventory-percentage {
  background-color: #ED6CA6;
  display: block;
  height: 3px;
  position: absolute;
  top: 2px;
}
.inventory-bars .inventory-label {
  color: #ED6CA6;
  font-size: 12px;
  display: none;
  position: absolute;
  right: 0;
  top: -16px;
}
.contact-label {
  display: block;
  font-family: Verdana;
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-form {
  margin: 0 auto;
  max-width: 600px;
  padding-bottom: 20px;
  width: 100%;
}
.contact-form input, .contact-form textarea {
  min-height: 48px;
  width: 100%;
}
.contact-form textarea {
  height: 180px;
}

.input-holder {
  position: relative;
}

.contact-form-block {
  margin-bottom: 32px;
}

.recaptcha-note {
  font-family: Verdana;
  font-size: 14px;
  font-style: italic;
  line-height: 1.3em;
  opacity: 0.8;
  position: relative;
  margin-top: 10px;
}
.recaptcha-note a {
  text-decoration: underline;
}

button.send-message-button {
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  button.send-message-button {
    max-width: 100%;
  }
}

#contact_page .footer-nav {
  border-top: none;
}

#contact_page .errors {
  max-width: 640px;
}
#cart_page .main {
  padding-left: 0;
  padding-right: 0;
}
#cart_page .footer-nav {
  border: none;
}
#cart_page .errors {
  max-width: 960px;
}
@media screen and (max-width: 767px) {
  #cart_page .errors {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.empty-cart-message {
  display: none;
}
.empty-cart .empty-cart-message {
  display: block;
}

.cart-form {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 920px) {
  .cart-form {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.cart-items {
  border-top: 1px solid #ED6CA6;
  list-style: none;
  margin: 0;
  max-width: 65%;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 920px) {
  .cart-items {
    max-width: 100%;
  }
}

.cart-item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #ED6CA6;
  padding: 24px 0;
}
@media screen and (max-width: 767px) {
  .cart-item {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    padding: 16px 0;
  }
}

.cart-item-image {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 4px;
  display: block;
  height: 90px;
  margin-right: 16px;
  width: 90px;
}
@media screen and (max-width: 767px) {
  .cart-item-image {
    height: 60px;
    margin-right: 8px;
    width: 60px;
  }
}
.cart-item-image img {
  border-radius: 4px;
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.cart-item-details {
  line-height: 1.25em;
  padding-right: 24px;
  width: 55%;
}
@media screen and (max-width: 767px) {
  .cart-item-details {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-flex-basis: 30%;
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    padding-right: 16px;
  }
}

.cart-item-details-name {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .cart-item-details-name {
    font-size: 16px;
  }
}

.cart-item-details-option {
  font-family: Verdana;
  font-size: 15px;
  margin-top: 3.2px;
}
@media screen and (max-width: 767px) {
  .cart-item-details-option {
    font-size: 14px;
  }
}

.cart-item-quantity-price {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  width: 45%;
}
@media screen and (max-width: 767px) {
  .cart-item-quantity-price {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    width: 45%;
  }
}

.cart-item-details-price {
  margin-right: 24px;
  padding-left: 16px;
}
@media screen and (max-width: 767px) {
  .cart-item-details-price {
    margin-right: 0;
    margin-top: 16px;
  }
}

.cart-item-quantity-holder {
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .cart-item-quantity-holder {
    margin-right: 0;
  }
}
.cart-item-quantity-holder input {
  padding: 10px;
  text-align: center;
  width: 64px;
}
.cart-item-quantity-holder input:hover, .cart-item-quantity-holder input:focus {
  border-color: #ED6CA6;
}

button.cart-item-remove {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: none;
  border: 2px solid #ED6CA6;
  border-radius: 50%;
  height: 32px;
  padding: 0;
  width: 32px;
}
@media screen and (max-width: 767px) {
  button.cart-item-remove {
    display: none;
  }
}
button.cart-item-remove:hover, button.cart-item-remove:focus {
  background: none;
  border: 2px solid #ED6CA6;
}
button.cart-item-remove:hover .cart-item-remove-icon, button.cart-item-remove:focus .cart-item-remove-icon {
  fill: #ED6CA6;
}
button.cart-item-remove .cart-item-remove-icon {
  display: block;
  fill: #ED6CA6;
  height: 12px;
  width: 12px;
}

.cart-footer {
  border: 1px solid #ED6CA6;
  font-size: 16px;
  margin-left: auto;
  max-width: 30%;
  padding: 24px 16px 8px;
  width: 100%;
}
@media screen and (max-width: 920px) {
  .cart-footer {
    border: none;
    max-width: 100%;
    padding: 0;
  }
}

.cart-subtotal {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  margin-bottom: 16px;
  padding: 0;
}
@media screen and (max-width: 920px) {
  .cart-subtotal {
    margin: 24px 0;
  }
}

.cart-subtotal-amount {
  margin-left: auto;
}

.cart-footer-buttons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 8px;
}

.checkout-btn {
  display: block;
  font-size: 16px;
  margin: 0 auto 8px;
  max-width: 100%;
}

a.button.continue-shopping {
  background-color: transparent;
  border-color: transparent;
  color: #ED6CA6;
  display: block;
  font-size: 15px;
  line-height: normal;
  height: auto;
  margin: 0 auto;
  padding: 8px;
}
@media screen and (max-width: 920px) {
  a.button.continue-shopping {
    margin-top: 8px;
  }
}

button.cart-item-remove-text {
  color: #ED6CA6;
  display: none;
  height: auto;
  line-height: normal;
  margin: 0;
  margin-top: 6px;
  padding: 0;
  text-decoration: underline;
  width: auto;
}
@media screen and (max-width: 767px) {
  button.cart-item-remove-text {
    display: inline-block;
  }
}



 /*============================================================
  Cookie Consent Styles
============================================================*/

:root{--cc-bg:#fff;--cc-text:#2d4156;--cc-btn-primary-bg:#2d4156;--cc-btn-primary-text:var(--cc-bg);--cc-btn-primary-hover-bg:#1d2e38;--cc-btn-secondary-bg:#eaeff2;--cc-btn-secondary-text:var(--cc-text);--cc-btn-secondary-hover-bg:#d8e0e6;--cc-toggle-bg-off:#919ea6;--cc-toggle-bg-on:var(--cc-btn-primary-bg);--cc-toggle-bg-readonly:#d5dee2;--cc-toggle-knob-bg:#fff;--cc-toggle-knob-icon-color:#ecf2fa;--cc-block-text:var(--cc-text);--cc-cookie-category-block-bg:#f0f4f7;--cc-cookie-category-block-bg-hover:#e9eff4;--cc-section-border:#f1f3f5;--cc-cookie-table-border:#e9edf2;--cc-overlay-bg:rgba(4, 6, 8, .85);--cc-webkit-scrollbar-bg:#cfd5db;--cc-webkit-scrollbar-bg-hover:#9199a0}.c_darkmode{--cc-bg:#181b1d;--cc-text:#d8e5ea;--cc-btn-primary-bg:#a6c4dd;--cc-btn-primary-text:#000;--cc-btn-primary-hover-bg:#c2dff7;--cc-btn-secondary-bg:#33383c;--cc-btn-secondary-text:var(--cc-text);--cc-btn-secondary-hover-bg:#3e454a;--cc-toggle-bg-off:#667481;--cc-toggle-bg-on:var(--cc-btn-primary-bg);--cc-toggle-bg-readonly:#454c54;--cc-toggle-knob-bg:var(--cc-cookie-category-block-bg);--cc-toggle-knob-icon-color:var(--cc-bg);--cc-block-text:#b3bfc5;--cc-cookie-category-block-bg:#23272a;--cc-cookie-category-block-bg-hover:#2b3035;--cc-section-border:#292d31;--cc-cookie-table-border:#2b3035;--cc-webkit-scrollbar-bg:#667481;--cc-webkit-scrollbar-bg-hover:#9199a0}.cc_div *,.cc_div :after,.cc_div :before{-webkit-box-sizing:border-box;box-sizing:border-box;float:none;font-style:inherit;font-variant:normal;font-weight:inherit;font-family:inherit;line-height:1.2;font-size:1em;transition:none;animation:none;margin:0;padding:0;text-transform:none;letter-spacing:unset;color:inherit;background:0 0;border:none;box-shadow:none;text-decoration:none;text-align:left;visibility:unset}.cc_div{font-size:16px;font-weight:400;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;color:#2d4156;color:var(--cc-text)}#c-ttl,#s-bl td:before,#s-ttl,.cc_div .b-tl,.cc_div .c-bn{font-weight:600}#cm,#s-bl .act .b-acc,#s-inr,.cc_div .b-tl,.cc_div .c-bl{border-radius:.35em}#s-bl .act .b-acc{border-top-left-radius:0;border-top-right-radius:0}.cc_div a,.cc_div button,.cc_div input{-webkit-appearance:none;-moz-appearance:none;appearance:none}.cc_div a{border-bottom:1px solid}.cc_div a:hover{text-decoration:none;border-color:transparent}#cm-ov,#cs-ov,.c--anim #cm,.c--anim #s-cnt,.c--anim #s-inr{transition:visibility .25s linear,opacity .25s ease,transform .25s ease!important}.c--anim .c-bn{transition:background-color .25s ease!important}.c--anim #cm.bar.slide,.c--anim .bar.slide #s-inr{transition:visibility .4s ease,opacity .4s ease,transform .4s ease!important}.c--anim #cm.bar.slide+#cm-ov,.c--anim .bar.slide+#cs-ov{transition:visibility .4s ease,opacity .4s ease,transform .4s ease!important}#cm.bar.slide,.cc_div .bar.slide #s-inr{transform:translateX(100%);opacity:1}#cm.bar.top.slide,.cc_div .bar.left.slide #s-inr{transform:translateX(-100%);opacity:1}#cm.slide,.cc_div .slide #s-inr{transform:translateY(1.6em)}#cm.top.slide{transform:translateY(-1.6em)}#cm.bar.slide{transform:translateY(100%)}#cm.bar.top.slide{transform:translateY(-100%)}.show--consent .c--anim #cm,.show--consent .c--anim #cm.bar,.show--settings .c--anim #s-inr,.show--settings .c--anim .bar.slide #s-inr{opacity:1;transform:scale(1);visibility:visible!important}.show--consent .c--anim #cm.box.middle,.show--consent .c--anim #cm.cloud.middle{transform:scale(1) translateY(-50%)}.show--settings .c--anim #s-cnt{visibility:visible!important}.force--consent.show--consent .c--anim #cm-ov,.show--settings .c--anim #cs-ov{visibility:visible!important;opacity:1!important}#cm{font-family:inherit;padding:1.1em 1.8em 1.4em 1.8em;position:fixed;z-index:1;background:#fff;background:var(--cc-bg);max-width:24.2em;width:100%;bottom:1.25em;right:1.25em;box-shadow:0 .625em 1.875em #000;box-shadow:0 .625em 1.875em rgba(2,2,3,.28);opacity:0;visibility:hidden;transform:scale(.95);line-height:initial}#cc_div #cm{display:block!important}#c-ttl{margin-bottom:.7em;font-size:1.05em}.cloud #c-ttl{margin-top:-.15em}#c-txt{font-size:.9em;line-height:1.5em}.cc_div #c-bns{display:flex;justify-content:space-between;margin-top:1.4em}.cc_div .c-bn{color:#40505a;color:var(--cc-btn-secondary-text);background:#e5ebef;background:var(--cc-btn-secondary-bg);padding:1em 1.7em;display:inline-block;cursor:pointer;font-size:.82em;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-o-user-select:none;user-select:none;text-align:center;border-radius:4px;flex:1}#c-bns button+button,#s-c-bn,#s-cnt button+button{float:right;margin-left:1em}#s-cnt #s-rall-bn{float:none}#cm .c_link:active,#cm .c_link:hover,#s-c-bn:active,#s-c-bn:hover,#s-cnt button+button:active,#s-cnt button+button:hover{background:#d8e0e6;background:var(--cc-btn-secondary-hover-bg)}#s-cnt{position:fixed;top:0;left:0;width:100%;z-index:101;display:table;height:100%;visibility:hidden}#s-bl{outline:0}#s-bl .title{margin-top:1.4em}#s-bl .title:first-child{margin-top:0}#s-bl .b-bn{margin-top:0}#s-bl .b-acc .p{margin-top:0;padding:1em}#s-cnt .b-bn .b-tl{display:block;font-family:inherit;font-size:.95em;width:100%;position:relative;padding:1.3em 6.4em 1.3em 2.7em;background:0 0;transition:background-color .25s ease}#s-cnt .b-bn .b-tl.exp{cursor:pointer}#s-cnt .act .b-bn .b-tl{border-bottom-right-radius:0;border-bottom-left-radius:0}#s-cnt .b-bn .b-tl:active,#s-cnt .b-bn .b-tl:hover{background:#e9eff4;background:var(--cc-cookie-category-block-bg-hover)}#s-bl .b-bn{position:relative}#s-bl .c-bl{padding:1em;margin-bottom:.5em;border:1px solid #f1f3f5;border-color:var(--cc-section-border);transition:background-color .25s ease}#s-bl .c-bl:hover{background:#f0f4f7;background:var(--cc-cookie-category-block-bg)}#s-bl .c-bl:last-child{margin-bottom:.5em}#s-bl .c-bl:first-child{transition:none;padding:0;margin-top:0;border:none;margin-bottom:2em}#s-bl .c-bl:not(.b-ex):first-child:hover{background:0 0;background:unset}#s-bl .c-bl.b-ex{padding:0;border:none;background:#f0f4f7;background:var(--cc-cookie-category-block-bg);transition:none}#s-bl .c-bl.b-ex+.c-bl{margin-top:2em}#s-bl .c-bl.b-ex+.c-bl.b-ex{margin-top:0}#s-bl .c-bl.b-ex:first-child{margin-bottom:1em}#s-bl .c-bl.b-ex:first-child{margin-bottom:.5em}#s-bl .b-acc{max-height:0;overflow:hidden;padding-top:0;margin-bottom:0;display:none}#s-bl .act .b-acc{max-height:100%;display:block;overflow:hidden}#s-cnt .p{font-size:.9em;line-height:1.5em;margin-top:.85em;color:#2d4156;color:var(--cc-block-text)}.cc_div .b-tg .c-tgl:disabled{cursor:not-allowed}#c-vln{display:table-cell;vertical-align:middle;position:relative}#cs{padding:0 1.7em;width:100%;position:fixed;left:0;right:0;top:0;bottom:0;height:100%}#s-inr{height:100%;position:relative;max-width:45em;margin:0 auto;transform:scale(.96);opacity:0;padding-top:4.75em;padding-bottom:4.75em;position:relative;height:100%;overflow:hidden;visibility:hidden;box-shadow:rgba(3,6,9,.26) 0 13px 27px -5px}#s-bns,#s-hdr,#s-inr{background:#fff;background:var(--cc-bg)}#s-bl{overflow-y:auto;overflow-y:overlay;overflow-x:hidden;height:100%;padding:1.3em 2.1em;display:block;width:100%}#s-bns{position:absolute;bottom:0;left:0;right:0;padding:1em 2.1em;border-top:1px solid #f1f3f5;border-color:var(--cc-section-border);height:4.75em}.cc_div .cc-link{color:#253b48;color:var(--cc-btn-primary-bg);border-bottom:1px solid #253b48;border-color:var(--cc-btn-primary-bg);display:inline;padding-bottom:0;text-decoration:none;cursor:pointer;font-weight:600}.cc_div .cc-link:active,.cc_div .cc-link:hover{border-color:transparent}#c-bns button:first-child,#s-bns button:first-child{color:#fff;color:var(--cc-btn-primary-text);background:#253b48;background:var(--cc-btn-primary-bg)}#c-bns.swap button:first-child{color:#40505a;color:var(--cc-btn-secondary-text);background:#e5ebef;background:var(--cc-btn-secondary-bg)}#c-bns.swap button:last-child{color:#fff;color:var(--cc-btn-primary-text);background:#253b48;background:var(--cc-btn-primary-bg)}.cc_div .b-tg .c-tgl:checked~.c-tg{background:#253b48;background:var(--cc-toggle-bg-on)}#c-bns button:first-child:active,#c-bns button:first-child:hover,#c-bns.swap button:last-child:active,#c-bns.swap button:last-child:hover,#s-bns button:first-child:active,#s-bns button:first-child:hover{background:#1d2e38;background:var(--cc-btn-primary-hover-bg)}#c-bns.swap button:first-child:active,#c-bns.swap button:first-child:hover{background:#d8e0e6;background:var(--cc-btn-secondary-hover-bg)}#s-hdr{position:absolute;top:0;width:100%;display:table;padding:0 2.1em;height:4.75em;vertical-align:middle;z-index:2;border-bottom:1px solid #f1f3f5;border-color:var(--cc-section-border)}#s-ttl{display:table-cell;vertical-align:middle;font-size:1em}#s-c-bn{padding:0;width:1.7em;height:1.7em;font-size:1.45em;margin:0;font-weight:initial;position:relative}#s-c-bnc{display:table-cell;vertical-align:middle}.cc_div span.t-lb{position:absolute;top:0;z-index:-1;opacity:0;pointer-events:none;overflow:hidden}#c_policy__text{height:31.25em;overflow-y:auto;margin-top:1.25em}#c-s-in{position:relative;transform:translateY(-50%);top:50%;height:100%;height:calc(100% - 2.5em);max-height:37.5em}@media screen and (min-width:688px){#s-bl::-webkit-scrollbar{width:.9em;height:100%;background:0 0;border-radius:0 .25em .25em 0}#s-bl::-webkit-scrollbar-thumb{border:.25em solid var(--cc-bg);background:#cfd5db;background:var(--cc-webkit-scrollbar-bg);border-radius:100em}#s-bl::-webkit-scrollbar-thumb:hover{background:#9199a0;background:var(--cc-webkit-scrollbar-bg-hover)}#s-bl::-webkit-scrollbar-button{width:10px;height:5px}}.cc_div .b-tg{position:absolute;right:0;top:0;bottom:0;display:inline-block;margin:auto;right:1.2em;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}.cc_div .b-tg .c-tgl{position:absolute;cursor:pointer;display:block;top:0;left:0;margin:0;border:0}.cc_div .b-tg .c-tg{position:absolute;background:#919ea6;background:var(--cc-toggle-bg-off);transition:background-color .25s ease,box-shadow .25s ease;pointer-events:none}.cc_div .b-tg,.cc_div .b-tg .c-tg,.cc_div .b-tg .c-tgl,.cc_div span.t-lb{width:3.4em;height:1.5em;border-radius:4em}.cc_div .b-tg .c-tg.c-ro{cursor:not-allowed}.cc_div .b-tg .c-tgl~.c-tg.c-ro{background:#d5dee2;background:var(--cc-toggle-bg-readonly)}.cc_div .b-tg .c-tgl~.c-tg.c-ro:after{box-shadow:none}.cc_div .b-tg .c-tg:after{content:"";position:relative;display:block;left:.125em;top:.125em;width:1.25em;height:1.25em;border:none;box-sizing:content-box;background:#fff;background:var(--cc-toggle-knob-bg);box-shadow:0 1px 2px rgba(24,32,35,.36);transition:transform .25s ease;border-radius:100%}.cc_div .b-tg .c-tgl:checked~.c-tg:after{transform:translateX(1.9em)}#s-bl table,#s-bl td,#s-bl th{border:none}#s-bl tbody tr{transition:background-color .25s ease}#s-bl tbody tr:hover{background:#e9eff4;background:var(--cc-cookie-category-block-bg-hover)}#s-bl table{text-align:left;border-collapse:collapse;width:100%;padding:0;margin:0;overflow:hidden}#s-bl td,#s-bl th{padding:.8em .625em;text-align:left;vertical-align:top;font-size:.8em;padding-left:1.2em}#s-bl th{font-family:inherit;padding:1.2em 1.2em}#s-bl thead tr:first-child{border-bottom:1px solid #e9edf2;border-color:var(--cc-cookie-table-border)}.force--consent #cs,.force--consent #s-cnt{width:100vw}#cm-ov,#cs-ov{position:fixed;left:0;right:0;top:0;bottom:0;visibility:hidden;opacity:0;background:#070707;background:rgba(4,6,8,.85);background:var(--cc-overlay-bg);display:none;transition:none}.c--anim #cs-ov,.force--consent .c--anim #cm-ov,.force--consent.show--consent #cm-ov,.show--settings #cs-ov{display:block}#cs-ov{z-index:2}.force--consent .cc_div{position:fixed;top:0;left:0;bottom:0;width:100%;width:100vw;visibility:hidden;transition:visibility .25s linear}.force--consent.show--consent .c--anim .cc_div,.force--consent.show--settings .c--anim .cc_div{visibility:visible}.force--consent #cm{position:absolute}.force--consent #cm.bar{width:100vw;max-width:100vw}html.force--consent.show--consent{overflow-y:hidden!important}html.force--consent.show--consent,html.force--consent.show--consent body{height:auto!important;overflow-x:hidden!important}.cc_div .act .b-bn .exp::before,.cc_div .b-bn .exp::before{border:solid #2d4156;border-color:var(--cc-btn-secondary-text);border-width:0 2px 2px 0;padding:.2em;display:inline-block;position:absolute;content:'';margin-right:15px;position:absolute;transform:translateY(-50%) rotate(45deg);left:1.2em;top:50%}.cc_div .act .b-bn .b-tl::before{transform:translateY(-20%) rotate(225deg)}.cc_div .on-i::before{border:solid #fff;border-color:var(--cc-toggle-knob-icon-color);border-width:0 2px 2px 0;padding:.1em;display:inline-block;padding-bottom:.45em;content:'';margin:0 auto;transform:rotate(45deg);top:.37em;left:.75em;position:absolute}#s-c-bn::after,#s-c-bn::before{content:'';position:absolute;left:.82em;top:.58em;height:.6em;width:1.5px;background:#444d53;background:var(--cc-btn-secondary-text);transform:rotate(45deg);border-radius:1em;margin:0 auto}#s-c-bn::after{transform:rotate(-45deg)}.cc_div .off-i,.cc_div .on-i{height:100%;width:50%;position:absolute;right:0;display:block;text-align:center;transition:opacity .15s ease}.cc_div .on-i{left:0;opacity:0}.cc_div .off-i::after,.cc_div .off-i::before{right:.8em;top:.42em;content:' ';height:.7em;width:.09375em;display:block;background:#cdd6dc;background:var(--cc-toggle-knob-icon-color);margin:0 auto;position:absolute;transform-origin:center}.cc_div .off-i::before{transform:rotate(45deg)}.cc_div .off-i::after{transform:rotate(-45deg)}.cc_div .b-tg .c-tgl:checked~.c-tg .on-i{opacity:1}.cc_div .b-tg .c-tgl:checked~.c-tg .off-i{opacity:0}#cm.box.middle,#cm.cloud.middle{top:50%;transform:translateY(-37%);bottom:auto}#cm.box.middle.zoom,#cm.cloud.middle.zoom{transform:scale(.95) translateY(-50%)}#cm.box.center{left:1em;right:1em;margin:0 auto}#cm.cloud{max-width:50em;margin:0 auto;text-align:center;left:1em;right:1em;overflow:hidden;padding:1.3em 2em;width:unset}.cc_div .cloud #c-inr{display:table;width:100%}.cc_div .cloud #c-inr-i{width:70%;display:table-cell;vertical-align:top;padding-right:2.4em}.cc_div .cloud #c-txt{font-size:.85em}.cc_div .cloud #c-bns{min-width:170px;display:table-cell;vertical-align:middle}#cm.cloud .c-bn{margin:.625em 0 0 0;width:100%}#cm.cloud .c-bn:first-child{margin:0}#cm.cloud.left{margin-right:1.25em}#cm.cloud.right{margin-left:1.25em}#cm.bar{width:100%;max-width:100%;left:0;right:0;bottom:0;border-radius:0;position:fixed;padding:2em}#cm.bar #c-inr{max-width:32em;margin:0 auto}#cm.bar #c-bns{max-width:33.75em}#cm.bar #cs{padding:0}.cc_div .bar #c-s-in{top:0;transform:none;height:100%;max-height:100%}.cc_div .bar #s-bl,.cc_div .bar #s-bns,.cc_div .bar #s-hdr{padding-left:1.6em;padding-right:1.6em}.cc_div .bar #cs{padding:0}.cc_div .bar #s-inr{margin:0;margin-left:auto;margin-right:0;border-radius:0;max-width:32em}.cc_div .bar.left #s-inr{margin-left:0;margin-right:auto}.cc_div .bar #s-bl table,.cc_div .bar #s-bl tbody,.cc_div .bar #s-bl td,.cc_div .bar #s-bl th,.cc_div .bar #s-bl thead,.cc_div .bar #s-bl tr,.cc_div .bar #s-cnt{display:block}.cc_div .bar #s-bl thead tr{position:absolute;top:-9999px;left:-9999px}.cc_div .bar #s-bl tr{border-top:1px solid #e3e7ed;border-color:var(--cc-cookie-table-border)}.cc_div .bar #s-bl td{border:none;position:relative;padding-left:35%}.cc_div .bar #s-bl td:before{position:absolute;left:1em;padding-right:.625em;white-space:nowrap;content:attr(data-column);color:#000;color:var(--cc-text);overflow:hidden;text-overflow:ellipsis}#cm.top{bottom:auto;top:1.25em}#cm.left{right:auto;left:1.25em}#cm.right{left:auto;right:1.25em}#cm.bar.left,#cm.bar.right{left:0;right:0}#cm.bar.top{top:0}@media screen and (max-width:688px){#cm,#cm.cloud,#cm.left,#cm.right{width:auto;max-width:100%;margin:0;padding:1.4em!important;right:1em;left:1em;bottom:1em;display:block}.force--consent #cm,.force--consent #cm.cloud{width:auto;max-width:100vw}#cm.top{top:1em;bottom:auto}#cm.bottom{bottom:1em;top:auto}#cm.bar.bottom{bottom:0}#cm.cloud .c-bn{font-size:.85em}#s-bns,.cc_div .bar #s-bns{padding:1em 1.3em}.cc_div .bar #s-inr{max-width:100%;width:100%}.cc_div .cloud #c-inr-i{padding-right:0}#cs{border-radius:0;padding:0}#c-s-in{max-height:100%;height:100%;top:0;transform:none}.cc_div .b-tg{transform:scale(1.1);right:1.1em}#s-inr{margin:0;padding-bottom:7.9em;border-radius:0}#s-bns{height:7.9em}#s-bl,.cc_div .bar #s-bl{padding:1.3em}#s-hdr,.cc_div .bar #s-hdr{padding:0 1.3em}#s-bl table{width:100%}#s-inr.bns-t{padding-bottom:10.5em}.bns-t #s-bns{height:10.5em}.cc_div .bns-t .c-bn{font-size:.83em;padding:.9em 1.6em}#s-cnt .b-bn .b-tl{padding-top:1.2em;padding-bottom:1.2em}#s-bl table,#s-bl tbody,#s-bl td,#s-bl th,#s-bl thead,#s-bl tr,#s-cnt{display:block}#s-bl thead tr{position:absolute;top:-9999px;left:-9999px}#s-bl tr{border-top:1px solid #e3e7ed;border-color:var(--cc-cookie-table-border)}#s-bl td{border:none;position:relative;padding-left:35%}#s-bl td:before{position:absolute;left:1em;padding-right:.625em;white-space:nowrap;content:attr(data-column);color:#000;color:var(--cc-text);overflow:hidden;text-overflow:ellipsis}#cm .c-bn,.cc_div .c-bn{width:100%;margin-right:0}#s-cnt #s-rall-bn{margin-left:0}.cc_div #c-bns{flex-direction:column}#c-bns button+button,#s-cnt button+button{margin-top:.625em;margin-left:0;float:unset}#cm.box,#cm.cloud{left:1em;right:1em;width:auto}#cm.cloud.left,#cm.cloud.right{margin:0}.cc_div .cloud #c-bns,.cc_div .cloud #c-inr,.cc_div .cloud #c-inr-i{display:block;width:auto;min-width:unset}.cc_div .cloud #c-txt{font-size:.9em}.cc_div .cloud #c-bns{margin-top:1.625em}}.cc_div.ie #c-vln{height:100%;padding-top:5.62em}.cc_div.ie .bar #c-vln{padding-top:0}.cc_div.ie #cs{max-height:37.5em;position:relative;top:0;margin-top:-5.625em}.cc_div.ie .bar #cs{margin-top:0;max-height:100%}.cc_div.ie #cm{border:1px solid #dee6e9}.cc_div.ie #c-s-in{top:0}.cc_div.ie .b-tg{padding-left:1em;margin-bottom:.7em}.cc_div.ie .b-tg .c-tgl:checked~.c-tg:after{left:1.95em}.cc_div.ie #s-bl table{overflow:auto}.cc_div.ie .b-tg .c-tg{display:none}.cc_div.ie .b-tg .c-tgl{position:relative;display:inline-block;vertical-align:middle;margin-bottom:.2em;height:auto}.cc_div.ie #s-cnt .b-bn .b-tl{padding:1.3em 6.4em 1.3em 1.4em}.cc_div.ie .bar #s-bl td:before{display:none}.cc_div.ie .bar #s-bl td{padding:.8em .625em .8em 1.2em}.cc_div.ie .bar #s-bl thead tr{position:relative}.cc_div.ie .b-tg .t-lb{filter: alpha(opacity=0);}.cc_div.ie #cm-ov,.cc_div.ie #cs-ov{filter: alpha(opacity=80);}

:root{
    --cc-bg: #f9faff;
    --cc-text:  #ED6CA6;;
    --cc-btn-primary-bg: #ED6CA6;
    --cc-btn-primary-text: #FFFFFF;
    --cc-btn-primary-hover-bg: #EA4D96;
    --cc-btn-secondary-bg: #ED6CA640;
    --cc-btn-secondary-text: var(--cc-text);
    --cc-btn-secondary-hover-bg: #ED6CA660;
    --cc-toggle-bg-off: #FAD5E8;
    --cc-toggle-bg-on: #ED6CA6;
    --cc-toggle-bg-readonly:#ED6CA640;
    --cc-toggle-knob-bg: #fff;
    --cc-toggle-knob-icon-color: #ecf2fa;
    --cc-block-text: var(--cc-text);
    --cc-cookie-category-block-bg: #FDEDFB;
    --cc-cookie-category-block-bg-hover: #FAD5E8;
    --cc-section-border: #f1f3f5;
    --cc-cookie-table-border: #e1e7f3;
    --cc-overlay-bg: rgba(230, 235, 255, .85);
    --cc-webkit-scrollbar-bg: #ebeff9;
    --cc-webkit-scrollbar-bg-hover: #ED6CA6;
}

#c-ttl{
    color: var(--cc-btn-primary-bg);
}

/* Custom border radius */
#cm, 
#s-bl .act .b-acc, 
 #s-inr, 
.cc_div .b-tl, 
.cc_div .c-bl{
    border-radius: 1.2em;
}

.cc_div .c-bn{
    border-radius: .7em;
}

/* Buttons colors & resize */

#s-c-bn, #s-c-bn:hover {
  background : #f9faff !important;
}

#s-all-bn, #s-rall-bn, #s-sv-bn {
  height: 3em;
  max-width: 31.7%;
}

@media screen and (max-width: 688px){
  #s-all-bn, #s-rall-bn, #s-sv-bn {
    max-width: 100%;
  }
}

 /*============================================================
  Colors + Custom Styles - add and override styles below
============================================================*/

/* STORE  LOGO LARGER*/

.store-logo {
  max-height: 400px;
}

/* BACKGROUNDS */ 

body {
  background: #FAD5E8 ;
  background-image: url("https://assets.bigcartel.com/theme_images/76375443/stars-background-600px.png?auto=format&fit=max&h=400&w=400"); /* fallback */
  background-image: url("https://assets.bigcartel.com/theme_images/76375443/stars-background-600px.png?auto=format&fit=max&h=400&w=400"), linear-gradient(to top right, #FAD5E8 0%, #FDEDFB 100%); /* W3C */
  background-image: url("https://assets.bigcartel.com/theme_images/76375443/stars-background-600px.png?auto=format&fit=max&h=400&w=400"), linear-gradient(to top right, #FAD5E8 0%, #FDEDFB 100%); /* W3C */
  background-attachment: fixed;
}

#cart_page .main, #contact_page .main, #maintenance_page .main, #product_page .main, .custom .main {
  background-color: #FDEDFB80;
}  

.announcement-message {
  background-color: #ED6CA6;
  color: #FDEDFB;
}

/* BRAND NAV */

.brand-nav ul li:not(:last-child):after {
    content: none;
}

.artist-category-nav .brand-nav ul li a img {
  display: inline;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100px;
}

.artist-category-nav .brand-nav ul li{
  margin: 4px 25px 4px 25px;
}

@media screen and (min-width: 768px){
  .artist-category-nav .brand-nav ul li{
    margin: 4px 60px 4px 60px;
  }
  .artist-category-nav .brand-nav ul li a img {
  max-width: 150%;
  max-height: 150px;
}
}

/* MOBILE NAV */
@media screen and (max-width: 767px)
{
   .header-nav ul li {
      padding: 8px 0px;
  }
}

/* PRODUCT PAGE*/

#product_page .related-products-container.under_image + footer .footer-nav {
    border-top: 0px;
}

/* SIZE GUIDE TABLE */

.taille { width:100%; text-align:center;}
.taille tbody td {  background-color:#FAD5E8; }
.taille thead td {  background-color:#FAD5E8;  font-weight: bold; } 
.bold  {   font-weight: bold;  }

/* COLOR CHART */

.conteneur {display: inline-block; width: 100px; margin-left:29px; margin-top:25px; text-align:center; vertical-align: top; padding-left:11px;}
.couleur {text-align:center; font-size:10px;}