:root {
  --my-plugin_color-primary: #00a0d2;
  --primary: #fffae0;
  --button-background: #c15d47;
}
body button {
  padding: 0.1rem 0.5rem;
}
body button:hover {
  background: var(--button-background);
  color: red;
}
.expires-after {
  font-style: italic;
}
.mbo-contracts .mbo-membership {
  background: #000;
  color: red;
  padding: 2.5rem 2rem;
  text-align: center;
}
.mbo-contracts .mbo-membership h3 {
  color: red;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
.mbo-contracts .mbo-membership p {
  color: red;
}
.mbo-contracts .mbo-membership button {
  border-color: transparent;
  margin-top: 30px;
  width: 100%;
}
.mbo-contracts .mbo-membership button:active,
.mbo-contracts .mbo-membership button:focus,
.mbo-contracts .mbo-membership button:hover,
.mbo-contracts .mbo-membership button:visited {
  border: 2px solid red;
}
.available-memberships h2 {
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
}
.available-memberships p {
  text-align: center;
}
.available-memberships .mbo-membership {
  border-radius: 10px;
}
.available-memberships .am-row {
  margin-bottom: 40px;
}
.available-memberships .am-row .mbo-services {
  flex-direction: column;
}
@media (min-width: 680px) {
  .available-memberships .am-row .mbo-services {
    flex-direction: row;
  }
}
.available-memberships .am-row .mbo-services .mbo-service {
  background: #000;
  padding: 2.5rem 2rem;
  width: 100%;
}
@media (min-width: 680px) {
  .available-memberships .am-row .mbo-services .mbo-service {
    width: 40%;
  }
}
.available-memberships .am-row .mbo-services .mbo-service h3 {
  color: red;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
.available-memberships .am-row .mbo-services .mbo-service p {
  color: red;
}
.available-memberships .am-row .mbo-services .mbo-service button {
  border-color: transparent;
  margin-top: 30px;
  width: 100%;
}
.available-memberships .am-row .mbo-services .mbo-service button:hover {
  background: transparent;
  border-color: red;
}
form#mbo-membership-form {
  align-items: left;
  display: flex;
  flex-direction: column;
}
.mbo-contracts,
.mbo-services {
  gap: 1em;
  justify-content: center;
  margin: 1em 0;
}
#mbo-user-tools,
.mbo-contracts,
.mbo-services {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#mbo-user-tools {
  gap: 10px;
  justify-content: flex-end;
}
.tooltip {
  background: red;
  border-radius: 4px;
  display: none;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 10px;
}
#account-notification {
  background: transparent;
  border-left: 5px solid green;
  border-radius: 0;
  box-shadow: 0 2px 8px 0 rgba(99, 99, 99, 0.2);
  margin-top: 20px;
  padding: 0.8em;
}
#account-notification.error-notice {
  border-color: red;
}
.week-of-classes {
  display: flex;
  flex-direction: row;
}
.mbo-event {
  background: #eee;
  border-radius: 10px;
  margin: 0.3em;
  padding: 0.3em;
}
.mbo-event h4 {
  font-size: 1em;
  margin: 0;
  padding: 0;
}
.day-of-classes h3 {
  font-size: 0.7em;
  font-weight: 400;
}
.day-of-classes h3 span {
  font-size: 0.5em;
  font-weight: 400;
}
#select-market button {
  margin: 0.3em;
}
.remove-client-from-class {
  border-radius: 50%;
  color: #eee;
  cursor: pointer;
  margin: 0.3em;
  padding: 0.3em;
}
#mbo-navigation {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 1em 0;
}
table {
  margin: 0 auto;
}
#loading {
  animation: loadingspin 1s linear infinite;
  border: 0.4em solid #eee;
  border-radius: 50%;
  border-top-color: #000;
  height: 2.5em;
  margin: auto;
  pointer-events: none;
  width: 2.5em;
}
@keyframes loadingspin {
  to {
    transform: rotate(1turn);
  }
}
@media (max-width: 1280px) {
  .week-of-classes {
    flex-direction: column;
  }
}
.day-title {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
  justify-content: start;
  margin: 0 0.5rem 1rem;
}
@media (min-width: 1281px) {
  .day-title {
    flex-direction: column;
    gap: 0;
  }
}
.day-title span {
  color: red;
  display: block;
  font-family: Inter;
}
.day-title .day-name {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 1281px) {
  .day-title .day-name {
    font-size: 1.3rem;
  }
}
@media (min-width: 1900px) {
  .day-title .day-name {
    font-size: 1.7rem;
  }
}
.day-title .month-name {
  font-size: 1.5rem;
  font-weight: 300;
}
@media (min-width: 1281px) {
  .day-title .month-name {
    font-size: 1rem;
  }
}
@media (min-width: 1440px) {
  .day-title .month-name {
    font-size: 1.3rem;
  }
}
.day-of-classes {
  margin: 0.25rem;
  padding: 0.5rem;
}
.week-of-classes .day-of-classes {
  background: transparent;
  border-radius: 0;
  flex-basis: 0;
  flex-grow: 1;
  margin: 0;
  padding: 0;
}
@media (min-width: 1281px) {
  .week-of-classes .day-of-classes {
    border: 0.5px solid #000;
  }
}
.week-of-classes .day-of-classes .day-of-classes-header {
  background-color: #000;
  padding: 0.75rem 1rem;
}
.week-of-classes .day-of-classes ul {
  align-items: center;
  background: red;
  border: 1px solid #000;
  display: block;
  list-style: none;
  margin: 20px 0;
  min-height: 165px;
  padding: 0;
}
@media (min-width: 1281px) {
  .week-of-classes .day-of-classes ul {
    border: none;
  }
}
.week-of-classes .day-of-classes ul.class-ul-empty {
  align-items: center !important;
  display: flex;
  justify-content: center;
}
.week-of-classes .day-of-classes ul.class-ul-empty h4 {
  font-size: 18px;
  font-weight: 500;
}
@media (min-width: 540px) {
  .week-of-classes .day-of-classes ul {
    min-height: 140px;
  }
}
@media (min-width: 680px) {
  .week-of-classes .day-of-classes ul {
    min-height: 104px;
  }
}
@media (min-width: 1281px) {
  .week-of-classes .day-of-classes ul {
    display: block;
    margin: 0;
    min-height: 300px;
  }
}
@media (min-width: 1900px) {
  .week-of-classes .day-of-classes ul {
    min-height: 275px;
  }
}
.week-of-classes .day-of-classes .mbo-event {
  border-radius: 0;
  margin: 0;
  padding: 1rem;
  width: 100%;
}
.week-of-classes .day-of-classes .mbo-event .content-information-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 540px) {
  .week-of-classes .day-of-classes .mbo-event .content-information-wrapper {
    flex-direction: row;
  }
}
@media (min-width: 1281px) {
  .week-of-classes .day-of-classes .mbo-event .content-information-wrapper {
    flex-direction: column;
  }
}
.week-of-classes .day-of-classes .mbo-event .content-information-wrapper div {
  position: relative;
  width: 100%;
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-first-con {
  grid-column-gap: 10px;
  display: flex;
  flex-wrap: wrap;
  min-height: 51px;
}
@media (min-width: 680px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-first-con {
    grid-column-gap: 0;
    flex: 0 0 30%;
  }
}
@media (min-width: 1281px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-first-con {
    margin: 10px 0;
  }
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-first-con
  .session-name {
  flex: 0 0 100%;
}
@media (min-width: 680px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-first-con
    .session-name {
    flex: 0 0 100%;
  }
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-first-con
  .class_image {
  display: block;
  flex: 0 0 50%;
}
@media (min-width: 680px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-first-con
    .class_image {
    flex: 0;
  }
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-first-con
  svg.show-description {
  width: 15px;
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-second-con {
  align-items: center;
  display: flex;
  flex: 0 0 50%;
  gap: 20px;
  justify-content: start;
  margin-top: 12px;
}
@media (min-width: 680px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-second-con {
    align-items: start;
    flex: 0 0 30%;
  }
}
@media (min-width: 1281px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-second-con {
    margin: 10px 0;
  }
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-second-con
  .staff-image-con {
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 45px;
  justify-content: center;
  margin: 0;
  max-width: 45px;
  overflow: hidden;
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-second-con
  .dashicons {
  width: auto;
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-second-con
  .dashicons:before {
  color: gray;
  font-size: 40px;
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-second-con
  .dashicons-admin-users:before {
  background: url(images/avatar-placeholder.35e38e02.png) no-repeat scroll 0 0
    transparent;
  border-radius: 50%;
  display: block;
  font-size: 0;
  height: 40px;
  width: 40px;
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-second-con
  .staff-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 0;
  max-width: 90px;
}
@media (min-width: 540px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-second-con
    .staff-name {
    max-width: 100%;
  }
}
@media (min-width: 680px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-second-con
    .staff-name {
    margin-top: 8px;
  }
}
@media (min-width: 1281px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-second-con
    .staff-name {
    font-size: 14px;
    margin-top: 0;
  }
}
@media (min-width: 1900px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-second-con
    .staff-name {
    margin-top: 8px;
  }
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-third-con {
  display: flex;
  flex: 0 0 50%;
  justify-content: end;
}
@media (min-width: 680px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con {
    flex: 0 0 30%;
  }
}
@media (min-width: 1281px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con {
    justify-content: start;
    margin: 10px 0;
  }
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-third-con
  button {
  border: 1px solid #000;
  color: #000;
  font-size: 13px;
  height: 35px;
  margin-right: 5px;
  margin-top: 10px;
  max-width: 107px;
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-third-con
  button:hover {
  color: red;
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-third-con
  button[disabled="disabled"][status="cancel"] {
  font-size: 14px;
  font-size: 10px;
  max-width: 107px;
  padding: 0.2rem;
}
@media (min-width: 1281px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con
    button[disabled="disabled"][status="cancel"] {
    font-size: 10px;
  }
}
@media (min-width: 1440px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con
    button[disabled="disabled"][status="cancel"] {
    font-size: 12px;
    max-width: 147px;
  }
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-third-con
  button[disabled="disabled"] {
  font-size: 13px;
  padding: 0.2rem;
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-third-con
  button[disabled="disabled"]:hover {
  background: inherit;
  color: #000;
}
@media (min-width: 540px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con
    button[disabled="disabled"] {
    font-size: 10px;
  }
}
@media (min-width: 680px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con
    button[disabled="disabled"] {
    font-size: 12px;
  }
}
@media (min-width: 1281px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con
    button[disabled="disabled"] {
    font-size: 10px;
  }
}
@media (min-width: 1440px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con
    button[disabled="disabled"] {
    font-size: 12px;
  }
}
@media (min-width: 1900px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con
    button[disabled="disabled"] {
    font-size: 13px;
  }
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-third-con
  button[status="cancel"] {
  padding: 0.2rem;
}
@media (min-width: 680px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con
    button[status="cancel"] {
    font-size: 14px;
  }
}
@media (min-width: 1281px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con
    button[status="cancel"] {
    font-size: 12px;
  }
}
@media (min-width: 1440px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con
    button[status="cancel"] {
    font-size: 12px;
  }
}
@media (min-width: 1900px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con
    button[status="cancel"] {
    font-size: 14px;
  }
}
@media (min-width: 680px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con
    button {
    font-size: 13px;
  }
}
@media (min-width: 1281px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con
    button {
    height: 42px;
    max-width: 147px;
  }
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-third-con
  .btn-pick {
  margin-left: 5px;
  margin-top: 0 !important;
  max-width: 35px;
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-third-con
  .btn-pick.btn-pick-empty {
  display: none;
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-third-con
  .btn-pick
  .button-pick {
  background: transparent;
  border-radius: 4px;
  padding: 0;
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-third-con
  .btn-pick
  .button-pick.w-100 {
  border-color: #000;
  border-width: 1px;
  width: 100%;
}
@media (min-width: 1281px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con
    .btn-pick {
    max-width: 40px;
  }
}
@media (min-width: 1440px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con
    .btn-pick {
    margin: 0;
    max-width: 40px;
  }
}
@media (min-width: 1900px) {
  .week-of-classes
    .day-of-classes
    .mbo-event
    .content-information-wrapper
    div.content-information-third-con
    .btn-pick {
    margin-left: 5px;
    max-width: 60px;
  }
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  div.content-information-third-con
  form {
  margin-bottom: 0;
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  .session-time {
  color: #000;
  font-size: 14px;
  font-weight: 700;
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  .session-name {
  align-items: center;
  display: flex;
  gap: 15px;
  margin-bottom: 2px;
}
.week-of-classes
  .day-of-classes
  .mbo-event
  .content-information-wrapper
  .session-name
  span {
  color: #2b2b2b;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.mbo-event {
  background: red;
  padding: 1rem;
}
.mbo-event p {
  color: #2b2b2b;
  font-family: Inter, sans-serif;
  font-size: 14px;
  margin: 0 0 0.25rem;
}
.mbo-event .session-type {
  display: block;
}
.mbo-event .location-name {
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 540px) {
  .mbo-event .location-name {
    margin-right: 5px;
  }
}
.mbo-event img.class_image,
.mbo-event p.inspect-for-dev {
  display: none;
}
#unset_location {
  display: flex;
  flex-direction: row;
}
#mbo-location + div form {
  text-align: center;
}
#mbo-location + div form label {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  width: 100%;
}
#mbo-location + div form input {
  border: 2px solid #a6a6a6;
  border-radius: 4px;
  font-size: 18px;
  height: 50px;
  margin-bottom: 10px;
  margin-right: 15px;
  padding: 10px;
}
#mbo-location {
  align-items: center;
  display: flex;
  justify-content: center;
}
#select-market {
  text-align: center;
}
#mbo-location + div > form > button,
#mbo-next,
#mbo-prev,
#mbo-user-tools button,
#select-market button,
#select-market > button,
#simpleconfirmdlg p button,
.btn-reserve,
.btn-signup.btn-reserve[disabled],
.mbo-unset-location button,
button#clear-filters,
dialog#myaccount button#otp-request {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: var(--button-background);
  border: 2px solid --button-background;
  border-radius: 5px;
  color: red;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  padding: 0.7rem 0.6rem;
  text-transform: uppercase;
}
#mbo-location + div > form > button:active,
#mbo-location + div > form > button:hover,
#mbo-next:active,
#mbo-next:hover,
#mbo-prev:active,
#mbo-prev:hover,
#mbo-user-tools button:active,
#mbo-user-tools button:hover,
#select-market button:active,
#select-market button:hover,
#select-market > button:active,
#select-market > button:hover,
#simpleconfirmdlg p button:active,
#simpleconfirmdlg p button:hover,
.btn-reserve:active,
.btn-reserve:hover,
.btn-signup.btn-reserve[disabled]:active,
.btn-signup.btn-reserve[disabled]:hover,
.mbo-unset-location button:active,
.mbo-unset-location button:hover,
button#clear-filters:active,
button#clear-filters:hover,
dialog#myaccount button#otp-request:active,
dialog#myaccount button#otp-request:hover {
  background: transparent;
  border-color: transparent;
  color: var(--button-background);
}
#select-market {
  margin-top: 80px;
}
#select-market .market__name,
#select-market button .button-atom__text {
  color: #000;
  font-weight: 700;
}
#select-market button:hover .button-atom__text {
  color: red;
}
#mbo-calendar,
#mbo-memberships {
  padding: 2rem;
  position: relative;
  z-index: 2;
}
#mbo-calendar form#logout-form,
#mbo-memberships form#logout-form {
  margin: 0;
}
#mbo-calendar #mbo-next:active,
#mbo-calendar #mbo-next:hover,
#mbo-calendar #mbo-prev:active,
#mbo-calendar #mbo-prev:hover,
#mbo-memberships #mbo-next:active,
#mbo-memberships #mbo-next:hover,
#mbo-memberships #mbo-prev:active,
#mbo-memberships #mbo-prev:hover {
  background: transparent;
}
#mbo-calendar .mbo-next-hidden,
#mbo-memberships .mbo-next-hidden {
  display: none !important;
}
#mbo-calendar .mbo-schedule,
#mbo-memberships .mbo-schedule {
  background: transparent;
  border-collapse: collapse;
  color: #333;
  font-size: 12pt;
}
@media (min-width: 1281px) {
  #mbo-calendar .mbo-schedule,
  #mbo-memberships .mbo-schedule {
    background: red;
    border: 1px solid gray;
  }
}
#mbo-calendar .mbo-schedule tfoot th,
#mbo-calendar .mbo-schedule thead th,
#mbo-memberships .mbo-schedule tfoot th,
#mbo-memberships .mbo-schedule thead th {
  background: rgba(0, 0, 0, 0.1);
  color: #777;
}
#mbo-calendar .mbo-schedule caption,
#mbo-memberships .mbo-schedule caption {
  padding: 0.5em;
}
#mbo-calendar .mbo-schedule td,
#mbo-calendar .mbo-schedule th,
#mbo-memberships .mbo-schedule td,
#mbo-memberships .mbo-schedule th {
  border: 1px solid #d3d3d3;
  min-height: 100px;
  padding: 0.5em;
}
#mbo-calendar .mbo-schedule td,
#mbo-memberships .mbo-schedule td {
  min-height: 100px;
}
#mbo-calendar .mbo-schedule .button-pick.dashicons,
#mbo-memberships .mbo-schedule .button-pick.dashicons {
  background-color: transparent;
  font-size: 24px;
  height: 24px;
  margin: 0 auto;
  width: 24px;
}
#mbo-calendar .mbo-schedule .button-pick,
#mbo-memberships .mbo-schedule .button-pick {
  align-items: center;
  border-radius: 4px;
  display: flex;
  justify-content: center;
}
#mbo-calendar .mbo-schedule .button-pick:hover svg,
#mbo-memberships .mbo-schedule .button-pick:hover svg {
  fill: red;
}
#mbo-calendar button:active,
#mbo-calendar button:focus,
#mbo-memberships button:active,
#mbo-memberships button:focus {
  background: #000;
  border-color: #000;
  color: red;
}
#mbo-calendar button.button-pick,
#mbo-memberships button.button-pick {
  border-radius: 4px;
}
#mbo-calendar button.button-pick:hover,
#mbo-memberships button.button-pick:hover {
  background: #000;
}
#mbo-calendar button.button-pick:hover .dashicons,
#mbo-memberships button.button-pick:hover .dashicons {
  color: red;
}
#mbo-calendar button.remove-client-from-class,
#mbo-memberships button.remove-client-from-class {
  background: #000;
  border-radius: 0;
  color: red;
  line-height: 0;
  margin-left: 25px;
}
.day-of-classes .btn-reserve {
  border-radius: 5px;
  padding: 0.36rem 0.3rem;
  width: 100%;
}
dialog#simpleconfirmdlg .cancellation-confirmation-label {
  font-size: 36px;
  font-weight: 600;
  text-align: left;
}
dialog#simpleconfirmdlg section div #simpleconfirmdesc {
  color: #474747;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 35px;
  margin-top: 15px;
  text-align: left;
}
dialog#simpleconfirmdlg #simpleconfirmyes.yes-cancel-it {
  background: #000;
  color: red;
  font-size: 15px;
  font-weight: 600;
  max-width: 162px;
  min-height: 54px;
  padding: 0;
  text-align: center;
  width: 100%;
}
dialog#simpleconfirmdlg .no-keep-it.dialog_close {
  font-family: Inter;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 20px;
  max-width: 148px;
  min-height: 54px;
  padding: 0;
  text-align: center;
  width: 100%;
}
.btn-reserve:disabled,
.remove-client-from-class:disabled {
  background: #999;
  border-color: #666;
  color: #ddd;
  cursor: not-allowed;
}
#mbo-location + div > form > button,
#select-market > button {
  background: #000;
  border-color: #000;
  color: red;
  font-size: 20px;
  font-weight: 500;
  text-transform: none;
}
#mbo-location + div > form > button:hover,
#select-market > button:hover {
  background: var(--bde-palette-dark-gray-5);
  border-color: var(--bde-palette-dark-gray-5);
}
#mbo-location + div > form > button {
  font-size: 16px;
  font-weight: 700;
}
#promo_code button {
  position: relative;
}
#promo_code .button__text {
  transition: all 0.2s;
}
.button--loading .button__text {
  opacity: 0;
  visibility: hidden;
}
.button--loading:after {
  animation: button-loading-spinner 1s ease infinite;
  border: 4px solid transparent;
  border-radius: 50%;
  border-top-color: #000;
  bottom: 0;
  content: "";
  height: 16px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 16px;
}
.button--loading:hover:after {
  border-top-color: red;
}
@keyframes button-loading-spinner {
  0% {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}
#mbo-location > h2 {
  text-align: center;
}
#mbo-filters {
  border-bottom: 2px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: start;
  margin: 0 auto;
  padding-bottom: 30px;
  width: 100%;
}
@media (min-width: 1281px) {
  #mbo-filters {
    border: none;
    flex-direction: row;
    padding-bottom: 0;
  }
}
#mbo-filters > label {
  color: #000;
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-right: 15px;
  margin-top: 15px;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 1440px) {
  #mbo-filters > label {
    max-width: 211px;
  }
}
#mbo-filters > label.clear-filters {
  align-items: center;
  display: flex;
  margin-top: 54px;
}
#mbo-filters > label.clear-filters button {
  background: #d9d9d9;
  border: none;
  font-size: 14px;
  margin-bottom: 5px;
  max-width: 126px;
  padding: 0.7rem;
  text-transform: inherit;
  width: 100%;
}
#mbo-filters > label.clear-filters button:active,
#mbo-filters > label.clear-filters button:focus,
#mbo-filters > label.clear-filters button:hover {
  background: #000;
  box-shadow: none;
  color: red;
}
#mbo-filters > label.clear-filters button:before {
  content: "X";
  font-weight: 700;
  margin-right: 5px;
}
#mbo-filters .choices {
  margin-top: 10px;
}
#mbo-filters .choices .choices__inner {
  background-color: red;
  border: 2px solid gray;
  border-radius: 5px;
  padding: 0.563rem 0.75rem;
}
#mbo-filters .choices .choices__inner .choices__item {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}
#mbo-filters .choices[data-type*="select-multiple"] .choices__button {
  background-repeat: no-repeat;
  border-left: 1px solid #000;
}
#mbo-filters
  .choices[data-type*="select-multiple"]
  .choices__list--multiple
  .choices__item {
  background-color: #000;
  border: 1px solid #000;
  color: red;
}
#mbo-filters .choices[data-type*="select-multiple"] .choices__input {
  background-color: red;
  border: none;
  box-shadow: none;
  color: #000;
  padding: 3px 0;
}
#mbo-filters .choices[data-type*="select-one"]:after {
  border-color: #000 transparent transparent;
}
#mbo-filters .choices .choices__list--dropdown {
  color: #000;
}
dialog#myaccount-wrap,
div#myaccount {
  margin: auto;
}
dialog#myaccount-wrap::backdrop,
div#myaccount::backdrop {
  background: rgba(0, 0, 0, 0.7);
}
dialog#myaccount-wrap#myaccount-wrap[open],
div#myaccount#myaccount-wrap[open] {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  left: 0;
  overflow: auto;
  padding-top: 100px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
