
.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

body {
  font-family: "Work Sans", sans-serif;
  color: #343434;
  background-color: white;
}
@media (min-width: 768px) {
  body {
    background-color: inherit;
  }
}

.body-container {
  min-height: 100vh;
  background-color: white;
  display: flex;
  flex-direction: column;
}

#top-navbar {
  padding: 30px 20px 0 20px !important;
  background-color: white;
  padding-top: 14px;
  padding-bottom: 14px;
}
@supports (padding-top: env(safe-area-inset-top)) {
  #top-navbar {
    --safe-area-inset-top: env(safe-area-inset-top);
    padding-top: calc(14px + var(--safe-area-inset-top));
  }
}
@media (min-width: 768px) {
  #top-navbar {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 992px) {
  #top-navbar {
    padding-left: 40px;
    padding-right: 40px;
  }
}
#top-navbar .navbar-brand {
  font-size: 18px;
}
@media (min-width: 768px) {
  #top-navbar .navbar-brand {
    font-size: 28px;
  }
}
#top-navbar .navbar-toggler {
  border: none;
}
#top-navbar .right-btn {
  margin-left: 15px;
}
#top-navbar .bb-navbar-nav {
  padding-top: 20px;
  padding-bottom: 15px;
}
@media (min-width: 992px) {
  #top-navbar .bb-navbar-nav {
    padding-top: 0;
    padding-right: 10px;
    width: 100%;
    justify-content: flex-end;
  }
  #top-navbar .bb-navbar-nav .nav-item {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#top-navbar .bb-navbar-nav .nav-link {
  color: black;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 576px) {
  #top-navbar .bb-navbar-nav :last-of-type {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
  }
  #top-navbar .bb-navbar-nav :last-of-type .btn {
    font-size: 16px;
    height: 40px;
    margin-top: 10px;
  }
}
@media (min-width: 768px) {
  #top-navbar .bb-navbar-nav :last-of-type {
    width: auto;
    display: flex;
    justify-content: space-evenly;
  }
  #top-navbar .bb-navbar-nav :last-of-type .btn {
    font-size: 16px;
    height: 30px;
  }
}
#top-navbar .btn {
  font-weight: 700;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 14px;
}
@media (min-width: 768px) {
  #top-navbar .btn {
    font-size: 16px;
    padding-top: 2px;
    padding-bottom: 2px;
    width: 100px;
  }
}

/***************************
  Common Stuff
***************************/
.accent-color-1 {
  background-color: #FAB96F;
}

.accent-color-2 {
  background-color: #FDCF5B;
}

.accent-color-3 {
  background-color: #FDF3E0;
}

