/* Book button legacy compatability styles */
/* ------------------------------------------------- */
/* @formatter:off */
/* noinspection ALL */
.book-btn-container{height:56px;bottom:0;padding:5px 10px;font-size:20px;position:fixed;z-index:90;width:100%;background-color:#2a2a2a;box-sizing:border-box;display:flex;justify-content:center}.book-btn-container:before,.book-btn-container:after{width:50px;height:50px;content:" ";position:absolute;bottom:0;background-repeat:no-repeat;transform:rotate(45deg);z-index:-1}.book-btn-container:before{left:0;background-image:url("https://enchantedfairies.imgix.net/giveaway-elements/LEFT_STARS_50x70.png?auto=format")}.book-btn-container:after{right:0;background-image:url("https://enchantedfairies.imgix.net/giveaway-elements/RIGHT-STARS_50x70.png?auto=format")}.book-btn-container--hidden{display:none}
/* noinspection ALL */
.book-btn{text-transform:uppercase;background:#e3ca9f;font-family:inherit;font-weight:normal;color:black;font-style:italic;flex:1;display:flex;align-items:center;justify-content:center;font-size:.7em;border:0;cursor:pointer;max-width:600px;transition:transform .2s ease-in-out}@media(min-width:429px){.book-btn{font-size:1em}}@media(hover:hover){.book-btn:hover{transform:scale(1.05)}.book-btn:active{transform:scale(0.95)}}
/* @formatter:on */
/* ------------------------------------------------- */

/*
 * Sticky bar
 */

.sticky-bar {
  top: 0;
  padding: 10px;
  font-size: 20px;
  position: fixed;
  height: 50px;
  z-index: 90;
  width: 100%;
  background-color: #2a2a2a;
  box-sizing: border-box;
}

.sticky-bar:before,
.sticky-bar:after {
  width: 50px;
  height: 50px;
  content: " ";
  position: absolute;
  bottom: 0;
  background-repeat: no-repeat;
  display: none;
}

@media screen and (min-width: 768px) {
  .sticky-bar:before {
    left: 0;
    background-image: url("https://enchantedfairies.imgix.net/giveaway-elements/LEFT_STARS_50x70.png?auto=format");
    display: initial;
  }

  .sticky-bar:after {
    right: 0;
    background-image: url("https://enchantedfairies.imgix.net/giveaway-elements/RIGHT-STARS_50x70.png?auto=format");
    display: initial;
  }
}

.sticky-center {
  margin: auto;
  display: flex;
  justify-content: center;
}

.geo-location-text {
  font-size: 1.2em;
  font-weight: normal;
  font-family: Montserrat, sans-serif;
  color: #e3ca9f;
  display: flex;
  align-items: center;
  height: 35px;
}

@media (max-width: 800px) {
  .geo-location-text {
    font-size: 1em;
  }
}

@media (max-width: 425px) {
  .geo-location-text {
    font-size: .75em;
  }
}

.geo-icon-image {
  display: inline-block;
  width: 24px;
  height: 30px;
  left: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23e3ca9f' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 010-5 2.5 2.5 0 010 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50%;
  margin-right: 10px;
}

/*
 * Location button/switch
 */

.location-selector {
  min-width: 300px;
  height: 35px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  color: #fff;
  font-size: 1.2em;
  float: left;
  font-family: Montserrat, sans-serif;
}

.location-selector:focus,
.location-selector:focus-visible {
  outline: 2px solid #c39752;
  outline-offset: -2px;
  border-radius: 4px;
}

.location-selector::after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  right: 15px;
  bottom: 0;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24'%3E%3Cpath fill='%23e3ca9f' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50%;
}

@media (hover: hover) {
  .location-selector:hover {
    border-bottom-color: #c39752;
  }
}

@media (max-width: 800px) {
  .location-selector {
    min-width: 275px;
    font-size: 1em;
  }
}

@media (max-width: 425px) {
  .location-selector {
    min-width: 205px;
    font-size: .75em;
    padding: 0 10px;
  }

  .location-selector::after {
    right: 10px;
  }
}

/*
 * Modal
 */

/* Style for body when modal is opened */
.body-sf-modal-opened {
  overflow: hidden;
}

.sf-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 100;
  display: none;
}

.sf-modal--opened {
  display: flex;
}

.sf-modal-paper {
  background-color: #2a2a2a;
  border-radius: 4px;
  box-shadow: 0 11px 15px -7px rgba(0, 0, 0, .2), 0 24px 38px 3px rgba(0, 0, 0, .14), 0 9px 46px 8px rgba(0, 0, 0, .12);
  position: relative;
  overflow-y: auto;
  width: 400px;
  max-width: calc(100% - 64px);
  max-height: calc(100% - 88px);
  font-family: Montserrat, sans-serif;
}

.sf-modal-paper--sticky-header {
  .sf-modal-header {
    position: sticky;
    top: 0;
  }

  .shop-location-box {
    scroll-margin-top: 74px;
  }
}

@media (min-width: 800px) {
  .sf-modal-paper {
    width: 600px;
  }
}

@media (min-width: 1000px) {
  .sf-modal-paper {
    width: 800px;
  }
}

.sf-modal-header {
  margin: 0px;
  padding: 16px 24px;
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  align-items: center;
  background-color: #2a2a2a;
}

.sf-modal-title {
  flex-grow: 1;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.03em;
  font-weight: normal;
  color: #fff;
}

@media (max-width: 425px) {
  .sf-modal-title {
    font-size: .85em;
  }
}

.sf-modal-close-btn {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='gray' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.sf-modal-close-btn:focus,
.sf-modal-close-btn:focus-visible {
  outline: 2px solid #c39752;
  outline-offset: 2px;
}

@media (hover: hover) {
  .sf-modal-close-btn:hover {
    background-color: rgba(0, 0, 0, 0.04);
  }
}

.sf-modal-content {
  padding: 16px 24px;
}

/*
 * Shop location modal content
 */

@media (min-width: 800px) {
  .shop-location-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .shop-location-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.shop-location-box {
  margin-bottom: 24px;
}

.shop-location-box-state {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #e3ca9f;
}

.shop-location-box-city {
  border-radius: 2px;
  font-weight: 300;
  letter-spacing: 0px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  line-height: 16px;
  text-decoration: underline dotted;
}

.shop-location-box-city--selected {
  border: 1px solid #c39752;
  padding: 4px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin: 8px 0;
}

.shop-location-box-city:focus,
.shop-location-box-city:focus-visible {
  outline: 2px solid #c39752;
  outline-offset: 2px;
  text-decoration: none;
}

@media (hover: hover) {
  .shop-location-box-city:hover {
    color: hsla(0, 0%, 100%, .7);
  }
}