dialog#myaccount-wrap#myaccount-wrap[open] #myaccount,
div#myaccount#myaccount-wrap[open] #myaccount {
  background: red;
  position: relative;
}
dialog#myaccount-wrap#myaccount,
dialog#myaccount-wrap#simpleconfirmdlg,
div#myaccount#myaccount,
div#myaccount#simpleconfirmdlg {
  border: 0;
  max-width: 850px;
  min-height: 415px;
  overflow: hidden;
  padding: 6rem 2rem;
  width: 100%;
}
@media (min-width: 1280px) {
  dialog#myaccount-wrap#myaccount,
  dialog#myaccount-wrap#simpleconfirmdlg,
  div#myaccount#myaccount,
  div#myaccount#simpleconfirmdlg {
    padding: 6rem;
  }
}
dialog#myaccount-wrap#myaccount #myaccount-content h2,
dialog#myaccount-wrap#myaccount section h2,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content h2,
dialog#myaccount-wrap#simpleconfirmdlg section h2,
div#myaccount#myaccount #myaccount-content h2,
div#myaccount#myaccount section h2,
div#myaccount#simpleconfirmdlg #myaccount-content h2,
div#myaccount#simpleconfirmdlg section h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 1rem;
}
dialog#myaccount-wrap#myaccount #myaccount-content h3,
dialog#myaccount-wrap#myaccount section h3,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content h3,
dialog#myaccount-wrap#simpleconfirmdlg section h3,
div#myaccount#myaccount #myaccount-content h3,
div#myaccount#myaccount section h3,
div#myaccount#simpleconfirmdlg #myaccount-content h3,
div#myaccount#simpleconfirmdlg section h3 {
  border-left: 7px solid #000;
  box-shadow: 0 2px 8px 0 rgba(99, 99, 99, 0.2);
  color: #474747;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 28px;
  padding: 10px;
}
dialog#myaccount-wrap#myaccount #myaccount-content #call-to-action,
dialog#myaccount-wrap#myaccount section #call-to-action,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content #call-to-action,
dialog#myaccount-wrap#simpleconfirmdlg section #call-to-action,
div#myaccount#myaccount #myaccount-content #call-to-action,
div#myaccount#myaccount section #call-to-action,
div#myaccount#simpleconfirmdlg #myaccount-content #call-to-action,
div#myaccount#simpleconfirmdlg section #call-to-action {
  font-size: 18px;
  margin-bottom: 20px;
}
dialog#myaccount-wrap#myaccount #myaccount-content #otp_request,
dialog#myaccount-wrap#myaccount #myaccount-content #otp_verify,
dialog#myaccount-wrap#myaccount section #otp_request,
dialog#myaccount-wrap#myaccount section #otp_verify,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content #otp_request,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content #otp_verify,
dialog#myaccount-wrap#simpleconfirmdlg section #otp_request,
dialog#myaccount-wrap#simpleconfirmdlg section #otp_verify,
div#myaccount#myaccount #myaccount-content #otp_request,
div#myaccount#myaccount #myaccount-content #otp_verify,
div#myaccount#myaccount section #otp_request,
div#myaccount#myaccount section #otp_verify,
div#myaccount#simpleconfirmdlg #myaccount-content #otp_request,
div#myaccount#simpleconfirmdlg #myaccount-content #otp_verify,
div#myaccount#simpleconfirmdlg section #otp_request,
div#myaccount#simpleconfirmdlg section #otp_verify {
  margin-bottom: 2rem;
}
dialog#myaccount-wrap#myaccount
  #myaccount-content
  #otp_request
  input[type="email"],