.page-content-container {
  margin-top: 92px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@supports (padding-top: env(safe-area-inset-top)) {
  .page-content-container {
    --safe-area-inset-top: env(safe-area-inset-top);
    margin-top: calc(92px + var(--safe-area-inset-top));
  }
}
.page-content-container .page-content-inner-container {
  padding: 30px 25px;
}
@media (min-width: 992px) {
  .page-content-container .page-content-inner-container {
    max-width: 35%;
  }
}

.page-header-section {
  margin-bottom: 30px;
}
.page-header-section .page-header-title {
  font-weight: bold;
  font-size: 24px;
}
.page-header-section .page-header-text {
  font-size: 16px;
}

.resource-list {
  margin-left: 4%;
  margin-right: 4%;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  justify-content: flex-start;
}
.resource-list .home-page-card {
  margin-bottom: 20px;
}
.resource-list .home-page-card.redeemed p, .resource-list .home-page-card.redeemed span {
  text-decoration: line-through;
}
.resource-list .home-page-card a {
  color: inherit;
}
.resource-list .home-page-card a:hover {
  text-decoration: none;
}
.resource-list .home-page-card .img-container {
  border: 1px solid lightgray;
  height: 150px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .resource-list .home-page-card .img-container {
    height: 200px;
  }
}
.resource-list .home-page-card .card-pill {
  margin-left: 10px;
  margin-top: 13px;
  position: absolute;
  border: 1px solid #D8D8D8;
  color: #343434;
  padding: 2px 20px;
  text-align: center;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  background-color: white;
  z-index: 1000;
}
.resource-list .home-page-card .fave-icon {
  position: absolute;
  right: 0;
  margin-right: 30px;
  margin-left: 5px;
  font-size: 22px;
  color: white;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.resource-list .home-page-card .captions {
  padding-left: 5px;
  padding-right: 5px;
}
.resource-list .home-page-card .captions p {
  margin-bottom: 0;
}
.resource-list .home-page-card .captions .first-line {
  display: flex;
  justify-content: space-between;
}
.resource-list .home-page-card .captions .first-line .resource-name {
  margin-top: 7px;
  font-weight: bold;
  font-size: 20px;
  flex: 1;
}
@media (min-width: 768px) {
  .resource-list .home-page-card .captions .first-line .resource-name {
    padding-right: 10px;
  }
}
.resource-list .home-page-card .captions .first-line .directions-link {
  margin-top: 7px;
  font-size: 13px;
  font-weight: 500;
  width: auto;
  height: 30px;
  padding: 1px 8px;
  border-radius: 5px;
  text-decoration: underline;
  text-underline-offset: 2.5px;
}
.resource-list .home-page-card .captions .first-line .directions-link .direction-icon {
  margin-right: 3px;
}
.resource-list .home-page-card .captions .second-line-txt {
  font-size: 16px;
  display: block;
}

.font-weight-semibold {
  font-weight: 600;
}

.bizbattles-form label {
  font-weight: bold;
  font-size: 16px;
}
.bizbattles-form .asteriskField {
  display: none;
}

.bizbattles-form-control {
  border: 1px solid black;
  border-radius: 0;
}
.bizbattles-form-control:focus {
  box-shadow: none;
  border-color: #FAB96F;
}
.bizbattles-form-control::placeholder {
  font-size: 14px;
  color: #495057;
}
.bizbattles-form-control.no-border {
  border: none;
}

.bizbattles-link {
  color: #343434;
  text-decoration: underline !important;
}

.bizbattles-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
}
.bizbattles-btn.primary {
  background: #FAB96F;
  color: black;
}
.bizbattles-btn.secondary {
  background: #F7F2F2;
  color: white;
}
.bizbattles-btn.black {
  background: #191919;
  color: white;
}
.bizbattles-btn.outline {
  background-color: white;
  border: 2px solid #FAB96F;
}
.bizbattles-btn.loading {
  background: black !important;
}

.bizbattles-checkbox {
  min-height: 20px;
  min-width: 20px;
  margin-right: 15px;
}

.alert-modal.show {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.alert-modal.show .modal-dialog {
  width: 85%;
  max-width: 300px;
}
.alert-modal.show .modal-content {
  border-radius: 10px;
}
.alert-modal.show .modal-content .modal-header {
  justify-content: center;
  border: none;
  padding-top: 1.5rem;
  padding-bottom: 0;
}
.alert-modal.show .modal-content .modal-header .modal-title {
  font-weight: bold;
}
.alert-modal.show .modal-content .modal-body .modal-msg {
  font-size: 14px;
  margin-bottom: 0;
  text-align: center;
}
.alert-modal.show .modal-content .modal-footer {
  border: none;
  justify-content: center;
  padding: 0;
  height: 50px;
  margin-bottom: 10px;
}
.alert-modal.show .modal-content .modal-footer .modal-footer-btn {
  width: 50%;
  margin: 0;
  border-radius: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.alert-modal.show .modal-content .modal-footer .modal-footer-btn.primary-btn {
  font-weight: 800;
}

.line-separator {
  height: 2px;
  background-color: #EFEFEF;
  margin: 25px;
}

.display-linebreak {
  white-space: pre-line;
}

.two-line-ellipsis {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.redeemed-overlay {
  background-color: white;
  opacity: 0.7;
  background-image: url("/static/images/checkmark-blue.1bc6cfc5c641.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40%;
  height: 100%;
  width: 100%;
}
@media (min-width: 576px) {
  .redeemed-overlay {
    background-size: 35%;
  }
}
.redeemed-overlay.in-card {
  border-radius: 15px;
  background-size: 35%;
}
@media (min-width: 576px) {
  .redeemed-overlay.in-card {
    background-size: 22%;
  }
}
@media (min-width: 768px) {
  .redeemed-overlay.in-card {
    background-size: 35%;
  }
}

.bizbattles-card {
  text-align: center;
  box-shadow: 0 0 10px #D9D9D9;
  border-radius: 15px;
  padding: 10px;
  margin-bottom: 20px;
}
.bizbattles-card.selected {
  color: white;
  background-color: black;
}

.sheen {
  position: relative;
  overflow: hidden;
}

.sheen:after {
  animation: sheen 1.5s 1.5s forwards;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5) 50%, transparent);
  transform: rotateZ(60deg) translate(-1em, 4em);
}

@keyframes sheen {
  100% {
    transform: rotateZ(60deg) translate(0, -4em);
  }
}
.htmx-indicator {
  display: none;
}

.htmx-request .htmx-indicator {
  display: inline;
}

.htmx-request.htmx-indicator {
  display: inline;
}
.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader {
  font-size: 3px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media (min-width: 992px) {
  .login-page .auth-container {
    max-width: 25% !important;
  }
}

@media (min-width: 992px) {
  .auth-container {
    max-width: 40%;
  }
}
.auth-container .asteriskField {
  display: none;
}
.auth-container .header-text-1 {
  margin-bottom: 5px;
}
.auth-container .header-text-2 {
  margin-bottom: 20px;
}
.auth-container .errorlist {
  color: #721c24;
  border-color: #f5c6cb;
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.auth-container .errorlist li {
  list-style-type: none;
}
.auth-container .alert-block ul {
  padding-left: 0;
}
.auth-container .alert-block li {
  list-style-type: none;
}
.auth-container .form-group label {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
}
.auth-container .form-group label.checkbox-label {
  font-weight: normal;
  font-size: 13px;
  margin: 0;
}
.auth-container .form-group .errorlist {
  color: #fa755a;
  list-style-type: none;
  padding: 5px;
  font-size: 14px;
}
.auth-container .login-link {
  display: block;
  text-align: center;
  color: #343434;
  text-decoration: underline;
  margin-bottom: 15px;
  font-size: 14px;
}
.auth-container .main-btn {
  margin-bottom: 30px;
}
#home-page {
  max-width: 700px;
}
#home-page .header-wrapper {
  margin-top: 50px;
  background-color: white;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#home-page .header-wrapper .header-text {
  padding-left: 10px;
  padding-right: 10px;
  font-weight: bold;
  font-size: 36px;
}
@media (min-width: 768px) {
  #home-page .header-wrapper .header-text {
    margin-top: 0;
    font-size: 48px;
    margin-bottom: 20px;
  }
}
#home-page .header-wrapper .header-subtext {
  margin: 2px 15px 15px 15px;
  font-size: 16px;
}
@media (min-width: 768px) {
  #home-page .header-wrapper .header-subtext {
    max-width: 600px;
  }
}
#home-page .header-wrapper .parternship-logo {
  max-width: 250px;
}
#home-page .header-wrapper .parternship-logo.tampa {
  max-width: 200px;
  margin-top: 10px;
}
#home-page .header-wrapper .parternship-logo.cincy {
  max-width: 200px;
  max-height: 70px;
}
#home-page .header-wrapper .learn-more-btn {
  background-color: black;
  margin-top: 7px;
  color: white;
  border-radius: 4px;
  font-weight: bold;
  font-size: 14px;
  padding: 3px 20px;
}
@media (min-width: 768px) {
  #home-page .header-wrapper .learn-more-btn {
    padding: 10px 60px;
  }
}
#survey-page {
  padding: 30px 25px;
  text-align: center;
}
#survey-page .header-section .header-title {
  color: #343434;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 16px;
}
#survey-page .header-section .subheader-text {
  color: #343434;
  font-size: 16px;
  margin-bottom: 0;
}
#survey-page .header-section .underline {
  text-decoration: underline;
}
#survey-page .question-text {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 7px;
}
#survey-page .star-rating-container .dv-star-rating-star {
  font-size: 34px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 0;
}
#survey-page .question-section {
  margin-bottom: 35px;
}
#survey-page .question-section .yes-no-section {
  display: flex;
  justify-content: center;
}
#survey-page .question-section .yes-no-section .yes-no-btn {
  margin-left: 15px;
  margin-right: 15px;
  max-width: 100px;
  height: 35px;
  border-radius: 10px;
}
#survey-page .feedback-for-us-section #feedback-for-us-field {
  border: 2px solid #C2C1C1;
  border-radius: 5px;
  width: 100%;
  max-width: 450px;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
}
#survey-page .submit-btn-container {
  display: flex;
  justify-content: center;
}
#survey-page .submit-btn-container .btn {
  max-width: 450px;
}
#support-page {
  padding: 25px 10px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  #support-page {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  #support-page .contact-section {
    order: 1;
    margin-top: 50px;
  }
}
#support-page .get-in-touch-section {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
#support-page .get-in-touch-section .contact-row {
  display: flex;
  flex-direction: row;
  margin-bottom: 25px;
}
#support-page .get-in-touch-section .contact-row a:first-of-type {
  color: unset;
}
#support-page .get-in-touch-section .contact-row a:first-of-type i {
  margin-right: 15px;
  font-size: 30px;
}
#support-page .get-in-touch-section .contact-row span {
  font-size: 14px;
}
#support-page .get-in-touch-section .contact-row span a {
  color: #3B3B3B;
  text-decoration: underline;
}
#support-page .faqs-section {
  margin-top: 20px;
}
@media (min-width: 992px) {
  #support-page .faqs-section {
    margin-top: 50px;
    padding-right: 30px;
  }
}
#support-page .faqs-section .page-header-section {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  #support-page .faqs-section .page-header-section .page-header-title {
    text-align: left;
  }
}
.bizbattles-admin-stats {
  margin-top: -92px;
  padding: 25px;
  font-size: 14px;
  font-family: "Roboto", "Lucida Grande", "DejaVu Sans", "Bitstream Vera Sans", Verdana, Arial, sans-serif;
}
.bizbattles-admin-stats table {
  width: 60%;
}
.bizbattles-admin-stats .stat-val {
  text-align: right;
}
.email-collection-wrapper {
  display: flex;
  justify-content: center;
}