dialog#myaccount-wrap#myaccount
  #myaccount-content
  #otp_request
  input[type="text"],
dialog#myaccount-wrap#myaccount
  #myaccount-content
  #otp_verify
  input[type="email"],
dialog#myaccount-wrap#myaccount
  #myaccount-content
  #otp_verify
  input[type="text"],
dialog#myaccount-wrap#myaccount section #otp_request input[type="email"],
dialog#myaccount-wrap#myaccount section #otp_request input[type="text"],
dialog#myaccount-wrap#myaccount section #otp_verify input[type="email"],
dialog#myaccount-wrap#myaccount section #otp_verify input[type="text"],
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  #otp_request
  input[type="email"],
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  #otp_request
  input[type="text"],
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  #otp_verify
  input[type="email"],
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  #otp_verify
  input[type="text"],
dialog#myaccount-wrap#simpleconfirmdlg section #otp_request input[type="email"],
dialog#myaccount-wrap#simpleconfirmdlg section #otp_request input[type="text"],
dialog#myaccount-wrap#simpleconfirmdlg section #otp_verify input[type="email"],
dialog#myaccount-wrap#simpleconfirmdlg section #otp_verify input[type="text"],
div#myaccount#myaccount #myaccount-content #otp_request input[type="email"],
div#myaccount#myaccount #myaccount-content #otp_request input[type="text"],
div#myaccount#myaccount #myaccount-content #otp_verify input[type="email"],
div#myaccount#myaccount #myaccount-content #otp_verify input[type="text"],
div#myaccount#myaccount section #otp_request input[type="email"],
div#myaccount#myaccount section #otp_request input[type="text"],
div#myaccount#myaccount section #otp_verify input[type="email"],
div#myaccount#myaccount section #otp_verify input[type="text"],
div#myaccount#simpleconfirmdlg
  #myaccount-content
  #otp_request
  input[type="email"],
div#myaccount#simpleconfirmdlg
  #myaccount-content
  #otp_request
  input[type="text"],
div#myaccount#simpleconfirmdlg
  #myaccount-content
  #otp_verify
  input[type="email"],
div#myaccount#simpleconfirmdlg
  #myaccount-content
  #otp_verify
  input[type="text"],
div#myaccount#simpleconfirmdlg section #otp_request input[type="email"],
div#myaccount#simpleconfirmdlg section #otp_request input[type="text"],
div#myaccount#simpleconfirmdlg section #otp_verify input[type="email"],
div#myaccount#simpleconfirmdlg section #otp_verify input[type="text"] {
  border: 1px solid #474747;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  padding: 0.66rem 1rem;
  width: 100%;
}
dialog#myaccount-wrap#myaccount
  #myaccount-content
  #otp_request
  input[type="text"],
dialog#myaccount-wrap#myaccount
  #myaccount-content
  #otp_verify
  input[type="text"],
dialog#myaccount-wrap#myaccount section #otp_request input[type="text"],
dialog#myaccount-wrap#myaccount section #otp_verify input[type="text"],
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  #otp_request
  input[type="text"],
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  #otp_verify
  input[type="text"],
dialog#myaccount-wrap#simpleconfirmdlg section #otp_request input[type="text"],
dialog#myaccount-wrap#simpleconfirmdlg section #otp_verify input[type="text"],
div#myaccount#myaccount #myaccount-content #otp_request input[type="text"],
div#myaccount#myaccount #myaccount-content #otp_verify input[type="text"],
div#myaccount#myaccount section #otp_request input[type="text"],
div#myaccount#myaccount section #otp_verify input[type="text"],
div#myaccount#simpleconfirmdlg
  #myaccount-content
  #otp_request
  input[type="text"],
div#myaccount#simpleconfirmdlg
  #myaccount-content
  #otp_verify
  input[type="text"],
div#myaccount#simpleconfirmdlg section #otp_request input[type="text"],
div#myaccount#simpleconfirmdlg section #otp_verify input[type="text"] {
  margin-bottom: 20px;
}
dialog#myaccount-wrap#myaccount
  #myaccount-content
  #otp_request
  button#otp-resend,
dialog#myaccount-wrap#myaccount
  #myaccount-content
  #otp_request
  button#otp-verify,
dialog#myaccount-wrap#myaccount
  #myaccount-content
  #otp_verify
  button#otp-resend,
dialog#myaccount-wrap#myaccount
  #myaccount-content
  #otp_verify
  button#otp-verify,
dialog#myaccount-wrap#myaccount section #otp_request button#otp-resend,
dialog#myaccount-wrap#myaccount section #otp_request button#otp-verify,
dialog#myaccount-wrap#myaccount section #otp_verify button#otp-resend,
dialog#myaccount-wrap#myaccount section #otp_verify button#otp-verify,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  #otp_request
  button#otp-resend,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  #otp_request
  button#otp-verify,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  #otp_verify
  button#otp-resend,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  #otp_verify
  button#otp-verify,
dialog#myaccount-wrap#simpleconfirmdlg section #otp_request button#otp-resend,
dialog#myaccount-wrap#simpleconfirmdlg section #otp_request button#otp-verify,
dialog#myaccount-wrap#simpleconfirmdlg section #otp_verify button#otp-resend,
dialog#myaccount-wrap#simpleconfirmdlg section #otp_verify button#otp-verify,
div#myaccount#myaccount #myaccount-content #otp_request button#otp-resend,
div#myaccount#myaccount #myaccount-content #otp_request button#otp-verify,
div#myaccount#myaccount #myaccount-content #otp_verify button#otp-resend,
div#myaccount#myaccount #myaccount-content #otp_verify button#otp-verify,
div#myaccount#myaccount section #otp_request button#otp-resend,
div#myaccount#myaccount section #otp_request button#otp-verify,
div#myaccount#myaccount section #otp_verify button#otp-resend,
div#myaccount#myaccount section #otp_verify button#otp-verify,
div#myaccount#simpleconfirmdlg
  #myaccount-content
  #otp_request
  button#otp-resend,
div#myaccount#simpleconfirmdlg
  #myaccount-content
  #otp_request
  button#otp-verify,
div#myaccount#simpleconfirmdlg #myaccount-content #otp_verify button#otp-resend,
div#myaccount#simpleconfirmdlg #myaccount-content #otp_verify button#otp-verify,
div#myaccount#simpleconfirmdlg section #otp_request button#otp-resend,
div#myaccount#simpleconfirmdlg section #otp_request button#otp-verify,
div#myaccount#simpleconfirmdlg section #otp_verify button#otp-resend,
div#myaccount#simpleconfirmdlg section #otp_verify button#otp-verify {
  border: 1px solid #000;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-right: 20px;
  padding: 15px 45px;
  text-transform: uppercase;
}
dialog#myaccount-wrap#myaccount
  #myaccount-content
  #otp_request
  button#otp-verify,
dialog#myaccount-wrap#myaccount
  #myaccount-content
  #otp_verify
  button#otp-verify,
dialog#myaccount-wrap#myaccount section #otp_request button#otp-verify,
dialog#myaccount-wrap#myaccount section #otp_verify button#otp-verify,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  #otp_request
  button#otp-verify,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  #otp_verify
  button#otp-verify,
dialog#myaccount-wrap#simpleconfirmdlg section #otp_request button#otp-verify,
dialog#myaccount-wrap#simpleconfirmdlg section #otp_verify button#otp-verify,
div#myaccount#myaccount #myaccount-content #otp_request button#otp-verify,
div#myaccount#myaccount #myaccount-content #otp_verify button#otp-verify,
div#myaccount#myaccount section #otp_request button#otp-verify,
div#myaccount#myaccount section #otp_verify button#otp-verify,
div#myaccount#simpleconfirmdlg
  #myaccount-content
  #otp_request
  button#otp-verify,
div#myaccount#simpleconfirmdlg #myaccount-content #otp_verify button#otp-verify,
div#myaccount#simpleconfirmdlg section #otp_request button#otp-verify,
div#myaccount#simpleconfirmdlg section #otp_verify button#otp-verify {
  background-color: #000;
  border: 1px solid #000;
  color: red;
  margin-bottom: 10px;
}
dialog#myaccount-wrap#myaccount
  #myaccount-content
  #otp_request
  button#otp-resend,
dialog#myaccount-wrap#myaccount
  #myaccount-content
  #otp_verify
  button#otp-resend,
dialog#myaccount-wrap#myaccount section #otp_request button#otp-resend,
dialog#myaccount-wrap#myaccount section #otp_verify button#otp-resend,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  #otp_request
  button#otp-resend,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  #otp_verify
  button#otp-resend,
dialog#myaccount-wrap#simpleconfirmdlg section #otp_request button#otp-resend,
dialog#myaccount-wrap#simpleconfirmdlg section #otp_verify button#otp-resend,
div#myaccount#myaccount #myaccount-content #otp_request button#otp-resend,
div#myaccount#myaccount #myaccount-content #otp_verify button#otp-resend,
div#myaccount#myaccount section #otp_request button#otp-resend,
div#myaccount#myaccount section #otp_verify button#otp-resend,
div#myaccount#simpleconfirmdlg
  #myaccount-content
  #otp_request
  button#otp-resend,
div#myaccount#simpleconfirmdlg #myaccount-content #otp_verify button#otp-resend,
div#myaccount#simpleconfirmdlg section #otp_request button#otp-resend,
div#myaccount#simpleconfirmdlg section #otp_verify button#otp-resend {
  float: left;
  margin: 0 2% 10px 0;
}
dialog#myaccount-wrap#myaccount
  #myaccount-content
  #otp_request
  button#otp-resend:hover,
dialog#myaccount-wrap#myaccount
  #myaccount-content
  #otp_verify
  button#otp-resend:hover,
dialog#myaccount-wrap#myaccount section #otp_request button#otp-resend:hover,
dialog#myaccount-wrap#myaccount section #otp_verify button#otp-resend:hover,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  #otp_request
  button#otp-resend:hover,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  #otp_verify
  button#otp-resend:hover,
dialog#myaccount-wrap#simpleconfirmdlg
  section
  #otp_request
  button#otp-resend:hover,
dialog#myaccount-wrap#simpleconfirmdlg
  section
  #otp_verify
  button#otp-resend:hover,
div#myaccount#myaccount #myaccount-content #otp_request button#otp-resend:hover,
div#myaccount#myaccount #myaccount-content #otp_verify button#otp-resend:hover,
div#myaccount#myaccount section #otp_request button#otp-resend:hover,
div#myaccount#myaccount section #otp_verify button#otp-resend:hover,
div#myaccount#simpleconfirmdlg
  #myaccount-content
  #otp_request
  button#otp-resend:hover,
div#myaccount#simpleconfirmdlg
  #myaccount-content
  #otp_verify
  button#otp-resend:hover,
div#myaccount#simpleconfirmdlg section #otp_request button#otp-resend:hover,
div#myaccount#simpleconfirmdlg section #otp_verify button#otp-resend:hover {
  background-color: red;
  color: #000;
}
dialog#myaccount-wrap#myaccount #myaccount-content button,
dialog#myaccount-wrap#myaccount section button,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content button,
dialog#myaccount-wrap#simpleconfirmdlg section button,
div#myaccount#myaccount #myaccount-content button,
div#myaccount#myaccount section button,
div#myaccount#simpleconfirmdlg #myaccount-content button,
div#myaccount#simpleconfirmdlg section button {
  border-color: #000;
  border-width: 1px;
  font-size: 16px;
  padding: 15.5px 55px;
}
dialog#myaccount-wrap#myaccount #myaccount-content button#otp-request,
dialog#myaccount-wrap#myaccount section button#otp-request,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content button#otp-request,
dialog#myaccount-wrap#simpleconfirmdlg section button#otp-request,
div#myaccount#myaccount #myaccount-content button#otp-request,
div#myaccount#myaccount section button#otp-request,
div#myaccount#simpleconfirmdlg #myaccount-content button#otp-request,
div#myaccount#simpleconfirmdlg section button#otp-request {
  padding: 15.5px 15px;
  width: 100%;
}
@media (min-width: 680px) {
  dialog#myaccount-wrap#myaccount #myaccount-content button#otp-request,
  dialog#myaccount-wrap#myaccount section button#otp-request,
  dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content button#otp-request,
  dialog#myaccount-wrap#simpleconfirmdlg section button#otp-request,
  div#myaccount#myaccount #myaccount-content button#otp-request,
  div#myaccount#myaccount section button#otp-request,
  div#myaccount#simpleconfirmdlg #myaccount-content button#otp-request,
  div#myaccount#simpleconfirmdlg section button#otp-request {
    padding: 15.5px 55px;
    width: inherit;
  }
  dialog#myaccount-wrap#myaccount #myaccount-content button,
  dialog#myaccount-wrap#myaccount section button,
  dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content button,
  dialog#myaccount-wrap#simpleconfirmdlg section button,
  div#myaccount#myaccount #myaccount-content button,
  div#myaccount#myaccount section button,
  div#myaccount#simpleconfirmdlg #myaccount-content button,
  div#myaccount#simpleconfirmdlg section button {
    font-size: 18px;
  }
}
dialog#myaccount-wrap#myaccount #myaccount-content button#create-account,
dialog#myaccount-wrap#myaccount section button#create-account,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content button#create-account,
dialog#myaccount-wrap#simpleconfirmdlg section button#create-account,
div#myaccount#myaccount #myaccount-content button#create-account,
div#myaccount#myaccount section button#create-account,
div#myaccount#simpleconfirmdlg #myaccount-content button#create-account,
div#myaccount#simpleconfirmdlg section button#create-account {
  border: none;
  padding-left: 0;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