.email-collection {
  margin-left: 4%;
  margin-right: 4%;
  padding-top: 40px;
  padding-bottom: 65px;
  margin-bottom: 65px;
  max-width: 500px;
}
.email-collection .header-label {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}
.email-collection .body-text {
  text-align: center;
  font-size: 14px;
}
.email-collection .input-and-btn {
  display: flex;
}
.email-collection .input-and-btn input {
  height: 32px;
  margin-right: 16px;
  font-size: 13px;
}
.email-collection .input-and-btn button {
  height: 32px;
  font-size: 13px;
  max-width: 110px;
}
.email-collection .input-and-btn button .loader {
  font-size: 2px;
}
.email-collection .response-msg {
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 0;
  margin-left: 5px;
}
.email-collection .response-msg.success {
  color: black;
}
.email-collection .response-msg.error {
  color: #fa755a;
}
#battle-detail-page {
  display: flex;
  flex-direction: column;
  max-width: 700px;
}
#battle-detail-page .header-img-container {
  display: flex;
  justify-content: center;
}
#battle-detail-page .header-img-container .header-img {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}
#battle-detail-page .offers-header-bar #search-offers-btn {
  background-color: white;
  font-size: 18px;
  border: 1px solid rgb(206, 212, 218);
  border-radius: 4px;
  height: 38px;
  width: 38px;
  color: #495057;
}
#battle-detail-page .offers-header-bar #search-offers-btn:focus {
  outline: none;
}
#battle-detail-page .content-wrapper {
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#battle-detail-page .content-wrapper .header-text {
  font-weight: bold;
  font-size: 32px;
}
@media (min-width: 768px) {
  #battle-detail-page .content-wrapper .header-text {
    margin-top: 0;
    font-size: 48px;
    margin-bottom: 20px;
  }
}
#battle-detail-page .content-wrapper .description {
  font-size: 16px;
}
@media (min-width: 768px) {
  #battle-detail-page .content-wrapper .description {
    max-width: 600px;
  }
}
#battle-detail-page .content-wrapper .post-purchase-text-section #post-purchase-content.truncate {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#battle-detail-page .content-wrapper .post-purchase-text-section #show-more-purchase-text-btn {
  margin-bottom: 20px;
  padding: 0;
  font-size: 14px;
}
#battle-detail-page .resource-list .strikethrough {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
#battle-detail-page .resource-list .hours-container {
  position: absolute;
  top: 8px;
  left: 25px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 2px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.battle-purchase-bar {
  height: 85px;
}
.battle-purchase-bar .purchase-bar-content {
  max-width: 700px;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
  padding-left: 10px;
  padding-right: 10px;
  justify-content: space-around;
}
@media (min-width: 768px) {
  .battle-purchase-bar .purchase-bar-content {
    justify-content: center;
  }
}
.battle-purchase-bar .purchase-bar-content .action-btn {
  padding-top: 12px;
  padding-bottom: 12px;
  max-width: 200px;
  flex: 1;
}
.battle-purchase-bar .purchase-bar-content .action-btn.htmx-request .action-btn-text {
  display: none;
}
.battle-purchase-bar .purchase-bar-content .action-btn.join-waitlist-btn {
  white-space: nowrap;
}
.battle-purchase-bar .purchase-bar-content #waitlist-email-input {
  max-width: 190px;
  height: 50px;
}
@media (min-width: 768px) {
  .battle-purchase-bar .purchase-bar-content #waitlist-email-input {
    max-width: 250px;
  }
}
@media (min-width: 768px) {
  .battle-purchase-bar {
    justify-content: center;
    gap: 20px;
  }
}
.battle-purchase-bar.SOLD_OUT {
  justify-content: space-between;
}
#business-listing-page {
  display: flex;
  flex-direction: column;
  max-width: 700px;
}
#business-listing-page .header-img-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
#business-listing-page .header-img-container .glide__slide {
  height: auto;
}
#business-listing-page .header-img-container .glide__bullets {
  bottom: 1em;
}
#business-listing-page .header-img-container .header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#business-listing-page .content-wrapper {
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#business-listing-page .content-wrapper .header-text {
  font-weight: bold;
  font-size: 32px;
}
@media (min-width: 768px) {
  #business-listing-page .content-wrapper .header-text {
    margin-top: 0;
    font-size: 48px;
    margin-bottom: 20px;
  }
}
#business-listing-page .content-wrapper .description {
  font-size: 16px;
}
@media (min-width: 768px) {
  #business-listing-page .content-wrapper .description {
    max-width: 600px;
  }
}
#business-listing-page .content-wrapper .hours p {
  margin-bottom: 0;
}
#business-listing-page .content-wrapper .hours .hours-list {
  margin-top: 10px;
  width: 270px;
}
#business-listing-page .offer-content {
  background-color: #FDF3E0;
  padding: 12px;
}
#business-listing-page .offer-content.redeemed {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
#business-listing-page .offer-content .offer-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
#business-listing-page .comm-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
#business-listing-page .comm-links a {
  margin-bottom: 10px;
}
#business-listing-page .redeem-bar {
  height: 85px;
  justify-content: space-between;
  gap: 5px;
}
@media (min-width: 768px) {
  #business-listing-page .redeem-bar {
    justify-content: center;
    gap: 50px;
  }
}
#business-listing-page .redeem-bar.PURCHASE_BATTLE {
  justify-content: space-around;
}
@media (min-width: 768px) {
  #business-listing-page .redeem-bar.PURCHASE_BATTLE {
    justify-content: center;
    gap: 20px;
  }
}
#business-listing-page .redeem-bar span {
  flex: 1;
}
@media (min-width: 768px) {
  #business-listing-page .redeem-bar span {
    flex: unset;
  }
}
#business-listing-page .redeem-bar .redeem-btn {
  padding: 12px 12px;
  flex: 1;
  max-width: 200px;
}
#business-listing-page .redeem-bar #see-details-link {
  padding: 0;
  margin-left: -1px;
}
#business-listing-page #redeem-modal.fade .modal-dialog {
  transform: translate3d(0, 100vh, 0);
  transition-duration: 50ms;
}
#business-listing-page #redeem-modal.show .modal-dialog {
  transform: translate3d(0, 0, 0);
  transition-duration: 100ms;
}
@media (max-width: 576px) {
  #business-listing-page #redeem-modal .modal-dialog {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
  }
}
#business-listing-page #redeem-modal .modal-dialog .modal-content {
  text-align: center;
  border-radius: 0;
  background-color: #FDF3E0;
}
#business-listing-page #redeem-modal .modal-dialog .modal-content .modal-header {
  border-bottom: 0;
  padding-bottom: 0;
}
#business-listing-page #redeem-modal .modal-dialog .modal-content .modal-body {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 18px;
  padding-right: 18px;
}
#business-listing-page #redeem-modal .modal-dialog .modal-content .modal-body .modal-title {
  margin-bottom: 10px;
}
#business-listing-page #redeem-modal .modal-dialog .modal-content .modal-footer {
  border-top: 0;
  justify-content: space-between;
}
#business-listing-page #redeem-modal .modal-dialog .modal-content .modal-footer span {
  flex: 1;
  text-align: left;
}
#business-listing-page #redeem-modal .modal-dialog .modal-content .modal-footer #confirm-redeem-btn {
  padding: 12px 36px;
}
@media (max-width: 576px) {
  #business-map {
    width: 100vw !important;
    margin-left: -15px;
    margin-right: -15px;
  }
}
#business-map .map-btn {
  bottom: 20px !important;
  right: 12px !important;
  border: none;
  border-radius: 50%;
  background-color: white;
  height: 45px;
  width: 45px;
  color: #343434;
  font-size: 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#business-map .map-btn.location-btn {
  bottom: 70px !important;
}
#business-map .map-btn.center-btn {
  bottom: 20px !important;
}
#business-map .gm-style-iw {
  min-width: 200px !important;
  width: 240px !important;
  max-height: 250px !important;
}
#business-map .gm-style-iw .gm-style-iw-d {
  max-height: 250px !important;
}
#business-map .gm-style-iw button {
  width: 36px !important;
  height: 28px !important;
}
#business-map .gm-style-iw button span {
  width: 16px !important;
  height: 16px !important;
  margin: 0 26px !important;
}
#business-map .gm-style-iw .cb-iw-title {
  font-size: 18px;
}
#business-map .gm-style-iw .cb-iw-offer-name.redeemed {
  text-decoration: line-through;
}
#business-map .gm-style-iw .cb-iw-special-note {
  max-height: 80px;
}
#business-map .gm-style-iw .links {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
#business-admin-page .fld-row {
  display: flex;
  justify-content: space-between;
}

/*# sourceMappingURL=styles.css.085565e4d2f4.map */