@media (min-width: 680px) {
  dialog#myaccount-wrap#myaccount #myaccount-content button#create-account,
  dialog#myaccount-wrap#myaccount section button#create-account,
  dialog#myaccount-wrap#simpleconfirmdlg
    #myaccount-content
    button#create-account,
  dialog#myaccount-wrap#simpleconfirmdlg section button#create-account,
  div#myaccount#myaccount #myaccount-content button#create-account,
  div#myaccount#myaccount section button#create-account,
  div#myaccount#simpleconfirmdlg #myaccount-content button#create-account,
  div#myaccount#simpleconfirmdlg section button#create-account {
    padding-left: 15.5px;
  }
}
dialog#myaccount-wrap#myaccount #myaccount-content button#create-account:hover,
dialog#myaccount-wrap#myaccount section button#create-account:hover,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  button#create-account:hover,
dialog#myaccount-wrap#simpleconfirmdlg section button#create-account:hover,
div#myaccount#myaccount #myaccount-content button#create-account:hover,
div#myaccount#myaccount section button#create-account:hover,
div#myaccount#simpleconfirmdlg #myaccount-content button#create-account:hover,
div#myaccount#simpleconfirmdlg section button#create-account:hover {
  background: transparent;
  box-shadow: none;
  color: #000;
}
dialog#myaccount-wrap#myaccount
  #myaccount-content
  button[form="submit_new_account_details"],
dialog#myaccount-wrap#myaccount
  section
  button[form="submit_new_account_details"],
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  button[form="submit_new_account_details"],
dialog#myaccount-wrap#simpleconfirmdlg
  section
  button[form="submit_new_account_details"],
div#myaccount#myaccount
  #myaccount-content
  button[form="submit_new_account_details"],
div#myaccount#myaccount section button[form="submit_new_account_details"],
div#myaccount#simpleconfirmdlg
  #myaccount-content
  button[form="submit_new_account_details"],
div#myaccount#simpleconfirmdlg
  section
  button[form="submit_new_account_details"] {
  background-color: #000;
  color: red;
}
dialog#myaccount-wrap#myaccount
  #myaccount-content
  button[form="submit_new_account_details"]:hover,
dialog#myaccount-wrap#myaccount
  section
  button[form="submit_new_account_details"]:hover,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  button[form="submit_new_account_details"]:hover,
dialog#myaccount-wrap#simpleconfirmdlg
  section
  button[form="submit_new_account_details"]:hover,
div#myaccount#myaccount
  #myaccount-content
  button[form="submit_new_account_details"]:hover,
div#myaccount#myaccount section button[form="submit_new_account_details"]:hover,
div#myaccount#simpleconfirmdlg
  #myaccount-content
  button[form="submit_new_account_details"]:hover,
div#myaccount#simpleconfirmdlg
  section
  button[form="submit_new_account_details"]:hover {
  background-color: red;
  color: #000;
}
dialog#myaccount-wrap#myaccount #myaccount-content #promo_code,
dialog#myaccount-wrap#myaccount section #promo_code,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content #promo_code,
dialog#myaccount-wrap#simpleconfirmdlg section #promo_code,
div#myaccount#myaccount #myaccount-content #promo_code,
div#myaccount#myaccount section #promo_code,
div#myaccount#simpleconfirmdlg #myaccount-content #promo_code,
div#myaccount#simpleconfirmdlg section #promo_code {
  -moz-column-gap: 10px;
  column-gap: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 20px 0;
}
dialog#myaccount-wrap#myaccount #myaccount-content #promo_code label,
dialog#myaccount-wrap#myaccount section #promo_code label,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content #promo_code label,
dialog#myaccount-wrap#simpleconfirmdlg section #promo_code label,
div#myaccount#myaccount #myaccount-content #promo_code label,
div#myaccount#myaccount section #promo_code label,
div#myaccount#simpleconfirmdlg #myaccount-content #promo_code label,
div#myaccount#simpleconfirmdlg section #promo_code label {
  color: #474747;
  display: block;
  flex-basis: 100%;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
dialog#myaccount-wrap#myaccount #myaccount-content #promo_code input,
dialog#myaccount-wrap#myaccount section #promo_code input,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content #promo_code input,
dialog#myaccount-wrap#simpleconfirmdlg section #promo_code input,
div#myaccount#myaccount #myaccount-content #promo_code input,
div#myaccount#myaccount section #promo_code input,
div#myaccount#simpleconfirmdlg #myaccount-content #promo_code input,
div#myaccount#simpleconfirmdlg section #promo_code input {
  border: 1px solid #474747;
  border-radius: 0;
  display: block;
  flex-basis: 32%;
  margin: 0;
  padding: 12.8px 10px;
  width: 100%;
}
dialog#myaccount-wrap#myaccount
  #myaccount-content
  #promo_code
  #promo_code_submit,
dialog#myaccount-wrap#myaccount section #promo_code #promo_code_submit,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  #promo_code
  #promo_code_submit,
dialog#myaccount-wrap#simpleconfirmdlg section #promo_code #promo_code_submit,
div#myaccount#myaccount #myaccount-content #promo_code #promo_code_submit,
div#myaccount#myaccount section #promo_code #promo_code_submit,
div#myaccount#simpleconfirmdlg
  #myaccount-content
  #promo_code
  #promo_code_submit,
div#myaccount#simpleconfirmdlg section #promo_code #promo_code_submit {
  max-height: 52px;
  padding: 10px 30px;
}
dialog#myaccount-wrap#myaccount #myaccount-content #purchase-price,
dialog#myaccount-wrap#myaccount section #purchase-price,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content #purchase-price,
dialog#myaccount-wrap#simpleconfirmdlg section #purchase-price,
div#myaccount#myaccount #myaccount-content #purchase-price,
div#myaccount#myaccount section #purchase-price,
div#myaccount#simpleconfirmdlg #myaccount-content #purchase-price,
div#myaccount#simpleconfirmdlg section #purchase-price {
  font-weight: 600;
  margin-bottom: 15px;
}
dialog#myaccount-wrap#myaccount #myaccount-content ul,
dialog#myaccount-wrap#myaccount section ul,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content ul,
dialog#myaccount-wrap#simpleconfirmdlg section ul,
div#myaccount#myaccount #myaccount-content ul,
div#myaccount#myaccount section ul,
div#myaccount#simpleconfirmdlg #myaccount-content ul,
div#myaccount#simpleconfirmdlg section ul {
  padding: 0;
}
dialog#myaccount-wrap#myaccount #myaccount-content ul li,
dialog#myaccount-wrap#myaccount section ul li,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content ul li,
dialog#myaccount-wrap#simpleconfirmdlg section ul li,
div#myaccount#myaccount #myaccount-content ul li,
div#myaccount#myaccount section ul li,
div#myaccount#simpleconfirmdlg #myaccount-content ul li,
div#myaccount#simpleconfirmdlg section ul li {
  align-items: center;
  border: 2px solid #000;
  display: flex;
  font-size: 20px;
  font-weight: 700;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 15px;
}
dialog#myaccount-wrap#myaccount #myaccount-content ul li .li-info,
dialog#myaccount-wrap#myaccount section ul li .li-info,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content ul li .li-info,
dialog#myaccount-wrap#simpleconfirmdlg section ul li .li-info,
div#myaccount#myaccount #myaccount-content ul li .li-info,
div#myaccount#myaccount section ul li .li-info,
div#myaccount#simpleconfirmdlg #myaccount-content ul li .li-info,
div#myaccount#simpleconfirmdlg section ul li .li-info {
  display: flex;
  flex-basis: 25%;
  flex-direction: column;
}
dialog#myaccount-wrap#myaccount #myaccount-content ul li span,
dialog#myaccount-wrap#myaccount section ul li span,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content ul li span,
dialog#myaccount-wrap#simpleconfirmdlg section ul li span,
div#myaccount#myaccount #myaccount-content ul li span,
div#myaccount#myaccount section ul li span,
div#myaccount#simpleconfirmdlg #myaccount-content ul li span,
div#myaccount#simpleconfirmdlg section ul li span {
  font-size: 15px;
  font-weight: 700;
}
dialog#myaccount-wrap#myaccount #myaccount-content ul li span.li-name,
dialog#myaccount-wrap#myaccount section ul li span.li-name,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content ul li span.li-name,
dialog#myaccount-wrap#simpleconfirmdlg section ul li span.li-name,
div#myaccount#myaccount #myaccount-content ul li span.li-name,
div#myaccount#myaccount section ul li span.li-name,
div#myaccount#simpleconfirmdlg #myaccount-content ul li span.li-name,
div#myaccount#simpleconfirmdlg section ul li span.li-name {
  flex-basis: 50%;
  font-size: 18px;
  text-align: center;
}
dialog#myaccount-wrap#myaccount #myaccount-content ul li span.li-time,
dialog#myaccount-wrap#myaccount section ul li span.li-time,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content ul li span.li-time,
dialog#myaccount-wrap#simpleconfirmdlg section ul li span.li-time,
div#myaccount#myaccount #myaccount-content ul li span.li-time,
div#myaccount#myaccount section ul li span.li-time,
div#myaccount#simpleconfirmdlg #myaccount-content ul li span.li-time,
div#myaccount#simpleconfirmdlg section ul li span.li-time {
  color: gray;
  font-size: 14px;
}
dialog#myaccount-wrap#myaccount #myaccount-content ul li .li-button,
dialog#myaccount-wrap#myaccount section ul li .li-button,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content ul li .li-button,
dialog#myaccount-wrap#simpleconfirmdlg section ul li .li-button,
div#myaccount#myaccount #myaccount-content ul li .li-button,
div#myaccount#myaccount section ul li .li-button,
div#myaccount#simpleconfirmdlg #myaccount-content ul li .li-button,
div#myaccount#simpleconfirmdlg section ul li .li-button {
  display: flex;
  flex-basis: 22%;
  gap: 0;
  gap: 6px;
  justify-content: space-between;
}
dialog#myaccount-wrap#myaccount #myaccount-content ul li button.button-pick,
dialog#myaccount-wrap#myaccount section ul li button.button-pick,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  ul
  li
  button.button-pick,
dialog#myaccount-wrap#simpleconfirmdlg section ul li button.button-pick,
div#myaccount#myaccount #myaccount-content ul li button.button-pick,
div#myaccount#myaccount section ul li button.button-pick,
div#myaccount#simpleconfirmdlg #myaccount-content ul li button.button-pick,
div#myaccount#simpleconfirmdlg section ul li button.button-pick {
  align-items: center;
  border: 1px solid #000;
  border-radius: 4px;
  display: flex;
  flex-basis: 31%;
  justify-content: center;
  padding: 10px;
  position: relative;
}
dialog#myaccount-wrap#myaccount
  #myaccount-content
  ul
  li
  button.button-pick:hover,
dialog#myaccount-wrap#myaccount section ul li button.button-pick:hover,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  ul
  li
  button.button-pick:hover,
dialog#myaccount-wrap#simpleconfirmdlg section ul li button.button-pick:hover,
div#myaccount#myaccount #myaccount-content ul li button.button-pick:hover,
div#myaccount#myaccount section ul li button.button-pick:hover,
div#myaccount#simpleconfirmdlg
  #myaccount-content
  ul
  li
  button.button-pick:hover,
div#myaccount#simpleconfirmdlg section ul li button.button-pick:hover {
  box-shadow: none;
}
dialog#myaccount-wrap#myaccount
  #myaccount-content
  ul
  li
  button.button-pick:hover
  .icon-pencil-modal,
dialog#myaccount-wrap#myaccount
  section
  ul
  li
  button.button-pick:hover
  .icon-pencil-modal,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  ul
  li
  button.button-pick:hover
  .icon-pencil-modal,
dialog#myaccount-wrap#simpleconfirmdlg
  section
  ul
  li
  button.button-pick:hover
  .icon-pencil-modal,
div#myaccount#myaccount
  #myaccount-content
  ul
  li
  button.button-pick:hover
  .icon-pencil-modal,
div#myaccount#myaccount
  section
  ul
  li
  button.button-pick:hover
  .icon-pencil-modal,
div#myaccount#simpleconfirmdlg
  #myaccount-content
  ul
  li
  button.button-pick:hover
  .icon-pencil-modal,
div#myaccount#simpleconfirmdlg
  section
  ul
  li
  button.button-pick:hover
  .icon-pencil-modal {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIFVwbG9hZGVkIHRvOiBTVkcgUmVwbywgd3d3LnN2Z3JlcG8uY29tLCBHZW5lcmF0b3I6IFNWRyBSZXBvIE1peGVyIFRvb2xzIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIGZpbGw9IiNmZmZmZmYiIHZlcnNpb249IjEuMSIgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgCgkgd2lkdGg9IjgwMHB4IiBoZWlnaHQ9IjgwMHB4IiB2aWV3Qm94PSIwIDAgNTI4Ljg5OSA1MjguODk5IgoJIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Zz4KCTxwYXRoIGQ9Ik0zMjguODgzLDg5LjEyNWwxMDcuNTksMTA3LjU4OWwtMjcyLjM0LDI3Mi4zNEw1Ni42MDQsMzYxLjQ2NUwzMjguODgzLDg5LjEyNXogTTUxOC4xMTMsNjMuMTc3bC00Ny45ODEtNDcuOTgxCgkJYy0xOC41NDMtMTguNTQzLTQ4LjY1My0xOC41NDMtNjcuMjU5LDBsLTQ1Ljk2MSw0NS45NjFsMTA3LjU5LDEwNy41OWw1My42MTEtNTMuNjExCgkJQzUzMi40OTUsMTAwLjc1Myw1MzIuNDk1LDc3LjU1OSw1MTguMTEzLDYzLjE3N3ogTTAuMyw1MTIuNjljLTEuOTU4LDguODEyLDUuOTk4LDE2LjcwOCwxNC44MTEsMTQuNTY1bDExOS44OTEtMjkuMDY5CgkJTDI3LjQ3MywzOTAuNTk3TDAuMyw1MTIuNjl6Ii8+CjwvZz4KPC9zdmc+);
}
dialog#myaccount-wrap#myaccount
  #myaccount-content
  ul
  li
  button.button-pick
  .icon-pencil-modal,
dialog#myaccount-wrap#myaccount
  section
  ul
  li
  button.button-pick
  .icon-pencil-modal,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  ul
  li
  button.button-pick
  .icon-pencil-modal,
dialog#myaccount-wrap#simpleconfirmdlg
  section
  ul
  li
  button.button-pick
  .icon-pencil-modal,
div#myaccount#myaccount
  #myaccount-content
  ul
  li
  button.button-pick
  .icon-pencil-modal,
div#myaccount#myaccount section ul li button.button-pick .icon-pencil-modal,
div#myaccount#simpleconfirmdlg
  #myaccount-content
  ul
  li
  button.button-pick
  .icon-pencil-modal,
div#myaccount#simpleconfirmdlg
  section
  ul
  li
  button.button-pick
  .icon-pencil-modal {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIFVwbG9hZGVkIHRvOiBTVkcgUmVwbywgd3d3LnN2Z3JlcG8uY29tLCBHZW5lcmF0b3I6IFNWRyBSZXBvIE1peGVyIFRvb2xzIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIGZpbGw9IiMwMDAwMDAiIHZlcnNpb249IjEuMSIgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgCgkgd2lkdGg9IjgwMHB4IiBoZWlnaHQ9IjgwMHB4IiB2aWV3Qm94PSIwIDAgNTI4Ljg5OSA1MjguODk5IgoJIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8Zz4KCTxwYXRoIGQ9Ik0zMjguODgzLDg5LjEyNWwxMDcuNTksMTA3LjU4OWwtMjcyLjM0LDI3Mi4zNEw1Ni42MDQsMzYxLjQ2NUwzMjguODgzLDg5LjEyNXogTTUxOC4xMTMsNjMuMTc3bC00Ny45ODEtNDcuOTgxCgkJYy0xOC41NDMtMTguNTQzLTQ4LjY1My0xOC41NDMtNjcuMjU5LDBsLTQ1Ljk2MSw0NS45NjFsMTA3LjU5LDEwNy41OWw1My42MTEtNTMuNjExCgkJQzUzMi40OTUsMTAwLjc1Myw1MzIuNDk1LDc3LjU1OSw1MTguMTEzLDYzLjE3N3ogTTAuMyw1MTIuNjljLTEuOTU4LDguODEyLDUuOTk4LDE2LjcwOCwxNC44MTEsMTQuNTY1bDExOS44OTEtMjkuMDY5CgkJTDI3LjQ3MywzOTAuNTk3TDAuMyw1MTIuNjl6Ii8+CjwvZz4KPC9zdmc+);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 18px;
  width: 18px;
}
dialog#myaccount-wrap#myaccount
  #myaccount-content
  ul
  li
  button.button-pick
  .dashicons,
dialog#myaccount-wrap#myaccount section ul li button.button-pick .dashicons,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  ul
  li
  button.button-pick
  .dashicons,
dialog#myaccount-wrap#simpleconfirmdlg
  section
  ul
  li
  button.button-pick
  .dashicons,
div#myaccount#myaccount #myaccount-content ul li button.button-pick .dashicons,
div#myaccount#myaccount section ul li button.button-pick .dashicons,
div#myaccount#simpleconfirmdlg
  #myaccount-content
  ul
  li
  button.button-pick
  .dashicons,
div#myaccount#simpleconfirmdlg section ul li button.button-pick .dashicons {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
dialog#myaccount-wrap#myaccount
  #myaccount-content
  ul
  li
  button.button-pick
  .dashicons:before,
dialog#myaccount-wrap#myaccount
  section
  ul
  li
  button.button-pick
  .dashicons:before,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  ul
  li
  button.button-pick
  .dashicons:before,
dialog#myaccount-wrap#simpleconfirmdlg
  section
  ul
  li
  button.button-pick
  .dashicons:before,
div#myaccount#myaccount
  #myaccount-content
  ul
  li
  button.button-pick
  .dashicons:before,
div#myaccount#myaccount section ul li button.button-pick .dashicons:before,
div#myaccount#simpleconfirmdlg
  #myaccount-content
  ul
  li
  button.button-pick
  .dashicons:before,
div#myaccount#simpleconfirmdlg
  section
  ul
  li
  button.button-pick
  .dashicons:before {
  border: 1px solid #000;
  border-radius: 4px;
  font-size: 26px;
  left: 0;
  padding: 6px;
  position: absolute;
  top: 0;
  width: 100%;
}
dialog#myaccount-wrap#myaccount
  #myaccount-content
  ul
  li
  button.button-pick
  .dashicons:before:hover,
dialog#myaccount-wrap#myaccount
  section
  ul
  li
  button.button-pick
  .dashicons:before:hover,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  ul
  li
  button.button-pick
  .dashicons:before:hover,
dialog#myaccount-wrap#simpleconfirmdlg
  section
  ul
  li
  button.button-pick
  .dashicons:before:hover,
div#myaccount#myaccount
  #myaccount-content
  ul
  li
  button.button-pick
  .dashicons:before:hover,
div#myaccount#myaccount
  section
  ul
  li
  button.button-pick
  .dashicons:before:hover,
div#myaccount#simpleconfirmdlg
  #myaccount-content
  ul
  li
  button.button-pick
  .dashicons:before:hover,
div#myaccount#simpleconfirmdlg
  section
  ul
  li
  button.button-pick
  .dashicons:before:hover {
  box-shadow: none;
}
dialog#myaccount-wrap#myaccount
  #myaccount-content
  ul
  li
  .remove-client-from-class,
dialog#myaccount-wrap#myaccount section ul li .remove-client-from-class,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  ul
  li
  .remove-client-from-class,
dialog#myaccount-wrap#simpleconfirmdlg section ul li .remove-client-from-class,
div#myaccount#myaccount #myaccount-content ul li .remove-client-from-class,
div#myaccount#myaccount section ul li .remove-client-from-class,
div#myaccount#simpleconfirmdlg
  #myaccount-content
  ul
  li
  .remove-client-from-class,
div#myaccount#simpleconfirmdlg section ul li .remove-client-from-class {
  background: red;
  border: 1px solid #000;
  border-radius: 4px;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  height: 40px;
  margin: 0;
  padding: 5px 16px;
}
dialog#myaccount-wrap#myaccount
  #myaccount-content
  ul
  li
  .remove-client-from-class:hover,
dialog#myaccount-wrap#myaccount section ul li .remove-client-from-class:hover,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  ul
  li
  .remove-client-from-class:hover,
dialog#myaccount-wrap#simpleconfirmdlg
  section
  ul
  li
  .remove-client-from-class:hover,
div#myaccount#myaccount
  #myaccount-content
  ul
  li
  .remove-client-from-class:hover,
div#myaccount#myaccount section ul li .remove-client-from-class:hover,
div#myaccount#simpleconfirmdlg
  #myaccount-content
  ul
  li
  .remove-client-from-class:hover,
div#myaccount#simpleconfirmdlg section ul li .remove-client-from-class:hover {
  background: #000;
  box-shadow: none;
  color: red;
}
dialog#myaccount-wrap#myaccount #myaccount-content #simpleconfirmdesc,
dialog#myaccount-wrap#myaccount section #simpleconfirmdesc,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content #simpleconfirmdesc,
dialog#myaccount-wrap#simpleconfirmdlg section #simpleconfirmdesc,
div#myaccount#myaccount #myaccount-content #simpleconfirmdesc,
div#myaccount#myaccount section #simpleconfirmdesc,
div#myaccount#simpleconfirmdlg #myaccount-content #simpleconfirmdesc,
div#myaccount#simpleconfirmdlg section #simpleconfirmdesc {
  margin-bottom: 20px;
}
dialog#myaccount-wrap#myaccount #myaccount-content p #simpleconfirmyes,
dialog#myaccount-wrap#myaccount #myaccount-content p .dialog_close,
dialog#myaccount-wrap#myaccount section p #simpleconfirmyes,
dialog#myaccount-wrap#myaccount section p .dialog_close,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content p #simpleconfirmyes,
dialog#myaccount-wrap#simpleconfirmdlg #myaccount-content p .dialog_close,
dialog#myaccount-wrap#simpleconfirmdlg section p #simpleconfirmyes,
dialog#myaccount-wrap#simpleconfirmdlg section p .dialog_close,
div#myaccount#myaccount #myaccount-content p #simpleconfirmyes,
div#myaccount#myaccount #myaccount-content p .dialog_close,
div#myaccount#myaccount section p #simpleconfirmyes,
div#myaccount#myaccount section p .dialog_close,
div#myaccount#simpleconfirmdlg #myaccount-content p #simpleconfirmyes,
div#myaccount#simpleconfirmdlg #myaccount-content p .dialog_close,
div#myaccount#simpleconfirmdlg section p #simpleconfirmyes,
div#myaccount#simpleconfirmdlg section p .dialog_close {
  font-size: 14px;
  margin-right: 20px;
  padding: 10px 30px;
}
dialog#myaccount-wrap#myaccount #myaccount-content .submit-new-details-button,
dialog#myaccount-wrap#myaccount section .submit-new-details-button,
dialog#myaccount-wrap#simpleconfirmdlg
  #myaccount-content
  .submit-new-details-button,
dialog#myaccount-wrap#simpleconfirmdlg section .submit-new-details-button,
div#myaccount#myaccount #myaccount-content .submit-new-details-button,
div#myaccount#myaccount section .submit-new-details-button,
div#myaccount#simpleconfirmdlg #myaccount-content .submit-new-details-button,
div#myaccount#simpleconfirmdlg section .submit-new-details-button {
  text-align: right;
}
dialog#myaccount-wrap#myaccount #submit_new_account_details,
dialog#myaccount-wrap#myaccount #submit_profile_account_details,
dialog#myaccount-wrap#simpleconfirmdlg #submit_new_account_details,
dialog#myaccount-wrap#simpleconfirmdlg #submit_profile_account_details,
div#myaccount#myaccount #submit_new_account_details,
div#myaccount#myaccount #submit_profile_account_details,
div#myaccount#simpleconfirmdlg #submit_new_account_details,
div#myaccount#simpleconfirmdlg #submit_profile_account_details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 0;
}
dialog#myaccount-wrap#myaccount #submit_new_account_details label,
dialog#myaccount-wrap#myaccount #submit_profile_account_details label,
dialog#myaccount-wrap#simpleconfirmdlg #submit_new_account_details label,
dialog#myaccount-wrap#simpleconfirmdlg #submit_profile_account_details label,
div#myaccount#myaccount #submit_new_account_details label,
div#myaccount#myaccount #submit_profile_account_details label,
div#myaccount#simpleconfirmdlg #submit_new_account_details label,
div#myaccount#simpleconfirmdlg #submit_profile_account_details label {
  color: #474747;
  flex-basis: 100%;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (min-width: 680px) {
  dialog#myaccount-wrap#myaccount #submit_new_account_details label,
  dialog#myaccount-wrap#myaccount #submit_profile_account_details label,
  dialog#myaccount-wrap#simpleconfirmdlg #submit_new_account_details label,
  dialog#myaccount-wrap#simpleconfirmdlg #submit_profile_account_details label,
  div#myaccount#myaccount #submit_new_account_details label,
  div#myaccount#myaccount #submit_profile_account_details label,
  div#myaccount#simpleconfirmdlg #submit_new_account_details label,
  div#myaccount#simpleconfirmdlg #submit_profile_account_details label {
    flex-basis: 49%;
  }
}
dialog#myaccount-wrap#myaccount #submit_new_account_details label input,
dialog#myaccount-wrap#myaccount #submit_profile_account_details label input,
dialog#myaccount-wrap#simpleconfirmdlg #submit_new_account_details label input,
dialog#myaccount-wrap#simpleconfirmdlg
  #submit_profile_account_details
  label
  input,
div#myaccount#myaccount #submit_new_account_details label input,
div#myaccount#myaccount #submit_profile_account_details label input,
div#myaccount#simpleconfirmdlg #submit_new_account_details label input,
div#myaccount#simpleconfirmdlg #submit_profile_account_details label input {
  border: 1px solid #474747;
  border-radius: 0;
  display: block;
  margin-top: 15px;
  padding: 12.8px 10px;
  width: 100%;
}
dialog#myaccount-wrap#myaccount #submit_new_account_details label span,
dialog#myaccount-wrap#myaccount #submit_profile_account_details label span,
dialog#myaccount-wrap#simpleconfirmdlg #submit_new_account_details label span,
dialog#myaccount-wrap#simpleconfirmdlg
  #submit_profile_account_details
  label
  span,
div#myaccount#myaccount #submit_new_account_details label span,
div#myaccount#myaccount #submit_profile_account_details label span,
div#myaccount#simpleconfirmdlg #submit_new_account_details label span,
div#myaccount#simpleconfirmdlg #submit_profile_account_details label span {
  color: gray;
  font-size: 13px;
  font-weight: 600;
}
dialog#myaccount-wrap#myaccount .dialog_cancel,
dialog#myaccount-wrap#simpleconfirmdlg .dialog_cancel,
div#myaccount#myaccount .dialog_cancel,
div#myaccount#simpleconfirmdlg .dialog_cancel {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  align-items: center;
  background: #000;
  border-radius: 0;
  color: red;
  display: flex;
  font-size: 57px;
  font-weight: 300;
  height: 50px;
  justify-content: center;
  max-width: 50px;
  outline: none;
  padding: 0 9px 8px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 100%;
}
dialog#myaccount-wrap#simpleconfirmdlg[open],
div#myaccount#simpleconfirmdlg[open] {
  align-items: center;
  display: flex;
  overflow: hidden;
}
#membership_purchase_form label {
  color: #474747;
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
#membership_purchase_form input {
  border: 1px solid #474747;
  border-radius: 0;
  display: block;
  margin-top: 15px;
  padding: 12.8px 10px;
  width: 100%;
}
#membership_purchase_form .city-state-zip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.33%;
  justify-content: space-between;
}
#membership_purchase_form .city-state-zip label {
  flex-basis: 100%;
  margin-bottom: 0;
}
#membership_purchase_form .city-state-zip input {
  flex-basis: 32%;
}
.choices {
  font-size: 16px;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}
.choices:focus {
  outline: 0;
}
.choices:last-child {
  margin-bottom: 0;
}
.choices.is-open {
  overflow: visible;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.choices.is-disabled .choices__item {
  cursor: not-allowed;
}
.choices [hidden] {
  display: none !important;
}
.choices[data-type*="select-one"] {
  cursor: pointer;
}
.choices[data-type*="select-one"] .choices__inner {
  padding-bottom: 7.5px;
}
.choices[data-type*="select-one"] .choices__input {
  background-color: red;
  border-bottom: 1px solid #ddd;
  display: block;
  margin: 0;
  padding: 10px;
  width: 100%;
}
.choices[data-type*="select-one"] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJtMi41OTIuMDQ0IDE4LjM2NCAxOC4zNjQtMi41NDggMi41NDhMLjA0NCAyLjU5MnoiLz48cGF0aCBkPSJNMCAxOC4zNjQgMTguMzY0IDBsMi41NDggMi41NDhMMi41NDggMjAuOTEyeiIvPjwvZz48L3N2Zz4=);
  background-size: 8px;
  border-radius: 10em;
  height: 20px;
  margin-right: 25px;
  margin-top: -10px;
  opacity: 0.25;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
}
.choices[data-type*="select-one"] .choices__button:focus,
.choices[data-type*="select-one"] .choices__button:hover {
  opacity: 1;
}
.choices[data-type*="select-one"] .choices__button:focus {
  box-shadow: 0 0 0 2px #00bcd4;
}
.choices[data-type*="select-one"]
  .choices__item[data-value=""]
  .choices__button {
  display: none;
}
.choices[data-type*="select-one"]:after {
  border: 5px solid transparent;
  border-top-color: #333;
  content: "";
  height: 0;
  margin-top: -2.5px;
  pointer-events: none;
  position: absolute;
  right: 11.5px;
  top: 50%;
  width: 0;
}
.choices[data-type*="select-one"].is-open:after {
  border-color: transparent transparent #333;
  margin-top: -7.5px;
}
.choices[data-type*="select-one"][dir="rtl"]:after {
  left: 11.5px;
  right: auto;
}
.choices[data-type*="select-one"][dir="rtl"] .choices__button {
  left: 0;
  margin-left: 25px;
  margin-right: 0;
  right: auto;
}
.choices[data-type*="select-multiple"] .choices__inner,
.choices[data-type*="text"] .choices__inner {
  cursor: text;
}
.choices[data-type*="select-multiple"] .choices__button,
.choices[data-type*="text"] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJtMi41OTIuMDQ0IDE4LjM2NCAxOC4zNjQtMi41NDggMi41NDhMLjA0NCAyLjU5MnoiLz48cGF0aCBkPSJNMCAxOC4zNjQgMTguMzY0IDBsMi41NDggMi41NDhMMi41NDggMjAuOTEyeiIvPjwvZz48L3N2Zz4=);
  background-size: 8px;
  border-left: 1px solid #008fa1;
  border-radius: 0;
  display: inline-block;
  line-height: 1;
  margin: 0-4px 0 8px;
  opacity: 0.75;
  padding-left: 16px;
  position: relative;
  width: 8px;
}
.choices[data-type*="select-multiple"] .choices__button:focus,
.choices[data-type*="select-multiple"] .choices__button:hover,
.choices[data-type*="text"] .choices__button:focus,
.choices[data-type*="text"] .choices__button:hover {
  opacity: 1;
}
.choices__inner {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  display: inline-block;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
  padding: 7.5px 7.5px 3.75px;
  vertical-align: top;
  width: 100%;
}
.is-focused .choices__inner,
.is-open .choices__inner {
  border-color: #b7b7b7;
}
.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}
.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}
.choices__list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}
[dir="rtl"] .choices__list--single {
  padding-left: 16px;
  padding-right: 4px;
}
.choices__list--single .choices__item {
  width: 100%;
}
.choices__list--multiple {
  display: inline;
}
.choices__list--multiple .choices__item {
  background-color: #00bcd4;
  border: 1px solid #00a5bb;
  border-radius: 20px;
  box-sizing: border-box;
  color: red;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 3.75px;
  margin-right: 3.75px;
  padding: 4px 10px;
  vertical-align: middle;
  word-break: break-all;
}
.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}
[dir="rtl"] .choices__list--multiple .choices__item {
  margin-left: 3.75px;
  margin-right: 0;
}
.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}
.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaa;
  border: 1px solid #919191;
}
.choices__list--dropdown,
.choices__list[aria-expanded] {
  background-color: red;
  border: 1px solid #ddd;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  margin-top: -1px;
  overflow: hidden;
  position: absolute;
  top: 100%;
  visibility: hidden;
  width: 100%;
  will-change: visibility;
  word-break: break-all;
  z-index: 1;
}
.is-active.choices__list--dropdown,
.is-active.choices__list[aria-expanded] {
  visibility: visible;
}
.is-open .choices__list--dropdown,
.is-open .choices__list[aria-expanded] {
  border-color: #b7b7b7;
}
.is-flipped .choices__list--dropdown,
.is-flipped .choices__list[aria-expanded] {
  border-radius: 0.25rem 0.25rem 0 0;
  bottom: 100%;
  margin-bottom: -1px;
  margin-top: 0;
  top: auto;
}
.choices__list--dropdown .choices__list,
.choices__list[aria-expanded] .choices__list {
  -webkit-overflow-scrolling: touch;
  max-height: 300px;
  overflow: auto;
  position: relative;
  will-change: scroll-position;
}
.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  font-size: 14px;
  padding: 10px;
  position: relative;
}
[dir="rtl"] .choices__list--dropdown .choices__item,
[dir="rtl"] .choices__list[aria-expanded] .choices__item {
  text-align: right;
}
@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable,
  .choices__list[aria-expanded] .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable:after,
  .choices__list[aria-expanded] .choices__item--selectable:after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir="rtl"] .choices__list--dropdown .choices__item--selectable,
  [dir="rtl"] .choices__list[aria-expanded] .choices__item--selectable {
    padding-left: 100px;
    padding-right: 10px;
    text-align: right;
  }
  [dir="rtl"] .choices__list--dropdown .choices__item--selectable:after,
  [dir="rtl"] .choices__list[aria-expanded] .choices__item--selectable:after {
    left: 10px;
    right: auto;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted:after,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted:after {
  opacity: 0.5;
}
.choices__item {
  cursor: default;
}
.choices__item--selectable {
  cursor: pointer;
}
.choices__item--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.choices__heading {
  border-bottom: 1px solid #f7f7f7;
  color: gray;
  font-size: 12px;
  font-weight: 600;
  padding: 10px;
}
.choices__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  background-position: 50%;
  background-repeat: no-repeat;
  border: 0;
  cursor: pointer;
  text-indent: -9999px;
}
.choices__button:focus,
.choices__input:focus {
  outline: 0;
}
.choices__input {
  background-color: #f9f9f9;
  border: 0;
  border-radius: 0;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 5px;
  max-width: 100%;
  padding: 4px 0 4px 2px;
  vertical-align: baseline;
}
.choices__input::-webkit-search-cancel-button,
.choices__input::-webkit-search-decoration,
.choices__input::-webkit-search-results-button,
.choices__input::-webkit-search-results-decoration {
  display: none;
}
.choices__input::-ms-clear,
.choices__input::-ms-reveal {
  display: none;
  height: 0;
  width: 0;
}
[dir="rtl"] .choices__input {
  padding-left: 0;
  padding-right: 2px;
}
.choices__placeholder {
  opacity: 0.5;
}
.tippy-box[data-animation="fade"][data-state="hidden"] {
  opacity: 0;
}
[data-tippy-root] {
  max-width: calc(100vw - 10px);
}
.tippy-box {
  background-color: #333;
  border-radius: 4px;
  color: red;
  font-size: 14px;
  line-height: 1.4;
  outline: 0;
  position: relative;
  transition-property: transform, visibility, opacity;
  white-space: normal;
}
.tippy-box[data-placement^="top"] > .tippy-arrow {
  bottom: 0;
}
.tippy-box[data-placement^="top"] > .tippy-arrow:before {
  border-top-color: initial;
  border-width: 8px 8px 0;
  bottom: -7px;
  left: 0;
  transform-origin: center top;
}
.tippy-box[data-placement^="bottom"] > .tippy-arrow {
  top: 0;
}
.tippy-box[data-placement^="bottom"] > .tippy-arrow:before {
  border-bottom-color: initial;
  border-width: 0 8px 8px;
  left: 0;
  top: -7px;
  transform-origin: center bottom;
}
.tippy-box[data-placement^="left"] > .tippy-arrow {
  right: 0;
}
.tippy-box[data-placement^="left"] > .tippy-arrow:before {
  border-left-color: initial;
  border-width: 8px 0 8px 8px;
  right: -7px;
  transform-origin: center left;
}
.tippy-box[data-placement^="right"] > .tippy-arrow {
  left: 0;
}
.tippy-box[data-placement^="right"] > .tippy-arrow:before {
  border-right-color: initial;
  border-width: 8px 8px 8px 0;
  left: -7px;
  transform-origin: center right;
}
.tippy-box[data-inertia][data-state="visible"] {
  transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}
.tippy-arrow {
  color: #333;
  height: 16px;
  width: 16px;
}
.tippy-arrow:before {
  border-color: transparent;
  border-style: solid;
  content: "";
  position: absolute;
}
.tippy-content {
  padding: 5px 9px;
  position: relative;
  z-index: 1;
}
